/* ============================================================
   ClinicPulse — Shared stylesheet (cp.css)
   Run your clinic. Not your front desk.
   ============================================================ */

/* ============ DESIGN TOKENS ============ */
:root {
  --bg: #0a0a0f;
  --bg-2: #0f0f15;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --ink: #fafaf7;
  --ink-2: rgba(250, 250, 247, 0.85);
  --ink-dim: rgba(250, 250, 247, 0.6);
  --ink-faint: rgba(250, 250, 247, 0.4);

  --blue: #3b82f6;
  --violet: #a855f7;
  --pink: #ec4899;
  --amber: #fbbf24;
  --pulse: #4ade80;
  --danger: #ef4444;

  --grad: linear-gradient(135deg, var(--blue) 0%, var(--violet) 33%, var(--pink) 66%, var(--amber) 100%);

  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;

  --maxw: 1320px;
  --maxw-narrow: 1080px;
}

/* ============ RESET + BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
em { font-style: normal; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ============ ATMOSPHERE ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--violet); color: var(--ink); }

.atmos {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent 70%);
  top: -200px; right: -200px;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
  top: 600px; left: -200px;
}
.orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25), transparent 70%);
  top: 1400px; right: 10%;
}

/* ============ CONTAINER ============ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero-pill .eyebrow {
  background: linear-gradient(135deg, rgba(59,130,246,0.40), rgba(168,85,247,0.50), rgba(236,72,153,0.40), rgba(251,191,36,0.35));
  border: 1px solid rgba(168, 85, 247, 0.60);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 6px 28px rgba(168, 85, 247, 0.45);
  letter-spacing: 0.24em;
}
.eyebrow.live::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pulse);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.grad-text {
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.num-mono {
  font-family: var(--font-mono);
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 12px 40px -10px rgba(168, 85, 247, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -10px rgba(168, 85, 247, 0.7);
}
.btn-glass {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.btn-glass:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.btn-voice {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  gap: 12px;
}
.btn-voice:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -10px rgba(168, 85, 247, 0.4);
}
.btn-voice .dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pulse);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
}
.btn-voice .dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--pulse);
  opacity: 0.4;
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ GLASS CARD ============ */
.gcard {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(180%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s ease,
              box-shadow 0.5s ease,
              background 0.3s ease;
}
.gcard:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.5),
              0 0 60px -8px rgba(168, 85, 247, 0.35);
}
.gcard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad);
  opacity: 0;
  padding: 1px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.gcard:hover::before { opacity: 0.6; }
.gcard.highlighted::before { opacity: 1; }
.gcard.highlighted {
  box-shadow: 0 0 80px 0 rgba(168, 85, 247, 0.3);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10, 10, 15, 0.6);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .logo img { height: 28px; }
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 18px; font-size: 13px; }
@media (max-width: 880px) {
  .nav-links, .nav-cta .btn-glass { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
}
.hero-pill { margin-bottom: 48px; }
.hero-eye {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-h1 .word {
  display: inline-block;
  margin-right: 0.18em;
}
.hero-h1 .line-2 .word {
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto 36px;
}
.hero-bullets {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}
.hero-bullets .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  margin-top: 10px;
  flex-shrink: 0;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ STATBAND (smaller per brief) ============ */
.statband {
  padding: 90px 0;
  text-align: center;
  position: relative;
}
.statband-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.statband-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}
.statband h2 {
  font-size: clamp(32px, 4vw, 64px);
  margin-bottom: 20px;
}
.statband p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.55;
}
.statband .source {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-faint);
  margin-top: 24px;
}
.statband-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-align: center;
  margin-bottom: 56px;
}
.statband-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  text-align: left;
}
.statband-card-num {
  font-family: var(--font-display);
  font-size: clamp(96px, 13vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.statband-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.statband-card-body p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 12px;
}
.statband-card-body .source {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-faint);
}
@media (max-width: 720px) {
  .statband-card { grid-template-columns: 1fr; gap: 24px; padding: 32px; text-align: center; }
}

/* ============ SECTION BASE ============ */
.section {
  padding: 90px 0;
  position: relative;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .eyebrow { margin-bottom: 24px; }
.section-head h2 {
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.98;
  margin: 0 0 20px;
}
.section-head p {
  font-size: 17px;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.55;
}
.section-head.left { text-align: left; }
.section-head.left p { margin-left: 0; margin-right: 0; }

/* ============ VERTICALS ============ */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .verticals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .verticals-grid { grid-template-columns: 1fr; } }
.vcard { padding: 28px; cursor: pointer; }
.vcard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.vcard h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.vcard-arrow {
  width: 18px; height: 18px;
  color: var(--ink-dim);
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.vcard:hover .vcard-arrow {
  color: var(--violet);
  transform: translate(3px, -3px);
}
.vcard p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ============ PILLARS ============ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .pillars-grid { grid-template-columns: 1fr; } }
.pcard {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.pcard-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.3);
}
.pcard-icon svg {
  width: 24px; height: 24px;
  color: white;
  stroke-width: 2;
}
.pcard h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.pcard-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.pcard-body {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============ WALKTHROUGH (4 cards, no video per brief) ============ */
.walk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}
@media (max-width: 720px) { .walk-grid { grid-template-columns: 1fr; } }
.walk-card { padding: 32px; }
.walk-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.walk-card-icon svg {
  width: 20px; height: 20px;
  color: white;
  stroke-width: 2.25;
}
.walk-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.walk-card p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.6;
}

/* ============ TRUST ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.tcard { padding: 28px; }
.tcard svg {
  width: 26px; height: 26px;
  color: transparent;
  stroke: url(#grad-stroke);
  stroke-width: 1.6;
  margin-bottom: 14px;
}
.tcard h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}
.tcard p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ============ OUTCOMES ============ */
.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ocard {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 56px;
  padding: 48px;
}
@media (max-width: 880px) {
  .ocard { grid-template-columns: 1fr; gap: 24px; padding: 36px; }
}
.ocard.flip { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 880px) { .ocard.flip { grid-template-columns: 1fr; } }
.ocard.flip .ocard-stat { order: 2; }
@media (max-width: 880px) { .ocard.flip .ocard-stat { order: -1; } }
.ocard-stat .num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.ocard-stat .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  margin-top: 8px;
}
.ocard-story {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.55;
}
.ocard-attr {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ocard-attr .name {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.ocard-attr .badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
}

/* ============ COMPARISON ============ */
.compare-table {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  background: var(--surface);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head { background: rgba(0, 0, 0, 0.2); }
.compare-row.head .compare-cell {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  padding: 18px 16px;
}
.compare-row.head .compare-cell.us {
  background: var(--grad);
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
}
.compare-cell {
  padding: 16px 18px;
  font-size: 13px;
  color: var(--ink-dim);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.compare-cell:last-child { border-right: none; }
.compare-cell.feature { font-weight: 500; color: var(--ink); }
.compare-cell.us { color: var(--ink); background: rgba(168, 85, 247, 0.06); }
.compare-row:hover .compare-cell { background: rgba(255, 255, 255, 0.02); }
.compare-row:hover .compare-cell.us { background: rgba(168, 85, 247, 0.1); }
@media (max-width: 880px) { div.compare-table { display: none; } }
/* note: only the legacy homepage feature-comparison (rendered as <div>) hides on mobile.
   The vertical pages' new HighLevel-style compare-table uses <article> and stacks responsively. */

.compare-mobile { display: none; }
@media (max-width: 880px) {
  .compare-mobile { display: block; }
  .compare-mobile .compare-card { margin-bottom: 16px; padding: 24px; }
  .compare-mobile h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .compare-mobile .row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 8px;
  }
  .compare-mobile .row .key {
    color: var(--ink-dim);
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    flex-shrink: 0;
  }
  .compare-mobile .row .val { color: var(--ink); text-align: right; }
  .compare-mobile .row.us .val {
    background: var(--grad);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
  }
}
.compare-foot {
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
  margin: 24px auto 0;
  max-width: 640px;
}

/* ============ TESTIMONIALS (uniform — no .featured variant per brief) ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .testi-grid { grid-template-columns: 1fr; } }
.tstcard {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.tstcard-quote svg {
  width: 24px; height: 24px;
  color: var(--violet);
  stroke-width: 1.5;
  margin-bottom: 16px;
  opacity: 0.9;
}
.tstcard blockquote {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.tstcard-attr {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.tstcard-attr .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.tstcard-attr .role {
  font-size: 13px;
  color: var(--ink-dim);
  margin-top: 4px;
}
.tstcard-attr .meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}
.tstcard-attr .badge {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.tstcard-attr .loc {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
}

/* ============ PRICING ============ */
.pricing-section { padding: 90px 0; }
.scarcity {
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 22px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.scarcity::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}
.scarcity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.scarcity-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  font-weight: 600;
}
.scarcity-label .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--pulse);
  animation: pulse 2s ease-in-out infinite;
}
.scarcity-pct {
  font-family: var(--font-mono);
  font-weight: 600;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.scarcity-bar {
  margin-top: 16px;
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.scarcity-bar-fill {
  height: 100%;
  width: 0;
  background: var(--grad);
  border-radius: 100px;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scarcity-sub {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* multi-loc-banner removed (was: broken SVG sizing on mobile) */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  position: relative;
}
.tier.popular { transform: scale(1.02); }
@media (max-width: 1080px) { .tier.popular { transform: none; } }
.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: var(--grad);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
}
.tier h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
}
.tier-tag {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tier-price .num {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.tier-price .per { font-size: 16px; color: var(--ink-dim); }
.tier-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
}
.tier-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier-feats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
.tier-feats .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.tier-feats .check svg {
  width: 11px; height: 11px;
  color: white;
  stroke-width: 3;
}
.tier-feats li.heading {
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 8px;
}
.tier-feats li.heading .check { display: none; }
.tier .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ============ CALLOUTS ============ */
.callouts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
@media (max-width: 1080px) { .callouts-grid { grid-template-columns: 1fr; } }
.callout {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.callout-icon {
  width: 28px; height: 28px;
  color: transparent;
  stroke: url(#grad-stroke);
  stroke-width: 1.6;
}
.callout-eye {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.callout h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}
.callout p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
}

/* ============ FAQ ============ */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: left;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--violet); }
.faq-q .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--ink-2);
}
.faq-item.open .faq-q .icon {
  background: var(--grad);
  border-color: transparent;
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 760px;
}

/* ============ FOUNDER ============ */
.founder-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1080px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-copy h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.98;
  margin: 24px 0 36px;
}
.founder-copy p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
}
.founder-sig {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.founder-sig .sign {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
}
.founder-sig .note {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}
.founder-portrait {
  position: relative;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 80px 0 rgba(168, 85, 247, 0.25);
}
.founder-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.founder-portrait .mono {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 200px);
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.95;
  z-index: 0;
}
.founder-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.85), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.founder-portrait .label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
}
.founder-portrait .label .name {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: white;
}
.founder-portrait .label .role {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(250, 250, 247, 0.8);
}

/* ============ FINAL CTA ============ */
.final {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(168, 85, 247, 0.3), transparent 70%);
  pointer-events: none;
}
.final h2 {
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 32px 0 28px;
  position: relative;
}
.final h2 .grad-text { display: block; }
.final-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.55;
  position: relative;
}
.final-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.final-ps {
  margin: 80px auto 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 760px;
  position: relative;
}

/* ============ PAIN AGITATION (vertical pages) ============ */
.pain-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}
@media (max-width: 720px) { .pain-stats { grid-template-columns: 1fr; } }
.pain-stat {
  padding: 28px;
}
.pain-stat .num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.pain-stat h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
}
.pain-stat p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ============ STORY (vertical pages) ============ */
.story {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  color: var(--ink);
}
.story p { margin-bottom: 24px; }
.story-attr {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}

.works-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.works-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 32px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.works-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 10px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.works-pill-bad {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.40);
  color: #fca5a5;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 16px rgba(239, 68, 68, 0.15);
}
.works-pill-good {
  background: linear-gradient(135deg, rgba(59,130,246,0.40), rgba(168,85,247,0.50), rgba(236,72,153,0.40), rgba(251,191,36,0.35));
  border: 1px solid rgba(168, 85, 247, 0.60);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 6px 28px rgba(168, 85, 247, 0.25);
}
.works-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.works-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.works-without .works-list li { color: var(--ink-2); opacity: 0.85; }
.works-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.works-icon-bad {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.45);
}
.works-icon-bad svg {
  width: 12px;
  height: 12px;
  stroke: #f87171;
  stroke-width: 2.5;
  fill: none;
}
.works-icon-good {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.45);
}
.works-icon-good svg {
  width: 13px;
  height: 13px;
  stroke: #10b981;
  stroke-width: 2.5;
  fill: none;
}
.works-content { display: block; }
.works-time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--violet);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 10px;
}
.works-total {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.works-total-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-2);
}
.works-total-amount {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.works-total-bad .works-total-amount { color: #fca5a5; }
.works-total-good .works-total-amount { color: #34d399; }
.compare-math {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .works-block { padding: 24px 20px; }
  .works-pill { font-size: 15px; padding: 8px 18px; }
  .works-list li { font-size: 15px; gap: 12px; }
  .works-total-amount { font-size: 18px; }
  .compare-math { font-size: 13px; }
}

/* ============ COMPARE TABLE (HighLevel-style, vertical pages) ============ */
.compare-table {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  max-width: 1080px;
  margin: 0 auto;
}
.ct-header,
.ct-row {
  display: grid;
  grid-template-columns: 2.4fr 1.5fr 1fr 0.7fr;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ct-row:last-child { border-bottom: none; }
.ct-header {
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-2);
}
.ct-feature {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.ct-replaces {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.4;
}
.ct-other {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.5);
  text-decoration-thickness: 1.5px;
}
.ct-cp { display: flex; justify-content: flex-end; align-items: center; }
.ct-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,130,246,0.22), rgba(168,85,247,0.32), rgba(236,72,153,0.22), rgba(251,191,36,0.20));
  border: 1px solid rgba(168, 85, 247, 0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 4px 16px rgba(168, 85, 247, 0.20);
  flex-shrink: 0;
}
.ct-check svg { width: 16px; height: 16px; display: block; }
.ct-row-total {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 28px;
}
.ct-row-total .ct-feature {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.ct-row-total .ct-other {
  font-size: 16px;
  color: var(--ink-2);
  text-decoration-color: rgba(239, 68, 68, 0.6);
}
.ct-cp-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.ct-row-savings {
  display: block !important;
  background: linear-gradient(90deg, rgba(168,85,247,0.10), rgba(236,72,153,0.08));
  text-align: center;
  padding: 18px 24px;
}
.ct-savings-text {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-2);
}
.ct-savings-text strong {
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.ct-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-dim);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .compare-table { border-radius: 16px; }
  .ct-header { display: none; }
  .ct-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    row-gap: 4px;
    padding: 16px 18px;
    align-items: start;
  }
  .ct-feature {
    grid-column: 1;
    grid-row: 1;
    font-size: 14px;
    line-height: 1.35;
  }
  .ct-replaces {
    grid-column: 1;
    grid-row: 2;
    font-size: 13px;
    margin-top: 8px;
  }
  .ct-replaces::before {
    content: "Replaces: ";
    color: var(--violet);
    font-weight: 500;
  }
  .ct-row-total .ct-replaces::before { content: ""; }
  .ct-other {
    grid-column: 1;
    grid-row: 3;
    font-size: 13px;
    margin-top: 4px;
  }
  .ct-cp {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    justify-self: end;
  }
  .ct-check { width: 28px; height: 28px; }
  .ct-check svg { width: 14px; height: 14px; }
  .ct-row-total {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    padding: 24px 18px;
    gap: 10px;
  }
  .ct-row-total .ct-feature {
    grid-column: 1;
    grid-row: 1;
    font-size: 16px;
  }
  .ct-row-total .ct-replaces { display: none; }
  .ct-row-total .ct-other {
    grid-column: 1;
    grid-row: 2;
    font-size: 14px;
  }
  .ct-row-total .ct-cp {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    align-self: center;
  }
  .ct-cp-price { font-size: 24px; }
  .ct-row-savings { padding: 16px 18px; }
  .ct-savings-text { font-size: 11px; letter-spacing: 0.14em; }
}

/* ============ VALUE STACK (vertical pages) ============ */
.value-stack {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.value-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
}
.value-row:last-of-type { border-bottom: none; }
.value-label { font-size: 15px; color: var(--ink); line-height: 1.5; }
.value-amount {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-2);
}
.value-amount.strike {
  text-decoration: line-through;
  color: var(--ink-faint);
}
.value-total {
  padding: 28px;
  background: rgba(168, 85, 247, 0.08);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.value-total .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
}
.value-total .amt {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ============ FOOTER ============ */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  /* No background-color — inherits body to match hero (fixes color seam) */
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 360px; }
.footer-brand .logo img { height: 44px; }
@media (max-width: 720px) { .footer-brand .logo img { height: 36px; } }
.footer-tagline {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.footer-contact { text-align: right; }
@media (max-width: 720px) { .footer-contact { text-align: left; } }
.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.footer-contact a {
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: color 0.2s ease;
  text-decoration: none;
}
.footer-contact a:hover { color: var(--violet); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { font-size: 12px; color: var(--ink-faint); max-width: 720px; line-height: 1.5; }
.footer-copyright {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
}

/* ============ EMBED (calendar iframes) ============ */
.embed-wrap {
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}
.embed-wrap iframe {
  width: 100%;
  height: 75vh;
  min-height: 600px;
  border: none;
  display: block;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 720px) {
  .embed-wrap { border-radius: 12px; }
  .embed-wrap iframe { height: 85vh; min-height: 650px; }
}

/* ============ LEGAL (long-form text pages) ============ */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-body h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 16px;
  line-height: 1;
}
.legal-body h2 {
  font-size: 24px;
  margin: 48px 0 16px;
  color: var(--ink);
}
.legal-body h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  margin: 32px 0 12px;
  color: var(--ink);
}
.legal-body p { margin-bottom: 16px; }
.legal-body ul, .legal-body ol { margin: 16px 0 16px 24px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a {
  color: var(--violet);
  text-decoration: underline;
  text-decoration-color: rgba(168, 85, 247, 0.3);
  text-underline-offset: 3px;
}
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  margin-bottom: 32px;
}

/* ============ MOBILE SECTION SPACING + BUTTONS ============ */
@media (max-width: 720px) {
  .hero { padding: 120px 0 60px; }
  .statband { padding: 64px 0; }
  .section { padding: 64px 0; }
  .pricing-section { padding: 64px 0; }
  .final { padding: 96px 0; }
  .section-head { margin-bottom: 40px; }

  /* Full-width buttons in primary CTA zones */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .final-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .final-cta-row .btn { width: 100%; justify-content: center; }
}

/* ============ ANIM HELPERS ============ */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal.in { transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
