/* =========================================================
   AuthorityMap /v2 — premium, mobile-first, system fonts
   ========================================================= */

:root {
  /* Color */
  --bg:           oklch(98.4% 0.005 80);    /* warm white */
  --bg-alt:       oklch(96.5% 0.006 80);    /* alt section bg */
  --surface:      oklch(99.5% 0.003 80);    /* cards on alt */
  --text:         oklch(20% 0.01 250);      /* near black */
  --text-muted:   oklch(45% 0.01 250);
  --text-soft:    oklch(60% 0.01 250);
  --line:         oklch(90% 0.005 80);
  --line-strong:  oklch(82% 0.006 80);
  --accent:       oklch(35% 0.07 255);      /* deep navy */
  --accent-ink:   oklch(98% 0.005 255);
  --accent-soft:  oklch(35% 0.07 255 / 0.08);
  --strong:       oklch(48% 0.12 155);      /* muted green for "strong" tags */
  --weak:         oklch(55% 0.13 35);       /* muted terracotta for "weak" tags */
  --mid:          oklch(60% 0.10 75);

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
          Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                  "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --t-eyebrow:  0.78rem;
  --t-body:     clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --t-lede:     clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  --t-h2:       clamp(1.75rem, 1.3rem + 1.6vw, 2.625rem);
  --t-h1:       clamp(2.25rem, 1.4rem + 4.4vw, 4.25rem);

  /* Space */
  --space-section: clamp(4.5rem, 3rem + 5vw, 8rem);
  --gutter:        clamp(1.25rem, 1rem + 2vw, 2.25rem);
  --radius:        14px;
  --radius-lg:     22px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur:  220ms;
}

/* Base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}
p { margin: 0; }

::selection { background: var(--accent); color: var(--accent-ink); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--text); color: var(--bg);
  padding: .75rem 1rem; border-radius: 8px;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; }

/* Layout -------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: 760px; }

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}
.section--alt { background: var(--bg-alt); }

.section__title {
  font-size: var(--t-h2);
  max-width: 22ch;
  margin-bottom: 1rem;
}
.section__lede {
  font-size: var(--t-lede);
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

.eyebrow {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 1rem;
  font-weight: 500;
}

/* Nav ----------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem var(--gutter);
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur);
}
.nav:hover { border-color: var(--line); }

.nav__brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; color: var(--text); letter-spacing: -0.01em;
  font-size: 1rem;
}
.nav__brand:hover { text-decoration: none; }
.nav__mark {
  width: 18px; height: 18px; border-radius: 6px;
  background: var(--accent);
  box-shadow: inset 0 0 0 3px var(--bg);
}
.nav__links {
  display: none;
  margin-left: auto;
  gap: 1.75rem;
  font-size: 0.9375rem;
}
.nav__links a { color: var(--text-muted); }
.nav__links a:hover { color: var(--text); text-decoration: none; }
.nav__cta { margin-left: auto; }

@media (min-width: 720px) {
  .nav__links { display: inline-flex; }
  .nav__cta { margin-left: 0; }
}

/* Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font: inherit;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur),
              border-color var(--dur),
              color var(--dur),
              box-shadow var(--dur);
  white-space: nowrap;
  line-height: 1.1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn--sm  { padding: 0.55rem 0.95rem; font-size: 0.875rem; }
.btn--lg  { padding: 1.15rem 1.75rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* Hero ---------------------------------------------------- */
.hero {
  padding-top: clamp(3rem, 2rem + 5vw, 6rem);
  padding-bottom: clamp(3.5rem, 2rem + 5vw, 7rem);
  text-align: left;
  background:
    radial-gradient(1200px 480px at 50% -10%, oklch(94% 0.02 250 / 0.5), transparent 70%),
    var(--bg);
}
.hero .eyebrow { margin-bottom: 1.25rem; }

.hero__title {
  font-size: var(--t-h1);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
  max-width: 18ch;
  margin: 0 0 1.25rem;
}
.hero__sub {
  font-size: var(--t-lede);
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 0 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__proof {
  font-size: 0.875rem;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}

/* Hero mockup --------------------------------------------- */
.mockup {
  margin: clamp(2.5rem, 2rem + 3vw, 4.5rem) 0 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 oklch(100% 0 0 / 0.6) inset,
    0 30px 60px -30px oklch(0% 0 0 / 0.18),
    0 10px 30px -20px oklch(0% 0 0 / 0.10);
  overflow: hidden;
}
.mockup__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.mockup__chrome span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-strong);
}
.mockup__url {
  margin-left: 12px;
  font-size: 0.78rem;
  color: var(--text-soft);
  font-feature-settings: "tnum";
}
.mockup__body { padding: clamp(1.25rem, 1rem + 1.5vw, 2rem); }
.mockup__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .mockup__row { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.mockup__metric {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.mockup__label {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.mockup__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  font-feature-settings: "tnum";
}
.mockup__value span { font-size: 0.9rem; color: var(--text-soft); font-weight: 500; margin-left: 2px; }
.mockup__bar {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.mockup__bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
}
.mockup__panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.mockup__panelHead {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.mockup__list {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.95rem;
}
.mockup__list li {
  display: flex; align-items: center; gap: 0.6rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex: 0 0 auto;
}
.dot--high { background: var(--weak); }
.dot--med  { background: var(--mid); }

/* Constellation (problem section) ------------------------ */
.constellation-head {
  max-width: 60ch;
  margin: 0 auto clamp(2rem, 1.5rem + 2vw, 3.5rem);
  text-align: center;
}
.constellation-head .section__title {
  margin-left: auto; margin-right: auto;
}
.constellation-head .section__lede {
  margin-bottom: 0;
  margin-left: auto; margin-right: auto;
}

.constellation {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 920px;
  aspect-ratio: 1.4 / 1;
  min-height: 380px;
  background:
    radial-gradient(120% 90% at 50% 50%,
      color-mix(in oklab, var(--surface) 90%, transparent) 0%,
      transparent 70%);
  border-radius: var(--radius-lg);
}
@media (max-width: 560px) {
  .constellation { aspect-ratio: 1 / 1.05; min-height: 420px; }
  .constellation__tile--faint { display: none; }
}

.constellation__platforms,
.constellation__engines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Platform tiles (left side) */
.constellation__tile {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: rotate(var(--r, 0deg));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.42rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
  box-shadow:
    0 1px 2px oklch(0% 0 0 / 0.04),
    0 6px 14px -8px oklch(0% 0 0 / 0.10);
  white-space: nowrap;
  animation: am-float 7s ease-in-out infinite;
}
.constellation__tile:nth-child(2) { animation-delay: -1.4s; }
.constellation__tile:nth-child(3) { animation-delay: -2.6s; }
.constellation__tile:nth-child(4) { animation-delay: -3.8s; }
.constellation__tile:nth-child(5) { animation-delay: -1.1s; }
.constellation__tile:nth-child(6) { animation-delay: -2.2s; }
.constellation__tile--faint {
  opacity: 0.55;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}

@keyframes am-float {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); }
  50%      { transform: rotate(var(--r, 0deg)) translateY(-4px); }
}

/* Core (center node) */
.constellation__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--text);
  color: var(--bg);
  border-radius: 50%;
  width: clamp(118px, 22%, 168px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  box-shadow:
    0 2px 6px oklch(0% 0 0 / 0.12),
    0 28px 60px -22px oklch(0% 0 0 / 0.40);
  animation: am-pulse 3.6s ease-in-out infinite;
}
.constellation__mark {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: var(--accent);
  margin-bottom: 0.55rem;
  box-shadow: inset 0 0 0 2.5px var(--text);
}
.constellation__core strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: -0.005em;
  display: block;
  line-height: 1.2;
}

@keyframes am-pulse {
  0%, 100% {
    box-shadow:
      0 2px 6px oklch(0% 0 0 / 0.12),
      0 28px 60px -22px oklch(0% 0 0 / 0.40),
      0 0 0 0 oklch(0% 0 0 / 0.18);
  }
  50% {
    box-shadow:
      0 2px 6px oklch(0% 0 0 / 0.12),
      0 28px 60px -22px oklch(0% 0 0 / 0.40),
      0 0 0 18px oklch(0% 0 0 / 0);
  }
}

/* Engines (right side) */
.constellation__engines {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-around;
  justify-items: end;
  padding: 6% 2% 6% 0;
}
.constellation__engine {
  width: clamp(38px, 6.4vw, 52px);
  height: clamp(38px, 6.4vw, 52px);
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 2px oklch(0% 0 0 / 0.04),
    0 6px 14px -8px oklch(0% 0 0 / 0.10);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.constellation__engine img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}
.constellation__engine:nth-child(1) { transform: translateX(-12%); }
.constellation__engine:nth-child(2) { transform: translateX(-2%); }
.constellation__engine:nth-child(3) { transform: translateX(0); }
.constellation__engine:nth-child(4) { transform: translateX(-2%); }
.constellation__engine:nth-child(5) { transform: translateX(-12%); }

/* Connecting lines */
.constellation__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.constellation__lines path {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 0.25;
  stroke-linecap: round;
  opacity: 0.7;
}
.constellation__lines path.constellation__flow {
  stroke: var(--accent);
  stroke-dasharray: 0.6 1.2;
  stroke-width: 0.4;
  opacity: 0.7;
  animation: am-flow 3.2s linear infinite;
}
@keyframes am-flow {
  to { stroke-dashoffset: -12; }
}

/* Caption */
.constellation__caption {
  position: absolute;
  bottom: -2.25rem;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Cards (outcome / dashboard) ---------------------------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px -28px oklch(0% 0 0 / 0.18);
}
.card__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-feature-settings: "tnum";
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.card__body {
  color: var(--text-muted);
  font-size: 0.9875rem;
}

/* Dashboard preview cards -------------------------------- */
.preview {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.preview:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px oklch(0% 0 0 / 0.2);
}
.preview__art {
  aspect-ratio: 16 / 10;
  display: grid; place-items: center;
  background:
    linear-gradient(135deg,
      oklch(96% 0.01 250) 0%,
      oklch(92% 0.02 250) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.preview__art::before,
.preview__art::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: oklch(100% 0 0 / 0.6);
  border: 1px solid var(--line);
}
.preview__art--visibility::before { left: 12%; right: 12%; top: 18%; height: 14%; }
.preview__art--visibility::after  { left: 12%; right: 30%; top: 40%; height: 8%; background: var(--accent); border-color: transparent; }
.preview__art--gaps::before { left: 12%; right: 55%; top: 22%; bottom: 22%; }
.preview__art--gaps::after  { left: 50%; right: 12%; top: 22%; bottom: 22%; background: var(--accent-soft); border-color: var(--accent); }
.preview__art--queue::before { left: 12%; right: 12%; top: 20%; height: 10%; }
.preview__art--queue::after  { left: 12%; right: 40%; top: 38%; height: 10%; background: var(--accent); border-color: transparent; }

.preview__placeholder {
  position: absolute; bottom: 12px; left: 16px;
  font-size: 0.72rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.preview__title {
  font-size: 1.125rem;
  padding: 1.25rem 1.5rem 0.4rem;
}
.preview__body {
  padding: 0 1.5rem 1.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Grid (what's included) --------------------------------- */
.grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid { grid-template-columns: repeat(3, 1fr); } }

.grid__item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9875rem;
  transition: border-color var(--dur), background-color var(--dur);
}
.grid__item:hover { border-color: var(--accent); }
.grid__check {
  width: 18px; height: 18px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.grid__check::after {
  content: "";
  position: absolute; left: 5px; top: 4px;
  width: 4px; height: 8px;
  border: solid var(--accent-ink);
  border-width: 0 1.75px 1.75px 0;
  transform: rotate(45deg);
}

/* Steps (how it works) ----------------------------------- */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: steps;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  position: relative;
}
.step__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-feature-settings: "tnum";
}
.step__title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step__body { color: var(--text-muted); font-size: 0.9875rem; }

/* Metrics (example finding) ------------------------------ */
.metrics {
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.metric {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.metric dt {
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
}
.metric dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--text);
}
.metric--strong { background: oklch(48% 0.12 155 / 0.10) !important; color: oklch(38% 0.10 155); }
.metric--mid    { background: oklch(60% 0.10 75  / 0.14) !important; color: oklch(45% 0.10 75); }
.metric--weak   { background: oklch(55% 0.13 35  / 0.12) !important; color: oklch(45% 0.13 35); }

/* Pricing ------------------------------------------------- */
.price {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
  box-shadow: 0 30px 60px -40px oklch(0% 0 0 / 0.18);
}
.price__head {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .price__head {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.price__name {
  font-size: 1.375rem;
  letter-spacing: -0.015em;
}
.price__amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  font-feature-settings: "tnum";
}
.price__from {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 400;
  margin-right: 0.4em;
  letter-spacing: 0;
}
.price__list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  color: var(--text-muted);
}
@media (min-width: 600px) {
  .price__list { grid-template-columns: 1fr 1fr; gap: 0.6rem 1.25rem; }
}
.price__list li {
  position: relative;
  padding-left: 1.4rem;
}
.price__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-right: 1.75px solid var(--accent);
  border-bottom: 1.75px solid var(--accent);
  transform: rotate(45deg);
}
.price__addon {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

/* FAQ ----------------------------------------------------- */
.faq {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 1.75px solid var(--text);
  border-bottom: 1.75px solid var(--text);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
  flex: 0 0 auto;
  margin-bottom: 4px;
}
.faq__item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 6px; margin-bottom: 0;
}
.faq__item summary:hover { color: var(--accent); }
.faq__item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq__item p {
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 0.9875rem;
  max-width: 65ch;
}

/* Final CTA ---------------------------------------------- */
.final {
  padding: var(--space-section) 0;
  background:
    radial-gradient(800px 400px at 50% 100%, oklch(94% 0.02 250 / 0.5), transparent 70%),
    var(--bg);
  text-align: center;
}
.final__inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.final__title {
  font-size: var(--t-h2);
  letter-spacing: -0.025em;
  max-width: 22ch;
}

/* Footer -------------------------------------------------- */
.footer {
  padding: 2.5rem 0 calc(2.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-soft);
  flex-wrap: wrap;
}
.footer a { color: var(--text-muted); }
.footer__sep { color: var(--line-strong); }

/* Sticky mobile CTA -------------------------------------- */
.stickyCta {
  position: fixed;
  left: 1rem; right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  background: var(--text);
  color: var(--bg);
  font-weight: 500;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 12px 30px -10px oklch(0% 0 0 / 0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.stickyCta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.stickyCta:hover { background: var(--accent); text-decoration: none; }

@media (min-width: 760px) {
  /* Desktop: rely on the in-page CTAs and nav button — hide the floating one */
  .stickyCta { display: none; }
}
