/* === OUTER SHELL — frames the LP like a demo card === */
.outer {
  background: var(--shell-bg);
  background-image: radial-gradient(
    rgba(40, 30, 20, 0.04) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: "Geist", system-ui, sans-serif;
}
.outer > .lp-card-wrap {
  flex: 1;
  min-height: 0;
  padding: 0 14px 14px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Ticker living on the shell (above the card) */
.shell-ticker {
  background: transparent;
  padding: 11px 22px;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #6a624e;
  border-bottom: 1px dashed rgba(40, 30, 20, 0.18);
  margin-bottom: 14px;
}
.shell-ticker-inner {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-x 30s linear infinite;
}
.shell-ticker span {
  margin: 0 26px;
}
.shell-ticker .live {
  color: #1a1814;
  font-weight: 500;
}
.shell-ticker .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a9a4a;
  margin-right: 7px;
  vertical-align: middle;
  animation: pulse 2.4s ease infinite;
}
@keyframes scroll-x {
  to {
    transform: translateX(-50%);
  }
}

/* The LP card */
.lp-card {
  width: 100%;
  max-width: 1640px;
  background: linear-gradient(
    135deg,
    var(--bg-start) 0%,
    var(--bg-end) 100%
  );
  color: var(--ink);
  border-radius: 24px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  box-shadow:
    0 1px 2px rgba(40, 30, 20, 0.08),
    0 4px 12px rgba(40, 30, 20, 0.06),
    0 24px 64px rgba(40, 30, 20, 0.12),
    0 48px 120px rgba(40, 30, 20, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
/* Hide scrollbar (still scrollable) */
.lp-card {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.lp-card::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.lp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 15% 8%,
      rgba(255, 123, 92, 0.16) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(93, 163, 216, 0.1) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 50% 95%,
      rgba(255, 180, 90, 0.08) 0%,
      transparent 45%
    );
  pointer-events: none;
  z-index: 0;
}
.lp-card > * {
  position: relative;
  z-index: 1;
}

/* === Top nav === */
.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 36px;
}
.logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.logo .dot {
  color: var(--accent);
  font-size: 30px;
  line-height: 0;
}
.topnav-r {
  display: flex;
  gap: 8px;
  align-items: center;
}
.navbtn {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  padding: 10px 17px;
  font-family: "Geist", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.navbtn.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* === Hero === */
.hero {
  padding: 32px 36px 80px;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: 540px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.55);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.eyebrow .live-dot {
  width: 7px;
  height: 7px;
  background: #27c93f;
  border-radius: 50%;
  animation: pulse 2.4s ease infinite;
}

.display {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0 0 22px;
}
/* MONO bracketed emphasis */
.display code {
  font-family: "Geist Mono", monospace;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-size: 0.78em;
  vertical-align: 0.05em;
  margin: 0 0.02em;
}
.display code::before {
  content: "[";
  opacity: 0.55;
  margin-right: 0.04em;
}
.display code::after {
  content: "]";
  opacity: 0.55;
  margin-left: 0.04em;
}

.sub-line {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: var(--ink-mute);
  margin: 0 0 36px;
}

.cta-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 16px 26px;
  border: none;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  border-radius: 100px;
  box-shadow:
    0 1px 2px rgba(20, 18, 30, 0.1),
    0 12px 32px rgba(20, 18, 30, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 160ms ease;
  text-decoration: none;
}
.cta-pill:hover {
  transform: translateY(-1px);
}
.cta-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--ink-soft);
  padding: 16px 12px;
  border: none;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
.cta-ghost:hover {
  color: var(--ink);
}

/* Queue panel */
.panel {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(20, 18, 30, 0.04),
    0 24px 64px rgba(20, 18, 30, 0.1),
    0 48px 120px rgba(20, 18, 30, 0.06);
  overflow: hidden;
}
.panel-chrome {
  background: rgba(255, 255, 255, 0.4);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(20, 18, 30, 0.06);
  position: relative;
}
.panel-chrome .title {
  flex: 1;
  text-align: center;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0;
}
.panel-chrome .count {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  position: absolute;
  right: 16px;
}
.tl {
  display: flex;
  gap: 6px;
}
.tl .tld {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.tl .tld.r {
  background: #ff5f56;
}
.tl .tld.y {
  background: #ffbd2e;
}
.tl .tld.g {
  background: #27c93f;
}

.panel-body {
  padding: 6px 0 10px;
}
.group-label {
  padding: 12px 18px 6px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.q-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 18px;
  border-bottom: 0.5px solid rgba(20, 18, 30, 0.05);
}
.q-item:last-child {
  border-bottom: none;
}
.q-empty {
  padding: 12px 18px 14px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  opacity: 0.65;
  text-align: center;
}
.q-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 18, 30, 0.2);
  position: relative;
}
.q-check.live {
  border-color: #27c93f;
}
.q-check.live::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #27c93f;
  border-radius: 50%;
  animation: pulse 1.6s ease infinite;
}
.q-check.done {
  background: var(--accent);
  border-color: var(--accent);
}
.q-check.done::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.qbody {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.qtitle {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.qtags {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}
@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

/* === Sections === */
.section {
  padding: 80px 56px;
  border-top: 1px solid rgba(20, 18, 30, 0.06);
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.section-label .rule {
  height: 1px;
  width: 32px;
  background: rgba(20, 18, 30, 0.25);
}
.section h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 48px;
  color: var(--ink);
  max-width: 780px;
}
.section h2 code {
  font-family: "Geist Mono", monospace;
  font-weight: 500;
  color: var(--accent);
  font-size: 0.72em;
  vertical-align: 0.05em;
  margin: 0 0.02em;
}
.section h2 code::before {
  content: "[";
  opacity: 0.55;
  margin-right: 0.04em;
}
.section h2 code::after {
  content: "]";
  opacity: 0.55;
  margin-left: 0.04em;
}

/* Process — 3 step strip */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  /* align-items: start; — re-enable when .step.has-thumb variant ships */
}
.step {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 26px 26px 24px;
  box-shadow:
    0 1px 2px rgba(20, 18, 30, 0.04),
    0 8px 24px rgba(20, 18, 30, 0.05);
}
/* === WIP: thumb-card variant (finish tomorrow) ====================
   Renders the Submit step as a 4:3 image card with the heading + body
   pinned to the bottom over a soft scrim. Dormant unless the .step has
   `has-thumb` AND contains a .step-thumb child.
   Generator: tools/make-submit-thumb.html
   Asset:     assets/img/submit-thumb.{webp,png}
   Enable:    add `has-thumb` class + uncomment the .step-thumb block in
              index.html (look for the "WIP: thumb-card variant" marker).
=================================================================== */
.step.has-thumb {
  position: relative;
  padding: 32px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.step-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f5ecdf;
}
.step-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Scrim: subtle glass blur + light wash, fading from bottom up to mid-card.
   Makes the text legible without hiding the image. */
.step.has-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(245, 236, 223, 0.55) 0%,
    rgba(245, 236, 223, 0.28) 55%,
    rgba(245, 236, 223, 0) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(
    to top,
    #000 0%,
    #000 40%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    #000 0%,
    #000 40%,
    transparent 100%
  );
}
.step.has-thumb h3,
.step.has-thumb p {
  position: relative;
  z-index: 2;
  margin: 0;
}
.step.has-thumb h3 {
  margin-bottom: 12px;
}
.step.has-thumb p {
  line-height: 1.55;
}
/* === end WIP thumb-card variant ================================== */

.step-num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.step h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.step p {
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* Founder note — centered, dashed border, editorial */
.founder {
  border: 1.5px dashed rgba(20, 18, 30, 0.18);
  border-radius: 16px;
  padding: 56px 80px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.founder p {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
  letter-spacing: -0.005em;
}
.founder p em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-mute);
  font-size: 1.05em;
}
.founder p .name {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  color: var(--ink);
  font-weight: 500;
}

/* Form section */
.form-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr;
  gap: 48px;
  align-items: start;
  max-width: 1080px;
}
.form-lead h2 {
  margin-bottom: 20px;
}
.form-lead p {
  font-family: "Geist", sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 26px;
}
.form-lead .reassure {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 18px 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.form-lead .reassure ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Geist", sans-serif;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}
.form-lead .reassure li::before {
  content: "✓ ";
  color: #27c93f;
  font-weight: 600;
  margin-right: 6px;
}

.form {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(20, 18, 30, 0.04),
    0 24px 64px rgba(20, 18, 30, 0.1);
  overflow: hidden;
}
.form-chrome {
  background: rgba(255, 255, 255, 0.4);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(20, 18, 30, 0.06);
  position: relative;
}
.form-chrome .title {
  flex: 1;
  text-align: center;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0;
}
.form-chrome .count {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  position: absolute;
  right: 16px;
}
.form-body {
  padding: 26px 28px 24px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 18, 30, 0.1);
  border-radius: 8px;
  padding: 11px 13px;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 140ms,
    background 140ms,
    box-shadow 140ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 92, 64, 0.12);
}
.field textarea {
  min-height: 160px;
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 100px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(255, 92, 64, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 160ms ease;
}
.btn-accent:hover {
  transform: translateY(-1px);
}
.form-meta {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.form-meta strong {
  color: var(--ink);
}

/* === Success state — replaces form on successful submit === */
.form-success {
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 40px 36px 36px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 24px 64px rgba(20, 18, 30, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.form-success::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 80% 20%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.form-success > * {
  position: relative;
  z-index: 1;
}
.success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #27c93f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(39, 201, 63, 0.4);
}
.success-check svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: success-draw 420ms ease-out forwards;
}
@keyframes success-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.form-success .eyebrow-label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.form-success h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: #fff;
}
.form-success h3 code {
  font-family: "Geist Mono", monospace;
  font-weight: 500;
  color: var(--accent);
  font-size: 0.7em;
  vertical-align: 0.08em;
  margin: 0 0.02em;
}
.form-success h3 code::before {
  content: "[";
  opacity: 0.55;
  margin-right: 0.04em;
}
.form-success h3 code::after {
  content: "]";
  opacity: 0.55;
  margin-left: 0.04em;
}
.form-success .next-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.form-success .next-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 12px;
}
.form-success .next-list li:last-child {
  border-bottom: none;
}
.form-success .next-list .arr {
  color: var(--accent);
  font-family: "Geist Mono", monospace;
  font-weight: 500;
  flex-shrink: 0;
}
.form-success .footer-row {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.form-success .footer-row .meta-tag {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}
.form-success .follow-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 11px 18px;
  border-radius: 100px;
  font-family: "Geist", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms;
}
.form-success .follow-cta:hover {
  transform: translateY(-1px);
}
.form-error {
  background: rgba(255, 92, 64, 0.1);
  border: 1px solid rgba(255, 92, 64, 0.32);
  color: #b03a25;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* FAQ + CTA shell */
.faq-shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1080px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}

/* FAQ CTA card — dark, stands out */
.faq-cta {
  background: var(--ink);
  border-radius: 16px;
  padding: 32px 30px 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 24px 64px rgba(20, 18, 30, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 80% 20%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.faq-cta > * {
  position: relative;
  z-index: 1;
}
.faq-cta .label {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.faq-cta .label .dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  animation: pulse 2.4s ease infinite;
}
.faq-cta h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: #fff;
}
.faq-cta p {
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  margin: 0 0 22px;
}
.faq-cta .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(255, 92, 64, 0.32);
  transition: transform 160ms;
}
.faq-cta .btn-white:hover {
  transform: translateY(-1px);
}
.faq-cta .meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
}
.faq-cta .meta strong {
  color: #fff;
  font-weight: 500;
}
.faq-item {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.faq-item .q {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.faq-item .a {
  font-family: "Geist", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Footer */
.footer-strip {
  border-top: 1px solid rgba(20, 18, 30, 0.06);
  padding: 24px 56px 28px;
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.footer-strip .right {
  display: flex;
  gap: 22px;
  align-items: center;
}
.footer-strip a {
  color: inherit;
  text-decoration: none;
}
.footer-strip a:hover {
  color: var(--ink);
}

/* ============ Pricing ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.price-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 2px rgba(20, 18, 30, 0.04),
    0 12px 32px rgba(20, 18, 30, 0.05);
  position: relative;
}
.price-card.featured {
  background: linear-gradient(
    135deg,
    #ff8b5c 0%,
    #ff5c40 50%,
    #e84a30 100%
  );
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 24px 48px rgba(255, 92, 64, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 80% 20%,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 50%
  );
  pointer-events: none;
  border-radius: inherit;
}
.price-card.featured > * {
  position: relative;
  z-index: 1;
}
.price-card.muted {
  opacity: 0.85;
}

.price-tier {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card.featured .price-tier {
  color: rgba(255, 255, 255, 0.95);
}
.price-tier .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27c93f;
  animation: pulse 2.4s ease infinite;
}
.price-card.featured .price-tier .dot {
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
.spots-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent, #e84a30);
  padding: 4px 10px 4px 9px;
  border-radius: 100px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.spots-pill .spots-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e84a30;
  box-shadow: 0 0 0 3px rgba(232, 74, 48, 0.18);
  animation: pulse 2.4s ease infinite;
}
.price-amount {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 6px;
  color: var(--ink);
}
.price-card.featured .price-amount {
  color: #fff;
}
.price-amount .per {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-mute);
  margin-left: 4px;
  letter-spacing: 0;
}
.price-card.featured .price-amount .per {
  color: rgba(255, 255, 255, 0.88);
}
.price-sub {
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 22px;
  line-height: 1.45;
}
.price-card.featured .price-sub {
  color: rgba(255, 255, 255, 0.94);
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-family: "Geist", sans-serif;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  flex: 1;
}
.price-card.featured .price-features {
  color: rgba(255, 255, 255, 0.95);
}
.price-features li::before {
  content: "✓ ";
  color: #27c93f;
  font-weight: 600;
  margin-right: 4px;
}
.price-card.featured .price-features li::before {
  color: #fff;
}
.price-cta {
  background: var(--ink);
  color: #fff;
  padding: 13px 20px;
  border: none;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: transform 160ms;
}
.price-cta:hover {
  transform: translateY(-1px);
}
.price-card.featured .price-cta {
  background: #fff;
  color: var(--accent);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.1);
}
.price-card.muted .price-cta {
  background: var(--ink);
  color: #fff;
  border: none;
}


/* === Waitlist inline swap (Variant B) === */
.waitlist-slot {
  position: relative;
}
.waitlist-slot > * {
  transition: opacity 180ms ease;
}
.waitlist-slot[data-state="default"] .wl-form,
.waitlist-slot[data-state="default"] .wl-success {
  display: none;
}
.waitlist-slot[data-state="form"] .wl-default,
.waitlist-slot[data-state="form"] .wl-success {
  display: none;
}
.waitlist-slot[data-state="success"] .wl-default,
.waitlist-slot[data-state="success"] .wl-form {
  display: none;
}

.wl-form {
  display: flex;
  gap: 6px;
  align-items: stretch;
}
.wl-form input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 18, 30, 0.12);
  border-radius: 100px;
  padding: 11px 16px;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 140ms, box-shadow 140ms;
  min-width: 0;
}
.wl-form input[type="email"]:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 92, 64, 0.14);
}
.wl-form button {
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 0 18px;
  border-radius: 100px;
  transition: transform 140ms ease, opacity 140ms ease;
  flex-shrink: 0;
}
.wl-form button:hover {
  transform: translateY(-1px);
}
.wl-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.wl-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: rgba(39, 201, 63, 0.12);
  border: 1px solid rgba(39, 201, 63, 0.35);
  padding: 12px 16px;
  border-radius: 14px;
  animation: wl-fade-in 220ms ease-out;
}
.wl-success-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.wl-success .wl-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #27c93f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wl-success .wl-check svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 14;
  stroke-dashoffset: 14;
  animation: wl-draw 320ms ease-out forwards;
}
.wl-success .wl-meta {
  color: var(--ink-mute);
  font-weight: 400;
  font-size: 13px;
}
.wl-success .wl-stripe-cta {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  margin-top: 6px;
}
.wl-success .wl-stripe-cta:hover {
  color: var(--ink);
}
.price-card.featured .wl-success .wl-stripe-cta {
  color: var(--accent);
}
.price-card.featured .wl-success .wl-stripe-cta:hover {
  color: var(--ink);
}
@keyframes wl-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes wl-fade-in {
  from { opacity: 0; transform: translateY(2px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wl-form-error {
  color: #b03a25;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  margin-top: 6px;
  padding: 0 4px;
}

/* Pricing section — centered moment (since only 2 tiers now) */
#pricing .section-label {
  justify-content: center;
}
#pricing h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

/* Helper line that sits under the pricing H2 — short instructional copy */
.pricing-helper {
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
  margin: 0 auto 40px;
  max-width: 520px;
}

/* Ask section — centered closing email CTA between FAQ and footer */
#ask {
  text-align: center;
}
#ask .section-label {
  justify-content: center;
}
#ask h2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}
.ask-lead {
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 auto 32px;
  max-width: 520px;
}

/* Pricing — strikethrough old price inline after the current price */
.price-amount .price-was {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 0.62em;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(106, 100, 112, 0.7);
  letter-spacing: -0.035em;
  margin-left: 12px;
  vertical-align: baseline;
}

/* Hide the ticker + queue panel until queue.js has data to render.
   No layout shift — opacity-only. */
.shell-ticker,
.hero .panel {
  opacity: 0;
  transition: opacity 220ms ease-out;
}
.shell-ticker.is-ready,
.hero .panel.is-ready {
  opacity: 1;
}

/* === Featured-card overrides for swap (Unlimited is now featured) === */
.price-card.featured .price-was {
  color: rgba(255, 255, 255, 0.6);
  text-decoration-color: rgba(255, 255, 255, 0.55);
}
/* Waitlist form on the orange featured card */
.price-card.featured .wl-form button {
  background: #fff;
  color: var(--accent);
}
.price-card.featured .wl-form input[type="email"]:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.price-card.featured .wl-success {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}
.price-card.featured .wl-form-error {
  background: rgba(255, 255, 255, 0.96);
  color: #b03a25;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 8px;
}

