/* Manso Wellness Nutrition — main stylesheet (v2 full redesign)
   Editorial clinical design: deep forest green, cream, mint.
   Barlow Condensed display + Barlow body. */

:root {
  --forest: #0d3b33;
  --forest-2: #082721;
  --mint: #7fd8be;
  --mint-strong: #4cb892;
  --mint-soft: #dff2ea;
  --teal: #12705f;
  --cream: #f6f4ee;
  --cream-2: #efede3;
  --ink: #1c1a17;
  --ink-soft: #57524a;
  --muted: #857e72;
  --line: rgba(28, 26, 23, 0.10);
  --white: #ffffff;
  --shadow-card: 0 18px 50px rgba(70, 48, 18, 0.07);
  --shadow-soft: 0 26px 70px rgba(70, 48, 18, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(900px 560px at 92% 42%, rgba(18, 112, 95, 0.05), transparent 60%),
    radial-gradient(700px 480px at 4% 78%, rgba(127, 216, 190, 0.06), transparent 60%),
    var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(18, 112, 95, 0.9);
  outline-offset: 3px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--mint);
  color: var(--forest-2);
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Brand mark dot with halo */
.brand-mark {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--mint-strong));
  box-shadow: 0 0 0 7px rgba(127, 216, 190, 0.18);
  flex-shrink: 0;
}

/* Eyebrow labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
}
.eyebrow--center::after {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out), background .32s var(--ease-out), color .32s var(--ease-out), border-color .32s var(--ease-out);
}
.btn:active { transform: translateY(1px); }

.btn--mint {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-strong) 100%);
  color: var(--forest-2);
  box-shadow: 0 12px 28px rgba(76, 184, 146, 0.35);
}
.btn--mint:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(76, 184, 146, 0.45);
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(13, 59, 51, 0.25);
}
.btn--primary:hover {
  background: var(--forest-2);
  transform: translateY(-2px) scale(1.02);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: rgba(13, 59, 51, 0.35);
}
.btn--outline:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  transform: translateY(-2px);
}

/* Button ripple effect */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  opacity: 1;
  animation: btnRipple .6s ease-out forwards;
  pointer-events: none;
}
.btn--mint .btn-ripple { background: rgba(8, 39, 33, 0.15); }
.btn--outline .btn-ripple,
.btn--ghost .btn-ripple { background: rgba(18, 112, 95, 0.15); }
@keyframes btnRipple {
  to { transform: scale(1); opacity: 0; }
}

/* ---------- Navbar (transparent over dark hero, cream glass on scroll) ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s var(--ease-out), padding .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(246, 244, 238, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(70, 48, 18, 0.08);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
  transition: color .35s var(--ease-out);
}
.navbar__brand strong { font-weight: 600; color: var(--mint); transition: color .35s var(--ease-out); }
.navbar.scrolled .navbar__brand { color: var(--ink); }
.navbar.scrolled .navbar__brand strong { color: var(--teal); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.navbar__nav > a {
  position: relative;
  text-decoration: none;
  color: rgba(246, 244, 238, 0.82);
  font-weight: 500;
  font-size: 0.96rem;
  transition: color .25s var(--ease-out);
}
.navbar__nav > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: width .28s var(--ease-out);
}
.navbar__nav > a:hover { color: var(--white); }
.navbar__nav > a:hover::after { width: 100%; }
.navbar.scrolled .navbar__nav > a { color: var(--ink-soft); }
.navbar.scrolled .navbar__nav > a:hover { color: var(--teal); }
.navbar.scrolled .navbar__nav > a::after { background: var(--teal); }

.navbar__nav > a.navbar__cta {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-strong) 100%);
  color: var(--forest-2);
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(76, 184, 146, 0.35);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.navbar__nav > a.navbar__cta::after { display: none; }
.navbar__nav > a.navbar__cta:hover {
  color: var(--forest-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(76, 184, 146, 0.45);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.navbar__toggle span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .25s var(--ease-out), opacity .25s var(--ease-out), background .35s var(--ease-out);
}
.navbar.scrolled .navbar__toggle span { background: var(--ink); }
.navbar__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (dark forest) ---------- */
.hero {
  position: relative;
  padding: 190px 0 0;
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 80%);
  color: var(--cream);
  overflow: hidden;
}
.hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: auroraFloat 18s ease-in-out infinite alternate;
}
.hero__aurora--1 {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -120px;
  background: rgba(127, 216, 190, 0.16);
}
.hero__aurora--2 {
  width: 440px;
  height: 440px;
  bottom: 0;
  left: -140px;
  background: rgba(18, 112, 95, 0.35);
  animation-delay: -9s;
}
@keyframes auroraFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 26px) scale(1.06); }
  100% { transform: translate(24px, -20px) scale(0.97); }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 90px;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.4vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--mint);
}
.hero__lede {
  font-size: 1.14rem;
  font-weight: 300;
  color: rgba(246, 244, 238, 0.78);
  max-width: 54ch;
  margin-bottom: 38px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero side panel (dark glass) */
.hero__panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero__panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}
.hero__panel ul { list-style: none; }
.hero__panel li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.hero__panel li:last-child { border-bottom: none; padding-bottom: 4px; }
.hero__panel li i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(127, 216, 190, 0.14);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero__panel li strong {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
}
.hero__panel li span {
  font-size: 0.88rem;
  color: rgba(246, 244, 238, 0.6);
}

/* Marquee ticker */
.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 18px 22px 18px 22px;
}
.marquee__group span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(246, 244, 238, 0.72);
  white-space: nowrap;
}
.marquee__group i {
  color: var(--mint);
  font-size: 0.6rem;
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; position: relative; }
.section--tint { background: var(--cream-2); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}
.section-lead {
  font-size: 1.06rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 54px;
}
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Services bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bento__card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out);
}
.bento__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.bento__card--wide { grid-column: span 2; }
.bento__card--dark {
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-2) 100%);
  color: var(--cream);
  border-color: transparent;
}
.bento__card--mint {
  background: var(--mint-soft);
  border-color: transparent;
}
.bento__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(18, 112, 95, 0.10);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 22px;
}
.bento__card--dark .bento__icon {
  background: rgba(127, 216, 190, 0.14);
  color: var(--mint);
}
.bento__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.bento__card--dark .bento__label { color: var(--mint); }
.bento__card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.bento__card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.bento__card--dark p { color: rgba(246, 244, 238, 0.75); }
.bento__card--mint p { color: #3d4a44; }

/* ---------- Process timeline ---------- */
.timeline {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 4%;
  right: 4%;
  border-top: 2px dashed rgba(18, 112, 95, 0.25);
}
.timeline li { position: relative; }
.timeline__num {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(13, 59, 51, 0.25);
}
.timeline h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.timeline p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Stats band (dark) ---------- */
.statsband {
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-2) 100%);
  color: var(--cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.statsband::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(127, 216, 190, 0.10);
  filter: blur(70px);
  pointer-events: none;
}
.statsband__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--mint);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 244, 238, 0.65);
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__list { list-style: none; margin-top: 30px; }
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.about__list li:last-child { border-bottom: none; }
.about__list i {
  color: var(--teal);
  background: rgba(18, 112, 95, 0.10);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__list strong { display: block; font-weight: 700; }
.about__list span { color: var(--ink-soft); font-size: 0.95rem; }

.about__quote {
  position: relative;
  background: var(--mint-soft);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.about__quote::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 11rem;
  color: rgba(18, 112, 95, 0.12);
  line-height: 1;
  pointer-events: none;
}
.about__quote blockquote {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--forest);
  margin-bottom: 20px;
}
.about__quote figcaption {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ---------- Standards ---------- */
.stds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.std {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out);
}
.std:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.std i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 112, 95, 0.10);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.std strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.std span { font-size: 0.88rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__info { margin-top: 30px; }
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.contact__info-item i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(18, 112, 95, 0.10);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
a.contact__info-item:hover { color: var(--teal); }

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 38px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 7px;
}
.form-group label .req { color: #c0392b; }
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(18, 112, 95, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.flash {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.flash--success {
  background: var(--mint-soft);
  color: var(--forest);
  border: 1px solid rgba(18, 112, 95, 0.3);
}
.flash--error {
  background: #fdecea;
  color: #a93226;
  border: 1px solid #f1b0a8;
}

/* ---------- Footer (dark forest) ---------- */
.footer {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 100%);
  color: rgba(246, 244, 238, 0.75);
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer__logo strong { color: var(--mint); font-weight: 600; }
.footer__brand p { font-size: 0.95rem; max-width: 320px; font-weight: 300; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer__col a,
.footer__col span {
  display: block;
  color: rgba(246, 244, 238, 0.7);
  text-decoration: none;
  padding: 5px 0;
  font-size: 0.95rem;
  transition: color .2s var(--ease-out);
}
.footer__col a:hover { color: var(--mint); }
.footer__col a i,
.footer__col span i { margin-right: 8px; color: var(--mint); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 0.88rem;
  color: rgba(246, 244, 238, 0.45);
}

/* ---------- Preview bar (visible while site is gated) ---------- */
.preview-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  padding: 10px 16px;
  background: var(--forest-2);
  color: rgba(246, 244, 238, 0.9);
  font-size: 0.88rem;
  box-shadow: 0 -4px 18px rgba(8, 39, 33, 0.35);
}
.preview-bar i { color: var(--mint); margin-right: 6px; }
.preview-bar a {
  color: var(--mint);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease-out);
}
.preview-bar a:hover { border-bottom-color: var(--mint); }

/* ---------- Rise reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .76s var(--ease-out), transform .76s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__aurora, .cs__aurora, .marquee__track { animation: none; }
  .btn-ripple { display: none; }
  .btn, .bento__card, .std, .navbar__nav > a { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; padding-bottom: 70px; }
  .hero { padding: 160px 0 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .timeline::before { display: none; }
  .statsband__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  .navbar__toggle { display: flex; }
  .navbar__nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 26px 60px rgba(8, 39, 33, 0.4);
    padding: 12px;
    display: none;
  }
  .navbar__nav.open { display: flex; }
  .navbar__nav > a { color: rgba(246, 244, 238, 0.85); padding: 13px 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
  .navbar__nav > a::after { display: none; }
  .navbar__nav > a.navbar__cta {
    margin: 12px 0 2px;
    text-align: center;
    justify-content: center;
    display: block;
  }
  .navbar__brand { font-size: 1.1rem; }
  .section { padding: 76px 0; }
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
  .timeline { grid-template-columns: 1fr; }
  .stds { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .statsband__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Coming Soon page (dark, centered) ---------- */
.cs-page {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 75%);
  color: var(--cream);
  min-height: 100vh;
}
.cs__canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cs__aurora {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: auroraFloat 18s ease-in-out infinite alternate;
}
.cs__aurora--1 {
  width: 540px;
  height: 540px;
  top: -160px;
  left: -120px;
  background: rgba(127, 216, 190, 0.15);
}
.cs__aurora--2 {
  width: 460px;
  height: 460px;
  bottom: -140px;
  right: -120px;
  background: rgba(18, 112, 95, 0.32);
  animation-delay: -9s;
}
.cs {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 5%;
}
.cs__inner { max-width: 780px; }
.cs__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 34px;
}
.cs h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.cs h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--mint);
}
.cs__slogan {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(246, 244, 238, 0.75);
  max-width: 560px;
  margin: 0 auto 46px;
}
.cs__countdown {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.cs__unit {
  padding: 0 34px;
  text-align: center;
}
.cs__unit + .cs__unit { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.cs__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.cs__label {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 244, 238, 0.55);
}
.cs__launched {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--mint);
}
.cs__date {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 42px;
}
.cs__date i { margin-right: 8px; }
.cs__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 46px;
}
.cs__foot {
  font-size: 0.9rem;
  color: rgba(246, 244, 238, 0.45);
  margin-top: 40px;
}
.cs__foot i { color: var(--mint); margin-right: 6px; }
.cs__sep { margin: 0 10px; }

/* Client access form (dark) */
.cs__access {
  max-width: 420px;
  margin: 0 auto;
}
.cs__access label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 244, 238, 0.55);
  margin-bottom: 12px;
}
.cs__access label i { color: var(--mint); margin-right: 6px; }
.cs__access-row {
  display: flex;
  gap: 10px;
}
.cs__access-row input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--cream);
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.cs__access-row input::placeholder { color: rgba(246, 244, 238, 0.4); }
.cs__access-row input:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(127, 216, 190, 0.15);
}
.cs__access .flash { text-align: left; }

@media (max-width: 720px) {
  .cs__countdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .cs__unit {
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
  }
  .cs__unit + .cs__unit { border-left: 1px solid rgba(255, 255, 255, 0.10); }
  .cs__num { font-size: clamp(2rem, 9vw, 2.8rem); }
  .cs__ctas .btn { width: 100%; }
  .cs__access-row { flex-direction: column; }
}
