/* ==========================================================================
   PREVENTA WELLNESS — Oculomics Landing
   Premium-clinical aesthetic for 50+ optimizers.
   Calmer than the main marketing CSS; signature motion, no HUD chrome.
   All classes prefixed `oc-` to coexist with style.css if both ever load.
   ========================================================================== */

:root {
  /* Neutral white foundation — clean, clinical, trust-forward.
     bg is a touch cooler than surface so cards visibly separate. */
  --oc-bg: #f3f6fa;        /* cool off-white page */
  --oc-bg-elev: #ffffff;
  --oc-surface: #ffffff;   /* cards / cta blocks read clean white */
  --oc-surface-hover: #f9fbfd;
  --oc-border: rgba(10, 14, 20, 0.09);
  --oc-border-strong: rgba(10, 14, 20, 0.18);

  --oc-ink: #0a0e14;          /* primary text — near-black */
  --oc-ink-soft: #3a4350;     /* secondary body */
  --oc-ink-muted: #6b7585;    /* labels, dim text */
  --oc-ink-dim: #7a8290;      /* fine print — passes WCAG AA on bg */

  /* Dark "scope" surface — used inside eye visualization for sci-fi contrast */
  --oc-scope: #0c1219;
  --oc-scope-ink: #e8edf2;
  --oc-scope-border: rgba(94,234,212,0.22);

  --oc-accent: #0d9488;       /* slightly deeper teal for legibility on light */
  --oc-accent-soft: #14b8a6;
  --oc-accent-deep: #0f766e;
  --oc-grad: linear-gradient(135deg, #14b8a6 0%, #0d9488 55%, #0891b2 100%);
  --oc-grad-soft: linear-gradient(135deg, rgba(20,184,166,0.10), rgba(8,145,178,0.06));

  --oc-warn: #b45309;
  --oc-good: #047857;

  --oc-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --oc-font-mono: 'IBM Plex Mono', 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --oc-radius: 18px;
  --oc-radius-sm: 10px;
  --oc-nav-h: 68px;
  --oc-container: 1180px;

  --oc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --oc-ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}
body {
  background: var(--oc-bg);
  color: var(--oc-ink);
  font-family: var(--oc-font-sans);
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 17px; /* 50+ readability — slightly larger base */
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
::selection { background: rgba(20,184,166,0.22); color: var(--oc-ink); }

/* subtle ambient warmth — radial glows on the off-white base */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(20,184,166,0.07), transparent 60%),
    radial-gradient(900px 500px at 5% 105%, rgba(8,145,178,0.05), transparent 60%);
}

/* ---------- skip link ---------- */
.oc-skip {
  position: absolute;
  left: 16px; top: -100px;
  background: var(--oc-ink);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  z-index: 100;
}
.oc-skip:focus { top: 0; }

/* ==========================================================================
   NAV
   ========================================================================== */
.oc-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--oc-nav-h);
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--oc-border);
}
/* Wordmark only — no logo mark. "P R E V E N T A wellness" */
.oc-wordmark {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--oc-ink);
}
.oc-wordmark-caps {
  letter-spacing: 0.42em;          /* the visible spaces between letters */
}
.oc-wordmark-tail {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--oc-ink-muted);
  text-transform: lowercase;
}
.oc-nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
  color: var(--oc-ink-soft);
}
.oc-nav-links a:not(.oc-btn) { transition: color 180ms var(--oc-ease); }
.oc-nav-links a:not(.oc-btn):hover { color: var(--oc-ink); }
.oc-nav-toggle { display: none; }

@media (max-width: 820px) {
  .oc-nav-links { display: none; }
  .oc-nav-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid var(--oc-border-strong);
    font-size: 13px;
    font-weight: 500;
  }
  .oc-nav-toggle--primary {
    background: var(--oc-grad);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 18px -8px rgba(13, 148, 136, 0.50);
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.oc-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform 180ms var(--oc-ease), box-shadow 220ms var(--oc-ease), background 220ms var(--oc-ease);
  white-space: nowrap;
  cursor: pointer;
}
.oc-btn-primary {
  background: var(--oc-grad);
  color: #ffffff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 8px 24px rgba(13,148,136,0.28);
}
.oc-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.28) inset, 0 14px 30px rgba(13,148,136,0.40); }
.oc-btn-ghost {
  background: var(--oc-bg-elev);
  color: var(--oc-ink);
  border: 1px solid var(--oc-border-strong);
}
.oc-btn-ghost:hover { background: #ffffff; border-color: var(--oc-accent); }
.oc-btn-sm { padding: 10px 16px; font-size: 14px; }

/* ==========================================================================
   SCENE / LAYOUT
   ========================================================================== */
.oc-scene {
  position: relative;
  padding: 120px 28px;
  max-width: var(--oc-container);
  margin: 0 auto;
  z-index: 1;
}
.oc-scene--tight { padding: 64px 28px; }
.oc-scene--pad-top { padding-top: calc(var(--oc-nav-h) + 60px); }

.oc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--oc-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oc-accent-deep);
  padding: 6px 12px;
  border: 1px solid rgba(13,148,136,0.30);
  border-radius: 999px;
  background: rgba(20,184,166,0.08);
}
.oc-eyebrow .oc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--oc-accent);
  box-shadow: 0 0 12px var(--oc-accent);
  animation: oc-pulse 2.4s infinite;
}
@keyframes oc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.oc-h1 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 300;
  color: var(--oc-ink);
  margin: 18px 0 18px;
}
/* Hero is the one place the brand gradient appears in display text. */
.oc-h1 strong, .oc-h1 .oc-grad {
  font-weight: 500;
  background: var(--oc-grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.oc-h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  font-weight: 300;
  margin: 18px 0 18px;
}
/* H2/H3 highlights use solid accent — visual restraint, gradient stays for hero only. */
.oc-h2 .oc-grad,
.oc-h3 .oc-grad {
  color: var(--oc-accent-deep);
  font-weight: 500;
}
.oc-h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 12px;
}
.oc-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--oc-ink-soft);
  max-width: 720px;
  line-height: 1.55;
}
.oc-scene-head { max-width: 820px; margin-bottom: 56px; }
.oc-scene-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   HERO
   ========================================================================== */
.oc-hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--oc-nav-h) + 28px);
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  max-width: var(--oc-container);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
  z-index: 1;
}
.oc-hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 6px;
}
.oc-hero-meta {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 22px;
  color: var(--oc-ink-muted);
  font-size: 13px;
  font-family: var(--oc-font-mono);
  letter-spacing: 0.04em;
}
.oc-hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.oc-hero-meta .oc-tick {
  width: 14px; height: 14px;
  color: var(--oc-accent-deep);
  flex: 0 0 14px;
}
.oc-hero-price {
  margin-top: 16px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--oc-font-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--oc-ink-muted);
}
.oc-hero-price strong {
  font-family: var(--oc-font-sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--oc-ink);
  text-transform: none;
}

/* Signature retinal scope — dark sphere on the light page.
   This is the bold sci-fi moment per the "medium sci-fi" dial.
   Sphere fades in slowly on page load. */
.oc-eye-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #1a2735 0%, #0c1219 60%, #06090d 100%);
  box-shadow:
    0 30px 80px -20px rgba(13,148,136,0.35),
    0 0 0 1px rgba(13,148,136,0.18),
    inset 0 0 60px rgba(20,184,166,0.12);
  overflow: visible;
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  animation: oc-sphere-enter 2800ms cubic-bezier(0.4, 0, 0.2, 1) 300ms forwards;
}
@keyframes oc-sphere-enter {
  to { opacity: 1; transform: none; }
}
.oc-eye-stage::before {
  content: '';
  position: absolute; inset: -20%;
  background: radial-gradient(closest-side, rgba(20,184,166,0.18), transparent 70%);
  filter: blur(28px);
  z-index: -1;
  border-radius: 50%;
}
.oc-eye-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.oc-eye-ring--mid { inset: 9%; border-color: rgba(94,234,212,0.20); }
.oc-eye-ring--inner { inset: 22%; border-color: rgba(94,234,212,0.32); }
.oc-eye-grid {
  position: absolute; inset: 22%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(94,234,212,0.05) 0deg 1.5deg, transparent 1.5deg 30deg);
  mask: radial-gradient(closest-side, #000 60%, transparent 100%);
}
.oc-eye-pupil {
  position: absolute; inset: 38%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #0e1b22 0%, #02050a 80%);
  box-shadow: inset 0 0 30px rgba(94,234,212,0.40), 0 0 30px rgba(20,184,166,0.35);
}
.oc-eye-pupil::after {
  content: '';
  position: absolute; inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--oc-accent-soft) 0%, transparent 70%);
  opacity: 0.8;
  filter: blur(3px);
  animation: oc-iris 4s var(--oc-ease) infinite;
}
@keyframes oc-iris {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.10); opacity: 1; }
}
.oc-eye-sweep {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--oc-accent-soft);
  animation: oc-sweep 5.5s linear infinite;
}
@keyframes oc-sweep {
  to { transform: rotate(360deg); }
}
/* Atmospheric labels — six wellness dimensions arranged around the
   sphere perimeter. Translucent glass on the dark background so they
   read as ambient, not bumper-stickered. */
.oc-eye-tag {
  position: absolute;
  font-family: var(--oc-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  animation: oc-tag-fade 2600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.oc-eye-tag--1 { top: 12%;    right: 18%;  animation-delay: 2400ms; }
.oc-eye-tag--2 { top: 20%;    left: 10%;   animation-delay: 3000ms; }
.oc-eye-tag--3 { top: 50%;    right: 8%;   animation-delay: 3600ms; }
.oc-eye-tag--4 { bottom: 24%; left: 10%;   animation-delay: 4200ms; }
.oc-eye-tag--6 { bottom: 12%; right: 26%;  animation-delay: 4800ms; }

@keyframes oc-tag-fade {
  to { opacity: 0.92; }
}

@media (max-width: 900px) {
  .oc-hero { grid-template-columns: 1fr; padding-top: calc(var(--oc-nav-h) + 40px); padding-bottom: 56px; }
  .oc-eye-stage { max-width: 360px; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .oc-eye-stage {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .oc-eye-tag {
    animation: none !important;
    opacity: 0.92;
    transform: none;
  }
}

/* ==========================================================================
   CREDENTIALS STRIP — Founding team backgrounds
   ========================================================================== */
.oc-creds {
  border-top: 1px solid var(--oc-border);
  border-bottom: 1px solid var(--oc-border);
  padding: 22px 0;
  background: rgba(10,14,20,0.025);
}
.oc-creds-inner {
  max-width: var(--oc-container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.oc-creds-label {
  font-family: var(--oc-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oc-ink-dim);
}
.oc-creds-items {
  display: flex; flex-wrap: wrap;
  gap: 14px 28px;
  color: var(--oc-ink-soft);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.oc-creds-items span { display: inline-flex; align-items: center; gap: 10px; }
.oc-creds-items span + span::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--oc-ink-dim);
  margin-right: -4px;
}

/* ==========================================================================
   GENERIC CARDS / GRIDS
   ========================================================================== */
.oc-card {
  background: var(--oc-surface);
  border: 1px solid var(--oc-border);
  border-radius: var(--oc-radius);
  padding: 28px;
  transition: border-color 240ms var(--oc-ease), box-shadow 240ms var(--oc-ease), transform 240ms var(--oc-ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(10,14,20,0.02), 0 8px 28px -16px rgba(10,14,20,0.08);
}
.oc-card:hover {
  border-color: rgba(13,148,136,0.32);
  box-shadow: 0 1px 0 rgba(10,14,20,0.03), 0 16px 36px -16px rgba(13,148,136,0.18);
}
.oc-card .oc-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(13,148,136,0.30);
  color: var(--oc-accent-deep);
}
.oc-card p { color: var(--oc-ink-soft); font-size: 15.5px; line-height: 1.6; }

.oc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.oc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 820px) {
  .oc-grid-3, .oc-grid-2 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   OCULOMICS DEFINITION SCENE
   ========================================================================== */
.oc-oculomics-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .oc-oculomics-layout { grid-template-columns: 1fr; } }

.oc-pull {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--oc-ink);
  border-left: 3px solid var(--oc-accent);
  padding-left: 22px;
  margin: 24px 0;
  font-weight: 300;
}
.oc-pull cite { display: block; margin-top: 14px; font-style: normal; font-family: var(--oc-font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--oc-ink-muted); }

.oc-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.oc-stat {
  padding: 22px;
  border: 1px solid var(--oc-border);
  border-radius: var(--oc-radius-sm);
  background: var(--oc-surface);
  box-shadow: 0 1px 0 rgba(10,14,20,0.02), 0 6px 20px -12px rgba(10,14,20,0.08);
}
.oc-stat-num {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--oc-ink);
}
.oc-stat-label {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--oc-ink-muted);
}

/* ==========================================================================
   THREE PILLARS — Where Preventa Fits
   ========================================================================== */
.oc-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.oc-pillar { padding: 30px 26px; }
.oc-pillar--featured {
  background: linear-gradient(180deg, rgba(20,184,166,0.10), rgba(20,184,166,0.02));
  border-color: rgba(94,234,212,0.35);
}
.oc-pillar h3 { color: var(--oc-ink); }
.oc-pillar--featured h3 { color: var(--oc-accent-deep); }
@media (max-width: 820px) { .oc-pillars { grid-template-columns: 1fr; } }

/* ==========================================================================
   ASSESSMENT — Three steps
   ========================================================================== */
.oc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.oc-step {
  background: var(--oc-surface);
  border: 1px solid var(--oc-border);
  border-radius: var(--oc-radius);
  padding: 30px 26px;
  position: relative;
  box-shadow: 0 1px 0 rgba(10,14,20,0.02), 0 8px 24px -16px rgba(10,14,20,0.08);
}
.oc-step::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  font-family: var(--oc-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--oc-accent-deep);
  margin-bottom: 14px;
}
.oc-step h3 { margin-bottom: 10px; }
.oc-step p { color: var(--oc-ink-soft); font-size: 15.5px; }
.oc-step-tag {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--oc-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--oc-ink-muted);
  text-transform: uppercase;
}
@media (max-width: 820px) { .oc-steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   SCORE PORTRAIT — Six dimensions sample
   ========================================================================== */
.oc-portrait {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .oc-portrait { grid-template-columns: 1fr; } }

.oc-overall {
  background: var(--oc-bg-elev);
  border: 1px solid var(--oc-border);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(10,14,20,0.03), 0 24px 60px -28px rgba(10,14,20,0.14);
}
.oc-overall-ring {
  position: relative;
  width: 200px; height: 200px;
  margin: 0 auto 18px;
}
.oc-overall-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.oc-overall-ring .track { fill: none; stroke: rgba(10,14,20,0.10); stroke-width: 5; }
.oc-overall-ring .fill { fill: none; stroke: url(#oc-ring-grad); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 339.29; stroke-dashoffset: 88; }
.oc-overall-num {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 64px; font-weight: 200; letter-spacing: -0.02em;
  background: var(--oc-grad); background-clip: text; -webkit-background-clip: text; color: transparent;
}
.oc-overall-label { font-family: var(--oc-font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--oc-ink-muted); }
.oc-overall-note { color: var(--oc-ink-soft); font-size: 15px; margin-top: 12px; }

.oc-dims { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .oc-dims { grid-template-columns: repeat(2, 1fr); } }
.oc-dim {
  padding: 18px;
  border: 1px solid var(--oc-border);
  border-radius: var(--oc-radius-sm);
  background: var(--oc-surface);
  box-shadow: 0 1px 0 rgba(10,14,20,0.02);
}
.oc-dim-bar {
  position: relative;
  height: 5px;
  background: rgba(10,14,20,0.10);
  border-radius: 999px;
  margin: 14px 0 12px;
  overflow: hidden;
}
.oc-dim-bar::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--w, 70%);
  background: var(--oc-accent);
  border-radius: 999px;
}
.oc-dim-name { font-size: 13.5px; color: var(--oc-ink-muted); font-family: var(--oc-font-mono); letter-spacing: 0.04em; }
.oc-dim-score { font-size: 26px; font-weight: 300; letter-spacing: -0.01em; color: var(--oc-ink); }

/* ==========================================================================
   PROGRAM SCENE — coaching framed as journey
   ========================================================================== */
.oc-program {
  background:
    linear-gradient(180deg, rgba(20,184,166,0.06) 0%, rgba(255,255,255,0.0) 60%),
    var(--oc-bg-elev);
  border: 1px solid var(--oc-border);
  border-radius: 28px;
  padding: 56px;
  margin: 0 28px;
  box-shadow: 0 20px 50px -28px rgba(10,14,20,0.12);
}
@media (max-width: 700px) { .oc-program { padding: 36px 24px; margin: 0 16px; } }

.oc-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
  position: relative;
}
.oc-timeline::before {
  content: '';
  position: absolute;
  left: 12%; right: 12%;
  top: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oc-accent-soft) 20%, var(--oc-accent-soft) 80%, transparent);
  opacity: 0.45;
}
.oc-tphase {
  text-align: left;
  padding: 0 8px;
}
.oc-tdot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--oc-accent);
  box-shadow: 0 0 0 4px rgba(20,184,166,0.18);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.oc-tphase--soon .oc-tdot {
  background: transparent;
  border: 1.5px dashed var(--oc-accent);
  box-shadow: none;
}
.oc-tphase h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--oc-ink);
}
.oc-tphase p { font-size: 13.5px; color: var(--oc-ink-muted); line-height: 1.5; }
.oc-tphase--soon h4::after {
  content: 'Coming';
  display: inline-block;
  margin-left: 8px;
  font-family: var(--oc-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(20,184,166,0.12);
  color: var(--oc-accent-deep);
  vertical-align: middle;
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .oc-timeline { grid-template-columns: 1fr; gap: 28px; }
  .oc-timeline::before { display: none; }
}

/* ==========================================================================
   TREND OVER TIME — The score isn't the point, the trend is
   ========================================================================== */
.oc-trend {
  margin: 28px auto 0;
  padding: 28px 32px 26px;
  max-width: 760px;
  background: var(--oc-surface);
  border: 1px solid var(--oc-border);
  border-radius: var(--oc-radius);
  box-shadow: 0 1px 0 rgba(10,14,20,0.02), 0 12px 30px -20px rgba(10,14,20,0.10);
}
.oc-trend-chart {
  position: relative;
  margin: 4px 0 0;
}
.oc-trend-chart svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.oc-trend-axis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  font-family: var(--oc-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  color: var(--oc-ink-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.oc-trend-axis > div { position: relative; padding: 0 4px; }
.oc-trend-axis > div:last-child .oc-trend-num { color: var(--oc-accent-deep); font-weight: 500; }
.oc-trend-num {
  display: block;
  font-size: 20px;
  font-weight: 300;
  color: var(--oc-ink);
  letter-spacing: -0.01em;
  font-family: var(--oc-font-sans);
  margin-bottom: 4px;
}
.oc-trend-caption {
  font-size: 13.5px;
  color: var(--oc-ink-soft);
  text-align: center;
  margin-top: 18px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.oc-trend-caption em { color: var(--oc-accent-deep); font-style: normal; font-weight: 500; }

@media (max-width: 700px) {
  .oc-trend { padding: 22px 18px; }
  .oc-trend-axis { font-size: 9.5px; }
  .oc-trend-num { font-size: 17px; }
}

/* ==========================================================================
   PERSONAS — Is this for you?
   ========================================================================== */
.oc-personas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.oc-persona {
  background: var(--oc-surface);
  border: 1px solid var(--oc-border);
  border-radius: var(--oc-radius);
  padding: 38px 34px;
  box-shadow: 0 1px 0 rgba(10,14,20,0.02), 0 14px 36px -22px rgba(10,14,20,0.12);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform 240ms var(--oc-ease), border-color 240ms var(--oc-ease), box-shadow 240ms var(--oc-ease);
}
.oc-persona:hover {
  border-color: rgba(13,148,136,0.32);
  box-shadow: 0 1px 0 rgba(10,14,20,0.03), 0 22px 44px -22px rgba(13,148,136,0.22);
  transform: translateY(-2px);
}
.oc-persona-tag {
  font-family: var(--oc-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oc-accent-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.oc-persona-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--oc-accent);
}
.oc-persona h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--oc-ink);
  margin: 0;
}
.oc-persona p { color: var(--oc-ink-soft); font-size: 16px; line-height: 1.6; }
.oc-persona-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.oc-persona-list li {
  font-size: 14.5px;
  color: var(--oc-ink-soft);
  display: flex; align-items: flex-start; gap: 10px;
}
.oc-persona-list li::before {
  content: '';
  width: 16px; height: 16px;
  flex: 0 0 16px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 820px) { .oc-personas { grid-template-columns: 1fr; } }

/* Bridge line — explicitly includes the middle of the spectrum */
.oc-persona-bridge {
  text-align: center;
  margin: 28px auto 0;
  max-width: 720px;
  padding: 18px 24px;
  font-size: 15.5px;
  color: var(--oc-ink-soft);
  border-top: 1px solid var(--oc-border);
  line-height: 1.6;
}
.oc-persona-bridge strong { color: var(--oc-ink); font-weight: 500; }

/* ==========================================================================
   FELT OUTCOMES — How you'll feel
   ========================================================================== */
.oc-feel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.oc-feel-card {
  background: var(--oc-surface);
  border: 1px solid var(--oc-border);
  border-radius: var(--oc-radius);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 1px 0 rgba(10,14,20,0.02), 0 8px 24px -18px rgba(10,14,20,0.10);
}
.oc-feel-card-head {
  display: flex; align-items: center; gap: 14px;
}
.oc-feel-card h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--oc-ink);
  letter-spacing: -0.005em;
}
.oc-feel-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(20,184,166,0.10);
  border: 1px solid rgba(13,148,136,0.22);
  color: var(--oc-accent-deep);
  flex-shrink: 0;
}
.oc-feel-card p { color: var(--oc-ink-soft); font-size: 15px; line-height: 1.55; }
@media (max-width: 700px) { .oc-feel-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PROGRAM PRICING — strip inside .oc-program
   ========================================================================== */
.oc-pricing {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px dashed var(--oc-border-strong);
}
.oc-pricing-head {
  font-family: var(--oc-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oc-ink-muted);
  text-align: center;
  margin-bottom: 18px;
}
.oc-pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--oc-border);
  border-radius: var(--oc-radius);
  background: var(--oc-surface);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(10,14,20,0.03), 0 24px 60px -28px rgba(10,14,20,0.14);
}
.oc-price {
  text-align: center;
  padding: 22px 18px;
  border-right: 1px solid var(--oc-border);
}
.oc-price:last-child { border-right: 0; }
.oc-price-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--oc-ink);
  margin-bottom: 8px;
}
.oc-price-val {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--oc-ink);
  line-height: 1;
}
.oc-price-val small {
  font-size: 13px;
  color: var(--oc-ink-muted);
  font-weight: 400;
  margin-left: 4px;
}
.oc-price-sub {
  font-size: 12.5px;
  color: var(--oc-ink-muted);
  margin-top: 8px;
}
.oc-price--soon .oc-price-val {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oc-accent-deep);
  font-family: var(--oc-font-mono);
  padding-top: 6px;
}
.oc-pricing-note {
  margin-top: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--oc-ink-muted);
}
@media (max-width: 820px) {
  .oc-pricing-row { grid-template-columns: 1fr; }
  .oc-price { border-right: 0; border-bottom: 1px solid var(--oc-border); }
  .oc-price:last-child { border-bottom: 0; }
}

/* ==========================================================================
   TEAM
   ========================================================================== */
.oc-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .oc-team-grid { grid-template-columns: 1fr; } }
.oc-tcard {
  background: var(--oc-surface);
  border: 1px solid var(--oc-border);
  border-radius: var(--oc-radius);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 1px 0 rgba(10,14,20,0.02), 0 8px 28px -16px rgba(10,14,20,0.08);
}
.oc-tavatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20,184,166,0.10), rgba(8,145,178,0.06));
  border: 1px solid var(--oc-border);
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 4px 14px -8px rgba(13,148,136,0.30);
}
.oc-tavatar img { width: 100%; height: 100%; object-fit: cover; }
.oc-tname { font-size: 19px; font-weight: 500; }
.oc-trole { font-family: var(--oc-font-mono); font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--oc-accent-deep); }
.oc-tbio { font-size: 14.5px; color: var(--oc-ink-soft); line-height: 1.6; }
.oc-tbadges {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.oc-tbadges span {
  font-family: var(--oc-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--oc-border);
  color: var(--oc-ink-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.oc-faq { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.oc-faq-item {
  background: var(--oc-surface);
  border: 1px solid var(--oc-border);
  border-radius: var(--oc-radius-sm);
  overflow: hidden;
}
.oc-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-size: 16.5px;
  font-weight: 500;
  text-align: left;
  color: var(--oc-ink);
}
.oc-faq-q svg { transition: transform 220ms var(--oc-ease); color: var(--oc-accent-deep); flex: 0 0 18px; }
.oc-faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.oc-faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--oc-ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  transition: max-height 320ms var(--oc-ease), padding 320ms var(--oc-ease);
}
.oc-faq-item.is-open .oc-faq-a { max-height: 320px; padding: 4px 24px 22px; }

/* ==========================================================================
   FINAL CTA / CONTACT
   ========================================================================== */
.oc-cta {
  text-align: center;
  background:
    radial-gradient(closest-side at 50% 0%, rgba(20,184,166,0.10), transparent 70%),
    var(--oc-bg-elev);
  border: 1px solid var(--oc-border);
  border-radius: 28px;
  padding: 72px 40px;
  margin: 0 28px;
  box-shadow: 0 20px 50px -28px rgba(10,14,20,0.14);
}
.oc-form {
  max-width: 620px;
  margin: 36px auto 0;
  display: grid;
  gap: 14px;
  text-align: left;
}
.oc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .oc-form-row { grid-template-columns: 1fr; } }
.oc-field { display: grid; gap: 6px; }
.oc-field label { font-size: 13px; color: var(--oc-ink-muted); font-family: var(--oc-font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.oc-field input, .oc-field select, .oc-field textarea {
  background: #ffffff;
  border: 1px solid var(--oc-border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--oc-ink);
  font: inherit;
  width: 100%;
  transition: border-color 200ms var(--oc-ease), box-shadow 200ms var(--oc-ease);
}
.oc-field input::placeholder, .oc-field textarea::placeholder { color: var(--oc-ink-dim); }
.oc-field input:focus, .oc-field select:focus, .oc-field textarea:focus {
  outline: none;
  border-color: var(--oc-accent);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.18);
}
.oc-form .oc-btn { width: 100%; justify-content: center; margin-top: 6px; }
.oc-form-note { font-size: 13px; color: var(--oc-ink-muted); margin-top: 4px; text-align: center; }
.oc-price-anchor {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-top: 18px;
  font-family: var(--oc-font-mono);
  font-size: 13px;
  color: var(--oc-ink-muted);
  letter-spacing: 0.06em;
}
.oc-price-anchor strong { color: var(--oc-ink); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; font-family: var(--oc-font-sans); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.oc-footer {
  border-top: 1px solid var(--oc-border);
  padding: 48px 28px 36px;
  text-align: center;
  color: var(--oc-ink-muted);
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.oc-footer-brand { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.oc-footer-links { display: flex; flex-wrap: wrap; gap: 14px 24px; justify-content: center; margin-bottom: 20px; }
.oc-footer-links a { transition: color 180ms var(--oc-ease); }
.oc-footer-links a:hover { color: var(--oc-accent-deep); }
.oc-disclaimer { font-size: 12.5px; color: var(--oc-ink-dim); max-width: 800px; margin: 16px auto 0; line-height: 1.55; }

/* ==========================================================================
   ENTRANCE ANIMATIONS — trend line, ring, dim bars (IO-triggered)
   ========================================================================== */

/* Trend chart: line draws in, area fades, dots stagger.
   Easing is symmetric ease-in-out (cubic-bezier 0.4, 0, 0.2, 1) for
   smoother, more graceful motion. Durations are intentionally long. */
.oc-trend .oc-trend-curve {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 3600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.oc-trend.is-revealed .oc-trend-curve { stroke-dashoffset: 0; }

.oc-trend .oc-trend-area {
  opacity: 0;
  transition: opacity 1600ms cubic-bezier(0.4, 0, 0.2, 1) 1400ms;
}
.oc-trend.is-revealed .oc-trend-area { opacity: 1; }

.oc-trend .oc-trend-dot {
  opacity: 0;
  transition: opacity 900ms cubic-bezier(0.4, 0, 0.2, 1);
}
.oc-trend.is-revealed .oc-trend-dot { opacity: 1; }
.oc-trend.is-revealed .oc-trend-dot:nth-of-type(3) { transition-delay: 650ms; }
.oc-trend.is-revealed .oc-trend-dot:nth-of-type(4) { transition-delay: 1350ms; }
.oc-trend.is-revealed .oc-trend-dot:nth-of-type(5) { transition-delay: 2050ms; }
.oc-trend.is-revealed .oc-trend-dot:nth-of-type(6) { transition-delay: 2750ms; }
.oc-trend.is-revealed .oc-trend-dot:nth-of-type(7),
.oc-trend.is-revealed .oc-trend-dot:nth-of-type(8),
.oc-trend.is-revealed .oc-trend-dot:nth-of-type(9) { transition-delay: 3450ms; }

/* Today dot: gentle halo pulse — slower cycle, starts after the dot lands */
.oc-trend.is-revealed .oc-trend-dot--today-halo {
  animation: oc-today-pulse 5s ease-in-out 4000ms infinite;
}
@keyframes oc-today-pulse {
  0%, 100% { r: 11; stroke-opacity: 0.18; }
  50%      { r: 14; stroke-opacity: 0.08; }
}

/* Overall ring: slow, smooth draw of the fill arc */
.oc-overall-ring .fill {
  transition: stroke-dashoffset 3200ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.oc-portrait .oc-overall-ring .fill {
  stroke-dashoffset: 339.29;
}
.oc-portrait.is-revealed .oc-overall-ring .fill {
  stroke-dashoffset: 88;
}

/* Dim bars: each bar takes its time, with generous spacing between */
.oc-dim-bar::after {
  width: 0;
  transition: width 2200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.oc-portrait.is-revealed .oc-dim-bar::after {
  width: var(--w, 70%);
}
.oc-portrait.is-revealed .oc-dim:nth-of-type(1) .oc-dim-bar::after { transition-delay: 400ms; }
.oc-portrait.is-revealed .oc-dim:nth-of-type(2) .oc-dim-bar::after { transition-delay: 750ms; }
.oc-portrait.is-revealed .oc-dim:nth-of-type(3) .oc-dim-bar::after { transition-delay: 1100ms; }
.oc-portrait.is-revealed .oc-dim:nth-of-type(4) .oc-dim-bar::after { transition-delay: 1450ms; }
.oc-portrait.is-revealed .oc-dim:nth-of-type(5) .oc-dim-bar::after { transition-delay: 1800ms; }
.oc-portrait.is-revealed .oc-dim:nth-of-type(6) .oc-dim-bar::after { transition-delay: 2150ms; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .oc-trend .oc-trend-curve,
  .oc-trend .oc-trend-area,
  .oc-trend .oc-trend-dot,
  .oc-overall-ring .fill,
  .oc-dim-bar::after { transition: none !important; }
  .oc-trend .oc-trend-curve { stroke-dashoffset: 0 !important; }
  .oc-trend .oc-trend-area,
  .oc-trend .oc-trend-dot { opacity: 1 !important; }
  .oc-portrait .oc-overall-ring .fill { stroke-dashoffset: 88 !important; }
  .oc-dim-bar::after { width: var(--w, 70%) !important; }
  .oc-trend-dot--today-halo { animation: none !important; }
}

/* ==========================================================================
   UTILITY ANIMATIONS
   Reveal: only hides content once JS confirms IntersectionObserver is wiring up
   (body.js-reveal). Without that flag, content stays visible — robust to
   no-JS, screenshot tools, and broken IO environments.
   ========================================================================== */
.js-reveal .oc-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--oc-ease), transform 700ms var(--oc-ease);
}
.js-reveal .oc-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* Explicitly halt the infinite animations the global rule above can't fully tame. */
  .oc-eye-sweep,
  .oc-eye-pupil::after,
  .oc-eyebrow .oc-dot,
  .oc-tdot { animation: none !important; }
  .js-reveal .oc-reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   COOKIE CONSENT BANNER — controlled by js/consent.js
   consent.js uses the `cookie-banner--hidden` class to toggle visibility.
   ========================================================================== */
.oc-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 70;
  width: min(720px, calc(100% - 32px));
  background: var(--oc-bg-elev);
  border: 1px solid var(--oc-border);
  border-radius: 14px;
  box-shadow: 0 24px 60px -28px rgba(10,14,20,0.30), 0 1px 0 rgba(10,14,20,0.04);
  padding: 16px 20px;
  transition: opacity 280ms var(--oc-ease), transform 280ms var(--oc-ease);
}
.oc-cookie-banner.cookie-banner--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.oc-cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.oc-cookie-banner__text {
  flex: 1 1 320px;
  font-size: 14px;
  color: var(--oc-ink-soft);
  line-height: 1.5;
  margin: 0;
}
.oc-cookie-banner__link {
  color: var(--oc-accent-deep);
  text-decoration: underline;
}
.oc-cookie-banner__link:hover { color: var(--oc-accent); }
.oc-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .oc-cookie-banner { padding: 14px 16px; }
  .oc-cookie-banner__inner { gap: 12px; }
  .oc-cookie-banner__actions { width: 100%; justify-content: stretch; }
  .oc-cookie-banner__actions .oc-btn { flex: 1; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .oc-cookie-banner { transition: opacity 0.01ms; }
}

/* ==========================================================================
   STICKY CONVERSION CTA — pill that fades in after the hero
   ========================================================================== */
.oc-sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--oc-grad);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 16px 36px -10px rgba(13,148,136,0.45);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  pointer-events: none;
  transition: opacity 280ms var(--oc-ease), transform 280ms var(--oc-ease), box-shadow 240ms var(--oc-ease);
}
.oc-sticky-cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.oc-sticky-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.28) inset, 0 22px 44px -10px rgba(13,148,136,0.55);
}
.oc-sticky-cta-price {
  font-family: var(--oc-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-left: 10px;
  margin-left: 4px;
  border-left: 1px solid rgba(255,255,255,0.35);
  opacity: 0.95;
}
@media (max-width: 540px) {
  .oc-sticky-cta { right: 14px; bottom: 14px; padding: 12px 18px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .oc-sticky-cta { transition: opacity 0.01ms; }
}
