/* SectorSight landing.

   Linear's marketing grammar, closely followed: near-black ground, a centered
   hero with an oversized tightly-tracked headline that fades from white into
   grey, a single bright CTA, one restrained radial glow, and sections divided
   by hairlines rather than color blocks. Cards are defined by a 1px border and
   a top edge-light, never by shadow. Container rules run the full page height
   so the layout reads as a grid rather than a stack. */

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--nav-bg);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: .875rem;
  color: var(--muted);
  font-weight: 460;
  letter-spacing: -.008em;
}
.nav-links a:hover { color: var(--ink); }
.nav .btn { height: 32px; font-size: .84rem; padding: 0 13px; }
/* The nav CTA is an <a class="btn btn-primary"> INSIDE .nav-links, and
   `.nav-links a` (0,1,1) outranks `.btn-primary` (0,1,0), so the button was
   rendering muted grey on gold at a 1.76:1 contrast ratio. Restate the button
   colors at matching specificity rather than reaching for !important. */
.nav-links a.btn-primary { color: #17130A; }
.nav-links a.btn-primary:hover { color: #17130A; }
.nav-links a.btn-ghost { color: var(--ink); }

/* .theme-toggle lives in base.css: the landing nav and the hub topbar both
   use it. */
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links { gap: 12px; }
  .nav-inner { height: 56px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 132px 0 96px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
}
/* The lighthouse core: a bright warm disc at the point the beam rotates from,
   so the sweep reads as emanating from a source rather than appearing from
   nowhere. Centred on the beam's rotation point (y = 140px, see ::after). */
.hero::before {
  content: "";
  position: absolute;
  top: -170px; left: 50%;
  width: 900px; height: 620px;
  transform: translateX(-50%);
  background:
    radial-gradient(closest-side, rgba(228, 185, 91, .18), rgba(228, 185, 91, .05) 42%, transparent 72%),
    radial-gradient(closest-side, var(--glow-cool), transparent 76%);
  pointer-events: none;
}
/* Dot grid: faint data-texture on the hero ground, fading out well before the
   fold so it reads as texture rather than pattern. */
.hero {
  background-image: radial-gradient(var(--line-2) 1px, transparent 1px);
  background-size: 26px 26px;
}
/* Light theme: the hairline token is too faint against near-white to read as
   texture, so the dots get an explicit darker value. */
:root[data-theme="light"] .hero {
  background-image: radial-gradient(rgba(27, 31, 36, .16) 1px, transparent 1px);
}
/* The lighthouse beam: the logo's lit sector, blown up and rotating behind
   the headline, emanating from the bright core drawn by ::before. */
@media (prefers-reduced-motion: no-preference) {
  .hero::after {
    content: "";
    position: absolute;
    top: -560px; left: 50%;
    width: 1400px; height: 1400px;
    margin-left: -700px;
    background: conic-gradient(from 0deg,
      transparent 0deg,
      rgba(228, 185, 91, .16) 20deg,
      rgba(228, 185, 91, .07) 50deg,
      transparent 88deg);
    border-radius: 50%;
    animation: sweep 14s linear infinite;
    pointer-events: none;
  }
  @keyframes sweep { to { transform: rotate(360deg); } }
  /* Light theme: bright gold disappears on a near-white ground, so the beam
     switches to the darker gold and roughly doubles its alpha. */
  :root[data-theme="light"] .hero::after {
    background: conic-gradient(from 0deg,
      transparent 0deg,
      rgba(184, 147, 63, .30) 20deg,
      rgba(184, 147, 63, .13) 50deg,
      transparent 88deg);
  }
}
:root[data-theme="light"] .hero::before {
  background:
    radial-gradient(closest-side, rgba(184, 147, 63, .30), rgba(184, 147, 63, .09) 42%, transparent 72%),
    radial-gradient(closest-side, var(--glow-cool), transparent 76%);
}
/* Scanner canvas: draws the dots the beam lights as it sweeps. Sits above
   the beam pseudo-elements, below the content. */
.hero-scan { position: absolute; inset: 0; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; }
/* "Competitive intelligence" stays on one line; released on narrow screens
   where nowrap would overflow instead. */
.hero h1 .nb { white-space: nowrap; }
@media (max-width: 560px) { .hero h1 .nb { white-space: normal; } }

/* Solid --ink, no gradient. The previous background-clip fade also brought a
   padding-bottom hack, because clipping a gradient to text paints only inside
   the element's box and a 1.03 line-height left descenders hanging outside it.
   Plain text has no such box, so the padding is gone and the margin is back to
   its natural 22px. */
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  font-weight: 560;
  letter-spacing: -.042em;
  line-height: 1.03;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero .lede {
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  line-height: 1.62;
  margin: 0 auto;
  max-width: 60ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
}
.hero-note { margin-top: 18px; font-size: .85rem; color: var(--faint); }

/* The detection belt: four compact cards on a conveyor. New detections enter
   from the left; the oldest slides off the right. Edge mask so cards appear
   and leave through a fade, not a hard clip. */
.hero-live-cap {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 44px;
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--faint);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--pos); flex: none; }
@media (prefers-reduced-motion: no-preference) {
  .pulse { animation: pulse 2.2s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
}
.hero-belt-clip {
  overflow: hidden;
  box-sizing: border-box;
  max-width: 1156px;          /* 4 cards (1036) + 60px fade margin each side */
  padding: 0 60px;
  margin: 14px auto 0;
  /* Fade only over the padding, so resting cards are fully opaque and only
     an entering or leaving card passes through the fade. */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60px, #000 calc(100% - 60px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 60px, #000 calc(100% - 60px), transparent);
}
@media (max-width: 640px) {
  .hero-belt-clip {
    padding: 0 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
  }
}
.hero-belt { display: flex; gap: 12px; will-change: transform; }
.hb-card {
  flex: 0 0 250px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 12px 14px;
}
.hb-card .m { display: flex; gap: 7px; align-items: center; margin-bottom: 7px; }
.hb-card .co { font-size: .74rem; color: var(--azure); font-weight: 510; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hb-card .co.ind { color: var(--muted); }
.hb-card .h {
  color: var(--ink); font-weight: 510; font-size: .84rem; line-height: 1.45;
  letter-spacing: -.01em; margin-bottom: 9px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.9em;
}
.hb-card .spec-cites { align-items: baseline; }
.hb-card .when { font-family: var(--mono); font-size: .68rem; color: var(--faint); margin-left: auto; }

/* ---------- claim triplet ---------- */
.props { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.props-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 34px; padding-top: 42px; padding-bottom: 46px; }
@media (max-width: 760px) { .props-grid { grid-template-columns: 1fr; gap: 24px; } }
.prop h3 { font-size: .95rem; margin-bottom: 7px; letter-spacing: -.014em; }
.prop h3::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 9px;
  vertical-align: 2px;
}
.prop p { font-size: .92rem; color: var(--muted); line-height: 1.6; max-width: 34ch; }

/* Secondary action as a quiet link rather than a second button. Two buttons
   side by side ask the reader to make a choice; one button and a link does not. */
.quiet-link {
  font-size: .875rem;
  color: var(--muted);
  letter-spacing: -.008em;
  border-bottom: 1px solid transparent;
  transition: color .13s ease, border-color .13s ease;
}
.quiet-link:hover { color: var(--ink); border-bottom-color: var(--line-3); }

@media (max-width: 760px) { .hero { padding: 72px 0 60px; } }

/* ---------- bands ---------- */
.band { padding: 96px 0; border-bottom: 1px solid var(--line); position: relative; }
.band-alt { background: var(--bg-2); }
.band-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.band-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  letter-spacing: -.032em;
  margin: 12px 0 14px;
}
.band-head .lede { margin: 0 auto; }
.band-head .band-sub { color: var(--muted); font-size: 1rem; line-height: 1.6; }

/* ---------- API + MCP ----------
   A callout, not a demo. Three short points; the capability is the message,
   not the syntax. */
.int-points { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 34px; max-width: 920px; margin: 0 auto; }
@media (max-width: 760px) { .int-points { grid-template-columns: 1fr; gap: 22px; } }
.int-point h3 { font-size: .95rem; margin-bottom: 7px; letter-spacing: -.014em; }
.int-point h3::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 9px;
  vertical-align: 2px;
}
.int-point p { font-size: .92rem; color: var(--muted); line-height: 1.6; max-width: 34ch; }

/* ---------- comparison ---------- */
/* Border and radius live on the scroll container: a radius on a collapsed
   table does not clip, and the wrapper is what actually scrolls on mobile. */
#compare .scroll-x { border: 1px solid var(--line); border-radius: var(--r-lg); }
.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.cmp th, .cmp td {
  text-align: left;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cmp thead th {
  font-size: .78rem;
  font-weight: 540;
  color: var(--muted);
  background: var(--surface-2);
}
.cmp thead th.you { color: var(--gold-text); box-shadow: inset 0 -2px 0 var(--gold-dim); }
.cmp tbody td:first-child { color: var(--faint); font-size: .8rem; white-space: nowrap; }
.cmp tbody td { color: var(--muted); background: var(--surface); }
/* SectorSight column: gold highlight behind normal ink text. The wash
   composites over the cell surface so it works on both themes; gold TEXT
   fails in light mode. */
.cmp tbody td.you {
  color: var(--ink);
  background-color: var(--surface);
  background-image: linear-gradient(var(--gold-wash), var(--gold-wash));
}
.cmp tbody tr:last-child td { border-bottom: 0; }
@media (max-width: 760px) { .band { padding: 62px 0; } }

/* Live specimen: a freshly arrived feed item slides in. */
@media (prefers-reduced-motion: no-preference) {
  .spec-item.arrive { animation: arrive .5s ease; }
  @keyframes arrive {
    from { opacity: 0; transform: translateY(-7px); }
    to { opacity: 1; transform: none; }
  }
}

/* ---------- tempo track ----------
   Three steps down a single vertical rule, each marked by a node. The rule is
   inset to the node's centre so they read as one object rather than a line and
   some circles that happen to be near it. It stops at the LAST NODE rather
   than running to the bottom of the container, because a line trailing past
   the final step reads as an unfinished list. */
.tempo-track { position: relative; padding-left: 44px; }

/* The rule is drawn PER STEP, from each node down to the next one, rather than
   as one line on the track. A single track-level line would have to run to the
   bottom of the last step's specimen card, trailing well past the final node
   and reading as an unfinished list. Per-step segments end exactly where they
   should, and the last step simply draws none. No JS needed. */
.tempo-step { position: relative; padding-bottom: 76px; }
.tempo-step:last-child { padding-bottom: 0; }
.tempo-step::after {
  content: "";
  position: absolute;
  left: -37px;              /* centre of the 15px node at left: -44px */
  top: 21px;                /* just below the node */
  bottom: 0;                /* reaches the next node through the padding */
  width: 1px;
  background: var(--line-2);
}
.tempo-step:last-child::after { display: none; }
.tempo-step::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--line-3);
  background: var(--bg-2);
  box-shadow: 0 0 0 4px var(--bg-2);
  transition: border-color .5s ease, box-shadow .5s ease;
}
/* Scroll reveal: steps rise as they enter, nodes light gold. The hidden
   initial state is keyed to body.reveal, which only JS sets, so with scripts
   unavailable the page renders complete. Reduced-motion visitors get the
   final state with no movement. */
@media (prefers-reduced-motion: no-preference) {
  body.reveal .tempo-step { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
  body.reveal .tempo-step.lit { opacity: 1; transform: none; }
}
.tempo-step.lit::before { border-color: var(--gold-dim); box-shadow: 0 0 0 4px var(--bg-2), 0 0 12px rgba(228, 185, 91, .35); }
/* Feed is the product, so its node is filled gold. The halo is the section
   background, which is what lets a filled node sit cleanly on the rule. */
.tempo-step.primary::before {
  border-color: var(--gold-dim);
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg-2);
}

.tempo-head { max-width: 62ch; margin-bottom: 22px; }
.tempo-head h3 {
  font-size: 1.5rem;
  letter-spacing: -.028em;
  margin: 6px 0 10px;
  font-weight: 550;
}
.tempo-head p { color: var(--muted); font-size: 1.02rem; line-height: 1.62; }
.tempo-head .k {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--faint);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tempo-step.primary .tempo-head .k { color: var(--gold-text); }

@media (max-width: 620px) {
  .tempo-track { padding-left: 30px; }
  .tempo-step::before { left: -30px; width: 11px; height: 11px; }
  .tempo-step::after { left: -25px; top: 17px; }
  .tempo-step { padding-bottom: 52px; }
  .tempo-head h3 { font-size: 1.3rem; }
}

/* Feed specimen. Mirrors the real hub feed: day dividers as the only
   structural device, rows in chronological order, no executive summary. The
   edge-light on top is the 1px gradient that keeps a flat card from reading
   as flat. */
.spec-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: border-color .18s ease, transform .18s ease;
}
/* Hover lift: borders lighten and the card rises a hair. The same quiet
   micro-interaction Linear and Resend use instead of shadows. */
@media (prefers-reduced-motion: no-preference) {
  .spec-card:hover, .price-card:hover { transform: translateY(-2px); }
}
.spec-card:hover { border-color: var(--line-3); }
.price-card { transition: border-color .18s ease, transform .18s ease; }
.price-card:hover { border-color: var(--line-3); }
.spec-card::before {
  content: "";
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--edge-light), transparent);
}
.spec-head {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.spec-head .t { font-size: .8rem; color: var(--ink); font-weight: 520; }
/* A live dot, because the claim on this page is that the feed is always on. */
.spec-head .d {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--faint);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.spec-head .d::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pos);
}
.spec-body { padding: 0; }

/* Feed specimen mirrors the hub: a scope toggle on top, then each day as a
   label above its own bordered group, air between days. */
.spec-body.feedy { padding: 12px 14px 16px; }
.spec-tools { display: flex; margin-bottom: 4px; }
.sseg {
  display: inline-flex;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--surface);
}
.sseg i {
  font-style: normal;
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted);
  padding: 2px 9px;
  border-radius: calc(var(--r) - 3px);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: color .12s ease;
}
.sseg i:hover { color: var(--ink); }
.sseg i.on { background: var(--surface-3); color: var(--ink); }

.spec-day {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 2px 6px;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--faint);
}
.spec-day::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
.spec-group { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }

/* The brief and analysis specimens are documents, not row lists, so their body
   carries padding where the feed's does not. */
.spec-body.pad { padding: 16px 16px 18px; }
.spec-head .d.nodot::before { display: none; }

/* Brief specimen: an executive summary, then items grouped under category
   labels. The exec summary is the device that distinguishes a compiled brief
   from the continuous feed. */
.brf-exec {
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 12px 13px;
  border-radius: var(--r);
  margin-bottom: 16px;
  font-size: .85rem;
  color: var(--body);
  line-height: 1.6;
}
.brf-label {
  font-size: .7rem;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: .02em;
  padding-bottom: 7px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.brf-label + .brf-item { padding-top: 0; }
.brf-item { padding: 10px 0; border-bottom: 1px solid var(--line); }
.brf-item:last-child { border-bottom: 0; padding-bottom: 0; }
.brf-item .h {
  color: var(--ink);
  font-weight: 500;
  font-size: .875rem;
  line-height: 1.45;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.brf-item .w { font-size: .84rem; color: var(--muted); margin-bottom: 7px; }
.brf-label:not(:first-child) { margin-top: 18px; }

/* Analysis specimen. Mirrors the rebuilt hub report: a facts strip, sections
   grouped by what the reader does with them, a pricing table, and an explicit
   statement of what could not be verified. */
.sfacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.sfact { background: var(--surface); padding: 9px 12px; display: flex; flex-direction: column; gap: 3px; }
.sfact .k { font-size: .66rem; color: var(--faint); }
.sfact .v { font-size: .8rem; color: var(--ink); font-weight: 520; letter-spacing: -.01em; }
.sfact .v.none { color: var(--faint); font-weight: 440; font-style: italic; }

.sgroup {
  font-size: .68rem;
  font-weight: 560;
  color: var(--ink);
  letter-spacing: .01em;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-2);
  margin: 4px 0 2px;
}
.sgroup:not(:first-child) { margin-top: 14px; }

.stiers { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; margin: 6px 0 8px; }
.stier {
  display: grid;
  grid-template-columns: 1fr auto 1.1fr;
  gap: 10px;
  align-items: baseline;
  padding: 6px 10px;
  border-bottom: 1px solid var(--line);
}
.stier:last-child { border-bottom: 0; }
.stier .n { font-size: .78rem; color: var(--ink); font-weight: 510; }
.stier .p { font-family: var(--mono); font-size: .8rem; color: var(--gold-text); font-weight: 500; }
.stier .p.none { color: var(--faint); }
.stier .u { font-size: .72rem; color: var(--faint); text-align: right; }

.sgaps {
  margin-top: 12px;
  padding: 8px 11px;
  border: 1px dashed var(--line-3);
  border-radius: var(--r-sm);
  font-size: .74rem;
  color: var(--faint);
  line-height: 1.5;
}

.an-sec { padding: 11px 0; border-bottom: 1px solid var(--line); }
.an-sec:first-child { padding-top: 0; }
.an-sec:last-child { border-bottom: 0; padding-bottom: 0; }
.an-sec h4 {
  font-size: .8rem;
  color: var(--ink);
  font-weight: 540;
  letter-spacing: -.012em;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Marks the one section that needs the reader's own positioning, which is what
   separates this from a company profile anyone could have written. */
.an-flag {
  font-size: .6rem;
  font-weight: 520;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #17130A;
  background: var(--gold);
  border-radius: 20px;
  padding: 1px 6px;
}
.an-sec p { font-size: .85rem; color: var(--muted); line-height: 1.58; margin-bottom: 7px; }

.spec-item { padding: 12px 16px; border-bottom: 1px solid var(--line); }
.spec-item:last-child { border-bottom: 0; }
.spec-item .m { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 6px; }
.spec-item .m .co { font-size: .74rem; color: var(--azure); font-weight: 510; }
/* Industry items carry no company; matches .feed-co.ind in the hub. */
.spec-item .m .co.ind { color: var(--muted); }
.spec-item .m .when { font-family: var(--mono); font-size: .68rem; color: var(--faint); margin-left: auto; }
.spec-item .h {
  color: var(--ink);
  font-weight: 500;
  font-size: .89rem;
  line-height: 1.45;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.spec-item .w { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.spec-cites { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }

/* ---------- pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 26px 22px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 14%; right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--edge-light), transparent);
}
/* Core is the featured tier: it is the only one with a trial, so it is the
   default entry point rather than the most expensive plan. Same 2px treatment
   and same inset-shadow reason as the primary tempo card: a wider border here
   would misalign this card's contents against the two beside it. */
.price-card.featured {
  border-color: var(--gold-dim);
  box-shadow: inset 0 0 0 3px var(--gold-dim);
}
.price-card.featured::after {
  content: "Free Trial";
  position: absolute;
  top: -9px; left: 22px;
  font-size: .68rem;
  font-weight: 540;
  color: #17130A;
  background: var(--gold);
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: -.004em;
}
.price-name { font-size: .84rem; color: var(--muted); font-weight: 500; margin-bottom: 10px; }
.price-amt { font-size: 2.2rem; color: var(--ink); line-height: 1; font-weight: 570; letter-spacing: -.035em; }
.price-amt span { font-size: .84rem; color: var(--faint); font-weight: 440; letter-spacing: 0; }
/* The annual line sits directly above the feature checks now that the
   per-tier description is gone, so it carries the gap itself. */
.price-year {
  font-size: .76rem;
  color: var(--faint);
  margin: 8px 0 24px;
  font-variant-numeric: tabular-nums;
}
.price-desc { font-size: .875rem; color: var(--muted); margin: 12px 0 18px; }
.price-feats { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 9px; }
.price-feats li { font-size: .93rem; color: var(--body); padding-left: 21px; position: relative; }
.price-feats li::before {
  content: "";
  position: absolute;
  left: 1px; top: .46em;
  width: 11px; height: 6px;
  border-left: 1.5px solid var(--gold-text);
  border-bottom: 1.5px solid var(--gold-text);
  transform: rotate(-45deg);
}
.price-feats li b { color: var(--ink); font-weight: 540; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-foot { margin-top: 20px; font-size: .85rem; color: var(--muted); text-align: center; }
.price-foot a { color: var(--gold-text); }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.018em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--faint); font-size: 1rem; flex: none; transition: color .13s ease; }
.faq summary:hover::after { color: var(--gold-text); }
.faq details[open] summary::after { content: "\2212"; color: var(--gold-text); }
.faq p { margin-top: 11px; font-size: .95rem; color: var(--muted); max-width: 66ch; line-height: 1.65; }

/* ---------- final ---------- */
.final {
  position: relative;
  text-align: center;
  padding: 104px 0;
  background: var(--bg-2);
  background-image: radial-gradient(var(--line-2) 1px, transparent 1px);
  background-size: 26px 26px;
  overflow: hidden;
}
:root[data-theme="light"] .final {
  background-image: radial-gradient(rgba(27, 31, 36, .16) 1px, transparent 1px);
}
.final::before {
  content: "";
  position: absolute;
  bottom: -300px; left: 50%;
  width: 900px; height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--glow-warm), transparent 72%);
  pointer-events: none;
}
.final .wrap { position: relative; z-index: 1; }
.final h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 14px; letter-spacing: -.034em; }
.final p { color: var(--muted); max-width: 54ch; margin: 0 auto 26px; font-size: 1rem; }

/* ---------- footer ----------
   Columned, Linear-style: the brand and one-line promise on the left, link
   columns to the right, a hairline base row for the legal line. */
.footer { padding: 52px 0 26px; border-top: 1px solid var(--line); position: relative; z-index: 1; background: var(--bg); }
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 38px;
}
@media (max-width: 760px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-brand p { margin-top: 12px; font-size: .85rem; color: var(--faint); max-width: 30ch; line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.footer-col h4 { font-size: .74rem; color: var(--muted); font-weight: 540; letter-spacing: .02em; margin-bottom: 3px; }
.footer-col a { font-size: .87rem; color: var(--faint); }
.footer-col a:hover { color: var(--body); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .76rem;
  color: var(--faint);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: .82rem;
  color: var(--faint);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--faint); }
.footer-links a:hover { color: var(--body); }
