/* ShiftFast: BEM mobile-first stylesheet · Electric Type */

/* ─── Custom properties (shiftFast design tokens) ─────────────────────────── */
:root {
  --bg:             #0F0F0E;
  --bg-soft:        #161614;
  --bg-deep:        #161614;
  --bg-card:        #1C1C19;
  --surface:        #1C1C19;
  --surface-warm:   #1C1C19;
  --line:           #2A2A26;
  --border:         #2A2A26;
  --border-soft:    rgba(247, 246, 238, 0.08);
  --fg:             #F7F6EE;
  --fg-dim:         #A8A79C;
  --fg-mute:        #6E6D64;
  --text:           #F7F6EE;
  --ink:            #0F0F0E;
  --muted:          #A8A79C;
  --acid:           #F0FF26;
  --acid-deep:      #D9E800;
  --primary:        #F0FF26;
  --primary-hover:  #D9E800;
  --primary-soft:   rgba(240, 255, 38, 0.12);
  --success:        #5CB88A;
  --error:          #E85D5D;
  --radius:         2px;
  --radius-lg:      2px;
  --max-w:          1280px;
  --pad:            24px;
  --transition:     0.2s ease;
  --shadow-soft:    0 1px 0 rgba(0, 0, 0, 0.35);
  --shadow-lift:    0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-cta:     0 0 0 4px rgba(240, 255, 38, 0.2);
  --font-display:   'Archivo Black', 'Archivo', sans-serif;
  --font-body:      'Archivo', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, monospace;
  --font-serif-i:   'Instrument Serif', Georgia, serif;
}

/* ─── Reset & base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: none;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

/* ─── Top bar + main nav ─────────────────────────────────────────────────── */
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 48px);
  max-width: 1280px;
  margin: 0 auto;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 999px;
  margin-right: 8px;
  box-shadow: 0 0 12px var(--acid);
  vertical-align: middle;
}

.mono-sm {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-mute);
}

.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 500;
}

.serif-i {
  font-family: var(--font-serif-i);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hi {
  background: var(--acid);
  color: var(--ink);
  padding: 0 0.18em;
  display: inline-block;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.header.site-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(16px, 4vw, 48px);
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.main-nav__logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

a.main-nav__logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.main-nav__logo-accent {
  color: var(--acid);
}

.main-nav__links a.main-nav__link--current,
.main-nav__links a[aria-current="page"] {
  color: var(--acid);
}

.main-nav__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 36px);
  margin: 0;
  padding: 0;
}

.main-nav__links a {
  font-size: 14px;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.12s;
}

.main-nav__links a:hover {
  color: var(--acid);
}

.main-nav__cta {
  background: var(--acid);
  color: var(--ink);
  padding: 10px 18px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.main-nav__cta:hover {
  background: #fff;
  color: var(--ink);
}

@media (max-width: 720px) {
  .main-nav__links {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

/* Viewports up to small tablet / phone landscape: pin header using native window scroll + sticky. */
@media (max-width: 1024px) {
  /*
   * CRITICAL: do NOT set overflow (even overflow-x: hidden) on html or body.
   * iOS Safari silently disables `position: sticky` on descendants whenever html
   * or body has any non-visible overflow value: the header appears to scroll
   * away with the page. Horizontal overflow, if any, must be contained at a
   * deeper wrapper (e.g. `.funnel`), never on the root elements.
   *
   * Sticky + native window scroll is the most reliable header pin on iOS. No
   * body-scroll hack, no position: fixed rubber-band bug, no JS needed.
   */
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 80;
    width: 100%;
    max-width: 100%;
    padding-top: env(safe-area-inset-top, 0px);
  }

  /* Sticky header occupies natural flow space; no padding offset needed */
  main.funnel {
    padding-top: 0;
    /* Contain horizontal overflow here instead of on html/body (see note above) */
    overflow-x: hidden;
  }

  .static-page__content {
    padding: 48px 24px 80px;
    overflow-x: hidden;
  }

  /*
   * Ensure every active step fills the viewport below the header.
   * Use dvh (dynamic viewport height) so iOS Safari's address-bar show/hide
   * behaviour doesn't leave content taller than the visible area: otherwise
   * the body becomes scrollable and the fixed header rubber-bands off screen.
   * vh fallback for older browsers.
   */
  .step--active {
    min-height: calc(100vh - var(--site-header-offset, 104px));
    min-height: calc(100dvh - var(--site-header-offset, 104px));
  }
}

/* ─── Android only (html.device-android from index.html; iPhone not matched) ─ */
html.device-android .site-header {
  padding-top: env(safe-area-inset-top, 0px);
}

html.device-android .main-nav__logo {
  flex-shrink: 0;
}

html.device-android .problem__headline {
  line-height: 1.16;
  margin-bottom: 10px;
}

html.device-android .problem__subheading {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 8px;
}

html.device-android .problem__textarea {
  font-size: 14px;
  line-height: 1.32;
  /* Short box: wrapped placeholder + bottom strip for Improve badge only (avoids a tall empty band under the hint). */
  min-height: 126px;
  padding: 12px 14px 40px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Android Chrome: empty field + long placeholder must not show an inner scrollbar. */
html.device-android .problem__textarea:placeholder-shown {
  overflow-y: hidden;
}

html.device-android .problem__textarea:not(:placeholder-shown) {
  overflow-y: auto;
}

html.device-android .problem__improve-badge {
  bottom: 8px;
  right: 8px;
  top: auto;
  padding: 4px 8px 4px 6px;
  font-size: 10px;
}

html.device-android .problem__improve-badge-icon {
  font-size: 12px;
}

html.device-android .problem__textarea::placeholder {
  font-size: 12.5px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 500;
  color: #9ca3af;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

/* ─── Funnel container ───────────────────────────────────────────────────── */
.funnel {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad) 60px;
}

/* ─── Step visibility & transitions ─────────────────────────────────────── */
.step {
  display: none;
  opacity: 0;
}

.step--active {
  display: block;
  animation: fadeIn var(--transition) forwards;
}

.step--exit {
  animation: fadeOut var(--transition) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ─── Shared button ──────────────────────────────────────────────────────── */
.btn {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 14px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.005em;
  cursor: pointer;
  text-align: center;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform 0.15s ease;
}

.btn--primary {
  background-color: var(--acid);
  background-image: none;
  color: var(--ink);
  border-color: transparent;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  border-radius: 0;
  box-shadow: none;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-image: none;
  background-color: var(--acid-deep);
  box-shadow: 0 0 0 4px rgba(240, 255, 38, 0.2);
  transform: none;
  outline: none;
}

.btn--primary:active {
  transform: translateY(1px);
  box-shadow: none;
}

.btn--primary:disabled {
  opacity: 1;
  background-image: none;
  background-color: transparent;
  color: var(--fg-mute);
  border: 1px solid var(--line);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn--primary:disabled:hover,
.btn--primary:disabled:focus-visible {
  background-color: transparent;
  color: var(--fg-mute);
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.btn--outline-primary {
  background-color: transparent;
  color: var(--acid);
  border: 1px solid var(--line);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn--outline-primary:hover,
.btn--outline-primary:focus-visible {
  background-color: rgba(240, 255, 38, 0.08);
  color: var(--acid);
  border-color: var(--acid);
}

.btn--outline-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn--outline-primary:disabled:hover,
.btn--outline-primary:disabled:focus-visible {
  background-color: transparent;
  color: var(--acid);
  border-color: var(--line);
}

.btn--ghost {
  background-color: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-size: 15px;
  min-height: 44px;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--text);
  border-color: var(--muted);
}

/* ─── Loader ─────────────────────────────────────────────────────────────── */
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
  min-height: 28px;
}

.loader--hidden { display: none; }

.loader__dot {
  display: inline-block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  transform: translate3d(0, 0, 0);
  animation: shiftfast_loader_dot 0.9s infinite ease-in-out;
  will-change: transform, opacity;
}

.loader__dot:nth-child(2) { animation-delay: 0.15s; }
.loader__dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes shiftfast_loader_dot {
  0%,
  60%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.35;
  }
  30% {
    transform: translate3d(0, -10px, 0);
    opacity: 1;
  }
}

/* ─── Error message ──────────────────────────────────────────────────────── */
.error-message {
  margin-top: 16px;
  padding: 16px;
  background-color: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: var(--radius);
  text-align: center;
}

.error-message--hidden { display: none; }

.error-message__text {
  color: var(--error);
  font-size: 15px;
  margin-bottom: 12px;
}

.error-message__retry {
  display: inline-block;
  width: auto;
  padding: 8px 20px;
}

/* ─── Step 1: Hero + intake (Electric Type) ─────────────────────────────── */
.hero {
  padding: 48px 0 56px;
  border-top: none;
}

@media (min-width: 1025px) {
  .hero {
    padding: 96px 0 80px;
  }
}

.problem__headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 11vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  color: var(--fg);
  margin-bottom: 24px;
  text-align: left;
  font-weight: 400;
}

.problem__headline-line {
  display: block;
}

.problem__subheading {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--fg-dim);
  margin-bottom: 0;
  line-height: 1.45;
  text-align: left;
  max-width: 640px;
  font-weight: 400;
}

.problem__subheading strong {
  color: var(--fg);
  font-weight: 500;
}

.caret {
  display: inline-block;
  width: 0.5em;
  height: 0.82em;
  background: var(--acid);
  margin-left: 6px;
  vertical-align: baseline;
  animation: sf-blink-caret 1s steps(2, start) infinite;
}

@keyframes sf-blink-caret {
  to { visibility: hidden; }
}

.problem__split.split {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 1025px) {
  .problem__split.split {
    margin-top: 64px;
    grid-template-columns: 1.35fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
}

.input-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 24px;
}

.input-card__label {
  color: var(--acid);
  margin-bottom: 14px;
}

.input-card__label-mark {
  color: var(--acid);
}

.problem__input-wrap {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.problem__input-wrap .problem__textarea {
  padding-bottom: 52px;
}

.problem__improve-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  top: auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 5px 10px 5px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background-color: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.problem__improve-badge:hover,
.problem__improve-badge:focus-visible {
  color: var(--acid);
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(240, 255, 38, 0.12);
  outline: none;
}

.problem__improve-badge:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
}

.problem__improve-badge[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.75;
}

.problem__improve-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--acid);
}

.problem__improve-badge-icon i {
  display: block;
  line-height: 1;
}

.problem__improve-badge-label {
  white-space: nowrap;
}

.problem__loader {
  padding: 8px 0 2px;
}

.problem__textarea {
  width: 100%;
  min-height: 128px;
  padding: 18px 18px 52px;
  background-color: var(--bg-soft);
  border: none;
  border-radius: 0;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  resize: vertical;
  box-shadow: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.problem__input-wrap:has(.too-vague:not([hidden])) .problem__textarea {
  border-bottom: 1px solid var(--line);
}

/* Phones / narrow funnel: taller than desktop default (iPhone; Android uses html.device-android rules below). */
@media (max-width: 1024px) {
  .problem__textarea {
    min-height: 186px;
  }

  .problem__textarea:placeholder-shown {
    overflow-y: hidden;
  }

  .problem__textarea:not(:placeholder-shown) {
    overflow-y: auto;
  }

  .problem__textarea::placeholder {
    line-height: 1.45;
  }
}

.problem__textarea::placeholder {
  color: var(--fg-mute);
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.97em;
  opacity: 1;
}

.problem__input-wrap:hover {
  border-color: var(--fg-mute);
}

.problem__textarea:focus {
  outline: none;
}

.problem__input-wrap:focus-within {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(240, 255, 38, 0.15);
}

.input-helper {
  margin-top: 14px;
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.5;
}

.input-helper em {
  font-family: var(--font-serif-i);
  font-style: italic;
  color: var(--acid);
  font-size: 15px;
}

.input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  background: transparent;
  border: 1px solid var(--line);
  padding: 7px 12px;
  cursor: pointer;
  transition: border-color 0.12s, color 0.12s, background 0.12s;
  border-radius: 0;
}

.chip:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.chip.active {
  border-color: var(--acid);
  color: var(--ink);
  background: var(--acid);
}

.problem__submit.cta {
  width: auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.cta__arrow {
  font-size: 22px;
  line-height: 1;
}

.problem__freebar.freebar {
  margin-top: 14px;
  color: var(--fg-mute);
  font-size: 12px;
}

.freebar__sep {
  margin: 0 10px;
  opacity: 0.5;
}

/* Promises column */
.promises {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  align-self: stretch;
}

.promise {
  background: var(--bg-card);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.promise__num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-mute);
  letter-spacing: 0.15em;
  width: 28px;
  flex-shrink: 0;
  padding-top: 4px;
}

.promise__ic {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1.5px solid var(--acid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acid);
}

.promise__ic svg {
  width: 20px;
  height: 20px;
}

.promise__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 19px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--fg);
  margin: 0;
  font-weight: 400;
}

.promise__text {
  font-size: 13px;
  color: var(--fg-dim);
  margin: 4px 0 0;
  line-height: 1.45;
}

/* Step 1: large screens */
@media (min-width: 1025px) {
  .funnel {
    max-width: 1280px;
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
  }

  .problem__headline {
    font-size: 128px;
  }

  .problem__subheading {
    font-size: 20px;
    line-height: 1.45;
    max-width: 640px;
  }

  .problem__textarea {
    padding: 20px 22px 56px;
    min-height: 168px;
    font-size: 17px;
  }
}

/* ─── Step 2: Questions (intake flow · acid) ─────────────────────────────── */
.questions {
  padding-top: 24px;
  padding-bottom: 48px;
  max-width: 720px;
  margin: 0 auto;
}

.questions__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 28px;
  line-height: 1.18;
  text-align: center;
  text-transform: lowercase;
  transition: color 0.2s ease;
}

.questions__title--accent {
  color: var(--acid);
}

.questions__problem-recap {
  font-size: 14px;
  color: var(--muted);
  background-color: var(--surface);
  border-left: 3px solid var(--primary);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
  line-height: 1.5;
}

.questions__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}

.question-block__text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 20px;
}

.question-block__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-btn {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 16px 18px;
  background-color: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--fg-dim);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition),
    color var(--transition), box-shadow var(--transition);
}

.option-btn:hover,
.option-btn:focus-visible {
  border-color: var(--acid);
  outline: none;
}

.option-btn--selected {
  background-color: var(--bg-card);
  border-color: var(--acid);
  color: var(--fg);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(240, 255, 38, 0.12);
}

.option-btn--other {
  color: var(--fg-mute);
  font-style: normal;
  border-style: dashed;
}

.option-btn--other.option-btn--selected {
  color: var(--fg);
  font-style: normal;
  border-style: solid;
}

.option-other-wrap {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 6px;
}

.option-other-wrap--hidden {
  display: none;
}

.option-other-input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--fg);
  background: var(--bg-soft);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.option-other-input:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(240, 255, 38, 0.15);
}

.option-other-confirm {
  padding: 14px 22px;
  background-color: var(--acid);
  color: var(--ink);
  border: none;
  border-radius: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition), background-color var(--transition);
}

.option-other-confirm:hover {
  opacity: 0.88;
}

.questions__submit--hidden { display: none; }

.questions__summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  background-color: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
}

.questions__summary-row {
  font-size: 14px;
  line-height: 1.5;
}

.questions__summary-q {
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}

.questions__summary-a {
  color: var(--primary);
  font-weight: 700;
}

/* ─── Step 2: Thinking indicator ────────────────────────────────────────── */
/* Kept for any older markup that still uses it; the main experience is
   `.think-scene` below. */
.thinking {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0 12px;
}

.thinking__label {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 20px;
}

/* ─── Step 2: Thinking bulb scene ───────────────────────────────────────── */
/*
 * A small animated vignette shown while Claude drafts the solution. It runs
 * on pure CSS: one bulb SVG, a pulsing halo, a flickering filament, and
 * six absolutely-positioned sparks firing outwards at staggered delays.
 * A JS timer swaps the status copy every 1.8s so the page reads as alive.
 */
.think-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 36px;
}

.think-scene__stage {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.think-scene__bulb {
  width: 150px;
  height: 200px;
  animation: sfBulbBob 3.2s ease-in-out infinite;
}

.think-scene__bulb svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Warm halo behind the glass: scale + opacity pulse in sync with a bulb
   that's thinking hard. */
.think-scene__halo {
  transform-origin: 60px 60px;
  transform-box: fill-box;
  animation: sfBulbHalo 2.2s ease-in-out infinite;
}

/* The filament flickers: mostly full on, occasional sharp dips, like an
   old incandescent that's working overtime. keyframe percentages are
   intentionally uneven to avoid a metronome feel. */
.think-scene__filament,
.think-scene__filament-node {
  filter: drop-shadow(0 0 4px rgba(240, 255, 38, 0.45));
  animation: sfBulbFlicker 2.6s linear infinite;
}

.think-scene__filament {
  stroke: var(--acid) !important;
}

.think-scene__filament-node {
  fill: var(--acid) !important;
}

/* Glass itself sits still: the bob moves the whole bulb together. */
.think-scene__glass {
  transform-origin: 60px 75px;
}

/* Sparks: small warm dots that spawn near the bulb centre and fly outward
   before fading. Each spark gets a unique direction/delay via BEM modifier. */
.think-scene__spark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--acid) 0%, rgba(240, 255, 38, 0.4) 60%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.think-scene__spark--1 { animation: sfSpark1 2.4s ease-out infinite; animation-delay: 0.00s; }
.think-scene__spark--2 { animation: sfSpark2 2.6s ease-out infinite; animation-delay: 0.35s; }
.think-scene__spark--3 { animation: sfSpark3 2.8s ease-out infinite; animation-delay: 0.75s; }
.think-scene__spark--4 { animation: sfSpark4 2.5s ease-out infinite; animation-delay: 1.10s; }
.think-scene__spark--5 { animation: sfSpark5 2.7s ease-out infinite; animation-delay: 1.55s; width: 6px; height: 6px; margin: -3px 0 0 -3px; }
.think-scene__spark--6 { animation: sfSpark6 2.3s ease-out infinite; animation-delay: 1.95s; width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; }

.think-scene__label {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 40;
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  text-align: center;
  letter-spacing: 0;
  min-height: 1.4em;
  opacity: 1;
  transition: opacity 0.28s ease;
}

/* Fade helper for the rotating copy: added on next frame after text swap. */
.think-scene__label--in {
  opacity: 1;
}

.think-scene__label:not(.think-scene__label--in) {
  opacity: 0;
}

/* ─── Animations ─────────────────────────────────────────────────────────── */

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

@keyframes sfBulbHalo {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50%      { opacity: 0.95; transform: scale(1.08); }
}

/* Mostly 1, with two quick dips. Mimics a real flicker: the dips land at
   odd beats (17%, 19%, 42%, 44%) so it reads as unpredictable. */
@keyframes sfBulbFlicker {
  0%, 16%, 20%, 41%, 45%, 100% { opacity: 1; }
  17%, 19% { opacity: 0.35; }
  42%, 44% { opacity: 0.55; }
  62%      { opacity: 0.8; }
}

/*
 * Each spark has its own flight path: angle, distance, and size vary so the
 * cluster feels organic. Center of the stage is the launch point; we
 * translate outward then fade.
 */
@keyframes sfSpark1 {
  0%   { transform: translate(0, 0) scale(0.2);  opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translate(72px, -86px) scale(0.4); opacity: 0; }
}
@keyframes sfSpark2 {
  0%   { transform: translate(0, 0) scale(0.2);  opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translate(-78px, -74px) scale(0.4); opacity: 0; }
}
@keyframes sfSpark3 {
  0%   { transform: translate(0, 0) scale(0.2);  opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translate(92px, -30px) scale(0.4); opacity: 0; }
}
@keyframes sfSpark4 {
  0%   { transform: translate(0, 0) scale(0.2);  opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translate(-90px, -34px) scale(0.4); opacity: 0; }
}
@keyframes sfSpark5 {
  0%   { transform: translate(0, 0) scale(0.2);  opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translate(42px, -100px) scale(0.35); opacity: 0; }
}
@keyframes sfSpark6 {
  0%   { transform: translate(0, 0) scale(0.2);  opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translate(-46px, -96px) scale(0.35); opacity: 0; }
}

/* Honour user's motion preferences: keep the bulb visible but stop the
   animations if they asked the OS not to animate. */
@media (prefers-reduced-motion: reduce) {
  .think-scene__bulb,
  .think-scene__halo,
  .think-scene__filament,
  .think-scene__filament-node,
  .think-scene__spark {
    animation: none;
  }
  .think-scene__halo { opacity: 0.7; }
  .think-scene__spark { display: none; }
}

/* ─── Step 2: Reflection teaser ──────────────────────────────────────────── */
/*
 * One centred column: small idea-bulb, reflection paragraph, CTA, security
 * seal. Deliberately quiet: no dividers, no secondary copy, nothing between
 * the reflection and the button so the read-to-click motion is frictionless.
 */
.reflection-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 4px;
  text-align: center;
}

/* Small idea-bulb that sits above the reflection. Faint warm shadow below
   so it looks like it's resting on the paper, plus a very gentle glow pulse
   on the halo behind it. */
.reflection-teaser__bulb {
  width: 56px;
  height: 70px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 4px 8px rgba(232, 87, 42, 0.18));
  animation: sfMiniBulbGlow 3s ease-in-out infinite;
}

.reflection-teaser__bulb svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@keyframes sfMiniBulbGlow {
  0%, 100% { filter: drop-shadow(0 4px 8px rgba(232, 87, 42, 0.18)); }
  50%      { filter: drop-shadow(0 5px 14px rgba(232, 87, 42, 0.35)); }
}

.reflection-teaser__text {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-variation-settings: normal;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  font-style: normal;
  font-weight: 500;
  margin: 0 0 24px;
  max-width: 36rem;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1024px) {
  .reflection-teaser__text {
    font-size: 17px;
    line-height: 1.68;
    max-width: 100%;
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* CTA: tighter than the Step-1 full-width slab. Natural width, pill shape,
   subtle arrow that nudges right on hover. */
.reflection-teaser__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-width: 260px;
  max-width: 100%;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 0.005em;
  margin: 0 auto;
}

.reflection-teaser__btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.reflection-teaser__btn:hover .reflection-teaser__btn-arrow,
.reflection-teaser__btn:focus-visible .reflection-teaser__btn-arrow {
  transform: translateX(3px);
}

/* ─── Security seal (wax-stamp style trust mark) ─────────────────────────── */
/*
 * Embossed-look seal that sits quietly under the CTA. Not interactive, not
 * distracting: it reads in peripheral vision as "this is a real, considered
 * operation" at exactly the moment the visitor is about to look at pricing.
 */
.security-seal {
  width: 110px;
  height: 110px;
  margin: 36px auto 8px;
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.security-seal:hover {
  opacity: 1;
  transform: rotate(-3deg);
}

.security-seal svg {
  width: 100%;
  height: 100%;
  display: block;
  /* Soft warm drop-shadow so the seal sits on the page like pressed paper,
     not a flat SVG layer. */
  filter: drop-shadow(0 2px 3px rgba(56, 30, 10, 0.12));
}

/* ─── Step 3: Solution deck (2×3 stamp-tile grid + shared stage) ──────────
 *
 * Each tile is a warm paper card carrying a "wax stamp" illustration : 
 * a cream circle with dashed inner & outer rings, orange icon centred,
 * mirroring the security seal and light-bulb aesthetic used elsewhere.
 * Clicking a tile reveals its content in the stage below; only one
 * panel is open at any time, so every section gets calm, focused room.
 */
.sol-deck {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.sol-deck__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 560px) {
  .sol-deck__grid { grid-template-columns: 1fr; }
}

.sol-deck__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 22px 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
  overflow: hidden;
}

.sol-deck__tile:hover {
  transform: translateY(-2px);
  border-color: var(--acid);
  box-shadow: 0 0 24px rgba(240, 255, 38, 0.08);
}

.sol-deck__tile:hover .sol-stamp { transform: rotate(-4deg) scale(1.03); }
.sol-deck__tile:hover .sol-stamp__icon { color: var(--acid-deep); }

.sol-deck__tile:focus-visible {
  outline: none;
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(240, 255, 38, 0.15);
}

.sol-deck__tile--active {
  background: var(--bg-soft);
  border-color: var(--acid);
  box-shadow: 0 0 0 1px var(--acid), 0 0 28px rgba(240, 255, 38, 0.12);
}

.sol-deck__tile--active .sol-stamp { transform: rotate(-6deg); }

.sol-deck__tile-title {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-variation-settings: 'opsz' 60;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}

.sol-deck__tile-hint {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
  max-width: 22ch;
}

/* ─── Wax-stamp illustration (used on tiles + stage header) ────────────── */
.sol-stamp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  filter: none;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.sol-stamp::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed var(--line);
  pointer-events: none;
}

.sol-stamp::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed var(--line);
  opacity: 0.5;
  pointer-events: none;
}

.sol-stamp__icon {
  position: relative;
  z-index: 1;
  font-size: 28px;
  line-height: 1;
  color: var(--acid);
  transition: color 0.18s ease, transform 0.25s ease;
}

.sol-stamp__icon i { color: inherit; }

/* ─── Stage: shared panel area below the grid ───────────────────────────── */
.sol-deck__stage {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 22px 24px 26px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sol-deck__stage--open {
  opacity: 1;
  transform: translateY(0);
}

.sol-deck__stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-soft, rgba(56, 30, 10, 0.12));
}

.sol-deck__stage-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

/* Miniature stamp in the stage header, echoing the tile you just pressed. */
.sol-deck__stage-stamp {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1.25px solid var(--line);
  filter: none;
}

.sol-deck__stage-stamp::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px dashed rgba(47, 38, 26, 0.3);
}

.sol-deck__stage-stamp .sol-stamp__icon {
  font-size: 17px;
}

.sol-deck__stage-title {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-variation-settings: 'opsz' 72;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

.sol-deck__stage-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.25px solid var(--border-soft, rgba(56, 30, 10, 0.15));
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.sol-deck__stage-close:hover {
  background: rgba(240, 255, 38, 0.08);
  border-color: var(--acid);
  color: var(--acid);
  transform: rotate(90deg);
}

.sol-deck__stage-close:focus-visible {
  outline: none;
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(240, 255, 38, 0.15);
}

.sol-deck__panel {
  padding: 4px 0 0;
  animation: fadeIn 0.28s ease forwards;
}

@media (max-width: 560px) {
  .sol-deck__stage { padding: 18px 18px 22px; }
  .sol-deck__stage-title { font-size: 20px; }
  .sol-deck__stage-stamp { width: 38px; height: 38px; }
  .sol-deck__stage-stamp .sol-stamp__icon { font-size: 14px; }
  .sol-deck__tile { padding: 18px 14px 16px; }
  .sol-stamp { width: 66px; height: 66px; }
  .sol-stamp__icon { font-size: 24px; }
  .sol-deck__tile-title { font-size: 18px; }
  .sol-deck__tile-hint { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .sol-deck__tile,
  .sol-deck__stage,
  .sol-stamp,
  .sol-deck__stage-close { transition: none; }
  .sol-deck__tile:hover { transform: none; }
  .sol-deck__tile:hover .sol-stamp,
  .sol-deck__tile--active .sol-stamp { transform: none; }
  .sol-deck__panel { animation: none; }
}

/* ─── Step 3: Solution ───────────────────────────────────────────────────── */
.solution {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ─── Solution: header & problem summary ─────────────────────────────────── */
.solution__header {}

.solution__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.solution__problem-summary {
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 600;
}

/* ─── Solution: single scroll (no tabs) ─────────────────────────────────── */
.solution__section-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.2;
}

.solution__tab-panel {
  padding: 8px 4px 4px;
  border: none;
  background: transparent;
}

.solution__tab-panel + .solution__tab-panel {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.solution__tab-panel--hidden {
  display: none;
}

/* ─── Solution: empathetic reflection ───────────────────────────────────── */
.solution__reflection-wrap {
  margin: 0;
}

.solution__reflection {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.72;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1024px) {
  .solution__reflection {
    font-size: 16px;
    line-height: 1.68;
    font-weight: 500;
  }
}

/* ─── Questions: open-text input (static Q3 / Q4) ───────────────────────── */
.option-text-wrap {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 6px;
}

@media (max-width: 1024px) {
  .option-text-wrap {
    flex-direction: column;
  }

  .option-text-confirm {
    width: 100%;
  }
}

.option-text-input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--fg);
  background: var(--bg-soft);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.option-text-input:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(240, 255, 38, 0.15);
}

.option-text-confirm {
  padding: 14px 22px;
  background-color: var(--acid);
  color: var(--ink);
  border: none;
  border-radius: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.option-text-confirm:hover {
  opacity: 0.88;
}

/* ─── Solution: how it works ─────────────────────────────────────────────── */
/* ── Requirements tab ──────────────────────────────────────────────────── */
.req__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.req__block {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.req__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.req__problem {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}

.req__answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.req__row {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.req__question {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.req__answer {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* ── How it works ──────────────────────────────────────────────────────── */
.solution__how-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  margin-top: 16px;
}

.solution__how-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: howsteps;
  padding: 0;
  margin: 0;
}

.solution__how-steps li {
  counter-increment: howsteps;
  display: flex;
  gap: 14px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.solution__how-steps li::before {
  content: counter(howsteps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background-color: var(--primary);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Demo before/after blocks ───────────────────────────────────────────── */
.demo {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}

.demo__block {
  border-radius: var(--radius);
  overflow: hidden;
}

.demo__block--before {
  border: 1px solid var(--line);
  background-color: var(--bg-soft);
}

.demo__block--after {
  border: 1px solid var(--line);
  background-color: var(--bg-soft);
}

.demo__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 10px 16px 6px;
  border-bottom: 1px solid var(--line);
  background-color: rgba(240, 255, 38, 0.04);
}

.demo__label--after {
  color: var(--success);
  border-bottom-color: var(--line);
  background-color: rgba(92, 184, 138, 0.08);
}

.demo__content {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  word-break: break-word;
  padding: 14px 16px;
  margin: 0;
  color: var(--text);
  max-height: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo__content--after {
  color: var(--text);
  max-height: none;
}

.demo__text {
  white-space: pre-wrap;
  display: block;
}

/* Photo placeholder box */
.demo__photo {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-self: flex-start;
  max-width: 220px;
  margin: 0;
}

.demo__photo-frame {
  width: 200px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px dashed var(--border);
  background-color: rgba(0, 0, 0, 0.02);
}

.demo__block--before .demo__photo-frame {
  border-color: #E0B89A;
  background-color: rgba(232, 87, 42, 0.05);
}

.demo__block--after .demo__photo-frame {
  border-color: #9FCFB8;
  background-color: rgba(45, 138, 94, 0.05);
}

.demo__photo-icon {
  font-size: 28px;
  line-height: 1;
  opacity: 0.6;
  color: inherit;
}

.demo__photo-caption {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  font-style: italic;
  max-width: 200px;
}

.demo__block--before .demo__photo-caption {
  color: #B85C2A;
}

.demo__block--after .demo__photo-caption {
  color: var(--success);
}

@media (max-width: 480px) {
  .demo__photo-frame {
    width: 100%;
    max-width: 260px;
    height: 120px;
  }
  .demo__photo,
  .demo__photo-caption {
    max-width: 100%;
  }
}

.demo__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  position: relative;
}

.demo__divider::before,
.demo__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border);
}

.demo__divider-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 12px;
  white-space: nowrap;
}

/* ─── Tier badge ─────────────────────────────────────────────────────────── */
.solution__tier-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 16px;
}

.solution__tier-badge:empty {
  display: none;
}

.solution__currency-note {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
  margin: 0 auto 12px;
  max-width: 480px;
}

.solution__currency-note--hidden {
  display: none;
}

/* ─── Investment block ───────────────────────────────────────────────────── */
.solution__investment {
  background-color: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  margin-top: 16px;
}

.solution__investment-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.solution__investment-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.solution__investment-row:last-of-type {
  border-bottom: none;
}

.solution__investment-label {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.solution__investment-sublabel {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  opacity: 0.75;
}

.solution__investment-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 599px) {
  .solution__investment-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .solution__investment-value {
    max-width: 100%;
    line-height: 1.45;
  }
}

.solution__roi {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

.solution__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.solution__cta {
  margin-top: 0;
}

/* Full-bleed footer inside funnel (match homepage bar) */
.solution__site-footer,
.funnel__site-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.solution__site-footer {
  margin-top: 28px;
}

.funnel__site-footer {
  margin-top: 40px;
  padding-bottom: 8px;
}

/* ─── Step 4: Contact ────────────────────────────────────────────────────── */
.contact {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact__heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.contact__subheading {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact__back {
  align-self: flex-start;
  width: auto;
  min-height: 44px;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.contact__optional {
  font-weight: 400;
  color: var(--muted);
}

.contact__input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background-color: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 17px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact__input:focus {
  outline: none;
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(240, 255, 38, 0.12);
}

.contact__input::placeholder { color: var(--muted); }

.contact__field--consent {
  gap: 10px;
}

.contact__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}

.contact__consent-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--acid);
  cursor: pointer;
}

/* ─── Thank you ──────────────────────────────────────────────────────────── */
.thankyou {
  padding-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.thankyou--hidden { display: none; }

.thankyou__icon {
  width: 64px;
  height: 64px;
  background-color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
}

.thankyou__icon i {
  line-height: 1;
}

.thankyou__heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
}

.thankyou__message {
  font-size: 18px;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.6;
}

.thankyou__close {
  margin-top: 8px;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
}

/* ─── Modals ─────────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal--hidden { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.55);
  backdrop-filter: blur(3px);
  cursor: pointer;
}

.modal__box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 36px 28px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: fadeIn 0.2s ease forwards;
}

.modal__icon {
  font-size: 48px;
  margin-bottom: 12px;
  line-height: 1;
}

.modal__title {
  font-size: 24px;
  font-weight: 800;
  font-family: 'Archivo Black', sans-serif;
  text-transform: lowercase;
  color: var(--fg);
  margin-bottom: 12px;
}

.modal__message {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal__close {
  max-width: 280px;
  margin: 0 auto;
}

.modal__countdown {
  font-size: 22px;
  font-weight: 700;
  color: var(--acid);
  margin-top: 8px;
}

/* ─── Too-vague inline feedback (step 1) ────────────────────────────────── *
 * Lives inside .problem__input-wrap so it visually attaches to the textarea.
 * When visible, the parent wrap gets a warm orange border via the sibling
 * selector below to signal the textarea needs more detail.
 */
.too-vague {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 14px 16px 16px;
  border-radius: 0;
  animation: fadeIn 0.2s ease forwards;
}

.too-vague[hidden] { display: none; }

.problem__input-wrap:has(.too-vague:not([hidden])) {
  border-color: var(--acid) !important;
  box-shadow: 0 0 0 3px rgba(240, 255, 38, 0.12) !important;
}

.too-vague__message {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 10px;
}

.too-vague__suggestion-wrap { margin: 0; }
.too-vague__suggestion-wrap[hidden] { display: none; }

/* Suggestion: looks like a small ghost button with a try-this arrow */
.too-vague__suggestion-btn {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  line-height: 1.45;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.too-vague__suggestion-btn::before {
  content: "→";
  flex-shrink: 0;
  font-size: 12px;
  color: var(--acid);
  margin-top: 1px;
}

.too-vague__suggestion-btn:hover {
  border-color: var(--acid);
  background: rgba(240, 255, 38, 0.06);
}

.too-vague__suggestion-btn:focus-visible {
  outline: none;
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(240, 255, 38, 0.15);
}

/* ─── Too-broad modal extras ─────────────────────────────────────────────── */
.broad-modal__box {
  max-width: 480px;
  text-align: left;
}

.broad-modal__icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
}

.broad-modal__title {
  color: var(--text);
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-variation-settings: 'opsz' 60;
  font-size: 22px;
}

.broad-modal__message {
  text-align: left;
  margin-bottom: 18px;
}

.broad-modal__examples {
  margin-bottom: 22px;
}

.broad-modal__examples-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

.broad-modal__examples-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.broad-modal__example-btn {
  width: 100%;
  text-align: left;
  padding: 11px 14px 11px 38px;
  background: var(--surface-warm, #FFF8F0);
  border: 1.5px solid var(--border-soft, rgba(56,30,10,0.12));
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  position: relative;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
  line-height: 1.4;
}

/* Arrow prefix */
.broad-modal__example-btn::before {
  content: "→";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--primary);
  transition: transform 0.15s ease;
}

.broad-modal__example-btn:hover {
  border-color: rgba(232, 87, 42, 0.45);
  background: rgba(232, 87, 42, 0.05);
  transform: translateX(2px);
}

.broad-modal__example-btn:hover::before {
  transform: translateY(-50%) translateX(3px);
}

.broad-modal__example-btn:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 87, 42, 0.18);
}

.broad-modal__close {
  max-width: 100%;
  width: 100%;
}

/* ─── Back button (above every question) ────────────────────────────────── */
.question-block__back-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.question-block__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.question-block__back:hover,
.question-block__back:focus-visible {
  background-color: transparent;
  color: var(--acid);
  border-color: var(--acid);
  outline: none;
}

.question-block__back-arrow {
  font-size: 15px;
  line-height: 1;
  transform: translateY(-1px);
}

/* ─── Question progress (segmented) ─────────────────────────────────────── */
.question-block__progress-row {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  width: 100%;
}

.question-block__progress-seg {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 0;
}

.question-block__progress-seg--on {
  background: var(--acid);
}

.question-block__progress {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
  margin: 0 0 16px;
}

/* ─── ROI panel ──────────────────────────────────────────────────────────── */
/* ── Next steps tab ────────────────────────────────────────────────────── */
.next__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.next__notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background-color: rgba(232, 87, 42, 0.05);
  border: 1px solid rgba(232, 87, 42, 0.15);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.next__notice-icon {
  color: var(--primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.next__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.next__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.next__step:last-child {
  border-bottom: none;
}

.next__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.next__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.next__step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.next__step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Next steps CTA row ─────────────────────────────────────────────────── */
/*
 * Two-button row that lives at the bottom of the Next steps panel. Primary
 * "Discuss further" is the warm orange gradient CTA, matching the hero
 * button. Secondary "Not for me" is a quiet ghost: it sits next to the
 * primary, same height, but clearly subordinate.
 */
.next__cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}

.next__cta {
  /* Base overrides on top of .btn: pill shape, natural weight, matching
     letter-spacing with the hero CTA. */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 999px;
  min-height: 52px;
  font-size: 16px;
  letter-spacing: 0.005em;
}

.next__cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.next__cta--primary:hover .next__cta-arrow,
.next__cta--primary:focus-visible .next__cta-arrow {
  transform: translateX(3px);
}

/* "Not for me": deliberately quiet. No solid fill, warm border, muted copy.
   On hover picks up a touch of ink so it still reads as interactive. */
.next__cta--decline {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
  font-weight: 600;
  box-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.next__cta--decline:hover,
.next__cta--decline:focus-visible {
  color: var(--text);
  border-color: var(--ink);
  background-color: rgba(47, 38, 26, 0.03);
  outline: none;
}

.next__cta--decline[aria-expanded="true"] {
  color: var(--text);
  border-color: var(--ink);
  background-color: rgba(47, 38, 26, 0.04);
}

@media (min-width: 560px) {
  .next__cta-row { flex-direction: row; }
  .next__cta     { flex: 1; width: auto; }
}

/* ─── Decline feedback card ──────────────────────────────────────────────── */
/*
 * Decline modal: shown as a centred popup when "Not for me" is clicked.
 * The modal shell (.decline-modal) handles the overlay + focus trap;
 * the inner .decline-feedback holds the reason chips and textarea.
 */

/* ── Modal shell ─────────────────────────────────────────────────────────── */
.decline-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.decline-modal[hidden] { display: none !important; }

.decline-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 10, 0.55);
  backdrop-filter: blur(3px);
  animation: sfBackdropIn 0.2s ease forwards;
}

@keyframes sfBackdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.decline-modal__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 32px 64px rgba(0, 0, 0, 0.35);
  animation: sfSheetIn 0.28s cubic-bezier(0.34, 1.36, 0.64, 1) forwards;
}

@keyframes sfSheetIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.decline-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px 0;
}

.decline-modal__title {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-variation-settings: 'opsz' 60;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: var(--text);
}

.decline-modal__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.25px solid var(--border-soft, rgba(56, 30, 10, 0.15));
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.decline-modal__close:hover {
  background: rgba(232, 87, 42, 0.08);
  color: var(--primary);
  transform: rotate(90deg);
}

.decline-modal__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 87, 42, 0.25);
}

/* ── Inner feedback form (same structure as before) ──────────────────────── */
.decline-feedback {
  padding: 16px 24px 24px;
}

.decline-feedback__lead {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 48;
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 16px;
}

.decline-feedback__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.decline-feedback__option {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease,
              box-shadow 0.18s ease, transform 0.12s ease;
}

.decline-feedback__option:hover,
.decline-feedback__option:focus-visible {
  border-color: rgba(232, 87, 42, 0.4);
  box-shadow: 0 0 0 3px rgba(232, 87, 42, 0.08);
  outline: none;
}

.decline-feedback__option--selected {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 0 0 3px rgba(232, 87, 42, 0.15);
}

.decline-feedback__option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.decline-feedback__option--selected .decline-feedback__option-icon {
  background: var(--primary);
  color: #ffffff;
}

.decline-feedback__option-label {
  flex: 1;
}

.decline-feedback__text-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}

.decline-feedback__text-optional {
  font-weight: 400;
  color: var(--muted);
  font-style: italic;
}

.decline-feedback__text {
  width: 100%;
  min-height: 80px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.decline-feedback__text::placeholder {
  color: #A69683;
  font-style: italic;
}

.decline-feedback__text:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 87, 42, 0.14);
}

.decline-feedback__actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.decline-feedback__submit {
  width: auto;
  min-width: 180px;
  padding: 12px 24px;
  min-height: 46px;
  border-radius: 999px;
  font-size: 15px;
}

.decline-feedback__thanks {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(45, 138, 94, 0.08);
  border: 1px solid rgba(45, 138, 94, 0.25);
  border-radius: 10px;
  margin-top: 10px;
  animation: fadeIn 0.35s ease;
}

.decline-feedback__thanks[hidden] { display: none; }

.decline-feedback__thanks-icon {
  color: var(--success);
  font-size: 18px;
  flex-shrink: 0;
}

.decline-feedback__thanks p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

/* ─── Desktop refinements (min 600px) ───────────────────────────────────── */
@media (min-width: 600px) {
  .question-block__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .option-btn {
    min-width: 0;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   LANDING EXTRAS: Electric Type (examples, how it works, final CTA, footer)
   ══════════════════════════════════════════════════════════════════════════ */

.landing-extras { }
.landing-extras--hidden { display: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg-mute);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--acid);
}

.section-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: lowercase;
  max-width: 900px;
  color: var(--fg);
  margin: 0 0 22px;
  font-weight: 400;
}

.section-sub {
  margin-top: 0;
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 640px;
  line-height: 1.5;
}

.examples-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.examples-section__accent {
  color: var(--acid);
}

.examples-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 900px) {
  .examples-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .examples__card.ex--big {
    grid-column: span 12;
    flex-direction: row;
    gap: 36px;
    align-items: stretch;
  }

  .examples__card.ex:not(.ex--big) {
    grid-column: span 6;
  }
}

.examples__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}

.examples__card:hover {
  border-color: var(--acid);
  transform: translateY(-2px);
}

.examples--js .examples__card {
  opacity: 0;
  transform: translateY(12px);
}

.examples--js .examples__card--visible {
  opacity: 1;
  transform: translateY(0);
}

.examples--js .examples__card--visible:hover {
  transform: translateY(-2px);
}

.ex--big {
  gap: 0;
}

.ex__quote-wrap {
  flex: 1.3;
}

.ex__fix-wrap {
  flex: 1;
  border-left: 1px solid var(--line);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

@media (max-width: 899px) {
  .ex--big {
    flex-direction: column;
  }
  .ex__fix-wrap {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin-top: 8px;
  }
}

.quote-mark {
  font-family: var(--font-serif-i);
  font-style: italic;
  font-size: 52px;
  line-height: 0.5;
  color: var(--acid);
  height: 24px;
}

.quote {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  color: var(--fg);
  margin-top: 4px;
}

.ex--big .quote {
  font-size: 22px;
  line-height: 1.2;
}

@media (min-width: 900px) {
  .ex--big .quote {
    font-size: 28px;
  }
}

.ex__meta {
  color: var(--fg-mute);
  margin-top: 18px;
}

.fix-label {
  color: var(--fg-mute);
  margin-top: 22px;
}

.fix {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-dim);
}

.saved {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px dashed var(--line);
}

.saved__n {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  letter-spacing: -0.04em;
  color: var(--acid);
  line-height: 1;
}

.ex--big .saved__n {
  font-size: 72px;
}

@media (min-width: 900px) {
  .ex--big .saved__n {
    font-size: 88px;
  }
}

.saved__u {
  font-size: 12px;
  color: var(--fg-dim);
  text-transform: lowercase;
  line-height: 1.3;
}

.saved__u strong {
  color: var(--fg);
  font-weight: 600;
  display: block;
  font-size: 13px;
}

/* How it works */
.how-it-works {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.how-it-works__title .hi {
  background: var(--acid);
  color: var(--ink);
}

.how-it-works__lede {
  margin-bottom: 0;
}

.works-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.works-step {
  background: var(--bg);
  padding: 36px 28px;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.works-step__watermark {
  font-family: 'Archivo Black', sans-serif;
  font-size: 100px;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--bg-card);
  -webkit-text-stroke: 1px var(--line);
  position: absolute;
  top: 20px;
  right: 24px;
  pointer-events: none;
}

.works-step__badge {
  display: inline-block;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 8px;
  letter-spacing: 0.1em;
  align-self: flex-start;
}

.works-step__heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  margin-top: 20px;
  line-height: 1;
  color: var(--fg);
  font-weight: 400;
}

.works-step__text {
  margin-top: 14px;
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.5;
  max-width: 280px;
}

.works-step__tag {
  margin-top: auto;
  color: var(--fg-mute);
  padding-top: 20px;
}

/* Final CTA band (headline + subline; vertically centred in the yellow field) */
.final-cta {
  background: var(--acid);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 56vh, 720px);
  padding: clamp(40px, 6vw, 72px) 0;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(20px, 3vw, 32px);
}

.final-cta__headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  text-align: center;
  margin: 0;
  font-weight: 400;
  max-width: 1100px;
}

.final-cta__line {
  display: block;
}

.final-cta__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.88;
  max-width: 36rem;
  margin: 0;
}

.final-cta__sub-em {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  opacity: 1;
}

/* On acid background: invert default .hi → ink bar + acid text */
.final-cta .hi {
  background: var(--ink);
  color: var(--acid);
}

/* Funnel footers (steps 3-4) */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 32px 24px;
  text-align: center;
}

.site-footer__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.site-footer__brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.site-footer__copy {
  font-size: 12px;
  color: var(--muted);
}

.site-footer__nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__link {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}

.site-footer__link:hover {
  color: var(--acid);
  text-decoration: underline;
}

.site-footer__sep {
  font-size: 11px;
  color: var(--line);
}

.site-footer__legal {
  font-size: 11px;
  color: var(--fg-mute);
  line-height: 1.5;
}

/* Landing page footer grid */
.site-footer--landing {
  text-align: left;
  padding: 64px 0 48px;
}

.site-footer--landing .foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .site-footer--landing .foot-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

.foot-brand__logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--fg);
  margin: 0 0 16px;
}

.foot-brand__logo-accent {
  color: var(--acid);
}

.foot-mission {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
  margin: 0;
}

.foot-col__heading {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-mute);
  margin: 0 0 18px;
  font-weight: 500;
}

.foot-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col__list a {
  color: var(--fg-dim);
  font-size: 14px;
  text-decoration: none;
}

.foot-col__list a:hover {
  color: var(--acid);
}

.foot-col__url {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--fg);
}

.foot-bottom {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: var(--fg-mute);
  font-size: 12px;
}

.foot-bottom__legal a {
  color: var(--fg-dim);
  text-decoration: none;
}

.foot-bottom__legal a:hover {
  color: var(--acid);
}

.foot-bottom__sep {
  margin: 0 10px;
  opacity: 0.4;
}

.foot-disclaimer {
  color: var(--fg-mute);
  font-size: 11px;
  margin: 14px 0 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ─── Cookie bar (floating warm pill, bottom-left) ──────────────────────── */
/*
 * Replaced the full-width black slab. The old bar dominated every screenshot
 * and fought the cream palette; this version sits like a business card : 
 * warm paper, hairline border, warm shadow, small and out of the way.
 */
.cookie-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  max-width: 440px;
  background: var(--bg-card);
  color: var(--text);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: var(--shadow-lift);
  z-index: 9000;
}

.cookie-bar--hidden { display: none; }

.cookie-bar__text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  flex: 1;
  margin: 0;
}

.cookie-bar__link {
  color: var(--acid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar__btn {
  background: var(--acid);
  color: var(--ink);
  border: none;
  border-radius: 0;
  padding: 8px 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.cookie-bar__btn:hover { background: #fff; transform: translateY(-1px); }

@media (min-width: 640px) {
  .cookie-bar {
    right: auto;
    max-width: 420px;
  }
}

/* ─── Static pages (privacy, terms) ─────────────────────────────────────── */
.static-page {
  background: var(--bg);
}

.static-nav__logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--fg);
  text-decoration: none;
}

.static-nav__logo-accent {
  color: var(--acid);
}

.static-page .header__close {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg-dim);
  border-radius: 0;
}

.static-page .header__close:hover,
.static-page .header__close:focus-visible {
  color: var(--acid);
  border-color: var(--acid);
  background: transparent;
}

.static-page__back {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--acid);
  text-decoration: none;
  font-weight: 600;
}

.static-page__back:hover {
  color: var(--fg);
  text-decoration: underline;
}

.static-page__content {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.static-page__title {
  font-size: 28px;
  font-weight: 400;
  font-family: 'Archivo Black', sans-serif;
  text-transform: lowercase;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.static-page__section {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 22px 24px;
  margin-bottom: 20px;
}

.static-page__section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.static-page__list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.static-page__list li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* Static legal pages: explicit Close control next to logo (cookie bar links here). */
body.static-page .header.header--static-subnav {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 12px;
}

@media (max-width: 560px) {
  body.static-page .header.header--static-subnav {
    flex-direction: row;
    height: auto;
    min-height: 56px;
    padding-top: calc(env(safe-area-inset-top, 0px) + 10px);
    padding-bottom: 12px;
  }
}

.header__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.header__close:hover,
.header__close:focus-visible {
  color: var(--acid);
  border-color: var(--acid);
  background: rgba(240, 255, 38, 0.06);
  outline: none;
}

/* ─── About page ─────────────────────────────────────────────────────────── */
body.about-page {
  background: var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
}

.about-page__main {
  padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 8vw, 96px);
}

.about-page__wrap {
  max-width: 920px;
}

.about-page__intro {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.about-page__eyebrow {
  margin-bottom: 12px;
}

.about-page__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--fg);
  line-height: 1.08;
  margin: 0 0 20px;
}

.about-page__title-accent {
  color: var(--acid);
  font-style: italic;
}

.about-page__lede {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--fg-dim);
  max-width: 52ch;
  margin: 0;
}

.about-founder {
  margin-bottom: clamp(48px, 8vw, 72px);
}

.about-founder__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 36px);
}

.about-founder__name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--fg);
  margin: 0 0 4px;
}

.about-founder__role {
  margin: 0 0 20px;
  color: var(--acid);
  text-transform: lowercase;
}

.about-founder__bio {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 16px;
}

.about-founder__bio:last-child {
  margin-bottom: 0;
}

.about-products__heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--fg);
  margin: 0 0 8px;
}

.about-products__sub {
  font-size: 15px;
  color: var(--fg-dim);
  margin: 0 0 28px;
  max-width: 48ch;
}

.about-products__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .about-products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }
}

.about-product {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about-product__mark {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: lowercase;
}

.about-product__mark-white {
  color: #fff;
}

.about-product__mark-acid {
  color: var(--acid);
}

.about-product__mark--snap .about-product__mark-white {
  color: #fff;
}

.about-product__lede,
.about-product__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 14px;
}

.about-product__body:last-of-type {
  margin-bottom: 20px;
}

.about-product__link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--acid);
  text-decoration: none;
  align-self: flex-start;
}

.about-product__link:hover,
.about-product__link:focus-visible {
  color: #fff;
  outline: none;
}

.about-page__back-wrap {
  margin: clamp(40px, 6vw, 56px) 0 0;
}

.about-page__back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--acid);
  text-decoration: none;
}

.about-page__back:hover {
  color: var(--fg);
  text-decoration: underline;
}

.about-page__footer {
  margin-top: 0;
}

