/* ============================================
   Looksmaxxing Streak — Landing styles
   ============================================ */

:root {
  --bg: #000000;
  --bg-elevated: #0d0d0d;
  --bg-card: #111111;
  --bg-card-2: #181818;
  --border: #1f1f1f;
  --border-strong: #2a2a2a;
  --text: #ffffff;
  --text-muted: #9a9a9a;
  --text-faint: #555;
  --gold: #d4af37;
  --gold-warm: rgba(212, 175, 55, 0.14);
  --gold-glow: rgba(232, 167, 53, 0.55);
  --serif: "Cinzel", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, Consolas, monospace;
  --header-h: 64px;
  --section-pad: clamp(56px, 9vh, 112px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--gold); }

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

button { font: inherit; cursor: pointer; }

ol, ul { list-style: none; }

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ============================================
   Layout containers
   ============================================ */

.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.wrap-narrow {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 32px);
}

/* ============================================
   Header / Nav
   ============================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.brand:hover { color: var(--text); }

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.nav-links a {
  color: var(--text-muted);
}

.nav-links a.active,
.nav-links a:hover { color: var(--text); }

@media (max-width: 520px) {
  .nav-links { gap: 14px; font-size: 11px; }
  .brand { font-size: 10px; letter-spacing: 0.18em; }
}

/* ============================================
   Eyebrow (shared component)
   ============================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.gold { color: var(--gold); }

/* ============================================
   Section base
   ============================================ */

.section {
  padding-block: var(--section-pad);
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(48px, 8vh, 72px);
  max-width: 680px;
  margin-inline: auto;
}

.section-head .eyebrow { margin-bottom: 18px; }

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.section-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-muted);
  line-height: 1.65;
  text-wrap: pretty;
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================
   Hero — split layout
   ============================================ */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(32px, 6vh, 80px));
  padding-bottom: clamp(56px, 9vh, 104px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 961px) {
  .hero { min-height: calc(100svh - 0px); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 70% 50% at 70% 30%, rgba(212, 175, 55, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(232, 167, 53, 0.06) 0%, transparent 60%),
    var(--bg);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.6;
}

.hero-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 200px;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}

.hero-text {
  min-width: 0;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(40px, 6.8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(16px, 1.55vw, 19px);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-cta-center { justify-content: center; }

.link-cta {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
  transition: color 150ms ease, border-color 150ms ease, gap 150ms ease;
}

.link-cta:hover {
  color: var(--text);
  border-bottom-color: var(--gold);
  gap: 12px;
}

.hero-meta {
  display: flex;
  gap: clamp(20px, 4vw, 44px);
  align-items: flex-end;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta strong {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero-meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* hero media */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 2 / 3;
  isolation: isolate;
}

.hero-media-frame::before {
  content: '';
  position: absolute;
  inset: 10% -5% -5% 10%;
  background: radial-gradient(circle at 50% 35%, var(--gold-glow) 0%, transparent 55%);
  filter: blur(60px);
  z-index: -1;
  opacity: 0.6;
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
}

.hero-media-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-media-tag span:first-child {
  color: var(--text);
  font-weight: 600;
}

/* App Store button */
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  background: var(--text);
  color: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--text);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.appstore-btn:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.18), 0 2px 8px rgba(0,0,0,0.4);
}

.appstore-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.appstore-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
}

.appstore-top {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  opacity: 0.75;
}

.appstore-bot {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--text-faint);
  text-transform: uppercase;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 6px); }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-inline: auto; margin-bottom: 32px; }
  .hero-cta { justify-content: center; margin-bottom: 36px; }
  .hero-meta { justify-content: center; }
  .hero-media { order: -1; }
  .hero-media-frame { max-width: 260px; aspect-ratio: 2 / 3; }
  .hero-media-tag { top: 12px; left: 12px; padding: 5px 10px; font-size: 9px; gap: 8px; }
  .scroll-cue { display: none; }
}

@media (max-width: 520px) {
  .hero { padding-top: calc(var(--header-h) + 28px); padding-bottom: 48px; }
  .hero-grid { gap: 28px; }
  .hero-media-frame { max-width: 220px; }
  .hero-title { font-size: clamp(28px, 8.4vw, 44px); margin-bottom: 18px; }
  .hero-sub { font-size: 15px; margin-bottom: 26px; }
  .hero-meta { gap: 22px; padding-top: 22px; }
  .hero-meta strong { font-size: 22px; }
  .hero-cta { flex-direction: column; gap: 14px; margin-bottom: 28px; }
  .appstore-btn { width: 100%; max-width: 260px; justify-content: center; }
}

/* ============================================
   Marquee
   ============================================ */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding-block: 22px;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-elevated) 0%, transparent 100%); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg-elevated) 0%, transparent 100%); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.marquee-track span:nth-child(even) {
  color: var(--gold);
  opacity: 0.7;
  font-size: 0.8em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Stats bar
   ============================================ */

.stats-bar {
  padding-block: clamp(48px, 8vh, 80px);
  border-bottom: 1px solid var(--border);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  text-align: center;
}

.stats li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-block: 8px;
  border-right: 1px solid var(--border);
}

.stats li:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.01em;
}

.stat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats li:nth-child(2n) { border-right: none; }
  .stats li:nth-child(-n+2) { border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .stats li:nth-child(n+3) { padding-top: 24px; }
}

/* ============================================
   Pillars
   ============================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.pillar {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px 28px;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, var(--gold-warm) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.pillar:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}
.pillar:hover::before { opacity: 1; }

.pillar-num {
  display: block;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.pillar p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================
   Split (chad showcase)
   ============================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split-media-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  aspect-ratio: 2 / 3;
  isolation: isolate;
}

.split-media-frame::before {
  content: '';
  position: absolute;
  inset: 12% -8% -8% 12%;
  background: radial-gradient(circle at 50% 50%, var(--gold-glow) 0%, transparent 55%);
  filter: blur(70px);
  z-index: -1;
  opacity: 0.5;
}

.split-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
}

.split-text { min-width: 0; }

.split-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.split-text > p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}

.checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checks li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .split-text > p { margin-inline: auto; }
  .checks { align-items: flex-start; max-width: 420px; margin-inline: auto; text-align: left; }
  .split-media-frame { max-width: 260px; }
}

/* ============================================
   13-week protocol — connected timeline
   ============================================ */

.protocol {
  position: relative;
  padding-block: 24px;
}

.protocol-rail {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 12%, var(--gold) 88%, transparent 100%);
  opacity: 0.4;
  transform: translateY(-78px);
  z-index: 0;
}

.protocol-phases {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  z-index: 1;
}

.phase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 56px 28px 32px;
  text-align: center;
  position: relative;
  transition: transform 240ms ease, border-color 240ms ease;
}

.phase:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-3px);
}

.phase-dot {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px var(--bg);
}

.phase-dot-final {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px var(--bg), 0 0 32px rgba(212, 175, 55, 0.35);
}

.phase-week {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.phase h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.phase p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 240px;
  margin-inline: auto;
}

@media (max-width: 800px) {
  .protocol-rail { display: none; }
  .protocol-phases { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   Editorial — gigachad-statue
   ============================================ */

.editorial {
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    var(--bg);
  border-block: 1px solid var(--border);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.editorial-text { padding-block: 24px; }

.pullquote {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.pullquote-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  text-transform: uppercase;
}

.editorial-media {
  position: relative;
  display: flex;
  justify-content: center;
  isolation: isolate;
}

.editorial-media::before {
  content: '';
  position: absolute;
  inset: 8% 4% 4% 8%;
  background: radial-gradient(circle at 60% 50%, var(--gold-glow) 0%, transparent 55%);
  filter: blur(80px);
  z-index: -1;
  opacity: 0.45;
}

.editorial-media img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
}

@media (max-width: 880px) {
  .editorial-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .editorial-media { order: -1; }
  .editorial-media img { max-width: 260px; }
}

/* ============================================
   Privacy block
   ============================================ */

.privacy-block {
  background:
    linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(40px, 7vw, 64px);
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

.privacy-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--gold-warm) 0%, transparent 60%);
  pointer-events: none;
}

.privacy-block > * { position: relative; }

.privacy-block .eyebrow { margin-bottom: 18px; }

.privacy-block h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.privacy-block p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
}

.privacy-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.privacy-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.04);
  padding: 7px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ============================================
   Pricing
   ============================================ */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin-inline: auto;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 240ms ease, border-color 240ms ease;
  position: relative;
}

.price-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.price-card-feat {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--bg-card) 60%);
  border-color: rgba(212, 175, 55, 0.4);
}

.price-card-feat:hover { border-color: var(--gold); }

.price-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.price-tag em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.85em;
}

.price-amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.price-cur {
  font-size: 24px;
  vertical-align: top;
  position: relative;
  top: 8px;
  margin-right: 2px;
  color: var(--text-muted);
}

.price-per {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}

.price-sub {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 38px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: left;
}

.price-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.price-fineprint {
  text-align: center;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .pricing { grid-template-columns: 1fr; max-width: 420px; }
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-block: 4px;
  transition: background 200ms ease;
}

.faq-item[open] { background: var(--bg-elevated); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 8px 22px 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 150ms ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--mono);
  font-weight: 400;
  font-size: 22px;
  color: var(--gold);
  transition: transform 200ms ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--gold); }

.faq-item p {
  padding: 0 8px 24px 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

/* ============================================
   Final CTA
   ============================================ */

.final-cta {
  position: relative;
  padding: clamp(96px, 16vh, 148px) clamp(20px, 5vw, 40px);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212, 132, 32, 0.14) 0%, transparent 60%),
    var(--bg);
  isolation: isolate;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.4;
}

.final-cta-inner {
  max-width: 720px;
  margin-inline: auto;
}

.final-cta .eyebrow { margin-bottom: 22px; }

.final-cta h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.final-cta p {
  color: var(--text-muted);
  font-size: clamp(15px, 1.4vw, 17px);
  margin-bottom: 40px;
  max-width: 480px;
  margin-inline: auto;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px clamp(20px, 5vw, 40px) 32px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover { color: var(--text); }

.footer-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* ============================================
   Legal pages (privacy / terms / support) — preserved
   ============================================ */

.legal {
  padding-top: calc(var(--header-h) + clamp(48px, 8vh, 80px));
  padding-bottom: clamp(64px, 10vh, 96px);
}

.legal h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.legal .meta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
}

.legal .lead {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.55;
  text-wrap: pretty;
}

.legal h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  margin-top: 48px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.legal h3 {
  font-weight: 600;
  font-size: 15px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}

.legal p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal p strong { color: var(--text); font-weight: 600; }
.legal a { color: var(--gold); }
.legal a:hover { text-decoration: underline; }

.legal ul, .legal ol {
  margin: 0 0 16px 24px;
  color: var(--text-muted);
  list-style: revert;
}

.legal ul li, .legal ol li {
  margin-bottom: 6px;
  line-height: 1.65;
}

.legal .card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
}

.legal .card h3 { margin-top: 0; }
.legal .card p { margin-bottom: 0; }

/* ============================================
   Reduced motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}
