/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --gs-deep:       #16450b;
  --gs-forest:     #1E5A12;
  --gs-canopy:     #2C5A25;
  --gs-cream:      #F5EDD9;
  --gs-parchment:  #EDE4CF;
  --gs-birch:      #FAFAF2;
  --gs-soil:       #0B1A09;
  --gs-mist:       #D4C9B5;
  --gs-pale:       #E6F0E3;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--gs-cream);
  color: var(--gs-soil);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  border-radius: 5px;
  padding: .625rem 1.375rem;
  cursor: pointer;
  border: none;
  transition: background .2s ease, transform .18s ease, border-color .2s ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gs-cream); outline-offset: 3px; }
.btn-cream  { background: var(--gs-cream); color: var(--gs-deep); }
.btn-cream:hover  { background: var(--gs-birch); transform: translateY(-1px); }
.btn-ghost  { background: transparent; color: var(--gs-cream); border: 1.5px solid rgba(245,237,217,.45); }
.btn-ghost:hover  { border-color: var(--gs-cream); background: rgba(245,237,217,.07); }
.btn-deep   { background: var(--gs-deep); color: var(--gs-cream); }
.btn-deep:hover   { background: var(--gs-forest); transform: translateY(-1px); }
.btn-parchment { background: var(--gs-parchment); color: var(--gs-soil); }
.btn-parchment:hover { background: var(--gs-mist); transform: translateY(-1px); }
.btn-lg { font-size: 1rem; padding: .875rem 2rem; letter-spacing: .02em; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(22,69,11,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,237,217,.08);
  transition: padding .3s ease;
}
.nav.scrolled { padding: .875rem 2.5rem; }

.nav-logo { display: flex; align-items: center; gap: .625rem; }
.nav-logo svg { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo-img { width: 46px; height: 27px; object-fit: cover; object-position: top center; flex-shrink: 0; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.4375rem;
  font-weight: 500;
  color: var(--gs-cream);
  letter-spacing: .01em;
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 400; letter-spacing: .03em;
  color: rgba(245,237,217,.65);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--gs-cream); }
.nav-links a[aria-current="page"] { color: var(--gs-cream); }

.nav-actions { display: flex; gap: .75rem; align-items: center; }

.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--gs-cream); cursor: pointer;
  padding: .5rem; min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
}

/* ─── MOBILE NAV ──────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--gs-soil);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; color: var(--gs-cream);
  cursor: pointer; padding: .5rem; min-height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-links { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 1.75rem; }
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 400; color: var(--gs-cream);
}
.mobile-menu-ctas { display: flex; gap: .875rem; flex-wrap: wrap; justify-content: center; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--gs-deep);
  display: flex; align-items: center;
  padding: calc(6rem + 80px) 2.5rem 6rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 80% 50%, rgba(30,90,18,.22) 0%, transparent 70%),
    radial-gradient(ellipse 35% 70% at 5% 80%, rgba(11,26,9,.6) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,237,217,.5);
  margin-bottom: 1.75rem;
}
.hero-eyebrow-pip {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(245,237,217,.35);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 400; line-height: 1.06;
  color: var(--gs-cream);
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; font-weight: 300; opacity: .85; }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.175rem);
  font-weight: 300; line-height: 1.75;
  color: rgba(245,237,217,.7);
  max-width: 460px; margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-caveat {
  margin-top: 1.625rem;
  font-size: .8125rem; font-style: italic;
  color: rgba(245,237,217,.35);
}

/* ─── HAPTIC PULSE ────────────────────────────────────────── */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  height: 460px;
}

.haptic-wrap {
  position: relative;
  width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}

.haptic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(245,237,217,.4);
  width: 64px; height: 64px;
  animation: pulse-out 2.6s ease-out infinite;
}
.haptic-ring:nth-child(1) { animation-delay: 0s; }
.haptic-ring:nth-child(2) { animation-delay: .52s; }
.haptic-ring:nth-child(3) { animation-delay: 1.04s; }
.haptic-ring:nth-child(4) { animation-delay: 1.56s; }
.haptic-ring:nth-child(5) { animation-delay: 2.08s; }

@keyframes pulse-out {
  0%   { transform: scale(1);   opacity: .75; border-color: rgba(245,237,217,.45); }
  100% { transform: scale(4.8); opacity: 0;   border-color: rgba(245,237,217,0); }
}

.haptic-core {
  position: relative; z-index: 10;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gs-cream);
  box-shadow: 0 0 0 5px rgba(245,237,217,.12), 0 0 0 10px rgba(245,237,217,.05);
}

.haptic-caption {
  position: absolute; bottom: -36px; left: 50%;
  transform: translateX(-50%);
  text-align: center; white-space: nowrap;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(245,237,217,.35);
}
.haptic-caption span {
  display: block; margin-top: .2rem;
  font-size: .6875rem; font-style: italic;
  text-transform: none; letter-spacing: 0;
}

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats {
  background: var(--gs-soil);
  padding: 3rem 2.5rem;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
.stat {
  text-align: center; padding: 1.25rem .75rem;
  border-right: 1px solid rgba(245,237,217,.07);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-display);
  font-size: clamp(2.25rem,3.5vw,3.25rem);
  font-weight: 400; color: var(--gs-cream);
  line-height: 1; letter-spacing: -.02em;
  margin-bottom: .375rem;
}
.stat-label {
  font-size: .8125rem; font-weight: 300;
  color: rgba(245,237,217,.5); line-height: 1.55;
}

/* ─── SECTION SCAFFOLD ────────────────────────────────────── */
.section { padding: 7rem 2.5rem; scroll-margin-top: 72px; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.eyebrow {
  font-size: .8rem; font-weight: 500;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--gs-canopy);
  margin-bottom: .875rem;
}
.eyebrow-light { color: rgba(245,237,217,.45); }

.section-h {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.75vw,3.125rem);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -.02em; color: var(--gs-soil);
  margin-bottom: 1.125rem;
}
.section-h em { font-style: italic; color: var(--gs-deep); }
.section-h-light { color: var(--gs-cream); }
.section-h-light em { color: rgba(245,237,217,.7); }

.section-body {
  font-size: 1.0625rem; font-weight: 300;
  color: var(--gs-canopy); line-height: 1.8;
  max-width: 580px;
}
.section-body-light { color: rgba(245,237,217,.6); }

/* ─── FADE-IN ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

.slide-left {
  opacity: 0; transform: translateX(-18px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-left:nth-child(2) { transition-delay: .1s; }
.slide-left:nth-child(3) { transition-delay: .2s; }
.slide-left:nth-child(4) { transition-delay: .3s; }

/* ─── PROBLEM ─────────────────────────────────────────────── */
.problem { background: var(--gs-cream); }
.problem-header { margin-bottom: 3.5rem; }
.problem-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.problem-card {
  background: var(--gs-parchment);
  border-radius: 9px; padding: 2.5rem 2rem;
}
.problem-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gs-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.375rem; flex-shrink: 0;
}
.problem-icon svg { width: 20px; height: 20px; color: var(--gs-cream); }
.problem-card-h {
  font-family: var(--font-display);
  font-size: 1.5625rem; font-weight: 500;
  color: var(--gs-soil); line-height: 1.2;
  margin-bottom: .625rem;
}
.problem-card-p {
  font-size: .9375rem; font-weight: 300;
  color: var(--gs-canopy); line-height: 1.75;
}

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.how { background: var(--gs-forest); }
.how-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  margin-top: 3.5rem;
}
.how-steps { display: flex; flex-direction: column; gap: 1rem; }
.how-step {
  display: flex; gap: 1.375rem; align-items: flex-start;
  background: rgba(245,237,217,.07);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(245,237,217,.08);
}
.how-step-num {
  font-family: var(--font-display);
  font-size: .875rem; font-weight: 400;
  color: rgba(245,237,217,.28); letter-spacing: .04em;
  padding-top: .3rem; min-width: 2rem; flex-shrink: 0;
}
.how-step-h {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--gs-cream); line-height: 1.2;
  margin-bottom: .45rem;
}
.how-step-p {
  font-size: .9375rem; font-weight: 300;
  color: rgba(245,237,217,.58); line-height: 1.75;
}

/* Cadence visualizer */
.cadence-panel {
  display: flex; flex-direction: column; gap: 1.125rem;
}
.cadence-note {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,237,217,.28); text-align: center;
  margin-bottom: .25rem;
}
.cadence-state {
  background: rgba(245,237,217,.05);
  border: 1px solid rgba(245,237,217,.1);
  border-radius: 9px; padding: 1.375rem 1.5rem;
}
.cadence-state-label {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(245,237,217,.38); margin-bottom: .75rem;
}
.cadence-dots { display: flex; align-items: center; }
.cdot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(245,237,217,.45);
}

/* Slow */
.cadence-slow .cadence-state-label { color: rgba(245,237,217,.38); }
.cadence-slow .cadence-dots { gap: 14px; }
.cadence-slow .cdot { animation: dot-slow 1.9s ease-in-out infinite; }
.cadence-slow .cdot:nth-child(2) { animation-delay: .63s; }
.cadence-slow .cdot:nth-child(3) { animation-delay: 1.26s; }

/* Medium */
.cadence-med .cadence-state-label { color: rgba(245,237,217,.52); }
.cadence-med .cadence-dots { gap: 7px; }
.cadence-med .cdot { background: rgba(245,237,217,.65); animation: dot-med 1s ease-in-out infinite; }
.cadence-med .cdot:nth-child(2) { animation-delay: .25s; }
.cadence-med .cdot:nth-child(3) { animation-delay: .5s; }
.cadence-med .cdot:nth-child(4) { animation-delay: .75s; }

/* Aligned */
.cadence-on { border-color: rgba(245,237,217,.28); background: rgba(245,237,217,.09); }
.cadence-on .cadence-state-label { color: rgba(245,237,217,.8); }
.cadence-on .cadence-dots { gap: 3px; }
.cadence-on .cdot { background: var(--gs-cream); animation: dot-fast .38s ease-in-out infinite; }
.cadence-on .cdot:nth-child(2) { animation-delay: .076s; }
.cadence-on .cdot:nth-child(3) { animation-delay: .152s; }
.cadence-on .cdot:nth-child(4) { animation-delay: .228s; }
.cadence-on .cdot:nth-child(5) { animation-delay: .304s; }

.cadence-desc {
  margin-top: .625rem; font-size: .8125rem;
  font-style: italic; color: rgba(245,237,217,.38);
}
.cadence-on .cadence-desc { color: rgba(245,237,217,.6); }

@keyframes dot-slow { 0%,100% { opacity:.2; transform:scale(.85); } 50% { opacity:.7; transform:scale(1.1); } }
@keyframes dot-med  { 0%,100% { opacity:.35; transform:scale(.9); } 50% { opacity:.9; transform:scale(1.1); } }
@keyframes dot-fast { 0%,100% { opacity:.65; transform:scale(.9); } 50% { opacity:1;  transform:scale(1.15); } }

/* ─── WHO IT HELPS ────────────────────────────────────────── */
.audience { background: var(--gs-birch); }
.audience-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.audience-card {
  background: var(--gs-cream);
  border-radius: 9px; padding: 2.5rem;
  border: 1px solid var(--gs-mist);
}
.audience-card-pip {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gs-deep); margin-bottom: 1.375rem;
}
.audience-card-h {
  font-family: var(--font-display);
  font-size: 1.5625rem; font-weight: 500;
  color: var(--gs-soil); line-height: 1.2;
  margin-bottom: .625rem;
}
.audience-card-p {
  font-size: .9375rem; font-weight: 300;
  color: var(--gs-canopy); line-height: 1.75;
}

/* ─── DEMO PARTNERS ───────────────────────────────────────── */
.demo { background: var(--gs-parchment); }
.demo-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5.5rem; align-items: start;
}
.demo-benefits { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1.125rem; }
.demo-benefit { display: flex; gap: .875rem; align-items: flex-start; }
.demo-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gs-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .125rem;
}
.demo-check svg { width: 9px; height: 9px; color: var(--gs-cream); }
.demo-benefit-text {
  font-size: .9375rem; color: var(--gs-soil);
  line-height: 1.65; font-weight: 400;
}
.demo-benefit-text strong { font-weight: 600; }

/* Form panel */
.form-panel {
  background: var(--gs-cream);
  border-radius: 11px; padding: 2.5rem;
  border: 1px solid var(--gs-mist);
}
.form-panel-h {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--gs-soil); margin-bottom: .375rem;
}
.form-panel-sub {
  font-size: .875rem; color: var(--gs-canopy);
  margin-bottom: 1.75rem; line-height: 1.65;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: .8125rem; font-weight: 500;
  color: var(--gs-soil); margin-bottom: .35rem;
  letter-spacing: .01em;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .75rem 1rem;
  font-family: var(--font-body); font-size: .9375rem;
  color: var(--gs-soil); background: var(--gs-birch);
  border: 1.5px solid var(--gs-mist); border-radius: 6px;
  transition: border-color .2s ease, box-shadow .2s ease;
  min-height: 44px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gs-deep);
  box-shadow: 0 0 0 3px rgba(22,69,11,.1);
}
.form-textarea { resize: vertical; min-height: 96px; }

/* ─── PROOF ───────────────────────────────────────────────── */
.proof { background: var(--gs-cream); }
.proof-header { margin-bottom: 3.5rem; }
.testimonials {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--gs-birch);
  border-radius: 9px; padding: 2rem;
  border: 1px solid var(--gs-mist);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 400;
  color: var(--gs-mist); line-height: .7;
  margin-bottom: .75rem; display: block;
}
.testimonial-q {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-style: italic; font-weight: 400;
  color: var(--gs-soil); line-height: 1.65;
  margin-bottom: 1.25rem;
}
.testimonial-name { font-size: .8125rem; font-weight: 500; color: var(--gs-canopy); }
.testimonial-role { font-size: .75rem; color: var(--gs-mist); margin-top: .2rem; }

.proof-stats {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5rem; margin-top: 1.5rem;
}
.proof-stat {
  background: var(--gs-deep); border-radius: 9px;
  padding: 2.125rem 2rem; color: var(--gs-cream);
}
.proof-stat-n {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 400; color: var(--gs-cream);
  line-height: 1; letter-spacing: -.02em; margin-bottom: .5rem;
}
.proof-stat-label {
  font-size: .9375rem; font-weight: 300;
  color: rgba(245,237,217,.6); line-height: 1.55;
}

/* ─── WAITLIST ────────────────────────────────────────────── */
.waitlist { background: var(--gs-soil); }
.waitlist-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.waitlist .section-h { color: var(--gs-cream); text-align: center; }
.waitlist .section-body { margin: 0 auto 2.5rem; text-align: center; }

.toggle-group {
  display: flex; background: rgba(245,237,217,.08);
  border-radius: 8px; padding: 4px;
  width: fit-content; margin: 0 auto 2.25rem;
}
.toggle-btn {
  padding: .625rem 1.5rem; border-radius: 6px;
  font-size: .875rem; font-weight: 500;
  cursor: pointer; border: none;
  background: transparent; color: rgba(245,237,217,.5);
  font-family: var(--font-body);
  transition: all .2s ease; min-height: 44px;
}
.toggle-btn.on { background: var(--gs-cream); color: var(--gs-deep); }
.toggle-btn:focus-visible { outline: 2px solid rgba(245,237,217,.6); outline-offset: 2px; }

.waitlist-form { text-align: left; }
.waitlist-form .form-label { color: rgba(245,237,217,.65); }
.waitlist-form .form-input,
.waitlist-form .form-select,
.waitlist-form .form-textarea {
  background: rgba(245,237,217,.06);
  border-color: rgba(245,237,217,.12);
  color: var(--gs-cream);
}
.waitlist-form .form-input::placeholder { color: rgba(245,237,217,.22); }
.waitlist-form .form-input:focus,
.waitlist-form .form-select:focus {
  border-color: rgba(245,237,217,.45);
  box-shadow: 0 0 0 3px rgba(245,237,217,.07);
}
.waitlist-form .form-select option { background: var(--gs-soil); color: var(--gs-cream); }

.partner-block { display: none; }
.partner-block.show { display: block; }

.wl-note {
  font-size: .8rem; text-align: center;
  color: rgba(245,237,217,.3); margin-top: .875rem;
  font-style: italic;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--gs-deep);
  padding: 4.5rem 2.5rem 3rem;
  border-top: 1px solid rgba(245,237,217,.07);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,237,217,.07);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: 400;
  color: var(--gs-cream); margin-bottom: .875rem;
}
.footer-brand-p {
  font-size: .875rem; font-weight: 300;
  color: rgba(245,237,217,.45); line-height: 1.75;
  max-width: 270px;
}
.footer-col-title {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: rgba(245,237,217,.38); margin-bottom: 1.125rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-links a {
  font-size: .875rem; font-weight: 300;
  color: rgba(245,237,217,.55);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--gs-cream); }

.footer-bottom {
  max-width: 1280px; margin: 2.25rem auto 0;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
}
.footer-legal {
  font-size: .8rem; color: rgba(245,237,217,.28);
}
.footer-legal a {
  color: rgba(245,237,217,.38);
  text-decoration: underline; text-underline-offset: 2px;
}
.footer-legal a:hover { color: rgba(245,237,217,.65); }

/* ─── SUCCESS STATE ───────────────────────────────────────── */
.form-success {
  display: none; text-align: center;
  padding: 2.5rem 1rem;
}
.form-success.show { display: block; }
.success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gs-deep); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 22px; height: 22px; color: var(--gs-cream); }
.success-h {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--gs-cream); margin-bottom: .5rem;
}
.success-p { font-size: .9375rem; color: rgba(245,237,217,.55); }

/* ─── LEGAL PAGES ────────────────────────────────────────── */
.legal { background: var(--gs-cream); }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -.02em; color: var(--gs-soil);
  margin-bottom: .5rem;
}
.legal-updated {
  font-size: .875rem; color: var(--gs-mist);
  font-weight: 300; margin-bottom: 3rem;
}
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.4375rem; font-weight: 500;
  color: var(--gs-soil); line-height: 1.2;
  margin-top: 2.75rem; margin-bottom: .625rem;
}
.legal-prose p {
  font-size: .9375rem; font-weight: 300;
  color: var(--gs-canopy); line-height: 1.85;
  margin-bottom: 1rem;
}
.legal-prose ul {
  padding-left: 1.375rem; margin-bottom: 1rem;
}
.legal-prose li {
  font-size: .9375rem; font-weight: 300;
  color: var(--gs-canopy); line-height: 1.85;
  margin-bottom: .35rem;
}
.legal-prose a { color: var(--gs-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-prose strong { font-weight: 600; color: var(--gs-soil); }

/* ─── CANVAS HERO ─────────────────────────────────────────── */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: rgba(245,237,217,.28);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  opacity: 0;
  animation: heroScrollCue 3.2s ease-in-out infinite 2.2s forwards;
}
.hero-scroll svg { display: block; }
@keyframes heroScrollCue {
  0%   { opacity: 0; transform: translateX(-50%) translateY(0); }
  25%  { opacity: 1; }
  65%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  82%  { opacity: .6; transform: translateX(-50%) translateY(7px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

/* ─── HUB ─────────────────────────────────────────────────── */
.hub {
  background: var(--gs-soil);
  padding: 7rem 2.5rem;
}
.hub-head {
  max-width: 1280px;
  margin: 0 auto 4.5rem;
}
.hub-eyebrow {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(245,237,217,.27);
  font-family: var(--font-body);
  margin-bottom: .875rem;
}
.hub-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  font-weight: 300;
  color: var(--gs-cream);
  letter-spacing: -.022em;
  line-height: 1.1;
}
.hub-h em { font-style: italic; opacity: .6; }

.hub-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5px;
  background: rgba(245,237,217,.06);
}

.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 2.75rem;
  min-height: 400px;
  text-decoration: none;
  overflow: hidden;
  transition: background .5s var(--ease-out);
}
.hub-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245,237,217,0);
  transition: background .4s ease;
  pointer-events: none;
}
.hub-card:hover::after { background: rgba(245,237,217,.035); }
.hub-card:focus-visible {
  outline: 2px solid rgba(245,237,217,.45);
  outline-offset: -4px;
  z-index: 1;
}

.hub-product { background: linear-gradient(148deg, #0f2810 0%, #060e05 100%); }
.hub-how     { background: linear-gradient(148deg, #0b2412 0%, #050c04 100%); }
.hub-about   { background: linear-gradient(148deg, #122b14 0%, #070f06 100%); }
.hub-pilot   {
  grid-column: span 2;
  background: linear-gradient(138deg, #1f1209 0%, #0c0603 100%);
  min-height: 300px;
}
.hub-wait    {
  background: linear-gradient(148deg, #153810 0%, #091d08 100%);
  min-height: 300px;
}

.hub-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2.5rem 0 0;
  opacity: .055;
  transition: opacity .55s ease;
  pointer-events: none;
}
.hub-art svg { width: auto; height: 68%; max-height: 300px; }
.hub-card:hover .hub-art { opacity: .11; }

.hub-content { position: relative; z-index: 2; }
.hub-tag {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,237,217,.32);
  font-family: var(--font-body);
  margin-bottom: .875rem;
}
.hub-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 2.5vw, 2.875rem);
  font-weight: 400;
  color: var(--gs-cream);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}
.hub-title em { font-style: italic; opacity: .78; }
.hub-desc {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 300;
  color: rgba(245,237,217,.42);
  line-height: 1.72;
  margin-bottom: 1.875rem;
  max-width: 330px;
}
.hub-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,237,217,.45);
  transition: color .3s ease, gap .38s var(--ease-out);
}
.hub-card:hover .hub-cta { color: rgba(245,237,217,.8); gap: .75rem; }

/* ─── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--gs-soil);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 68% 90% at 88% 45%, rgba(26,74,21,.13) 0%, transparent 65%),
    radial-gradient(ellipse 42% 55% at 8% 82%, rgba(10,24,9,.55) 0%, transparent 58%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(5.5rem + 80px) 2.5rem 5.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero-text { max-width: 520px; }
.page-hero-eyebrow {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(245,237,217,.32);
  font-family: var(--font-body);
  margin-bottom: 1.375rem;
}
.page-hero-h {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.625rem);
  font-weight: 300;
  color: var(--gs-cream);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 1.625rem;
}
.page-hero-h em { font-style: italic; opacity: .7; }
.page-hero-sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(245,237,217,.52);
  line-height: 1.82;
  max-width: 420px;
}
.page-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-visual svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

/* ─── FOUNDERS ────────────────────────────────────────────── */
.founders { background: var(--gs-deep); }

/* text overrides for dark founders background */
.founders .eyebrow         { color: rgba(245,237,217,0.50); }
.founders .section-h       { color: var(--gs-cream); }
.founders .section-h em    { color: var(--gs-mist); }
.founders .founder-name    { color: var(--gs-cream); }
.founders .founder-role    { color: var(--gs-mist); }
.founders .founder-bio     { color: rgba(245,237,217,0.70); opacity: 1; }
.founders .founders-intro  { color: rgba(245,237,217,0.65); }
.founders .founder-team-cap { color: rgba(245,237,217,0.42); opacity: 1; }

.founders-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.founders-intro {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--gs-canopy);
  max-width: 52ch;
  margin: 1rem auto 0;
}

.founders-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4.5rem;
  align-items: start;
}

.founder-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--gs-soil);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: .375rem;
}

.founder-role {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gs-forest);
  margin-bottom: 1.625rem;
}

.founder-bio {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gs-soil);
  opacity: .72;
  max-width: 52ch;
}

/* ─── HERO PHOTO ──────────────────────────────────────────── */
.hero-photo {
  position: relative; z-index: 2;
  width: 420px; height: 517px; flex-shrink: 0;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 82% 88% at 52% 50%, black 38%, rgba(0,0,0,0.6) 58%, transparent 78%);
  mask-image: radial-gradient(ellipse 82% 88% at 52% 50%, black 38%, rgba(0,0,0,0.6) 58%, transparent 78%);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
  display: block;
}

/* ─── FOUNDER TEAM PHOTO ──────────────────────────────────── */
.founder-team-photo-wrap {
  border-radius: 8px; overflow: hidden;
  max-width: 780px; margin: 0 auto 4rem;
}
.founder-team-photo {
  width: 100%; display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover; object-position: center 38%;
}
.founder-team-cap {
  padding: .625rem 0 0;
  font-size: .8125rem; font-style: italic;
  color: var(--gs-canopy); opacity: .65;
  line-height: 1.55; text-align: center;
}

/* ─── FOUNDER STORY ───────────────────────────────────────── */
.founder-story-fig {
  margin-top: 2.5rem; border-radius: 6px; overflow: hidden;
  max-width: 420px;
}
.founder-story-img {
  width: 100%; display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover; object-position: center 30%;
}
.founder-story-cap {
  padding: .5rem 0 0;
  font-size: .8rem; font-style: italic;
  color: var(--gs-canopy); opacity: .6;
  line-height: 1.55;
}

/* ─── RECOGNITION ─────────────────────────────────────────── */
.recognition { background: var(--gs-deep); padding: 7rem 2.5rem; }
.recognition-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5.5rem; align-items: center;
}
.recognition-img-wrap {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 56px rgba(0,0,0,.38);
}
.recognition-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.recognition-eyebrow {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .11em; text-transform: uppercase;
  color: rgba(245,237,217,.38); margin-bottom: 1.25rem;
}
.recognition-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.875rem);
  font-weight: 300; color: var(--gs-cream);
  letter-spacing: -.03em; line-height: 1.08;
  margin-bottom: 1.375rem;
}
.recognition-h em { font-style: italic; opacity: .72; }
.recognition-p {
  font-size: .9375rem; font-weight: 300;
  color: rgba(245,237,217,.55); line-height: 1.82; max-width: 48ch;
}
.recognition-badge {
  display: inline-block;
  margin-top: 2rem; padding: .5rem 1.125rem;
  border: 1px solid rgba(245,237,217,.14);
  border-radius: 4px;
  font-size: .8125rem; font-weight: 400;
  color: rgba(245,237,217,.55); letter-spacing: .02em;
}

/* ─── ADVISORS ────────────────────────────────────────────── */
/* ─── FOUNDER ORIGIN SECTION ──────────────────────────────── */
.founder-origin { background: var(--gs-parchment); }
.founder-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.founder-origin-grid .founder-story-fig {
  margin: 0;
  max-width: 100%;
}
.founder-origin-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.founder-origin-p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gs-canopy);
  opacity: .8;
}

.advisors { background: var(--gs-birch); }

/* ─── ADVISORS PHOTO ──────────────────────────────────────── */
.advisors-photo-wrap {
  margin-bottom: 4rem; border-radius: 8px; overflow: hidden;
  aspect-ratio: 49/50;
}
.advisors-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  display: block;
}

/* ─── PRODUCT PHOTO BAND ──────────────────────────────────── */
.product-photo-band {
  margin-bottom: 4rem; border-radius: 8px; overflow: hidden;
}
.product-photo-band img {
  width: 100%; height: 400px;
  object-fit: cover; object-position: center 25%;
  display: block;
}

/* ─── PILOT PHOTO BAND ────────────────────────────────────── */
.pilot-photo-band {
  border-radius: 8px; overflow: hidden;
  margin-bottom: 3.5rem;
}
.pilot-photo-band img {
  width: 100%; height: 340px;
  object-fit: cover; object-position: center 40%;
  display: block;
}

/* ─── HOW-IT-WORKS VISUAL PANEL ──────────────────────────────── */
.hiw-visual-panel { display: flex; flex-direction: column; gap: 1.25rem; }

.hiw-putter-diagram svg { width: 100%; height: auto; display: block; }

/* ─── SENSOR SECTION ──────────────────────────────────────────── */
.hiw-device { background: var(--gs-cream); }
.hiw-device-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 7rem; align-items: center;
}
.hiw-device-art { display: flex; justify-content: center; }
.hiw-device-art svg { width: 100%; max-width: 155px; height: auto; display: block; }
.hiw-device-specs .section-h { margin-bottom: 1.125rem; }

.device-spec-list {
  list-style: none; margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 1.875rem;
}
.device-spec { display: flex; gap: 1.125rem; align-items: flex-start; }
.device-spec-icon {
  width: 42px; height: 42px; border-radius: 9px;
  background: var(--gs-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.device-spec-icon svg { width: 18px; height: 18px; color: var(--gs-deep); }
.device-spec-h {
  font-family: var(--font-display);
  font-size: 1.1875rem; font-weight: 500;
  color: var(--gs-soil); margin-bottom: .2rem;
}
.device-spec-p {
  font-size: .875rem; font-weight: 300;
  color: var(--gs-canopy); line-height: 1.72;
}

/* ─── SIGNAL SECTION ──────────────────────────────────────────── */
.hiw-signal { background: var(--gs-parchment); }
.hiw-signal-head { max-width: 580px; margin-bottom: 4rem; }
.signal-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.signal-card {
  background: var(--gs-cream); border-radius: 10px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--gs-mist);
}
.signal-card-on {
  background: var(--gs-deep); border-color: transparent;
}
.signal-wave { margin-bottom: 1.5rem; }
.signal-wave svg { width: 100%; height: auto; display: block; }
.signal-state-tag {
  display: inline-block;
  font-size: .6875rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 20px;
  margin-bottom: 1rem; font-family: var(--font-body);
}
.signal-state-searching { background: rgba(22,69,11,.08); color: var(--gs-canopy); }
.signal-state-nearing   { background: rgba(22,69,11,.15); color: var(--gs-forest); }
.signal-state-locked    { background: rgba(245,237,217,.12); color: rgba(245,237,217,.75); }
.signal-card-h {
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: 500;
  color: var(--gs-soil); line-height: 1.2;
  margin-bottom: .5rem;
}
.signal-card-on .signal-card-h { color: var(--gs-cream); }
.signal-card-p {
  font-size: .9rem; font-weight: 300;
  color: var(--gs-canopy); line-height: 1.75;
}
.signal-card-on .signal-card-p { color: rgba(245,237,217,.55); }

/* ─── HIW CTA STRIP ───────────────────────────────────────────── */
.hiw-cta-strip { background: var(--gs-soil); padding: 7rem 2.5rem; }
.hiw-cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
}
.hiw-cta-h {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 2.8vw, 2.875rem);
  font-weight: 300; color: var(--gs-cream);
  letter-spacing: -.025em; line-height: 1.12;
  margin-bottom: .875rem;
}
.hiw-cta-p {
  font-size: .9375rem; font-weight: 300;
  color: rgba(245,237,217,.5); line-height: 1.75;
}
.hiw-cta-actions { display: flex; gap: 1rem; flex-direction: column; white-space: nowrap; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { height: 280px; margin-top: 2rem; }
  .haptic-wrap { width: 240px; height: 240px; }
  .how-layout { grid-template-columns: 1fr; gap: 3rem; }
  .demo-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .hub-pilot { grid-column: span 2; }
  .hub-card { min-height: 340px; }
  .page-hero-inner { padding: calc(5rem + 80px) 2.5rem 5rem; }
  .hero-photo { width: 249px; height: 308px; }
  .recognition-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hiw-device-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hiw-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hiw-cta-actions { flex-direction: row; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.25rem; }
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 4rem 1.25rem; }
  .hero { padding: calc(4.5rem + 70px) 1.25rem 4rem; }
  .legal { padding-top: calc(4rem + 70px); }
  .waitlist { padding-top: calc(4rem + 70px); }
  .founder { grid-template-columns: 1fr; gap: 2rem; }
  .founder-img-wrap { max-width: 240px; }
  .demo { padding-top: calc(4rem + 70px); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(245,237,217,.07); }
  .stat:nth-child(odd)  { border-right: 1px solid rgba(245,237,217,.07); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .problem-cards { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hub { padding: 4rem 1.25rem; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-pilot { grid-column: span 1; }
  .hub-card, .hub-pilot, .hub-wait { min-height: 280px; }
  .hub-card { padding: 2.25rem 1.75rem; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: calc(4.5rem + 70px) 1.25rem 4rem; }
  .page-hero-visual { display: none; }
  .hero-scroll { display: none; }
  .hero-photo { width: 237px; height: 292px; margin: 0 auto; }
  .product-photo-band img { height: 240px; }
  .pilot-photo-band img { height: 200px; }
  .recognition { padding: 4rem 1.25rem; }
  .founder-story-fig { max-width: 100%; }
  .founder-origin-grid { grid-template-columns: 1fr; gap: 2rem; }
  .signal-cards { grid-template-columns: 1fr; }
  .hiw-cta-strip { padding: 4rem 1.25rem; }
  .hiw-cta-actions { flex-direction: column; }
}
