/* Pomegranate · shared styles */

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/geist-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/geist-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink:      #FFFFFF;
  --ink-2:    #F5F5F5;
  --ink-3:    #EBEBEB;
  --rule:     #D0D0D0;
  --rule-hi:  #808080;
  --dim:      #444444;
  --mid:      #1A1A1A;
  --pale:     #0A0A0A;
  --white:    #000000;
  --carmine:  #FF0040;
  --amber:    #FFD000;
  --rainbow:  linear-gradient(90deg, #FF0040, #FF1F7A, #FF5500, #FFD000, #D60080, #FF0040);
  --dk-ink:   #000000;
  --dk-mid:   #AAAAAA;
  --dk-pale:  #DDDDDD;
  --dk-rule:  #1F1F1F;
  --dk-rule2: #2F2F2F;
  --dk-white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Geist', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.rb-text {
  background: var(--rainbow); background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rb-shift 6s linear infinite;
}
.rb-bg {
  background: var(--rainbow); background-size: 300% auto;
  animation: rb-shift 6s linear infinite;
}
.rb-border {
  background: linear-gradient(var(--ink), var(--ink)) padding-box,
              var(--rainbow) border-box;
  border: 1px solid transparent;
}
@keyframes rb-shift { to { background-position: 300% center; } }
@keyframes blink    { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 768px) { nav { padding: 1.25rem 3.5rem; } }
.nav-links {
  display: none; align-items: center; gap: 1.75rem;
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a:not(.nav-cta) { color: var(--dim); transition: color 0.2s; position: relative; }
.nav-links a:not(.nav-cta):hover { color: var(--pale); }
.nav-links a.is-current { color: var(--pale); }
.nav-links a.is-current::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--rainbow); background-size: 300% auto;
  animation: rb-shift 6s linear infinite;
}
.nav-cta {
  padding: 0.6rem 1.25rem;
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; font-weight: 600;
  background: var(--rainbow); background-size: 300% auto;
  animation: rb-shift 6s linear infinite;
}

/* ─── LAYOUT ─── */
main { padding-top: 5rem; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .wrap { padding: 0 3.5rem; } }
.wrap--narrow { max-width: 880px; }

section { padding: 5rem 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 768px) { section { padding: 6.5rem 0; } }
section.dark {
  background: var(--dk-ink); border-bottom-color: var(--dk-rule);
  color: var(--dk-white);
}
section.dark h2 { color: var(--dk-white); }
section.dark p { color: var(--dk-mid); }

.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim);
  padding-left: 3rem; position: relative;
  margin-bottom: 1.75rem; display: inline-block;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 2rem; height: 1px; background: var(--rule-hi);
}
section.dark .eyebrow { color: var(--dk-mid); }
section.dark .eyebrow::before { background: var(--dk-rule2); }

h1.display {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  letter-spacing: -0.05em; line-height: 0.95;
  color: var(--white); margin-bottom: 1.5rem;
}
h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  letter-spacing: -0.04em; line-height: 1.1;
  color: var(--white); margin-bottom: 1.25rem;
}
h3 {
  font-size: 1.125rem; letter-spacing: -0.02em;
  color: var(--pale); margin-bottom: 0.5rem;
}
p.lead { font-size: 1.125rem; color: var(--mid); max-width: 680px; line-height: 1.6; }
p { color: var(--mid); max-width: 680px; }
code, .code {
  font-family: 'Geist Mono', monospace; font-size: 12px;
  background: var(--ink-2); color: var(--pale);
  padding: 2px 6px; border: 1px solid var(--rule);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; padding: 1rem 1.75rem;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; cursor: pointer;
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; }
.btn-ghost {
  color: var(--pale); border: 1px solid var(--rule-hi);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--pale); }
section.dark .btn-ghost { color: var(--dk-white); border-color: var(--dk-rule2); }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; align-items: center; }
.cta-note {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dim);
}

/* ─── HERO ─── */
.hero {
  padding: 6rem 0 4.5rem;
  background:
    radial-gradient(ellipse at 90% -5%, rgba(255,0,64,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at -5% 100%, rgba(255,208,0,0.10) 0%, transparent 55%),
    var(--ink);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 768px) { .hero { padding: 8rem 0 6rem; } }
.hero-intro { margin-bottom: 3rem; max-width: 980px; position: relative; z-index: 2; }
.hero-intro .display { margin-bottom: 0; }

.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 580px); gap: 0; }
}
.hero-copy p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--mid); max-width: 540px;
}
.cta-note-row { margin-top: 1.25rem !important; }

.hero-mock { display: flex; justify-content: center; }

/* Hero illustration — sits cleanly on the gradient, no card */
.hero-illustration {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  border: none;
  position: relative;
  box-shadow: none;
}
.hero-illustration::before { content: none; }
.hero-illustration svg { width: 100%; height: auto; display: block; }

/* Desktop: float illustration top-right behind the headline so they overlap */
@media (min-width: 980px) {
  .hero .wrap { position: relative; }
  .hero-intro { max-width: 880px; }
  .hero-mock {
    position: absolute;
    top: 1rem;
    right: -1rem;
    width: 480px;
    margin: 0;
    z-index: 1;            /* behind the headline */
    pointer-events: none;  /* let clicks pass through to copy/CTAs */
  }
  .hero-illustration {
    margin: 0;
    max-width: 480px;
  }
}

/* In-tool proposal mockup */
.mock-proposal {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 20px 50px -20px rgba(0,0,0,0.25),
    0 1px 0 rgba(0,0,0,0.04);
  padding: 0;
  max-width: 480px;
  margin: 0 auto;
}
.mock-proposal::before {
  content: ''; position: absolute; inset: 0;
  background: var(--rainbow); background-size: 300% auto;
  animation: rb-shift 6s linear infinite;
  height: 3px; bottom: auto;
}
.mock-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--rule);
  background: var(--ink);
}
.mock-head .mock-where {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim);
  display: flex; gap: 0.5rem; align-items: center;
}
.mock-head .mock-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--carmine);
}
.mock-head .mock-tag {
  font-family: 'Geist Mono', monospace; font-size: 9px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--carmine);
  padding: 2px 6px; border: 1px solid var(--carmine);
}
.mock-body { padding: 1.25rem 1.1rem 1rem; }
.mock-quote {
  font-family: 'Geist', sans-serif; font-size: 15px;
  color: var(--pale); line-height: 1.55;
  margin-bottom: 1rem;
}
.mock-quote em { color: var(--carmine); font-style: normal; font-weight: 500; }
.mock-meta {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--dim);
  padding-top: 0.85rem; border-top: 1px solid var(--rule);
  margin-bottom: 1rem;
}
.mock-actions { display: flex; gap: 0.5rem; }
.mock-btn {
  flex: 1;
  padding: 0.65rem 0.75rem;
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--rule);
  background: var(--ink);
  color: var(--pale);
  text-align: center;
  cursor: default;
}
.mock-btn.primary {
  background: var(--pale); color: var(--ink); border-color: var(--pale);
}

/* ─── LOGO STRIP ─── */
.logos {
  padding: 2.75rem 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.logos-group + .logos-group { margin-top: 2.25rem; }
.logos-label {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--dim);
  text-align: center; margin-bottom: 1.5rem;
}
.logos-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2rem 3rem;
}
.logos-row img {
  height: 22px; width: auto;
  filter: brightness(0) invert(0.4);
  transition: filter 0.2s, transform 0.2s;
}
.logos-row img:hover { filter: brightness(0) invert(0.15); }
.logos-row .text-logo {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.02em;
  color: var(--rule-hi); font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s;
}
.logos-row .text-logo:hover { color: var(--pale); border-color: var(--rule-hi); }
.logos-row .text-logo.logo-more {
  border: none;
  padding: 6px 0;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--dim);
}

/* ─── BIG STAT ─── */
.big-stat {
  padding: 5rem 0;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.big-stat .big-num {
  font-family: 'Geist', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: -0.06em; line-height: 0.95;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.big-stat .big-sub {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim); margin-bottom: 1.5rem;
}
.big-stat .big-desc {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--mid); max-width: 580px; margin: 0 auto;
  line-height: 1.6;
}

/* ─── PROBLEM → WIN ─── */
.problem h2 strong { color: var(--carmine); font-weight: 700; }
.pair-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .pair-grid { grid-template-columns: 1fr 1fr; } }
.pair-cell {
  background: var(--ink);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.pair-cell .pair-role {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim);
}
.pair-cell .pair-pain {
  font-size: 1rem; color: var(--mid); line-height: 1.5;
}
.pair-cell .pair-pain b { color: var(--carmine); font-weight: 600; }
.pair-cell .pair-divider {
  height: 1px; background: var(--rule);
  position: relative; margin: 0.25rem 0;
}
.pair-cell .pair-divider::after {
  content: 'WITH POMEGRANATE';
  position: absolute; left: 0; top: -7px;
  background: var(--ink); padding-right: 0.6rem;
  font-family: 'Geist Mono', monospace; font-size: 9px;
  letter-spacing: 2px; color: var(--dim);
}
.pair-cell .pair-win {
  font-size: 1rem; color: var(--pale); line-height: 1.5;
  font-weight: 500;
}
.pair-cell .pair-win b { color: var(--pale); font-weight: 700; }

/* ─── 80% CALLOUT ─── */
.callout-80 {
  padding: 6rem 0 5rem;
  background: var(--ink-2);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.callout-80 .quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--pale); max-width: 760px; margin: 0 auto 1.25rem;
}
.callout-80 .quote em { color: var(--carmine); font-style: italic; }
.callout-80 .sub {
  font-family: 'Geist', sans-serif; font-size: 1rem;
  color: var(--mid); max-width: 520px; margin: 0 auto;
  line-height: 1.5;
}

/* ─── PRODUCT ─── */
.product-top {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  margin-top: 2.5rem; align-items: start;
}
@media (min-width: 980px) {
  .product-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.product-cards {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
.product-card {
  border: 1px solid var(--rule);
  background: var(--ink); padding: 1.5rem;
}
.product-card .card-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim); margin-bottom: 0.75rem;
}
.product-card h3 {
  font-size: 1.25rem; letter-spacing: -0.03em;
  color: var(--pale); margin-bottom: 0.5rem;
}
.product-card .card-sub {
  font-size: 14px; color: var(--mid); margin-bottom: 1.1rem; line-height: 1.5;
}
.node-pills {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.node-pills span {
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.5px; color: var(--pale);
  padding: 0.35rem 0.55rem;
  background: var(--ink-2); border: 1px solid var(--rule);
}

/* Live-record mockup */
.mock-record {
  border: 1px solid var(--rule);
  background: var(--ink);
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.25);
}
.mock-record .rec-head {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--rule);
  background: var(--ink-2);
  display: flex; justify-content: space-between; align-items: center;
}
.mock-record .rec-head .rec-type {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim);
}
.mock-record .rec-head .rec-status {
  font-family: 'Geist Mono', monospace; font-size: 9px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #007A2E; background: rgba(0,154,62,0.08);
  padding: 2px 6px; border: 1px solid rgba(0,154,62,0.3);
}
.mock-record .rec-body { padding: 1.25rem 1.1rem; }
.mock-record .rec-title {
  font-size: 1.5rem; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 1rem; font-weight: 600;
}
.mock-record .rec-row {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 0.5rem; padding: 0.5rem 0;
  border-top: 1px dashed var(--rule);
  font-size: 13.5px;
}
.mock-record .rec-row:first-of-type { border-top: none; padding-top: 0; }
.mock-record .rec-key {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim);
  padding-top: 2px;
}
.mock-record .rec-val { color: var(--mid); line-height: 1.45; }
.mock-record .rec-val b { color: var(--pale); font-weight: 600; }
.mock-record .rec-val .trend { color: #007A2E; font-family: 'Geist Mono', monospace; font-size: 11px; }
.mock-record .rec-val .strike { text-decoration: line-through; color: var(--dim); }

.integrate-line {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 14px; color: var(--mid);
}
.integrate-line b { color: var(--pale); font-weight: 600; }

/* ─── HOW IT WORKS ─── */
.flow-3 {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .flow-3 { grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
}
.flow-step {
  padding: 1.75rem 1.5rem;
  background: var(--ink);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
@media (min-width: 900px) {
  .flow-step:not(:last-child)::after {
    content: '→';
    position: absolute; right: -1rem; top: 50%;
    transform: translateY(-50%);
    font-family: 'Geist Mono', monospace; font-size: 18px;
    color: var(--carmine); z-index: 1;
    background: var(--ink); padding: 0.25rem 0.15rem;
  }
}
.flow-step .step-tag {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--carmine);
}
.flow-step h3 {
  font-size: 1.05rem; color: var(--pale);
  letter-spacing: -0.02em; margin-bottom: 0;
}
.flow-step .step-desc {
  font-size: 13.5px; color: var(--mid); line-height: 1.5;
}
.mini-mock {
  border: 1px solid var(--rule);
  background: var(--ink-2);
  padding: 0.75rem 0.85rem;
  font-family: 'Geist', sans-serif; font-size: 12.5px;
  color: var(--pale); line-height: 1.45;
  margin-top: auto;
}
.mini-mock .mini-tag {
  font-family: 'Geist Mono', monospace; font-size: 9px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dim); margin-bottom: 0.4rem;
  display: flex; gap: 0.4rem; align-items: center;
}
.mini-mock .mini-tag .blink {
  width: 4px; height: 9px; background: var(--carmine);
  display: inline-block;
  animation: blink 1s steps(2, end) infinite;
}
.mini-mock em { color: var(--carmine); font-style: normal; font-weight: 500; }
.mini-mock .strike { text-decoration: line-through; color: var(--dim); }

/* ─── WHY ─── */
.why-band {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .why-band { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.why-illo {
  width: 96px; height: 76px;
  margin-bottom: 1.25rem;
  display: block;
}
.why-illo svg { width: 100%; height: 100%; }
.why-claim .why-num {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 2px; color: var(--carmine);
  margin-bottom: 0.75rem;
}
.why-claim h3 {
  font-size: 1.1rem; color: var(--dk-white);
  letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.why-claim p { font-size: 14px; color: var(--dk-mid); line-height: 1.6; }
section.dark .why-claim h3 { color: var(--dk-white); }

/* ─── BOOKING SECTION ─── */
#book {
  padding: 5rem 1.5rem;
  border-top: none;
  position: relative;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255,0,64,0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(255,208,0,0.07) 0%, transparent 45%),
    #FFFFFF;
  border-bottom: 1px solid var(--rule);
}
#book::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--rainbow); background-size: 300% auto;
  animation: rb-shift 6s linear infinite;
}
@media (min-width: 768px) { #book { padding: 7rem 3.5rem; } }
.book-inner { max-width: 1200px; margin: 0 auto; }
.book-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem 6rem; align-items: center;
}
@media (min-width: 1024px) { .book-grid { grid-template-columns: 1fr 1fr; } }
.book-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.1; margin-bottom: 1.5rem;
}
.book-body { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }
.book-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.book-list-item { display: flex; gap: 1rem; align-items: flex-start; font-size: 13px; color: var(--mid); }
.book-list-dash { flex-shrink: 0; }

/* ─── BOOKING WIDGET ─── */
.booking-widget {
  background: var(--ink-2);
  border: 1px solid var(--rule-hi);
  position: relative; overflow: hidden;
}
.booking-widget::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--rainbow); background-size: 300% auto;
  animation: rb-shift 6s linear infinite;
}
.booking-inner { padding: 2.5rem; }
.booking-header-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  padding-bottom: 1.25rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.booking-step { display: none; }
.booking-step.active { display: block; }
.booking-week-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.booking-week-label {
  font-family: 'Geist', sans-serif; font-size: 1.1rem;
  color: var(--white);
}
.booking-week-btns { display: flex; gap: 0.5rem; }
.booking-nav-btn {
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem; line-height: 1;
}
.booking-nav-btn:hover:not(:disabled) { background: var(--ink-3); color: var(--pale); }
.booking-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.booking-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 1.5rem;
}
.booking-day {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 0.6rem 0.25rem;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer; transition: all 0.2s;
  color: var(--dim); text-align: center;
}
.booking-day:not(.unavailable):hover { background: var(--ink-3); border-color: var(--rule); color: var(--pale); }
.booking-day.available { border-color: var(--rule); color: var(--pale); }
.booking-day.selected {
  background: linear-gradient(var(--ink-2), var(--ink-2)) padding-box,
              var(--rainbow) border-box;
  border: 1px solid transparent;
  color: var(--white);
}
.booking-day.unavailable { opacity: 0.25; cursor: not-allowed; }
.booking-day-name {
  font-family: 'Geist Mono', monospace;
  font-size: 8px; letter-spacing: 1px; text-transform: uppercase;
}
.booking-day-num { font-family: 'Geist', sans-serif; font-size: 1.15rem; line-height: 1; }
.booking-day-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--carmine); }

.booking-times { margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.booking-times-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 0.75rem;
}
.booking-time-list { display: flex; flex-direction: column; gap: 0.5rem; }
.booking-time-btn {
  padding: 0.75rem 1rem;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--mid); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.2s;
  font-size: 12px; letter-spacing: 0.5px;
  width: 100%; text-align: left;
}
.booking-time-btn:hover { color: var(--white); border-color: var(--rule-hi); background: var(--ink-3); }
.booking-time-btn.selected {
  background: linear-gradient(var(--ink-2), var(--ink-2)) padding-box,
              var(--rainbow) border-box;
  border: 1px solid transparent; color: var(--white);
}
.booking-time-dur {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--dim);
}
.booking-time-sel {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; text-transform: uppercase; letter-spacing: 1px;
}
.booking-prompt {
  font-size: 12px; color: var(--dim); font-style: italic;
  text-align: center; padding: 1rem 0;
}
.booking-primary-btn {
  display: block; width: 100%; margin-top: 1.25rem;
  padding: 1rem;
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink); font-weight: 600;
  border: none; cursor: pointer;
  background: var(--rainbow); background-size: 300% auto;
  animation: rb-shift 6s linear infinite;
  transition: opacity 0.2s, transform 0.15s;
}
.booking-primary-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.booking-primary-btn:disabled { opacity: 0.2; cursor: not-allowed; }

.booking-form { display: flex; flex-direction: column; gap: 1.25rem; }
.booking-selected-slot {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; padding: 1rem;
  border: 1px solid var(--rule);
  background: var(--ink-3);
  margin-bottom: 0.5rem;
}
.booking-slot-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dim); margin-bottom: 0.3rem;
}
.booking-slot-date { font-family: 'Geist', sans-serif; font-size: 1.1rem; color: var(--pale); }
.booking-slot-time { font-size: 13px; color: var(--mid); }
.booking-change-btn {
  background: none; border: none;
  color: var(--mid); font-size: 11px;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
  flex-shrink: 0;
}
.booking-change-btn:hover { color: var(--white); }
.booking-field-label {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 0.5rem;
}
.booking-input, .booking-textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--rule);
  padding: 0.75rem;
  font-size: 13px; color: var(--white);
  font-family: 'Geist', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.booking-input:focus, .booking-textarea:focus { border-color: var(--rule-hi); }
.booking-input::placeholder, .booking-textarea::placeholder { color: var(--dim); }
.booking-textarea { resize: none; }

.booking-success { padding: 2.5rem 1.5rem; text-align: center; }
.booking-success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--ink); border: 1px solid var(--rule-hi);
  font-size: 1.5rem; margin-bottom: 1.5rem;
}
.booking-success-title {
  font-family: 'Geist', sans-serif; font-size: 1.5rem;
  color: var(--white); margin-bottom: 0.75rem;
}
.booking-success-body { font-size: 13px; color: var(--mid); line-height: 1.65; max-width: 280px; margin: 0 auto 1.5rem; }
.booking-success-detail {
  display: inline-block; text-align: left;
  background: var(--ink); border: 1px solid var(--rule);
  padding: 1rem 1.25rem;
  font-size: 13px; color: var(--pale); line-height: 1.6;
}

/* ─── FOOTER ─── */
footer {
  background: #FFFFFF;
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, #FF0040, #FF1F7A, #FF5500, #FFD000, #D60080, #FF0040) 1;
}
.foot-top {
  padding: 3rem 1.5rem 2rem;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) {
  .foot-top { grid-template-columns: 2fr 1fr 1fr 1fr; padding: 3.5rem 3.5rem 2rem; }
}
.foot-brand .foot-tag {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dim); margin-top: 1rem;
}
.foot-col h4 {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim); margin-bottom: 1rem;
}
.foot-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.foot-col ul a {
  font-size: 14px; color: var(--mid); transition: color 0.15s;
}
.foot-col ul a:hover { color: var(--pale); }
.foot-bottom {
  padding: 1.5rem 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 0.5rem;
  align-items: center; justify-content: space-between;
}
@media (min-width: 768px) {
  .foot-bottom { flex-direction: row; padding: 1.5rem 3.5rem; }
}
.foot-copy {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim);
}

/* ─── FIT ─── */
.fit-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .fit-grid { grid-template-columns: 1fr 1fr; } }
.fit-grid.fit-grid--single { grid-template-columns: 1fr; }
@media (min-width: 768px) { .fit-grid.fit-grid--single { grid-template-columns: 1fr; } }
.fit-grid--single .fit-col ul {
  display: grid; grid-template-columns: 1fr;
  gap: 0.7rem;
}
@media (min-width: 768px) {
  .fit-grid--single .fit-col ul { grid-template-columns: 1fr 1fr; gap: 0.9rem 2.5rem; }
}
.fit-col {
  background: var(--ink);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.fit-col .fit-tag {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim);
}
.fit-col.fit-yes .fit-tag { color: #009A3E; }
.fit-col.fit-no  .fit-tag { color: var(--carmine); }
.fit-col ul {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.fit-col li {
  font-size: 14.5px; color: var(--pale); line-height: 1.5;
  padding-left: 1.5rem; position: relative;
}
.fit-col li b { color: var(--pale); font-weight: 600; }
.fit-col.fit-yes li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: #009A3E; font-weight: 600;
}
.fit-col.fit-no li::before {
  content: '×'; position: absolute; left: 0; top: 0;
  color: var(--carmine); font-weight: 600;
}

/* ─── ROLE PIVOT (link to other role pages) ─── */
.role-pivot {
  padding: 4rem 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.role-pivot-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim); margin-bottom: 1.5rem;
  text-align: center;
}
.role-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .role-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; padding: 0 3.5rem; } }
.role-card {
  display: block;
  padding: 1.75rem 1.5rem;
  background: var(--ink);
  border: 1px solid var(--rule);
  transition: border-color 0.2s, transform 0.15s;
}
.role-illo {
  width: 110px; height: 64px;
  margin-bottom: 1.25rem;
}
.role-illo svg { width: 100%; height: 100%; display: block; }
.role-card:hover { border-color: var(--rule-hi); transform: translateY(-2px); }
.role-card .role-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--carmine); margin-bottom: 0.65rem;
}
.role-card .role-title {
  font-size: 1.15rem; color: var(--pale);
  letter-spacing: -0.02em; margin-bottom: 0.5rem; font-weight: 600;
}
.role-card .role-desc {
  font-size: 13.5px; color: var(--mid); line-height: 1.5;
}
.role-card .role-arrow {
  margin-top: 1rem;
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: 1.5px; color: var(--carmine);
}

/* ─── PAGE BREADCRUMB (role pages) ─── */
.page-crumb {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.5rem;
}
.page-crumb a { color: var(--dim); transition: color 0.15s; }
.page-crumb a:hover { color: var(--pale); }
.page-crumb .sep { margin: 0 0.5rem; color: var(--rule-hi); }

/* ─── ROLE TOGGLE (index page only) ─── */
.role-toggle-prompt {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim);
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.role-toggle {
  display: flex; justify-content: center; gap: 0;
  padding: 4px;
  border: 1px solid var(--rule);
  background: var(--ink-2);
  max-width: 520px; margin: 0 auto;
}
.role-toggle-btn {
  flex: 1; padding: 0.75rem 1rem;
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  background: transparent; border: none; cursor: pointer;
  color: var(--dim); transition: all 0.15s;
}
.role-toggle-btn:hover:not(.is-active) { color: var(--mid); }
.role-toggle-btn.is-active {
  background: var(--ink); color: var(--pale);
  border: 1px solid var(--rule);
  margin: -1px;
}
.role-content[hidden] { display: none !important; }
