/* =============================================================
   EXECUTE — Modern grotesk build (augen-inspired)
   Light grey base, off-black ink, sans-only typography,
   Crimson accent (replacing augen's blue)
   ============================================================= */

:root {
  /* Surface palette (augen.pro tokens) */
  --black:        #000000;
  --off-black:    #0F1012;
  --grey-dark:    #1D1E20;
  --grey-light:   #EFEFEF;
  --grey-lighter: #F8F8F8;
  --off-white:    #F2F2F4;
  --white:        #FFFFFF;

  /* Execute accent palette */
  --crimson:      #C0292B;
  --crimson-deep: #9A1F21;
  --crimson-soft: #E0524F;
  --berkeley:     #1B365D;
  --green:        #00B982;
  --yellow:       #FCA311;

  /* Ink scale (alpha on off-black) */
  --ink-900: #0F1012;
  --ink-700: rgba(15, 16, 18, 0.78);
  --ink-500: rgba(15, 16, 18, 0.55);
  --ink-400: rgba(15, 16, 18, 0.42);
  --ink-300: rgba(15, 16, 18, 0.28);
  --ink-200: rgba(15, 16, 18, 0.14);

  /* On dark */
  --on-dark-900: rgba(255, 255, 255, 0.94);
  --on-dark-700: rgba(255, 255, 255, 0.72);
  --on-dark-500: rgba(255, 255, 255, 0.50);
  --on-dark-300: rgba(255, 255, 255, 0.28);
  --on-dark-200: rgba(255, 255, 255, 0.14);

  /* Type stacks */
  --font-base: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mark: "Playfair Display", "Times New Roman", Georgia, serif; /* logo wordmark only */

  /* Type scale */
  --t-display: clamp(64px, 11vw, 200px);   /* hero / massive */
  --t-h1:      clamp(44px, 7.2vw, 120px);  /* hero headline */
  --t-h2:      clamp(36px, 4.8vw, 80px);   /* section headline */
  --t-h3:      clamp(22px, 2.2vw, 32px);   /* sub-heading */
  --t-h4:      clamp(18px, 1.6vw, 22px);   /* small heading */
  --t-body:    clamp(15px, 1.1vw, 18px);
  --t-body-sm: clamp(14px, 0.95vw, 16px);
  --t-eyebrow: 12px;

  /* Layout */
  --inset-x: 5.1vw;
  --section-y: clamp(80px, 11vw, 180px);
  --hairline: rgba(15, 16, 18, 0.10);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 900px) {
  :root { --inset-x: 22px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html {
  font-family: var(--font-base);
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar { width: 0; height: 0; }
body {
  font-family: var(--font-base);
  font-size: var(--t-body);
  line-height: 1.45;
  color: var(--off-black);
  background: var(--grey-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01","kern","calt";
  overscroll-behavior: none;
  letter-spacing: -0.005em;
}
body::-webkit-scrollbar { width: 0; height: 0; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; color: inherit; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--crimson); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--crimson); color: var(--white); }

/* ---------- Inset ---------- */
.inset { padding-inline: var(--inset-x); }

/* ---------- Eyebrow — sized to match the section headline ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: var(--font-base);
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.022em;
  text-transform: none;
  color: var(--ink-500);
  text-wrap: balance;
}
.eyebrow .dot { display: none; }

/* ---------- Accent treatment (sans italic — matches the surrounding headline font) ---------- */
.accent-italic {
  font-family: var(--font-base);
  font-style: italic;
  font-weight: 500;
  color: var(--crimson);
  letter-spacing: -0.005em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--off-black);
  color: var(--white);
}
.btn-primary:hover { background: var(--crimson); }

.btn-accent {
  background: var(--crimson);
  color: var(--white);
}
.btn-accent:hover { background: var(--crimson-deep); }

.btn-ghost {
  background: transparent;
  color: var(--off-black);
  border-color: var(--ink-300);
}
.btn-ghost:hover { border-color: var(--off-black); }


/* =============================================================
   LOGO LOCKUP
   ============================================================= */
.lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.lockup-mark { width: 38px; display: block; }
.lockup-mark svg { width: 100%; height: auto; }
.logo-handle { fill: var(--off-black); }
.logo-blade  { fill: var(--crimson); }

/* The "Execute" wordmark — keeps Playfair to match the actual brand logo. */
.lockup-word {
  font-family: var(--font-mark);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.005em;
  color: var(--off-black);
}
.lockup-tag {
  font-family: var(--font-base);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-500);
}


/* =============================================================
   NAV — narrow centered header (condenses on scroll)
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  margin-inline: auto;
  width: 100%;
  max-width: 1024px;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: top 220ms var(--ease), max-width 220ms var(--ease),
              background-color 220ms var(--ease), border-color 220ms var(--ease),
              box-shadow 220ms var(--ease), border-radius 220ms var(--ease);
}
@media (min-width: 768px) {
  .nav { border: 1px solid transparent; }
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
          backdrop-filter: saturate(180%) blur(16px);
  border-color: var(--hairline);
}
@media (min-width: 768px) {
  .nav.is-scrolled {
    top: 16px;
    max-width: 896px;
    border-radius: 8px;
    box-shadow: 0 6px 24px -16px rgba(0, 0, 0, 0.18);
  }
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  transition: padding 220ms var(--ease), height 220ms var(--ease);
}
@media (min-width: 768px) {
  .nav-inner { height: 48px; }
  .nav.is-scrolled .nav-inner { padding: 0 8px; }
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px;
}
.nav-mark { width: 16px; display: block; }
.nav-mark svg { width: 100%; height: auto; }
.nav-wordmark {
  font-family: var(--font-mark);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--off-black);
  letter-spacing: -0.005em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  transition: background-color 200ms var(--ease), color 200ms var(--ease);
}
.nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--off-black);
}
.nav-link.is-active {
  color: var(--off-black);
  background: rgba(0, 0, 0, 0.05);
}

/* Legacy .nav-links retained for safety; matches new ghost-link style */
.nav-links { display: none; }

/* Slide-tabs nav (replaces .nav-links) */
.slide-tabs {
  position: relative;
  display: flex;
  width: fit-content;
  margin: 0 auto;
  padding: 4px;
  background: var(--white);
  border-radius: 999px;
  list-style: none;
}
.slide-tab {
  position: relative;
  z-index: 1;
  display: block;
}
.slide-tab a {
  display: block;
  padding: 8px 18px;
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-black);
  cursor: pointer;
  white-space: nowrap;
  transition: color 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-tab.is-active a,
.slide-tab:hover a {
  color: var(--white);
}
.slide-tabs-cursor {
  position: absolute;
  z-index: 0;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: 0;
  background: var(--off-black);
  border-radius: 999px;
  opacity: 0;
  transition:
    left  360ms cubic-bezier(0.16, 1, 0.3, 1),
    width 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 240ms ease;
  pointer-events: none;
}

.nav-cta {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--off-black);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  margin: 8px auto 0;
  max-width: 1180px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  pointer-events: auto;
}
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--off-black);
  padding: 10px 8px;
  border-radius: 12px;
}
.nav-mobile a:hover { background: var(--grey-lighter); }
.nav-mobile.is-open { display: flex; }
.nav-mobile .btn { margin-top: 6px; }


/* =============================================================
   SECTION SHELL
   ============================================================= */
.section { padding-block: var(--section-y); }

.section-grid {
  display: grid;
  grid-template-columns: minmax(200px, 22%) 1fr;
  gap: clamp(24px, 5vw, 88px);
  padding-inline: var(--inset-x);
  max-width: 1480px;
  margin-inline: auto;
}
@media (max-width: 900px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.section-aside {
  position: sticky;
  top: 96px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 900px) {
  .section-aside { position: static; }
}

/* Section title — large and bold for prominence */
.section-headline {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--off-black);
  margin-bottom: 18px;
  text-wrap: balance;
}
/* Changelog "entry description" typography — muted body */
.section-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-500);
  max-width: 60ch;
  margin-top: 0;
}
@media (min-width: 768px) {
  .section-intro { font-size: 16px; }
}


/* =============================================================
   HERO — centered, with animated gradient background
   ============================================================= */

/* Gradient component CSS variables (Execute brand defaults) */
:root {
  --gradient-bg-start: rgb(239, 239, 239); /* page grey-light #EFEFEF */
  --gradient-bg-end:   rgb(248, 248, 248); /* grey-lighter #F8F8F8 */
  --first-color:  192, 41, 43;            /* Crimson */
  --second-color: 27, 54, 93;             /* Berkeley Blue */
  --third-color:  154, 31, 33;            /* Crimson deep */
  --fourth-color: 224, 200, 180;          /* warm sand */
  --fifth-color:  245, 242, 234;          /* parchment */
  --pointer-color: 192, 41, 43;           /* Crimson */
  --blob-size: 80%;
  --blending-value: hard-light;
}

.hero {
  position: relative;
  padding-top: clamp(64px, 9vw, 140px);
  padding-bottom: clamp(72px, 10vw, 160px);
  overflow: hidden;
  background: linear-gradient(40deg, var(--gradient-bg-start), var(--gradient-bg-end));
  isolation: isolate;
}

/* Off-screen SVG holding the goo filter definition */
.goo-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.gradients-container {
  position: absolute;
  inset: 0;
  filter: url(#blurMe) blur(40px);
}
/* Safari fallback — goo filter is heavy/inconsistent */
.gradients-container.is-safari {
  filter: blur(48px);
}

.g {
  position: absolute;
  width: var(--blob-size);
  height: var(--blob-size);
  top: calc(50% - var(--blob-size) / 2);
  left: calc(50% - var(--blob-size) / 2);
  mix-blend-mode: var(--blending-value);
  transform-origin: center center;
}
.g-first {
  background: radial-gradient(circle at center, rgba(var(--first-color), 0.9) 0%, rgba(var(--first-color), 0) 50%) no-repeat;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}
.g-second {
  background: radial-gradient(circle at center, rgba(var(--second-color), 0.85) 0%, rgba(var(--second-color), 0) 50%) no-repeat;
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}
.g-third {
  background: radial-gradient(circle at center, rgba(var(--third-color), 0.85) 0%, rgba(var(--third-color), 0) 50%) no-repeat;
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}
.g-fourth {
  background: radial-gradient(circle at center, rgba(var(--fourth-color), 0.85) 0%, rgba(var(--fourth-color), 0) 50%) no-repeat;
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}
.g-fifth {
  background: radial-gradient(circle at center, rgba(var(--fifth-color), 0.85) 0%, rgba(var(--fifth-color), 0) 50%) no-repeat;
  transform-origin: calc(50% - 800px) calc(50% + 800px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
}
.g-pointer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(var(--pointer-color), 0.8) 0%, rgba(var(--pointer-color), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending-value);
  opacity: 0.7;
  pointer-events: none;
}

@keyframes moveHorizontal {
  0%   { transform: translateX(-50%) translateY(-10%); }
  50%  { transform: translateX( 50%) translateY( 10%); }
  100% { transform: translateX(-50%) translateY(-10%); }
}
@keyframes moveInCircle {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}
@keyframes moveVertical {
  0%   { transform: translateY(-50%); }
  50%  { transform: translateY( 50%); }
  100% { transform: translateY(-50%); }
}

/* Subtle vignette to anchor hero text over the gradient */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 35%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .g, .g-pointer { animation: none !important; }
}
@media (max-width: 900px) {
  .gradients-container { filter: blur(40px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-inline: var(--inset-x);
  max-width: 1480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(28px, 3.5vw, 56px);
}

/* Light text on dark animated background */
.hero .lockup-word { color: var(--white); }
.hero .lockup-tag { color: rgba(255, 255, 255, 0.62); }
.hero .lockup .logo-handle { fill: var(--white); }
.hero-headline {
  color: var(--white);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.32);
}
.hero .accent-italic { color: var(--crimson-soft); }
.hero-subhead {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.32);
}
/* Multi-paragraph subhead: vertical rhythm between paragraphs */
.hero-subhead p + p { margin-top: 0.9em; }
.hero .form-helper { color: rgba(255, 255, 255, 0.62); }

/* Email form on the dark hero */
.hero .email-form {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .email-form:focus-within {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.10);
}
.hero .email-form input { color: var(--white); }
.hero .email-form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.hero .email-form button {
  background: var(--crimson);
  color: var(--white);
}
.hero .email-form button:hover { background: var(--crimson-deep); color: var(--white); }
.hero .email-form.is-success { border-color: var(--green); }
.hero .email-form.is-success button { background: var(--green); color: var(--white); }

.hero-lockup .lockup { gap: 22px; }
.hero-lockup .lockup-mark { width: clamp(96px, 9vw, 140px); }
.hero-lockup .lockup-word { font-size: clamp(72px, 8.5vw, 140px); }
.hero-lockup .lockup-tag { font-size: 13px; letter-spacing: 0.30em; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 185, 130, 0.18);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.85); opacity: 0.7; }
}

.hero-headline {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: var(--t-h1);
  line-height: 0.96;
  letter-spacing: -0.034em;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-headline .accent-italic {
  display: block;
  margin-top: 0.06em;
  font-size: 0.86em;
}

.hero-subhead {
  font-size: var(--t-body);
  line-height: 1.55;
  max-width: 60ch;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}


/* =============================================================
   EMAIL FORM — pill-style
   ============================================================= */
.email-form {
  display: flex;
  align-items: stretch;
  width: min(560px, 100%);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.email-form:focus-within {
  border-color: var(--off-black);
  box-shadow: 0 0 0 4px rgba(15, 16, 18, 0.08);
}
.email-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--off-black);
}
.email-form input::placeholder { color: var(--ink-400); }
.email-form button {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 14px;
  background: var(--off-black);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  transition: background-color 220ms var(--ease);
  white-space: nowrap;
}
.email-form button:hover { background: var(--crimson); }
.email-form.is-success button { background: var(--green); }
.email-form.is-success { border-color: var(--green); }

.form-helper {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
}

/* On dark surfaces */
.on-dark .email-form {
  background: rgba(255,255,255,0.06);
  border-color: var(--on-dark-200);
}
.on-dark .email-form input { color: var(--white); }
.on-dark .email-form input::placeholder { color: var(--on-dark-500); }
.on-dark .email-form button { background: var(--white); color: var(--off-black); }
.on-dark .email-form button:hover { background: var(--crimson); color: var(--white); }
.on-dark .form-helper { color: var(--on-dark-500); }


/* =============================================================
   PROBLEM
   ============================================================= */
.section-problem {
  background: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Aurora background — vanilla port of AuroraBackground (shadcn/ui).
   Two repeating-linear-gradient layers (white stripes + blue/violet aurora),
   blurred and inverted, with a difference-blended ::after that drifts. */
.aurora-bg-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora-bg-inner {
  /* Execute brand aurora palette (replaces Tailwind blue/indigo/violet) */
  --aurora-shadow:      #0F1012;   /* Storm Black — dark striations */
  --aurora-transparent: transparent;
  --aurora-crimson:     #C0292B;
  --aurora-crimson-2:   #E0524F;   /* Crimson Soft */
  --aurora-berkeley:    #1B365D;
  --aurora-berkeley-2:  #4D7CB8;   /* lighter Berkeley for aurora visibility */
  --aurora-sand:        #E0CCBB;

  --shadow-gradient: repeating-linear-gradient(
    100deg,
    var(--aurora-shadow) 0%, var(--aurora-shadow) 7%,
    var(--aurora-transparent) 10%, var(--aurora-transparent) 12%,
    var(--aurora-shadow) 16%
  );
  --aurora-stripes: repeating-linear-gradient(
    100deg,
    var(--aurora-crimson) 10%,
    var(--aurora-berkeley-2) 15%,
    var(--aurora-crimson-2) 20%,
    var(--aurora-sand) 25%,
    var(--aurora-berkeley) 30%
  );

  position: absolute;
  inset: -10px;
  background-image: var(--shadow-gradient), var(--aurora-stripes);
  background-size: 300%, 200%;
  background-position: 50% 50%, 50% 50%;
  filter: blur(10px);
  opacity: 0.45;
  will-change: transform;

  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, #000 10%, transparent 70%);
          mask-image: radial-gradient(ellipse at 100% 0%, #000 10%, transparent 70%);
}
.aurora-bg-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--shadow-gradient), var(--aurora-stripes);
  background-size: 200%, 100%;
  background-attachment: fixed;
  mix-blend-mode: difference;
  animation: auroraDrift 60s linear infinite;
}
@keyframes auroraDrift {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 350% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .aurora-bg-inner::after { animation: none; }
}

/* Keep problem-section content above the aurora */
.section-problem > .section-grid {
  position: relative;
  z-index: 1;
}

.problem-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(40px, 5vw, 80px);
}
.problem-row {
  display: grid;
  grid-template-columns: minmax(56px, 6vw) 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(28px, 4vw, 56px) 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.problem-row:last-child { border-bottom: 1px solid var(--hairline); }

.problem-num {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1;
  color: var(--ink-400);
  letter-spacing: -0.005em;
  font-feature-settings: "tnum" 1;
}
.problem-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3vw, 56px);
}
@media (max-width: 900px) {
  .problem-content { grid-template-columns: 1fr; gap: 14px; }
}
.problem-title {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: var(--t-h3);
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--off-black);
  text-wrap: balance;
  max-width: 24ch;
}
.problem-body {
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 56ch;
}


/* =============================================================
   HOW IT WORKS — light card with soft yellow glow
   ============================================================= */
.section-how {
  background: var(--grey-light);
  color: var(--off-black);
  padding-block: clamp(96px, 13vw, 220px);
  border-radius: clamp(20px, 2vw, 32px);
  margin: clamp(20px, 2vw, 36px) clamp(12px, 1.4vw, 24px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-how .section-headline { color: var(--off-black); }
.section-how .section-intro    { color: var(--ink-700); }
.section-how .eyebrow          { color: var(--ink-500); }

.how-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at center, #FFF991 0%, transparent 70%);
  opacity: 0.6;
  mix-blend-mode: multiply;
}
.section-how > .section-grid {
  position: relative;
  z-index: 1;
}

.how-list { display: grid; grid-template-columns: 1fr; }
.how-row {
  display: grid;
  grid-template-columns: minmax(80px, 8vw) 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(36px, 5vw, 72px) 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.how-row:last-child { border-bottom: 1px solid var(--hairline); }
.how-num {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 112px);
  line-height: 0.92;
  color: var(--crimson);
  letter-spacing: -0.05em;
  font-feature-settings: "tnum" 1;
}
.how-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
}
@media (max-width: 900px) {
  .how-row { grid-template-columns: minmax(60px, 11vw) 1fr; }
  .how-content { grid-template-columns: 1fr; gap: 14px; }
}
.how-title {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: var(--t-h3);
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--off-black);
  text-wrap: balance;
  max-width: 22ch;
}
.how-body {
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 56ch;
}


/* =============================================================
   WHY DIFFERENT — soft yellow glow over white
   ============================================================= */
.section-why {
  background: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-why > .section-grid {
  position: relative;
  z-index: 1;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2vw, 32px);
  align-items: stretch;
  margin-top: clamp(24px, 3vw, 48px);
}
@media (max-width: 900px) {
  .compare { grid-template-columns: 1fr; gap: 16px; }
}

.compare-col {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
}
.compare-primary { background: var(--white); }
.compare-secondary {
  background: transparent;
  border-style: dashed;
  border-color: var(--ink-300);
}

.compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.compare-primary .compare-tag {
  background: rgba(192, 41, 43, 0.10);
  color: var(--crimson);
}
.compare-secondary .compare-tag {
  background: transparent;
  color: var(--ink-400);
  border: 1px dashed var(--ink-300);
}

.compare-heading {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: var(--t-h3);
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--off-black);
  margin-bottom: 22px;
  text-wrap: balance;
  max-width: 24ch;
}
.compare-secondary .compare-heading { color: var(--ink-500); }

.compare-list { display: flex; flex-direction: column; }
.compare-list li {
  position: relative;
  padding: 14px 0 14px 24px;
  border-top: 1px solid var(--hairline);
  font-size: var(--t-body-sm);
  line-height: 1.5;
  color: var(--off-black);
}
.compare-list li:first-child { border-top: none; padding-top: 0; }
.compare-list li:first-child::before { top: 5px; }
.compare-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 21px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
}
.compare-secondary .compare-list li {
  color: var(--ink-500);
  border-top-style: dashed;
  border-top-color: var(--ink-200);
}
.compare-secondary .compare-list li::before {
  background: transparent;
  border: 1px solid var(--ink-300);
}


/* =============================================================
   FOUNDATION — STATS
   ============================================================= */
.section-foundation {
  background: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-foundation > .foundation-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--inset-x);
}
.foundation-headline {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--off-black);
  margin-bottom: 64px;
  text-wrap: balance;
}
@media (min-width: 640px)  { .foundation-headline { font-size: 20px; } }
@media (min-width: 1024px) { .foundation-headline { font-size: 36px; line-height: 1.2; letter-spacing: -0.012em; } }
.foundation-subdesc {
  color: var(--ink-500);
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 640px)  { .foundation-subdesc { font-size: 16px; } }
@media (min-width: 1024px) { .foundation-subdesc { font-size: 36px; } }

.foundation-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .foundation-stats { grid-template-columns: repeat(3, 1fr); }
}
.foundation-stat-num {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  color: var(--off-black);
  letter-spacing: -0.012em;
}
.foundation-stat-heading {
  font-size: 16px;
  color: var(--ink-700);
  margin-top: 6px;
  font-weight: 500;
}
.foundation-stat-body {
  font-size: 14px;
  color: var(--ink-500);
  margin-top: 4px;
  line-height: 1.5;
  max-width: 30ch;
}
.foundation-chart {
  width: 100%;
  height: clamp(160px, 18vw, 220px);
  margin-top: 32px;
}
.foundation-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(40px, 5vw, 80px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat {
  padding: clamp(32px, 4vw, 64px) clamp(20px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: none; }
@media (max-width: 900px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--hairline); }
  .stat:last-child { border-bottom: none; }
}

.stat-num {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: var(--t-display);
  line-height: 0.86;
  color: var(--off-black);
  letter-spacing: -0.05em;
  font-feature-settings: "tnum" 1;
  display: inline-flex;
  align-items: baseline;
}
.stat-percent {
  font-size: 0.5em;
  margin-left: 4px;
  color: var(--crimson);
  font-weight: 500;
}
.stat-heading {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: var(--t-h4);
  letter-spacing: -0.012em;
  color: var(--off-black);
}
.stat-body {
  font-size: var(--t-body-sm);
  line-height: 1.5;
  color: var(--ink-700);
  max-width: 30ch;
}


/* =============================================================
   STATUS — WHERE WE ARE NOW
   ============================================================= */
.section-status { background: var(--grey-light); }

.status-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(32px, 4vw, 64px);
  gap: clamp(12px, 1.4vw, 20px);
}
.status-item {
  display: grid;
  grid-template-columns: minmax(120px, 13%) 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(22px, 3vw, 36px);
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  background: var(--white);
  align-items: start;
}
.status-item.is-pending {
  background: transparent;
  border-style: dashed;
  border-color: var(--ink-200);
}

@media (max-width: 900px) {
  .status-item { grid-template-columns: 1fr; gap: 12px; }
}

.status-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: start;
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}
.status-item.is-active .status-flag {
  color: var(--green);
  background: rgba(0, 185, 130, 0.10);
}
.status-item.is-active .status-flag::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 185, 130, 0.20);
}
.status-item.is-pending .status-flag {
  color: var(--ink-400);
  background: transparent;
  border: 1px dashed var(--ink-300);
}
.status-item.is-pending .status-flag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1px solid var(--ink-300);
}

.status-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 56px);
}
@media (max-width: 900px) {
  .status-content { grid-template-columns: 1fr; gap: 12px; }
}

.status-title {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: var(--t-h4);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--off-black);
  text-wrap: balance;
  max-width: 26ch;
}
.status-item.is-pending .status-title { color: var(--ink-500); }
.status-body {
  font-size: var(--t-body-sm);
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 56ch;
}
.status-item.is-pending .status-body { color: var(--ink-500); }


/* =============================================================
   WAITLIST CTA — animated brand-color blobs over white
   ============================================================= */
.section-waitlist {
  background: var(--white);
  color: var(--off-black);
  padding-block: clamp(96px, 12vw, 200px);
  border-radius: clamp(20px, 2vw, 32px);
  margin: clamp(20px, 2vw, 36px) clamp(12px, 1.4vw, 24px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-waitlist > .waitlist-inner {
  position: relative;
  z-index: 1;
}

/* Spinning blob ring — vanilla port of the AnimatedBlobs component.
   Colors swapped to the Execute palette (Crimson + Berkeley variants). */
.waitlist-blobs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.waitlist-blobs-stack {
  display: grid;
  grid-template-areas: "stack";
  animation: blob-spin 5s linear infinite;
}
.waitlist-blob {
  grid-area: stack;
  display: block;
  aspect-ratio: 1;
  height: 80vmin;
  --blob-border-radius: 115% 140% 145% 110% / 125% 140% 110% 125%;
  --blob-border-width: 5vmin;
  background-size: calc(100% + var(--blob-border-width) * 2);
  background-repeat: no-repeat;
  background-position: center;
  border: var(--blob-border-width) solid transparent;
  border-radius: var(--blob-border-radius);
  mask-image: linear-gradient(transparent, transparent), linear-gradient(black, white);
  -webkit-mask-image: linear-gradient(transparent, transparent), linear-gradient(black, white);
  mask-clip: padding-box, border-box;
  -webkit-mask-clip: padding-box, border-box;
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  mix-blend-mode: screen;
  filter: blur(1vmin);
  opacity: 0.45;
}
.waitlist-blob-1 {
  background-color: #C0292B;
  background-image: linear-gradient(#C0292B, #E0524F, #C0292B);
  transform: rotate(30deg) scale(1.03);
}
.waitlist-blob-2 {
  background-color: #1B365D;
  background-image: linear-gradient(#1B365D, #4D7CB8, #1B365D);
  transform: rotate(60deg) scale(0.95);
}
.waitlist-blob-3 {
  background-color: #9A1F21;
  background-image: linear-gradient(#9A1F21, #C0292B, #9A1F21);
  transform: rotate(90deg) scale(0.97);
}
.waitlist-blob-4 {
  background-color: #0E1B30;
  background-image: linear-gradient(#0E1B30, #1B365D, #0E1B30);
  transform: rotate(120deg) scale(1.02);
}
@keyframes blob-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .waitlist-blobs-stack { animation: none; }
}
.waitlist-inner {
  padding-inline: var(--inset-x);
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
@media (max-width: 900px) {
  .waitlist-inner { grid-template-columns: 1fr; gap: 32px; }
}

.waitlist-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 18px;
}
.waitlist-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--crimson);
}
.waitlist-headline {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: var(--t-h1);
  line-height: 0.96;
  letter-spacing: -0.034em;
  color: var(--off-black);
  max-width: 12ch;
  text-wrap: balance;
}
.waitlist-headline .accent-italic {
  display: block;
  color: var(--crimson);
  font-style: italic;
}
.waitlist-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 540px;
  justify-self: end;
  width: 100%;
}
@media (max-width: 900px) { .waitlist-side { justify-self: start; } }
.waitlist-intro {
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink-700);
}


/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--off-black);
  color: var(--on-dark-700);
  padding: clamp(64px, 8vw, 128px) 0 40px;
}
.footer-inner {
  padding-inline: var(--inset-x);
  max-width: 1480px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--on-dark-200);
}
.footer-brand .lockup { align-items: flex-start; gap: 16px; }
.lockup-footer .lockup-mark { width: 56px; }
.lockup-footer .lockup-word {
  color: var(--white);
  font-size: clamp(40px, 4vw, 64px);
}
.lockup-footer .logo-handle { fill: var(--white); }
.lockup-footer .logo-blade  { fill: var(--crimson); }
.lockup-footer .lockup-tag { color: var(--on-dark-500); }

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.footer-email {
  font-family: var(--font-base);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding-bottom: 2px;
}
.footer-email::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}
.footer-email:hover::after { transform: scaleX(1); }
.footer-copy {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--on-dark-500);
}

.footer-disclaimer {
  padding-inline: var(--inset-x);
  padding-top: clamp(24px, 3vw, 40px);
  max-width: 1480px;
  margin-inline: auto;
}
.footer-disclaimer p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--on-dark-500);
  max-width: 100ch;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-meta { align-items: flex-start; }
}


/* =============================================================
   ALTERNATING SECTION BACKGROUNDS (Beams + Flickering Grid)
   Beams sections are dark; Flicker sections are light.
   Layers are absolutely positioned behind .section-grid content.
   ============================================================= */
.beams-bg-layer,
.flicker-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.beams-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(15px);
}
.flicker-bg-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Dark section style for any Beams section */
.section.is-beams {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section.is-beams > .section-grid,
.section.is-beams > .foundation-inner {
  position: relative;
  z-index: 1;
}

/* Light section style for any Flicker section */
.section.is-flicker {
  background: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section.is-flicker > .section-grid,
.section.is-flicker > .foundation-inner {
  position: relative;
  z-index: 1;
}

/* Text recolor inside Beams (dark) sections */
.is-beams .section-headline,
.is-beams .problem-title,
.is-beams .compare-heading,
.is-beams .status-title,
.is-beams .how-title { color: var(--white); }

.is-beams .section-intro,
.is-beams .problem-body,
.is-beams .compare-list li,
.is-beams .status-body,
.is-beams .how-body { color: rgba(255, 255, 255, 0.85); }

.is-beams .eyebrow { color: rgba(255, 255, 255, 0.55); }
.is-beams .problem-num { color: rgba(255, 255, 255, 0.34); }

/* Compare cards on dark */
.is-beams .compare-col {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.is-beams .compare-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}
.is-beams .compare-secondary .compare-heading,
.is-beams .compare-secondary .compare-list li {
  color: rgba(255, 255, 255, 0.50);
}
.is-beams .compare-tag {
  border-color: rgba(255, 255, 255, 0.18);
}
.is-beams .compare-secondary .compare-tag {
  color: rgba(255, 255, 255, 0.50);
}

/* Status items on dark */
.is-beams .status-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.is-beams .status-item.is-pending {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}
.is-beams .status-item.is-pending .status-title,
.is-beams .status-item.is-pending .status-body { color: rgba(255, 255, 255, 0.55); }
.is-beams .status-item.is-pending .status-flag {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.25);
}


/* =============================================================
   GLOW VERSION — uniform yellow-glow on every middle section.
   Active only when <body class="glow-version"> is set.
   ============================================================= */
body.glow-version .section-how {
  background: var(--white);
}
body.glow-version .section-status {
  background: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
body.glow-version .section-status > .section-grid {
  position: relative;
  z-index: 1;
}


/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-eyebrow .dot { animation: none; }
}


/* =============================================================
   RESPONSIVE — top-level overrides
   ============================================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .slide-tabs { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { grid-template-columns: 1fr auto; padding: 6px 6px 6px 14px; }

  .hero-headline { max-width: 14ch; }
  .section-how { margin: 12px 8px; }
  .section-waitlist { margin: 12px 8px; }
}
