/* Protocol Lab · prelive1 · cream Protocol face
   Soft pastels; punchier CTA navy + metal gold; quiet nav pills. */

:root {
  --bg: #FFFEFB;
  --bg-soft: #F7F4EF;
  --ink: #1A1A1A;
  --ink-muted: #5A5A5A;
  --border: #E8E4DE;
  --white: #FFFFFF;

  --coral: #E88B7A;
  --sky: #7EB8DA;
  --mint: #8FCB9B;
  --lavender: #B8A9C9;
  --gold: #C4962A;
  --cta: #1F5A7A;

  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --leading: 1.6;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 8px 28px rgba(26, 26, 26, 0.07);
  --shadow-lift: 0 16px 40px rgba(26, 26, 26, 0.12);
  --focus: 0 0 0 3px rgba(126, 184, 218, 0.55);
  --pad: max(24px, env(safe-area-inset-left, 0px));
  --pad-r: max(24px, env(safe-area-inset-right, 0px));
  --wrap-max: 1080px;

  --station-bg: var(--bg);
  --station-ink: var(--ink);
  --station-muted: var(--ink-muted);
  --station-accent: var(--cta);
  --station-accent-soft: #E8F1F6;
  --station-surface: var(--white);
  --station-border: var(--border);
  --station-cta-text: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .color-wash, .hero-glow { animation: none !important; }
}

body {
  margin: 0;
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: var(--leading);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
a:focus-visible,
button:focus-visible,
.door:focus-visible,
.btn:focus-visible,
.nav-pill:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

/* —— Full-page color washes (alive, not flat white) —— */
.color-wash {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(980px 520px at 8% -8%, rgba(232, 139, 122, 0.28), transparent 58%),
    radial-gradient(860px 460px at 92% 4%, rgba(126, 184, 218, 0.30), transparent 52%),
    radial-gradient(720px 400px at 74% 72%, rgba(184, 169, 201, 0.22), transparent 56%),
    radial-gradient(640px 360px at 18% 88%, rgba(143, 203, 155, 0.20), transparent 52%),
    radial-gradient(520px 300px at 48% 38%, rgba(196, 150, 42, 0.14), transparent 48%),
    var(--bg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  animation: glowPulse 9s ease-in-out infinite alternate;
}
.hero-glow.g1 { width: 280px; height: 280px; background: var(--coral); top: -8%; right: -6%; }
.hero-glow.g2 { width: 240px; height: 240px; background: var(--mint); bottom: -10%; left: -6%; animation-delay: 1.2s; }
.hero-glow.g3 { width: 200px; height: 200px; background: var(--lavender); top: 40%; right: 10%; animation-delay: 2s; }
.hero-glow.g4 { width: 180px; height: 180px; background: var(--gold); top: 6%; left: 16%; animation-delay: 0.6s; }
.hero-glow.g5 { width: 160px; height: 160px; background: var(--sky); bottom: 18%; right: 28%; animation-delay: 1.6s; }

@keyframes glowPulse {
  from { transform: scale(1); opacity: 0.4; }
  to { transform: scale(1.14); opacity: 0.62; }
}

/* Confetti canvas — fixed full viewport behind content */
.confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

/* Content sits above washes + confetti */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

/* —— Layout wrap: CRITICAL safe padding —— */
.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--pad) var(--pad-r);
}

/* —— Header: single row, cute multi-accent pills —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 60px;
  background: rgba(255, 254, 251, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(232, 228, 222, 0.75);
  padding-top: env(safe-area-inset-top, 0px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 60px;
  padding-block: 0.55rem;
  flex-wrap: nowrap;
}

.logo {
  font-weight: 750;
  font-size: 0.92rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(105deg, var(--ink) 0%, var(--cta) 50%, var(--coral) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.nav-pills {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-width: 0;
  max-width: 100%;
  padding: 2px 0.15rem 2px 2px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8px, #000 calc(100% - 10px), transparent);
}
.nav-pills::-webkit-scrollbar { display: none; }
.nav-start {
  flex-shrink: 0;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}
.nav-pill:hover { transform: translateY(-1px); }

.nav-pill--protocol {
  background: rgba(126, 184, 218, 0.12);
  color: #3A6178;
  border-color: rgba(126, 184, 218, 0.28);
}
.nav-pill--stations {
  background: rgba(143, 203, 155, 0.12);
  color: #3A6A48;
  border-color: rgba(143, 203, 155, 0.28);
}
.nav-pill--about {
  background: rgba(184, 169, 201, 0.12);
  color: #5E5670;
  border-color: rgba(184, 169, 201, 0.28);
}
.nav-pill--leads {
  background: rgba(196, 150, 42, 0.12);
  color: #7A5A12;
  border-color: rgba(196, 150, 42, 0.32);
}
.nav-pill--start {
  background: linear-gradient(135deg, var(--cta), #2A6A8C);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(31, 90, 122, 0.28);
  padding-inline: 0.85rem;
}
.nav-pill--start:hover {
  box-shadow: 0 6px 18px rgba(31, 90, 122, 0.36);
}

/* Mobile: hide Protocol/Stations/About labels if too tight — keep Start always;
   prefer showing all as compact pills with scroll */
@media (max-width: 520px) {
  .logo { font-size: 0.8rem; }
  .logo .logo-full { display: none; }
  .logo .logo-short { display: inline; }
  .nav-pill { padding: 0.34rem 0.55rem; font-size: 0.7rem; }
  .nav-pill--start { padding-inline: 0.7rem; }
}
.logo .logo-short { display: none; }

@media (min-width: 720px) {
  .logo { font-size: 1.05rem; }
  .nav-pill { font-size: 0.85rem; padding: 0.45rem 0.95rem; }
  .nav-pills { gap: 0.5rem; max-width: none; overflow: visible; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.975rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--cta), #2A6A8C);
  color: #fff;
  box-shadow: 0 8px 22px rgba(44, 95, 124, 0.28);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(44, 95, 124, 0.34); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--white); box-shadow: var(--shadow); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  padding: 3.25rem 0 2.75rem;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}
.lab-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 1rem;
}
.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta);
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-size: clamp(2.05rem, 5.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 0.85rem;
  font-weight: 750;
}
.hero .sub {
  font-size: clamp(1.02rem, 2.2vw, 1.15rem);
  color: var(--ink-muted);
  margin: 0 0 1.5rem;
  max-width: 28rem;
  line-height: 1.55;
}
.micro {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.9rem;
}

/* —— Sections / chunks —— */
.section {
  padding: 2.5rem 0 3.25rem;
}
.chunk {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 228, 222, 0.9);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  margin-bottom: 1.25rem;
}
@media (min-width: 720px) {
  .chunk { padding: 1.75rem 1.75rem; }
}

.section-head {
  margin-bottom: 1.25rem;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.025em;
}
.section-head p {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  max-width: 28rem;
}

/* —— Station doors —— */
.doors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 540px) {
  .doors { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .doors { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

.door {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.2rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(26, 26, 26, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  min-height: 10rem;
  position: relative;
  overflow: hidden;
}
.door::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 40%, rgba(255,255,255,0.55));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.door::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 16px 0 0 16px;
  background: var(--door-accent, var(--cta));
  opacity: 0.85;
}
.door:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.14);
  border-color: color-mix(in srgb, var(--door-accent, var(--cta)) 35%, var(--border));
}
.door:hover::before { opacity: 1; }
.door-icon {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.35rem;
  flex-shrink: 0;
}
.door-icon svg { width: 100%; height: 100%; }
.door-accent { display: none; }
.door h3 {
  margin: 0;
  font-size: 1.14rem;
  letter-spacing: -0.02em;
}
.door p {
  margin: 0;
  flex: 1;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.door .see {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--cta);
  margin-top: 0.35rem;
  transition: transform 0.15s ease;
}
.door:hover .see { text-decoration: underline; transform: translateX(2px); }

.door[data-station="trades"] { --door-accent: #C9A227; background: linear-gradient(180deg, #fff 55%, rgba(201,162,39,0.1)); }
.door[data-station="beauty"] { --door-accent: #C97B84; background: linear-gradient(180deg, #fff 55%, rgba(201,123,132,0.1)); }
.door[data-station="food"] { --door-accent: #D64545; background: linear-gradient(180deg, #fff 55%, rgba(214,69,69,0.09)); }
.door[data-station="local"] { --door-accent: #2A9D8F; background: linear-gradient(180deg, #fff 55%, rgba(42,157,143,0.1)); }
.door[data-station="health"] { --door-accent: #5B8A72; background: linear-gradient(180deg, #fff 55%, rgba(91,138,114,0.1)); }
.door[data-station="pros"] { --door-accent: #4A6FA5; background: linear-gradient(180deg, #fff 55%, rgba(74,111,165,0.1)); }
.door[data-station="dtc"] { --door-accent: #E07A5F; background: linear-gradient(180deg, #fff 55%, rgba(224,122,95,0.1)); }
.door[data-station="custom"] { --door-accent: #6B7280; background: linear-gradient(180deg, #fff 55%, rgba(107,114,128,0.1)); }

/* —— Stack / trust chunks —— */
.stack-line {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-align: center;
}
.trust {
  margin: 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.trust strong { color: var(--ink); font-weight: 650; }

/* —— Footer —— */
.site-footer {
  border-top: 1px solid rgba(232, 228, 222, 0.85);
  padding: 1.75rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
  margin-top: 0.5rem;
  color: var(--ink-muted);
  font-size: 0.875rem;
  background: rgba(255, 254, 251, 0.55);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}
.site-footer a { color: var(--ink-muted); text-decoration: none; font-weight: 550; }
.site-footer a:hover { color: var(--ink); }

/* —— About: slim chunked cards —— */
.page-hero {
  padding: 2.75rem 0 1.5rem;
}
.page-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.65rem;
}
.page-hero .sub {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 28rem;
  margin: 0 0 1.25rem;
}

.about-grid {
  display: grid;
  gap: 1rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .about-grid.two { grid-template-columns: 1fr 1fr; }
  .about-grid.three { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.card h2, .card h3 {
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}
.card h2 { font-size: 1.15rem; }
.card h3 { font-size: 1.02rem; }
.card p, .card li {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}
.card li { margin-bottom: 0.3rem; }
.card strong { color: var(--ink); }

.accent-bar {
  width: 2.2rem;
  height: 0.32rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
.accent-bar.c1 { background: var(--coral); }
.accent-bar.c2 { background: var(--sky); }
.accent-bar.c3 { background: var(--mint); }
.accent-bar.c4 { background: var(--lavender); }
.accent-bar.c5 { background: var(--gold); }

.station-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}
.station-chip {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.station-chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.steps-row {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 700px) {
  .steps-row { grid-template-columns: repeat(4, 1fr); }
}
.step-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 0.95rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.step-num { display: none; }
.step-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.step-card span {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* —— How it works (premium art cards) —— */
.how-chunk { overflow: hidden; }
.how-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.how-grid--compact { margin-top: 0.25rem; }
.how-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 0.85rem 1.05rem;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.07);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26, 26, 26, 0.11);
}
.how-art {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--bg-soft);
}
.how-art svg {
  width: 100%;
  height: 100%;
  display: block;
}
.how-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.how-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* —— Offer sell block (glass card, text rows — not pill CTAs) —— */
.section-tight { padding-top: 0; padding-bottom: 1.5rem; }
.offer-sell {
  margin-bottom: 0;
  padding: 1.35rem 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 228, 222, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
@media (min-width: 720px) {
  .offer-sell { padding: 1.55rem 1.65rem 1.6rem; }
}
.offer-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.offer-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.offer-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.offer-row strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.offer-row span:not(.offer-ico) {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.4;
}
.offer-row > div {
  min-width: 0;
}
.offer-ico {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.offer-ico--site {
  background: rgba(232, 139, 122, 0.16);
  color: #9A4E40;
}
.offer-ico--host {
  background: rgba(126, 184, 218, 0.18);
  color: #2A5F7A;
}
.offer-ico--leads {
  background: rgba(143, 203, 155, 0.18);
  color: #2F6B3E;
}
.offer-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.15rem;
}
.offer-secondary {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cta);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.offer-secondary:hover { text-decoration: underline; }

a.demo-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.demo-card .demo-meta strong {
  color: var(--station-accent, var(--cta));
}
.demo-card--live .demo-frame {
  background:
    linear-gradient(160deg,
      color-mix(in srgb, #C43C2C 18%, var(--station-surface)) 0%,
      #FFF5F0 50%,
      color-mix(in srgb, #3D6B4F 10%, var(--station-surface)) 100%);
}
.demo-live-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.82);
  color: #fff;
}

.closing-cta {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(126,184,218,0.15), rgba(232,139,122,0.12), rgba(143,203,155,0.15));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.closing-cta h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.closing-cta p {
  color: var(--ink-muted);
  margin: 0 auto 1.15rem;
  max-width: 24rem;
  font-size: 0.95rem;
}

.credit-line {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

/* —— Station pages —— */
body.station .color-wash {
  background: var(--station-bg);
  opacity: 1;
}
body.station {
  background: var(--station-bg);
  color: var(--station-ink);
}
body.station .site-header {
  background: color-mix(in srgb, var(--station-bg) 88%, transparent);
  border-bottom-color: var(--station-border);
}
body.station .logo {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--station-ink);
}
body.station .nav-pill--protocol,
body.station .nav-pill--stations,
body.station .nav-pill--leads,
body.station .nav-pill--about {
  background: color-mix(in srgb, var(--station-accent) 14%, var(--station-surface));
  color: var(--station-ink);
  border-color: color-mix(in srgb, var(--station-accent) 28%, var(--station-border));
}
body.station .nav-pill--start {
  background: var(--station-accent);
  color: var(--station-cta-text) !important;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--station-accent) 35%, transparent);
}
body.station .btn-primary {
  background: var(--station-accent);
  color: var(--station-cta-text);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--station-accent) 30%, transparent);
}
body.station .btn-ghost {
  border-color: var(--station-border);
  color: var(--station-ink);
  background: color-mix(in srgb, var(--station-surface) 80%, transparent);
}
body.station .btn-ghost:hover {
  background: var(--station-accent-soft);
}
body.station .site-footer {
  border-top-color: var(--station-border);
  color: var(--station-muted);
  background: color-mix(in srgb, var(--station-bg) 80%, transparent);
}
body.station .site-footer a { color: var(--station-muted); }
body.station .site-footer a:hover { color: var(--station-ink); }
body.station a:focus-visible,
body.station .btn:focus-visible,
body.station .nav-pill:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--station-accent) 45%, transparent);
}
body.station .chunk,
body.station .card,
body.station .panel,
body.station .demo-card,
body.station .station-cta-bar {
  background: var(--station-surface);
  border-color: var(--station-border);
}
body.station .micro { color: var(--station-muted); }

.station-hero {
  padding: 2.25rem 0 1.25rem;
}
.station-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--station-accent);
  margin: 0 0 0.55rem;
}
.station-hero h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.station-hero .who {
  font-size: 1.02rem;
  color: var(--station-muted);
  max-width: 28rem;
  margin: 0 0 1.15rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  font-weight: 550;
  color: var(--station-muted);
  text-decoration: none;
}
.back-link:hover { color: var(--station-ink); text-decoration: underline; }

.wedge-card {
  display: grid;
  gap: 0.85rem;
  margin: 0.25rem 0 1.5rem;
}
@media (min-width: 700px) {
  .wedge-card { grid-template-columns: 1fr 1fr; }
}
.panel {
  background: var(--station-surface);
  border: 1px solid var(--station-border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
}
.panel h2 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.panel p {
  margin: 0;
  color: var(--station-muted);
  font-size: 0.92rem;
}
.panel .label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--station-accent);
  margin-bottom: 0.4rem;
}

.demos-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.demos-head h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.demos-head p {
  margin: 0;
  color: var(--station-muted);
  font-size: 0.85rem;
}

.demo-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.75rem;
}
@media (min-width: 640px) {
  .demo-grid { grid-template-columns: repeat(3, 1fr); }
}
.demo-card {
  background: var(--station-surface);
  border: 1px solid var(--station-border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 34px color-mix(in srgb, var(--station-ink) 10%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--station-ink) 14%, transparent);
}
.demo-frame {
  flex: 1;
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--station-accent) 12%, var(--station-surface)) 0%,
      var(--station-accent-soft) 55%,
      color-mix(in srgb, var(--station-accent) 6%, var(--station-surface)) 100%);
  padding: 0.75rem 0.7rem 0.65rem;
  position: relative;
}
.demo-frame--phone {
  align-items: center;
  justify-content: center;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: color-mix(in srgb, var(--station-surface) 92%, var(--station-ink));
  border: 1px solid var(--station-border);
  border-radius: 10px 10px 0 0;
  padding: 0.4rem 0.55rem;
  box-shadow: 0 1px 0 color-mix(in srgb, var(--station-ink) 6%, transparent);
}
.browser-dots {
  display: flex;
  gap: 0.28rem;
  flex-shrink: 0;
}
.browser-dots i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  display: block;
  background: color-mix(in srgb, var(--station-muted) 55%, transparent);
}
.browser-dots i:nth-child(1) { background: #E88B7A; }
.browser-dots i:nth-child(2) { background: #D4A84B; }
.browser-dots i:nth-child(3) { background: #8FCB9B; }
.browser-url {
  flex: 1;
  min-width: 0;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--station-muted);
  background: color-mix(in srgb, var(--station-accent-soft) 70%, var(--station-surface));
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-body {
  flex: 1;
  background: var(--station-surface);
  border: 1px solid var(--station-border);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  padding: 0.65rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 6.25rem;
}
.skel-hero {
  height: 1.35rem;
  width: 72%;
  border-radius: 6px;
  background: color-mix(in srgb, var(--station-accent) 28%, var(--station-surface));
}
.skel-line {
  height: 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--station-muted) 22%, var(--station-surface));
}
.skel-line.w60 { width: 60%; }
.skel-line.w80 { width: 80%; }
.skel-line.w40 { width: 40%; }
.skel-cta {
  margin-top: 0.25rem;
  height: 1.1rem;
  width: 38%;
  border-radius: 999px;
  background: var(--station-accent);
  opacity: 0.85;
}
.skel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
.skel-card {
  height: 1.6rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--station-accent) 14%, var(--station-surface));
  border: 1px solid color-mix(in srgb, var(--station-accent) 18%, var(--station-border));
}
.phone-shell {
  width: 4.6rem;
  height: 8.2rem;
  background: color-mix(in srgb, var(--station-ink) 88%, #000);
  border-radius: 14px;
  padding: 0.35rem;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--station-ink) 25%, transparent);
  position: relative;
}
.phone-shell::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.4rem;
  height: 0.22rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--station-ink) 40%, #555);
  z-index: 1;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--station-surface);
  padding: 0.7rem 0.4rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.phone-screen .skel-hero { height: 0.7rem; width: 70%; }
.phone-screen .skel-line { height: 0.28rem; }
.phone-screen .skel-cta { height: 0.7rem; width: 55%; margin-top: auto; }
.demo-skel { display: none; }
.demo-meta {
  padding: 0.8rem 0.95rem;
  border-top: 1px solid var(--station-border);
}
.demo-meta strong {
  display: block;
  font-size: 0.92rem;
}
.demo-meta span {
  font-size: 0.78rem;
  color: var(--station-muted);
}

.station-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.25rem;
  background: var(--station-surface);
  border: 1px solid var(--station-border);
  border-radius: var(--radius);
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow);
}
.station-cta-bar p {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: 1rem;
}

/* —— Station skins —— */
body.station-trades {
  --station-bg: #0B1F3A;
  --station-ink: #F5F2EA;
  --station-muted: #A8B4C4;
  --station-accent: #C9A227;
  --station-accent-soft: #152A48;
  --station-surface: #122844;
  --station-border: #1E3A5F;
  --station-cta-text: #0B1F3A;
  --focus: 0 0 0 3px rgba(201, 162, 39, 0.5);
}
body.station-trades .site-header { background: rgba(11, 31, 58, 0.92); }
body.station-trades .btn-primary { color: #0B1F3A; font-weight: 700; }
body.station-trades .confetti-canvas { opacity: 0.55; }
body.station-trades .demo-card--live .demo-frame {
  background:
    linear-gradient(160deg,
      color-mix(in srgb, #C9A227 22%, var(--station-surface)) 0%,
      #0B1F3A 48%,
      color-mix(in srgb, #1E3A5F 55%, var(--station-surface)) 100%);
}

body.station-beauty {
  --station-bg: #FBF7F4;
  --station-ink: #2A2426;
  --station-muted: #7A6E70;
  --station-accent: #C97B84;
  --station-accent-soft: #F3E6E4;
  --station-surface: #FFFFFF;
  --station-border: #E8D5C4;
  --station-cta-text: #FFFFFF;
}

body.station-food {
  --station-bg: #F7F0E8;
  --station-ink: #2C2C2C;
  --station-muted: #6B6560;
  --station-accent: #D64545;
  --station-accent-soft: #F5DDD6;
  --station-surface: #FFFCF8;
  --station-border: #E5D5C4;
  --station-cta-text: #FFFFFF;
}

body.station-local {
  --station-bg: #F7FBFA;
  --station-ink: #1F2A2E;
  --station-muted: #5A6B70;
  --station-accent: #2A9D8F;
  --station-accent-soft: #D9F0EC;
  --station-surface: #FFFFFF;
  --station-border: #D0E4E0;
  --station-cta-text: #FFFFFF;
}

body.station-health {
  --station-bg: #F5F8F6;
  --station-ink: #1E2A28;
  --station-muted: #5A6864;
  --station-accent: #5B8A72;
  --station-accent-soft: #DDEAE3;
  --station-surface: #FFFFFF;
  --station-border: #D4E0D9;
  --station-cta-text: #FFFFFF;
}

body.station-pros {
  --station-bg: #F6F5F2;
  --station-ink: #1C1C1C;
  --station-muted: #6A6762;
  --station-accent: #4A6FA5;
  --station-accent-soft: #E4EAF2;
  --station-surface: #FFFFFF;
  --station-border: #E0DDD6;
  --station-cta-text: #FFFFFF;
}


body.station-local .demo-card--live .demo-frame {
  background:
    linear-gradient(160deg,
      color-mix(in srgb, #2A9D8F 22%, var(--station-surface)) 0%,
      #F7FBFA 48%,
      color-mix(in srgb, #E88B7A 28%, var(--station-surface)) 100%);
}
body.station-health .demo-card--live .demo-frame {
  background:
    linear-gradient(160deg,
      color-mix(in srgb, #5B8A72 22%, var(--station-surface)) 0%,
      #F5F8F6 48%,
      color-mix(in srgb, #5A6864 22%, var(--station-surface)) 100%);
}
body.station-pros .demo-card--live .demo-frame {
  background:
    linear-gradient(160deg,
      color-mix(in srgb, #4A6FA5 22%, var(--station-surface)) 0%,
      #F6F5F2 48%,
      color-mix(in srgb, #1C1C1C 18%, var(--station-surface)) 100%);
}

body.station-dtc {
  --station-bg: #FAFAF8;
  --station-ink: #171717;
  --station-muted: #5C5C5C;
  --station-accent: #E07A5F;
  --station-accent-soft: #F6E4DE;
  --station-surface: #FFFFFF;
  --station-border: #E6E2DC;
  --station-cta-text: #FFFFFF;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Catch-all lane note under stations */
.lane-note {
  margin: 1.35rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(232, 228, 222, 0.95);
  box-shadow: 0 8px 24px rgba(26,26,26,0.04);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-muted, #4a4a4a);
}
.lane-note a:not(.btn) {
  color: var(--cta, #2C5F7C);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lane-note a:not(.btn):hover { color: var(--ink, #1a1a1a); }
.lane-note .btn-primary {
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(135deg, #1e4a63, #2C5F7C 45%, #3d7a9c);
  border: none;
  box-shadow: 0 10px 26px rgba(30, 74, 99, 0.35);
}
.lane-note .btn-primary:hover {
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(30, 74, 99, 0.42);
}

.lane-note-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 0.85rem;
}
.lane-note-actions .btn { font-size: 0.9rem; padding: 0.55rem 1rem; }
.lane-note-mail {
  color: var(--cta, #2C5F7C);
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lane-note-mail:hover { color: var(--ink, #1a1a1a); }
.lane-note p { margin: 0; }
.lane-note strong { color: var(--ink, #1a1a1a); font-weight: 700; }


/* —— Hub glue: pricing + FAQ —— */
.glue-chunk { margin-bottom: 0; }
.glue-micro {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.45;
}
.price-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.price-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232,139,122,0.14), rgba(126,184,218,0.14), rgba(143,203,155,0.14));
  border: 1px solid rgba(232, 228, 222, 0.95);
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.price-pills li strong {
  font-weight: 750;
  color: var(--ink);
}
.price-pills--compact li {
  font-size: 0.84rem;
  padding: 0.4rem 0.7rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.faq-item {
  border: 1px solid rgba(232, 228, 222, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.15rem 0.95rem;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding: 0.85rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--cta, #E88B7A);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.45;
}


/* —— Close pass · v=suite1 —— */
.btn-outline {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: rgba(44, 95, 124, 0.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--cta);
  box-shadow: var(--shadow);
}
.btn-full {
  width: 100%;
}

.hero-inner { max-width: 40rem; }
.hero-cta-row { margin-top: 0.15rem; }
.hero-micro {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 550;
  letter-spacing: -0.01em;
}
.hero .sub strong { color: var(--ink); font-weight: 750; }

/* Proof metrics strip */
.proof-strip {
  position: relative;
  z-index: 2;
  padding: 0 0 0.35rem;
  margin-top: -0.75rem;
}
.proof-metrics {
  list-style: none;
  margin: 0;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 228, 222, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.proof-metrics li {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.35;
  padding-left: 0.15rem;
}
.proof-metrics strong {
  color: var(--ink);
  font-weight: 750;
}
@media (min-width: 720px) {
  .proof-metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem 1rem;
    padding: 1rem 1.25rem;
    text-align: center;
  }
  .proof-metrics li { padding-left: 0; font-size: 0.88rem; }
}

/* Offer close card */
.close-card {
  border: 1.5px solid rgba(44, 95, 124, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,250,245,0.9)),
    radial-gradient(520px 200px at 10% 0%, rgba(232,139,122,0.12), transparent 60%),
    radial-gradient(480px 180px at 90% 100%, rgba(126,184,218,0.14), transparent 55%);
}
.close-card-top { margin-bottom: 1.1rem; }
.close-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #d4a84b);
  margin-bottom: 0.65rem;
}
.close-card h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.close-pitch {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  max-width: 38rem;
}
.close-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.15rem 0 1rem;
}
@media (min-width: 640px) {
  .close-cols { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
.close-col {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 228, 222, 0.95);
}
.close-col--hh {
  border-color: rgba(44, 95, 124, 0.28);
  box-shadow: 0 0 0 1px rgba(44, 95, 124, 0.06);
  background: linear-gradient(160deg, rgba(232,241,246,0.85), rgba(255,255,255,0.9));
}
.close-col-label {
  margin: 0 0 0.55rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.amt-inline {
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.amt-mo {
  font-size: 0.72em;
  font-weight: 700;
}
.close-bullets {
  margin: 0;
  padding: 0 0 0 1.05rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.close-bullets li { margin: 0.2rem 0; }

.close-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.25rem 0 1.1rem;
  padding: 0.85rem 0.5rem;
  border-top: 1px dashed rgba(232, 228, 222, 0.95);
  border-bottom: 1px dashed rgba(232, 228, 222, 0.95);
  text-align: center;
}
.close-price-block .amt {
  display: block;
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
}
.close-price-block .amt-note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 550;
}

.close-ctas {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.close-micro {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.45;
}
.price-pills--slim {
  margin-top: 0.25rem;
}
.price-pills--slim li {
  font-size: 0.84rem;
  padding: 0.4rem 0.75rem;
}

/* Bottom close */
.bottom-close {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,244,239,0.75)),
    radial-gradient(420px 160px at 50% 0%, rgba(143,203,155,0.16), transparent 70%);
}
.bottom-close h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.025em;
}
.bottom-close > p {
  margin: 0 auto 1rem;
  max-width: 34rem;
  color: var(--ink-muted);
}
.bottom-close-ctas {
  justify-content: center;
  margin-bottom: 0.65rem;
}
.bottom-close .close-micro { margin-bottom: 0; }

/* Sticky dual CTA bar */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  gap: 0.5rem;
  padding: 0.65rem var(--pad) calc(0.65rem + env(safe-area-inset-bottom, 0px)) var(--pad-r);
  background: rgba(255, 254, 251, 0.92);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-top: 1px solid rgba(232, 228, 222, 0.9);
  box-shadow: 0 -8px 28px rgba(26, 26, 26, 0.08);
}

.sticky-cta .btn {
  padding: 0.72rem 0.7rem;
  font-size: 0.86rem;
  white-space: nowrap;
}
@media (min-width: 720px) {
  .sticky-cta {
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, calc(100% - 2rem));
    border-radius: 18px 18px 0 0;
    padding-inline: 0.85rem;
  }
  .sticky-cta .btn { font-size: 0.92rem; padding: 0.78rem 0.9rem; }
}
@media (min-width: 960px) {
  /* desktop: keep end CTA, hide sticky noise */
  .sticky-cta { display: none !important; }
  body { padding-bottom: 0; }
}

/* Footer clearance when sticky present on small screens */
@media (max-width: 959px) {
  .site-footer {
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }
}


/* —— Suite doors (Exclusive leads + Automation) · v=suite1 —— */
.suite-chunk {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,244,239,0.82)),
    radial-gradient(520px 200px at 8% 0%, rgba(212,168,75,0.12), transparent 58%),
    radial-gradient(480px 180px at 92% 100%, rgba(184,169,201,0.14), transparent 55%);
}
.suite-doors {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}
@media (min-width: 800px) {
  .suite-doors { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
}
.suite-door {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1.5px solid rgba(232, 228, 222, 0.95);
  box-shadow: var(--shadow);
}
.suite-door#exclusive-leads {
  border-color: rgba(212, 168, 75, 0.35);
  background:
    linear-gradient(165deg, rgba(255,250,240,0.95), rgba(255,255,255,0.9)),
    radial-gradient(280px 140px at 100% 0%, rgba(212,168,75,0.16), transparent 60%);
}
.suite-door#automation {
  border-color: rgba(184, 169, 201, 0.4);
  background:
    linear-gradient(165deg, rgba(248,245,252,0.95), rgba(255,255,255,0.9)),
    radial-gradient(280px 140px at 0% 0%, rgba(184,169,201,0.18), transparent 60%);
}
.suite-door-top { margin-bottom: 0.85rem; }
.suite-door-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  margin-right: 0.45rem;
  vertical-align: middle;
}
.suite-door#automation .suite-door-num {
  background: linear-gradient(135deg, var(--lavender), var(--sky));
}
.suite-door-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(247, 244, 239, 0.95);
  border: 1px solid var(--border);
  vertical-align: middle;
}
.suite-door h3 {
  margin: 0.7rem 0 0.4rem;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.suite-pitch {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}
.suite-points {
  margin: 0 0 1rem;
  padding: 0 0 0 1.05rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  flex: 1;
}
.suite-points li { margin: 0.28rem 0; }
.suite-points strong { color: var(--ink); font-weight: 650; }
.suite-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  margin: 0 0 0.85rem;
  padding: 0.65rem 0;
  border-top: 1px dashed rgba(232, 228, 222, 0.95);
  border-bottom: 1px dashed rgba(232, 228, 222, 0.95);
}
.suite-price .amt {
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.suite-price .talk {
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.suite-price .amt-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 550;
}
.suite-ctas { margin-bottom: 0.65rem; }
.suite-micro {
  margin: 0;
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.45;
}
.suite-micro a {
  color: var(--cta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* mk1 · demo card photo thumbs */
.demo-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}
.demo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.demo-grid--board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin: 0.75rem 0 1.75rem;
}
.demos-board .demo-station h2 { margin-bottom: 0.65rem; }
.browser-body:has(.demo-thumb) {
  padding: 0.45rem;
}


/* Above-fold demo proof — thicker square tiles, label on photo bottom */
.proof-demos-head {
  margin: 0.85rem 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.proof-demos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 6.75rem));
  gap: 0.5rem;
  margin-top: 0.35rem;
  justify-content: start;
  max-width: 22rem;
}
.proof-demo {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: #111;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  aspect-ratio: 1 / 1.12;
}
.proof-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(26, 26, 26, 0.12);
}
.proof-demo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proof-demo span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 1.35rem 0.4rem 0.4rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: left;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.72) 55%, rgba(0,0,0,0.88) 100%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.proof-demos-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--cta);
  text-decoration: none;
}
.proof-demos-link:hover { text-decoration: underline; }
.doors .door[data-station="trades"] { order: -1; }
@media (max-width: 560px) {
  .proof-demos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    gap: 0.4rem;
  }
  .proof-demo { aspect-ratio: 1 / 1.15; border-radius: 11px; }
  .proof-demo span { font-size: 0.52rem; padding: 1.2rem 0.35rem 0.35rem; }
}
/* proof1 compact thumbs */

/* sleek1 proof pills */

/* proof2 */

/* proof3 */

/* proof4 */

/* tiles1 deploy */



/* pathequ1 — equal Site + HH / Site only pills */
.path-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.55rem;
  width: 100%;
  max-width: 34rem;
}
.path-pills .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
  min-height: 2.85rem;
  box-sizing: border-box;
}
.path-pills--center {
  margin-inline: auto;
}
.close-ctas .path-pills {
  max-width: none;
  margin-top: 0;
}
.sticky-cta.is-visible {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}
.sticky-cta .sticky-path-pills {
  margin-top: 0;
  max-width: none;
}
.sticky-cta .sticky-path-pills .btn {
  min-height: 2.5rem;
  font-size: 0.82rem;
  padding: 0.65rem 0.5rem;
}
@media (max-width: 420px) {
  .path-pills .btn { font-size: 0.84rem; padding-inline: 0.55rem; }
}

/* stationscompact1 — hub Stations: dense tile grid, not one tall card each */
#stations .doors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
@media (min-width: 640px) {
  #stations .doors { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.65rem; }
}
@media (min-width: 960px) {
  #stations .doors { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
#stations .door {
  min-height: 0;
  padding: 0.7rem 0.75rem;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.06);
}
#stations .door:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.1);
}
#stations .door-icon {
  width: 1.85rem;
  height: 1.85rem;
  margin: 0;
}
#stations .door h3 {
  font-size: 0.95rem;
  line-height: 1.2;
}
#stations .door p,
#stations .door .see {
  display: none;
}
#stations .door::after {
  width: 3px;
}

/* stationscompact1 deploy */


/* Early leads ask under hero paths */
.hero-leads-ask {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 600;
}
.hero-leads-ask a {
  color: var(--cta, #1F5A7A);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 90, 122, 0.35);
}
.hero-leads-ask a:hover {
  border-bottom-color: var(--cta, #1F5A7A);
}
