/* ============================================================
   OrthoOps AI — VesicaOps-family aesthetic
   Deep ink · teal→violet gradient · Fraunces + Inter
   ============================================================ */

:root {
  --ink: #0a0d16;
  --ink-2: #10152a;
  --ink-3: #141a2e;
  --paper: #f7f8fc;
  --paper-2: #eef0f8;
  --text: #dfe4f2;
  --text-dim: #9aa3bd;
  --text-ink: #1a2033;
  --text-ink-dim: #4c5570;
  --teal: #4fd1c5;
  --teal-2: #5eead4;
  --violet: #8b7cf6;
  --violet-2: #a78bfa;
  --grad: linear-gradient(120deg, var(--teal-2), var(--violet-2));
  --border: rgba(159, 176, 214, 0.14);
  --border-light: rgba(26, 32, 51, 0.1);
  --radius: 18px;
  --shadow: 0 18px 50px -18px rgba(3, 6, 16, 0.55);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--teal-2); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--teal-2);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(94, 234, 212, 0.25); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--teal-2);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}
.container.narrow { max-width: 780px; }
.center { text-align: center; }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-alt { background: var(--ink-3); }

.section-light {
  background: var(--paper);
  color: var(--text-ink);
}
.section-light .eyebrow { color: #0d9488; }
.section-light h2 { color: var(--text-ink); }
.section-light .section-lede { color: var(--text-ink-dim); }
.section-light a:not(.btn) { color: #0d9488; }

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  font-variation-settings: "opsz" 144;
  color: #f2f5ff;
  max-width: 21ch;
  margin-inline: auto;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-variation-settings: "opsz" 100;
  color: #f2f5ff;
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.32rem;
  margin-bottom: 0.6rem;
  font-variation-settings: "opsz" 40;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-2);
  margin-bottom: 1.1rem;
}

.lede,
.section-lede {
  color: var(--text-dim);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 62ch;
}
.section-lede { margin-bottom: 0.5rem; }
.container.narrow .section-lede { margin-inline: 0; }
.center .section-lede { margin-inline: auto; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn .icon { width: 1.05em; height: 1.05em; flex: none; }

.btn-primary {
  background: var(--grad);
  color: #071018;
  box-shadow: 0 10px 30px -10px rgba(94, 234, 212, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -10px rgba(139, 124, 246, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(159, 176, 214, 0.35);
}
.btn-ghost:hover {
  border-color: var(--teal-2);
  color: var(--teal-2);
  transform: translateY(-2px);
}
.section-light .btn-ghost {
  color: var(--text-ink);
  border-color: rgba(26, 32, 51, 0.28);
}
.section-light .btn-ghost:hover { color: #0d9488; border-color: #0d9488; }

.btn-lg { padding: 0.95rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 22, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #f2f5ff;
}
.wordmark:hover { text-decoration: none; }
.wordmark .mark { width: 34px; height: 34px; }
.wordmark-text {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.wordmark-text em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: #f2f5ff; text-decoration: none; }

.nav-cta { font-size: 0.9rem; padding: 0.62rem 1.2rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) {
  color: var(--text);
  font-weight: 500;
  padding: 0.65rem 0.25rem;
  border-bottom: 1px solid rgba(159, 176, 214, 0.08);
}
.mobile-menu a:not(.btn):hover { text-decoration: none; color: var(--teal-2); }
.mobile-menu .btn { margin-top: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(5.5rem, 12vw, 9.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 50% -8%, rgba(139, 124, 246, 0.14), transparent 70%),
    radial-gradient(ellipse 55% 40% at 50% 108%, rgba(79, 209, 197, 0.1), transparent 70%),
    var(--ink);
}

.hero-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-rings svg { width: 100%; height: 100%; }

@keyframes drift-a {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(18px); }
}
@keyframes drift-b {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-18px); }
}
@keyframes breathe {
  0%, 100% { opacity: 0.07; }
  50% { opacity: 0.13; }
}
.ring-a { animation: drift-a 14s ease-in-out infinite; }
.ring-b { animation: drift-b 14s ease-in-out infinite; }
.ring-c { animation: breathe 10s ease-in-out infinite; }

.hero-inner { position: relative; }

.hero .lede {
  margin: 1.6rem auto 0;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

.hero-caption {
  margin-top: 2.2rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 52ch;
  margin-inline: auto;
}
.hero-caption strong { color: var(--text); }

.powered {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ---------- Powered-by-OpenClaw band ---------- */
.powered-band {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
  position: relative;
  overflow: hidden;
}
.powered-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  flex-wrap: wrap;
  text-align: left;
}
.powered-band-logo {
  width: clamp(56px, 8vw, 84px);
  height: clamp(56px, 8vw, 84px);
  flex: none;
  filter: drop-shadow(0 8px 24px rgba(255, 77, 77, 0.35));
}
.powered-band-text { max-width: 56ch; }
.powered-band-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal-2);
  margin-bottom: 0.35rem;
}
.powered-band-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.25;

  color: var(--text);
  margin-bottom: 0.4rem;
}
.powered-band-headline a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid var(--teal-2);
}
.powered-band-headline a:hover { border-bottom-color: var(--violet-2); }
.powered-band-sub {
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.55;
}
.powered-band-sub strong { color: var(--text); }
@media (max-width: 640px) {
  .powered-band-inner { flex-direction: column; text-align: center; }
  .powered-band-text { max-width: 46ch; }
}

/* ---------- Stats ---------- */
.stats {
  border-block: 1px solid var(--border);
  background: var(--ink-2);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 24ch;
  margin-inline: auto;
  display: block;
}

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.pain-grid, .solution-grid, .cap-grid { margin-top: 3rem; }
#about .grid, #hardware .grid { margin-top: 3rem; }

.card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(159, 176, 214, 0.28); }
.card h3 { color: #f2f5ff; }
.card p { color: var(--text-dim); font-size: 0.98rem; }
.card p + p { margin-top: 0.7rem; }

.section-light .card {
  background: #ffffff;
  border-color: var(--border-light);
  box-shadow: 0 14px 40px -20px rgba(26, 32, 51, 0.25);
}
.section-light .card h3 { color: var(--text-ink); }
.section-light .card p { color: var(--text-ink-dim); }

/* Gradient-border cards (mask technique) */
.card-grad, .card-featured { position: relative; border: 1px solid transparent; }
.card-grad::before, .card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.75), rgba(167, 139, 250, 0.75));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.card-grad:hover, .card-featured:hover { border-color: transparent; }

.cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.14), rgba(167, 139, 250, 0.14));
  border: 1px solid rgba(94, 234, 212, 0.25);
  color: var(--teal-2);
}
.cap-icon svg { width: 22px; height: 22px; }

/* ---------- Lens backgrounds ---------- */
.lens-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.lens-bg svg { width: 100%; height: 100%; }
.section-alt .container { position: relative; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  margin-top: 3rem;
  display: grid;
  gap: 0;
  max-width: 780px;
  margin-inline: auto;
}
.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 22px -8px rgba(139, 124, 246, 0.55);
}
.step h3 { color: var(--text-ink); }
.step p { color: var(--text-ink-dim); font-size: 1rem; }
.step strong { color: var(--text-ink); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.price-card { display: flex; flex-direction: column; }
.price-card header { margin-bottom: 1.4rem; }
.price-card h3 { font-size: 1.5rem; }
.price {
  margin: 0.9rem 0 0.3rem;
  line-height: 1;
}
.price-num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
  color: #f2f5ff;
}
.price-meta { color: var(--text-dim); font-size: 0.9rem; }

.price-card ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
  align-content: start;
}

/* Push the CTA to the bottom so all 3 tiles align to equal height */
.price-card .price-note { margin-top: auto; }
.price-card > .btn { margin-top: auto; }
.price-card .price-note + .btn { margin-top: 1.4rem; }
.price-card ul li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.95em;
  height: 0.95em;
  background: var(--grad);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') center / contain no-repeat;
}
.price-card ul li em { color: var(--text); font-style: italic; }

.price-note {
  color: var(--text-dim);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 1.4rem;
}

.card-featured {
  background: linear-gradient(180deg, rgba(94, 234, 212, 0.05), rgba(167, 139, 250, 0.05)), var(--ink-2);
}

.badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #071018;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
}
.badge-alt {
  background: var(--ink-3);
  color: var(--violet-2);
  border: 1px solid rgba(167, 139, 250, 0.5);
}

.retainer {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.retainer h3 { font-size: 1.3rem; }
.retainer p { max-width: 58ch; }
.retainer .btn { flex: none; }

.fine-print {
  margin-top: 2rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  max-width: 78ch;
}

/* ---------- Rep section ---------- */
.rep-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.rep-copy h2 { max-width: 18ch; }

/* Make the "For individual reps" pitch grab attention */
.rep-copy .eyebrow {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0d9488;
  margin-bottom: 0.9rem;
}
.rep-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
}
.rep-copy .section-lede {
  font-size: 1.12rem;
}
/* Solid teal for the headline price accent on the light rep section (gradient washes out on white) */
.section-light .rep-copy h2 .grad-text {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #0d9488;
  -webkit-text-fill-color: #0d9488;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.8rem;
}
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text-ink-dim);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 1.05em;
  height: 1.05em;
  background: var(--grad);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') center / contain no-repeat;
}

.rep-card {
  text-align: center;
  padding: 2.6rem 2.2rem;
  background: linear-gradient(180deg, rgba(94, 234, 212, 0.06), rgba(167, 139, 250, 0.06)), #ffffff;
}
.section-light .rep-card { box-shadow: 0 24px 60px -24px rgba(26, 32, 51, 0.35); }
.rep-price { line-height: 1; margin-bottom: 0.4rem; }
.rep-price .price-num {
  font-size: 4.6rem;
  /* Solid, high-contrast teal instead of a washed-out gradient on white */
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #0d9488;
  -webkit-text-fill-color: #0d9488;
}
.rep-price .per {
  font-size: 1.25rem;
  color: var(--text-ink);
  font-weight: 600;
}
.rep-card .price-meta { color: var(--text-ink-dim); margin-bottom: 1.8rem; }
.rep-card .btn + .btn { margin-top: 0.75rem; }

/* ---------- CTA strip ---------- */
.cta-strip {
  margin-top: 3.5rem;
  text-align: center;
}
.cta-strip p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #f2f5ff;
  margin-bottom: 1.2rem;
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 780px;
  margin-top: 2.8rem;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: rgba(13, 148, 136, 0.4); }
.faq-item[open] {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 14px 36px -20px rgba(26, 32, 51, 0.3);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: var(--text-ink);
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

.chev {
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2px solid #0d9488;
  border-bottom: 2px solid #0d9488;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -4px;
}
.faq-item[open] .chev { transform: rotate(225deg); margin-top: 4px; }

.faq-body { padding: 0 1.5rem 1.4rem; }
.faq-body p { color: var(--text-ink-dim); font-size: 0.98rem; }
.faq-body strong, .faq-body em { color: var(--text-ink); }

/* ---------- Contact ---------- */
.contact {
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 50% 115%, rgba(139, 124, 246, 0.16), transparent 70%),
    var(--ink);
}
.contact-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-rings svg { width: 100%; height: 100%; }
.contact .container { position: relative; }

.call-card {
  margin-top: 2.8rem;
  padding: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
}
.call-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
}
.call-number {
  display: inline-block;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.call-number:hover { text-decoration: none; opacity: 0.9; }
.call-name {
  margin-top: 0.8rem;
  color: var(--text-dim);
  font-size: 0.98rem;
}
.call-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ---------- SEO guide pages ---------- */
.seo-page .nav {
  position: sticky;
}
.seo-page .seo-hero {
  min-height: auto;
  padding: 9rem 0 5rem;
}
.seo-page .seo-hero .hero-inner {
  text-align: left;
  align-items: flex-start;
}
.seo-page .seo-hero h1 {
  max-width: 880px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}
.prose h2 {
  color: var(--text-ink);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  margin: 2.25rem 0 0.8rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p,
.prose li {
  color: var(--text-ink-dim);
  font-size: 1.07rem;
  line-height: 1.8;
}
.inline-cta,
.related-guides {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 148, 136, 0.18);
  background: rgba(13, 148, 136, 0.07);
}
.inline-cta h2,
.related-guides h2 {
  margin-top: 0;
}
.related-guides {
  display: grid;
  gap: 0.75rem;
}
.related-guides a {
  font-weight: 700;
}
.guide-grid {
  margin-top: 3rem;
}
.guide-card {
  display: block;
  text-decoration: none;
}
.guide-card:hover h3 {
  color: var(--teal);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background: var(--ink-2);
}
.footer-inner {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #f2f5ff;
}
.footer-brand .mark { width: 30px; height: 30px; }
.footer-contact, .footer-powered { color: var(--text-dim); font-size: 0.95rem; }
.footer-copy { color: var(--text-dim); font-size: 0.85rem; opacity: 0.75; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* No-JS fallback */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .price-card.card-featured { order: -1; }
  .rep-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero-ctas .btn { width: 100%; }
  .step { gap: 1rem; }
  .step-num { width: 42px; height: 42px; font-size: 1.1rem; }
  .retainer { flex-direction: column; align-items: flex-start; }
  .call-actions .btn { width: 100%; }
  .badge { font-size: 0.68rem; }
}
