/* ─── RESET ─────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Sleek Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: rgba(224, 109, 131, 0.3);
  border: 2px solid var(--cream);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rose);
}

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --linen: #E8E6E0;
  --cream: #FAF9F5;
  --rose: #E06D83;
  --rose-hover: #C5556C;
  --rose-soft: #FCEEF0;
  --rose-mid: rgba(224, 109, 131, 0.12);
  --forest: #27302B;
  --sage: #5C6661;
  --mist: #92A199;
  --sage-soft: rgba(92, 102, 97, 0.10);
  --border: #DFDCD5;
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --dark-bg: #181614;
  --dark-card: #1E1B18;
  --dark-border: #2E2A24;
  --dark-text: #F4F1EA;
  --dark-muted: #8A8478;
  --dark-sage: #C4C0B5;
}

/* ─── HIDE PARTICLES (using flowers instead) ─────── */
#particles {
  display: none;
}

/* ─── NAV ─────────────────────────────────────── */

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(250, 249, 245, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 64px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Motterdam', 'Playfair Display', serif;
  font-size: 30px;
  color: var(--rose) !important;
  text-decoration: none;
  letter-spacing: 1px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--sage);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--rose);
}

.nav-cta {
  color: #fff !important;
  background: var(--rose);
  padding: 8px 22px;
  border-radius: 22px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--rose-hover) !important;
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 56px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 24px;
}

h1 {
  font-family: 'Pinyon Script', 'Motterdam', cursive;
  font-size: clamp(58px, 8.5vw, 92px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #FF6B9D, #8E44AD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ─── SPARKLES TEXT ─────────────────────────────── */
.sparkles-container {
  position: relative;
  display: inline-block;
}

.sparkles-text {
  position: relative;
  z-index: 2;
}

.sparkle-svg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: sparkle-spin-fade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes sparkle-spin-fade {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }

  50% {
    transform: scale(1) rotate(180deg);
    opacity: 1;
  }

  100% {
    transform: scale(0) rotate(360deg);
    opacity: 0;
  }
}

.hero-sub {
  font-size: 18px;
  color: var(--sage);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B9D, #8E44AD);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(224, 109, 131, 0.25);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 109, 131, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--rose);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--rose);
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--rose-hover);
  color: var(--rose-hover);
  background: var(--rose-soft);
  transform: translateY(-2px);
}

.hero-note {
  margin-top: 22px;
  font-size: 12px;
  color: var(--mist);
  letter-spacing: 0.5px;
}

/* ─── STATS BAR ─────────────────────────────────── */
.stats-bar {
  position: relative;
  z-index: 1;
  background: var(--dark-bg);
  padding: 40px 56px;
  display: flex;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  color: var(--dark-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── SHARED SECTION STYLES ─────────────────────── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 56px;
  scroll-margin-top: 84px;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
  display: block;
}

.section-label.gold {
  color: var(--gold);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-lead {
  font-size: 17px;
  color: var(--sage);
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 56px;
}

/* ─── PROBLEM ────────────────────────────────────── */
.problem {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.problem .section-lead {
  margin-bottom: 28px;
}

.problem-apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem-app {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--linen);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: 6px;
  padding: 14px 18px;
}

.problem-app-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 2px;
}

.problem-app-desc {
  font-size: 12px;
  color: var(--mist);
}

.problem-app-limit {
  font-size: 11px;
  font-weight: 500;
  color: var(--mist);
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.solution-card {
  background: var(--forest);
  border-radius: 14px;
  padding: 40px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.solution-card::after {
  content: 'Vedh';
  position: absolute;
  bottom: -28px;
  right: -8px;
  font-family: 'Motterdam', 'Playfair Display', serif;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.solution-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.solution-card p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(244, 241, 234, 0.75);
  margin-bottom: 28px;
  font-weight: 300;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-tag {
  display: inline-block;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}

/* ─── FEATURES ───────────────────────────────────── */
/* ─── FEATURES HONEYCOMB ─────────────────────────── */
.features {
  background: var(--linen);
  overflow: hidden;
  padding: 100px 56px 140px;
}

.feature-honeycomb {
  --columns: 3;
  --color-1: var(--rose);
  --color-2: var(--forest);
  --color-3: var(--rose-soft);
  --color-4: var(--sage);
  --color-5: var(--cream);

  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  margin: 120px -30px 40px;
  list-style: none;
  padding: 0;
}

.feature-honeycomb li {
  grid-column-end: span 2;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-top: -50%;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.feature-honeycomb li:hover {
  transform: scale(1.08) translateY(-5px);
  z-index: 50;
}

.feature-honeycomb li:nth-child(2n) {
  grid-column-start: 2;
}

.feature-honeycomb li::before,
.feature-honeycomb li::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-size: 50% 100%, 100% 100%;
  background-position: left, right;
}

.feature-honeycomb li::before {
  z-index: 1;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background-repeat: no-repeat;
  background-image:
    linear-gradient(-45deg, var(--color-5) 53.5%, var(--color-1) 53.5%, var(--color-1) 60%, var(--color-5) 60%),
    linear-gradient(45deg, var(--color-5) 65.3%, var(--color-1) 65.3%, var(--color-1) 69.9%, var(--color-5) 69.9%);
}

.feature-honeycomb li::after {
  z-index: 2;
  clip-path: polygon(100% 50%, 50% 100%, 0 50%, 20% 50%, 50% 80%, 80% 50%);
  -webkit-clip-path: polygon(100% 50%, 50% 100%, 0 50%, 20% 50%, 50% 80%, 80% 50%);
  background-repeat: no-repeat;
  background-image:
    linear-gradient(45deg, var(--color-5) 40%, var(--color-1) 40%),
    linear-gradient(-45deg, var(--color-5) 30%, var(--color-1) 30%);
}

.feature-honeycomb li:nth-child(2n)::before {
  background-image:
    linear-gradient(-45deg, var(--color-5) 53.5%, var(--color-2) 53.5%, var(--color-2) 60%, var(--color-5) 60%),
    linear-gradient(45deg, var(--color-5) 65.3%, var(--color-2) 65.3%, var(--color-2) 69.9%, var(--color-5) 69.9%);
}

.feature-honeycomb li:nth-child(2n)::after {
  background-image:
    linear-gradient(45deg, var(--color-5) 40%, var(--color-2) 40%),
    linear-gradient(-45deg, var(--color-5) 30%, var(--color-2) 30%);
}

.feature-honeycomb li:nth-child(5n)::before {
  background-image:
    linear-gradient(-45deg, var(--color-5) 53.5%, var(--color-4) 53.5%, var(--color-4) 60%, var(--color-5) 60%),
    linear-gradient(45deg, var(--color-5) 65.3%, var(--color-4) 65.3%, var(--color-4) 69.9%, var(--color-5) 69.9%);
}

.feature-honeycomb li:nth-child(5n)::after {
  background-image:
    linear-gradient(45deg, var(--color-5) 40%, var(--color-4) 40%),
    linear-gradient(-45deg, var(--color-5) 30%, var(--color-4) 30%);
}

.feature-hex-content {
  position: absolute;
  width: 60%;
  height: 60%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  pointer-events: none;
  padding: 8px;
}

.feature-hex-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 2vw, 17px);
  color: var(--forest);
  margin-bottom: 4px;
  font-weight: 700;
}

.feature-hex-content p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(9px, 1.2vw, 11px);
  color: var(--sage);
  line-height: 1.3;
  font-weight: 400;
  max-width: 90%;
}

@media (min-width:450px) {
  .feature-honeycomb {
    margin: 120px 20px 40px;
  }
}

@media (min-width:600px) {
  .feature-honeycomb {
    --columns: 5;
  }

  .feature-honeycomb li:nth-child(2n) {
    grid-column-start: auto;
  }

  .feature-honeycomb li:nth-child(4n-1) {
    grid-column-start: 2;
  }
}

@media (min-width:900px) {
  .feature-honeycomb {
    --columns: 7;
  }

  .feature-honeycomb li:nth-child(4n-1) {
    grid-column-start: auto;
  }

  .feature-honeycomb li:nth-child(6n-2) {
    grid-column-start: 2;
  }
}

@media (min-width:1200px) {
  .feature-honeycomb {
    --columns: 9;
  }

  .feature-honeycomb li:nth-child(6n-2) {
    grid-column-start: auto;
  }

  .feature-honeycomb li:nth-child(8n-3) {
    grid-column-start: 2;
  }
}

/* ─── READING MODES ──────────────────────────────── */
.modes {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mode-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--linen);
}

.mode-preview {
  height: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Book preview */
.mode-book {
  background: linear-gradient(135deg, #F4EAD5 0%, #EDE0C8 100%);
}

.mode-sample-text {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: #2B2118;
  text-align: center;
  padding: 24px;
  line-height: 1.8;
}

.mode-attribution {
  display: block;
  font-size: 11px;
  font-style: normal;
  color: #8a7060;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* Comic preview */
.mode-comic {
  background: #1a1a1a;
  flex-direction: column;
  gap: 10px;
}

.mode-comic-spread {
  display: flex;
  gap: 6px;
  align-items: stretch;
}

.comic-page {
  width: 70px;
  height: 100px;
  border-radius: 3px;
}

.comic-page.left {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
}

.comic-page.right {
  background: #252525;
  border: 1px solid #3a3a3a;
}

.comic-gutter {
  width: 2px;
  background: #111;
}

.mode-comic-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

/* PDF preview */
.mode-pdf {
  background: #f0eeea;
}

.pdf-mockup {
  background: #fff;
  border-radius: 4px;
  padding: 14px 16px;
  width: 130px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pdf-line {
  height: 5px;
  background: #DDD;
  border-radius: 2px;
  margin-bottom: 6px;
}

.pdf-line.dark {
  background: #BBB;
}

.pdf-line.w-full {
  width: 100%;
}

.pdf-line.w-90 {
  width: 90%;
}

.pdf-line.w-85 {
  width: 85%;
}

.pdf-line.w-80 {
  width: 80%;
}

.pdf-line.w-70 {
  width: 70%;
}

.pdf-line.w-60 {
  width: 60%;
}

.pdf-image-block {
  height: 28px;
  background: #E8E8E8;
  border-radius: 3px;
  margin-bottom: 6px;
}

.mode-info {
  padding: 20px 22px;
  background: var(--cream);
}

.mode-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.mode-desc {
  font-size: 13px;
  color: var(--sage);
  line-height: 1.65;
  margin-bottom: 14px;
}

.mode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mode-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mist);
  background: var(--linen);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 3px;
}


/* ─── HOW IT WORKS ───────────────────────────────── */
.how {
  background: var(--linen);
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.flow-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.flow-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), rgba(224, 109, 131, 0.2));
  margin-top: 28px;
  align-self: flex-start;
}

.flow-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--rose);
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rose);
}

.flow-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
}

.flow-desc {
  font-size: 13px;
  color: var(--sage);
  line-height: 1.65;
}

/* ─── PULL QUOTE ─────────────────────────────────── */
.pull-quote {
  position: relative;
  z-index: 1;
  background: var(--forest);
  padding: 80px 56px;
  text-align: center;
  border: none;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 34px);
  font-style: italic;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.55;
  font-weight: 400;
}

.pull-quote em {
  font-style: normal;
  color: var(--gold);
}

.pull-quote cite {
  font-size: 12px;
  color: rgba(244, 241, 234, 0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-style: normal;
}

/* ─── PHILOSOPHY ─────────────────────────────────── */
.philosophy {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.philosophy-text h2 {
  margin-bottom: 20px;
}

.philosophy-text p {
  font-size: 16px;
  color: var(--sage);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.philosophy-text p strong {
  color: var(--forest);
  font-weight: 600;
}

code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  background: var(--rose-soft);
  color: var(--rose);
  padding: 2px 7px;
  border-radius: 4px;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 48px;
}

.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pillar-accent {
  width: 3px;
  height: 40px;
  background: var(--rose);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}

.pillar-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--forest);
  margin-bottom: 5px;
}

.pillar-desc {
  font-size: 13px;
  color: var(--sage);
  line-height: 1.65;
}


/* ─── CTA ────────────────────────────────────────── */
.cta {
  background: var(--linen);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-inner {
  max-width: 580px;
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 17px;
  color: var(--sage);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.platform-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--mist);
  font-weight: 500;
}

.platform-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.5;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  background: var(--forest);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Motterdam', 'Playfair Display', serif;
  font-size: 28px;
  color: var(--rose) !important;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(244, 241, 234, 0.45);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-meta {
  font-size: 13px;
  color: rgba(244, 241, 234, 0.3);
  line-height: 1.7;
  text-align: right;
}

/* ─── SCROLL ANIMATION ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    gap: 20px;
  }

  section {
    padding: 72px 24px;
  }

  .hero {
    padding: 110px 24px 72px;
  }

  .stats-bar {
    gap: 40px;
    padding: 40px 24px;
  }

  .pull-quote {
    padding: 64px 24px;
  }

  .problem-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modes-grid {
    grid-template-columns: 1fr;
  }

  .stack-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flow-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .flow-step {
    min-width: 180px;
  }

  .flow-connector {
    display: none;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .footer-meta {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  h1 {
    letter-spacing: -1px;
  }

  .features-grid,
  .stack-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .particle {
    animation: none !important;
  }

  .fade-up {
    transition: none !important;
  }
}