*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F0EBE0;
  --cream-dark: #E2D9CB;
  --ink: #1A1A18;
  --ink-soft: #3D3D38;
  --muted: #6B6760;
  --pink: #D4537E;
  --pink-light: #FBEAF0;
  --pink-mid: #F4C0D1;
  --teal: #0F6E56;
  --teal-light: #E1F5EE;
  --teal-mid: #1D9E75;
  --amber: #BA7517;
  --amber-light: #FAEEDA;
  --white: #FDFCF8;
  --border: rgba(26,26,24,0.12);
  --border-soft: rgba(26,26,24,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ANNOUNCEMENT BANNER */
.announce {
  background: var(--ink);
  color: rgba(253,252,248,0.85);
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.01em;
  padding: 9px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announce .announce-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-mid);
  flex-shrink: 0;
}

.announce strong {
  color: var(--white);
  font-weight: 500;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.nav-logo .logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-mid);
  display: inline-block;
  margin-bottom: 3px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--ink-soft) !important;
  color: var(--cream) !important;
  transform: translateY(-1px);
}

.nav-login {
  background: transparent;
  color: var(--ink) !important;
  padding: 8px 20px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background 0.2s, color 0.2s, transform 0.15s !important;
}

.nav-login:hover {
  background: var(--ink);
  color: var(--cream) !important;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 88vh;
  padding: 80px 5vw 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid var(--pink-mid);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }

.btn-ghost {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: var(--ink); }

/* HERO VISUAL */
.hero-visual {
  position: relative;
}

.dst-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 24px rgba(26,26,24,0.06);
}

.dst-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.dst-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dst-icon svg { width: 20px; height: 20px; }

.dst-card-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}

.dst-card-header p {
  font-size: 12px;
  color: var(--muted);
}

.dst-input-area {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dst-input-text { font-style: italic; color: var(--muted); }

.dst-pill {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
}

.dst-response-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.dst-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}

.dst-item:last-child { border-bottom: none; }

.dst-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.dot-teal { background: var(--teal-mid); }
.dot-pink { background: var(--pink); }
.dot-amber { background: var(--amber); }

.dst-item-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 2px;
}

.dst-item-value {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.floating-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 12px rgba(26,26,24,0.07);
  animation: float 3s ease-in-out infinite;
}

.chip-1 { top: -20px; right: 20px; animation-delay: 0s; }
.chip-2 { bottom: 20px; left: -24px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.chip-dot { width: 8px; height: 8px; border-radius: 50%; }

/* STATS STRIP */
.stats-strip {
  background: var(--ink);
  padding: 28px 5vw;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-number span { color: var(--teal-mid); }

.stat-label {
  font-size: 12px;
  color: rgba(253,252,248,0.5);
  margin-top: 4px;
  font-weight: 300;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(253,252,248,0.12);
}

/* SECTION SHARED */
.section {
  padding: 100px 5vw;
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--teal);
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--teal); }

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
}

/* FEATURES GRID */
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--cream); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.icon-teal { background: var(--teal-light); }
.icon-pink { background: var(--pink-light); }
.icon-amber { background: var(--amber-light); }

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
}

/* HOW IT WORKS */
.how-section {
  background: var(--ink);
  padding: 100px 5vw;
}

.how-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.how-section .section-label { color: var(--teal-mid); }
.how-section .section-label::before { background: var(--teal-mid); }
.how-section .section-title { color: var(--white); }
.how-section .section-title em { color: var(--teal-mid); }
.how-section .section-sub { color: rgba(253,252,248,0.55); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: rgba(253,252,248,0.12);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(253,252,248,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  background: var(--ink);
  margin-bottom: 24px;
  transition: background 0.2s, border-color 0.2s;
}

.step-card:hover .step-number {
  background: var(--teal);
  border-color: var(--teal);
}

.step-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-card p {
  font-size: 13px;
  color: rgba(253,252,248,0.5);
  font-weight: 300;
  line-height: 1.65;
}

/* MODULES SECTION */
.modules-section {
  padding: 100px 5vw;
  background: var(--cream);
}

.modules-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.modules-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.module-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: inherit;
}

.module-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--cream-dark);
  min-width: 36px;
  letter-spacing: -1px;
}

.module-info { flex: 1; }

.module-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.module-info p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.module-badge {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--teal-light);
  color: var(--teal);
  border: 1px solid rgba(15,110,86,0.15);
  white-space: nowrap;
}

.module-badge.badge-soon {
  background: var(--amber-light);
  color: var(--amber);
  border-color: rgba(186,117,23,0.2);
}

/* TRACKER SECTION */
.tracker-section {
  padding: 100px 5vw;
  background: var(--white);
}

.tracker-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tracker-visual {
  position: relative;
}

.tracker-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.tracker-card-title {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tracker-card-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-mid);
  flex-shrink: 0;
}

.tracker-entry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.tracker-entry-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tracker-entry-top span:first-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}

.tracker-entry-top span:last-child {
  font-size: 11px;
  color: var(--muted);
}

.tracker-entry p {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.progress-bar {
  height: 4px;
  background: var(--cream-dark);
  border-radius: 100px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--teal-mid);
}

.tracker-prompt {
  background: var(--teal-light);
  border: 1px solid rgba(15,110,86,0.15);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.prompt-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: white;
}

.prompt-text { font-size: 13px; color: var(--teal); font-weight: 400; }
.prompt-time { font-size: 11px; color: rgba(15,110,86,0.6); margin-top: 2px; }

/* TESTIMONIAL */
.testimonial-section {
  padding: 100px 5vw;
  background: var(--cream);
}

.testimonial-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Fraunces', serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--teal-mid);
  opacity: 0.3;
}

.testimonial-text {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}

.av-teal { background: var(--teal-light); color: var(--teal); }
.av-pink { background: var(--pink-light); color: var(--pink); }
.av-amber { background: var(--amber-light); color: var(--amber); }

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.author-role {
  font-size: 12px;
  color: var(--muted);
}

/* CTA SECTION */
.cta-section {
  padding: 100px 5vw;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.cta-bg-shape {
  position: absolute;
  right: -60px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253,252,248,0.12);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(253,252,248,0.2);
}

.cta-inner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(253,252,248,0.65);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-white {
  background: var(--white);
  color: var(--teal);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s;
}

.btn-cta-white:hover { transform: translateY(-1px); }

.btn-cta-ghost {
  color: rgba(253,252,248,0.7);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(253,252,248,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-cta-ghost:hover {
  color: var(--white);
  border-color: rgba(253,252,248,0.7);
}

/* FOOTER */
footer {
  background: var(--ink);
  padding: 60px 5vw 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,252,248,0.08);
  margin-bottom: 32px;
}

.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand .nav-logo .logo-dot { background: var(--teal-mid); }

.footer-brand p {
  font-size: 13px;
  color: rgba(253,252,248,0.4);
  font-weight: 300;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,252,248,0.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(253,252,248,0.6);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(253,252,248,0.3);
  font-weight: 300;
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-badge {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(253,252,248,0.12);
  color: rgba(253,252,248,0.4);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow { animation: fadeUp 0.5s ease forwards; }
  .hero h1 { animation: fadeUp 0.6s ease 0.1s both; }
  .hero-desc { animation: fadeUp 0.6s ease 0.2s both; }
  .hero-actions { animation: fadeUp 0.6s ease 0.3s both; }
  .hero-note { animation: fadeUp 0.6s ease 0.4s both; }
  .hero-visual { animation: fadeUp 0.8s ease 0.15s both; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 40px; }
  .features-header { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .tracker-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .chip-2 { display: none; }
}

@media (max-width: 600px) {
  .announce { font-size: 12px; padding: 8px 5vw; }
  .nav-links { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-inner { gap: 32px; }
  .stat-divider { display: none; }
}
