/* Landing-page-specific layout. Tokens come from colors_and_type.css */

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

.page { max-width: 1280px; margin: 0 auto; padding: 0 64px; }

/* ---------- Top nav ---------- */
.nav { display: flex; align-items: center; justify-content: space-between;
       padding: 24px 0; border-bottom: 1px solid var(--ghost-ink); }
.nav__brand { height: 28px; }
.nav__brand img { height: 100%; display: block; }
.nav__links { display: flex; gap: 32px; }
.nav__link { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
             text-transform: uppercase; color: var(--ghost-ink); text-decoration: none;
             padding-bottom: 2px; border-bottom: 1px solid transparent; cursor: pointer; }
.nav__link:hover { border-bottom-color: var(--ghost-ink); }
.nav__cta { font-family: var(--font-sub); text-transform: uppercase; font-size: 12px;
            letter-spacing: 0.06em; padding: 10px 16px; background: var(--ghost-ink);
            color: #fff; border: 2px solid var(--ghost-ink); cursor: pointer; }
.nav__cta:hover { background: #fff; color: var(--ghost-ink); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 80px 0 96px; }
.hero__eyebrow { font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; }
.hero__headline { font-family: var(--font-display); font-weight: 900;
  font-size: 132px; line-height: 0.92; letter-spacing: -0.025em;
  margin: 24px 0 0; max-width: 14ch; position: relative; z-index: 1; }
.hero__headline .strike { text-decoration: line-through;
  text-decoration-thickness: 0.06em; color: #999; font-weight: 900; }
.hero__headline .mark { background: var(--ghost-magenta); color: #fff;
  padding: 0 0.08em; box-decoration-break: clone;
  -webkit-box-decoration-break: clone; line-height: 0.92; }
.hero__sub { font-family: var(--font-body); font-weight: 500; font-size: 22px;
  line-height: 1.5; max-width: 52ch; margin-top: 32px; }
.hero__row { display: flex; align-items: center; gap: 24px; margin-top: 40px;
  position: relative; z-index: 1; }
.hero__ghost { position: absolute; right: 64px; top: 120px; width: 140px; z-index: 0; }
.hero__meta { font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: #555;
  display: flex; gap: 24px; margin-top: 64px; padding-top: 16px;
  border-top: 1px solid var(--ghost-ink); }

/* ---------- Buttons (shared) ---------- */
.btn { display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sub); text-transform: uppercase; font-size: 14px;
  letter-spacing: 0.04em; padding: 18px 26px; cursor: pointer;
  border: 2px solid var(--ghost-ink); background: var(--ghost-ink); color: #fff;
  transition: all 120ms cubic-bezier(.2,.9,.2,1); }
.btn:hover { background: #fff; color: var(--ghost-ink); }
.btn--ghost { background: #fff; color: var(--ghost-ink); }
.btn--ghost:hover { background: var(--ghost-ink); color: #fff; }
.btn--magenta { background: var(--ghost-magenta); color: #fff; }
.btn--magenta:hover { background: var(--ghost-ink); color: #fff; }

/* ---------- Marquee (logos / forbidden words ticker) ---------- */
.marquee { background: var(--ghost-ink); color: #fff; overflow: hidden;
  border-top: 4px solid var(--ghost-ink); }
.marquee__track { display: flex; gap: 56px; padding: 18px 0;
  font-family: var(--font-sub); font-size: 24px; text-transform: uppercase;
  letter-spacing: 0.04em; white-space: nowrap;
  animation: scroll 40s linear infinite; }
.marquee__item { display: inline-flex; align-items: center; gap: 18px; }
.marquee__strike { text-decoration: line-through; text-decoration-thickness: 0.08em; color: #FFF; opacity: 0.55; }
.marquee__dot { color: var(--ghost-magenta); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Diagnosis section ---------- */
.diag { padding: 96px 0; border-top: 4px solid var(--ghost-ink); }
.diag__head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: end; padding-bottom: 48px; border-bottom: 1px solid var(--ghost-ink); }
.section-eyebrow { font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; }
.section-h { font-family: var(--font-display); font-weight: 900;
  font-size: 80px; line-height: 0.95; letter-spacing: -0.02em; margin: 12px 0 0; }
.section-lede { font-family: var(--font-body); font-weight: 500; font-size: 20px;
  line-height: 1.5; }
.diag__list { padding: 48px 0 0; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; }
.diag__item { padding: 32px 0; border-bottom: 1px solid var(--ghost-ink);
  display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: start; }
.diag__item:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--ghost-ink); }
.diag__item:nth-child(even) { padding-left: 48px; }
.diag__num { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.1em; }
.diag__title { font-family: var(--font-sub); text-transform: uppercase;
  font-size: 22px; line-height: 1.05; letter-spacing: -0.005em; }
.diag__body { font-family: var(--font-body); font-weight: 500; font-size: 15px;
  line-height: 1.55; margin-top: 10px; color: #333; }

/* ---------- Pricing tiers ---------- */
.pricing { padding: 96px 0; border-top: 4px solid var(--ghost-ink); }
.tiers { display: grid; grid-template-columns: 1fr 1fr 1fr; margin-top: 56px; }
.tier { padding: 36px 32px 40px; border: 2px solid var(--ghost-ink);
  margin-left: -2px; background: #fff; position: relative; }
.tier:first-child { margin-left: 0; }
.tier--rec { background: var(--ghost-magenta); color: #fff; z-index: 2;
  transform: translateY(-12px); padding-bottom: 52px; }
.tier__name { font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; }
.tier__price { font-family: var(--font-display); font-weight: 900;
  font-size: 80px; line-height: 0.95; letter-spacing: -0.025em; margin: 16px 0 4px; }
.tier__per { font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.tier__list { font-family: var(--font-body); font-weight: 500; font-size: 15px;
  line-height: 1.55; padding: 0; margin: 28px 0 32px; list-style: none; }
.tier__list li { padding-left: 22px; position: relative; margin-bottom: 10px; }
.tier__list li::before { content: "→"; position: absolute; left: 0;
  font-family: var(--font-mono); }
.tier__cta { width: 100%; }
.tier__banner { position: absolute; top: -16px; right: -2px;
  background: var(--ghost-ink); color: #fff; font-family: var(--font-sub);
  font-size: 11px; letter-spacing: 0.14em; padding: 6px 14px; }

/* ---------- Pull quote ---------- */
.pq { padding: 96px 0; border-top: 4px solid var(--ghost-ink); display: grid;
  grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.pq__glyph { font-family: var(--font-display); font-weight: 900;
  font-size: 280px; line-height: 0.7; color: var(--ghost-ink); }
.pq__body { display: flex; flex-direction: column; gap: 24px; padding-top: 16px; }
.pq__text { font-family: var(--font-display); font-style: italic;
  font-weight: 500; font-size: 56px; line-height: 1.1; letter-spacing: -0.015em; }
.pq__attr { font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: #555;
  display: flex; align-items: center; gap: 14px; }
.pq__attr img { width: 32px; height: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--ghost-ink); color: #fff; padding: 80px 64px 48px;
  margin-top: 96px; }
.footer__grid { max-width: 1280px - 128px; display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer__head { font-family: var(--font-display); font-weight: 900;
  font-size: 96px; line-height: 0.95; letter-spacing: -0.025em; }
.footer__head .mark { background: var(--ghost-cyan); color: var(--ghost-ink);
  padding: 0 12px; }
.footer__col h4 { font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 16px;
  padding-bottom: 8px; border-bottom: 1px solid #fff; }
.footer__col a { display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 15px; color: #fff; text-decoration: none; padding: 6px 0; }
.footer__col a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer__base { display: flex; justify-content: space-between;
  margin-top: 64px; padding-top: 24px; border-top: 1px solid #fff;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #aaa; }
