/* ===== Cold Start — editorial / quiet-luxury theme ===== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy-0: #08080a;
  --navy-1: #0d0d10;
  --navy-2: #141417;
  --navy-3: #1c1c20;
  --teal: #b08a4e;               /* warm brass — replaces tech-blue as primary accent */
  --teal-glow: rgba(176, 138, 78, 0.28);
  --coral: #e9e5da;              /* warm chrome/ivory */
  --coral-dim: #c7c2b4;
  --gold: #cda860;               /* champagne gold */
  --cream: #f3efe6;              /* warm ivory (was cool off-white) */
  --ink: #b9b6ad;
  --ink-dim: #85817a;
  --line: rgba(243, 239, 230, 0.12);
  --card: rgba(243, 239, 230, 0.04);
  --card-hover: rgba(243, 239, 230, 0.07);
  --radius: 2px;
  --maxw: 1160px;
  --serif: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--navy-0);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); color: var(--cream); margin: 0; line-height: 1.18; font-weight: 500; letter-spacing: -0.01em; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
p { margin: 0 0 1em 0; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--teal); flex-shrink: 0; }
.center .eyebrow, footer .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }
section { position: relative; padding: 140px 0; }
.section-tight { padding: 88px 0; }

/* ambient background — quiet, warm, minimal glow (no tech-blue bloom) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 12% -5%, rgba(243,239,230,0.05), transparent 60%),
    radial-gradient(ellipse 750px 520px at 92% 10%, rgba(205,168,96,0.10), transparent 60%),
    radial-gradient(ellipse 800px 560px at 10% 95%, rgba(205,168,96,0.07), transparent 60%),
    linear-gradient(180deg, var(--navy-0) 0%, var(--navy-1) 40%, var(--navy-2) 100%);
  background-attachment: fixed;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
main, header, footer { position: relative; z-index: 1; }

/* ---------- nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease;
}
header.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; padding-bottom: 24px; transition: padding 0.3s ease; }
header.nav.condensed .wrap { padding-top: 14px; padding-bottom: 14px; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 500; font-size: 20px; letter-spacing: 0.01em; color: var(--cream); }
.logo svg { display: block; }
nav.links { display: flex; align-items: center; gap: 36px; }
nav.links a.navlink {
  font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
nav.links a.navlink::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 1px; background: var(--gold);
  transition: right 0.3s ease;
}
nav.links a.navlink:hover { color: var(--cream); }
nav.links a.navlink:hover::after { right: 0; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
/* solid ivory — primary */
.btn-primary {
  background: var(--cream);
  color: #14120e;
  border: 1px solid var(--cream);
}
.btn-primary:hover { background: transparent; color: var(--cream); transform: translateY(-1px); }
/* outline — ghost */
.btn-ghost { background: transparent; border-color: var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
/* brass outline */
.btn-teal { background: transparent; border: 1px solid var(--teal); color: var(--teal); }
.btn-teal:hover { background: var(--teal); color: #14120e; transform: translateY(-1px); }
/* solid gold — highest emphasis */
.btn-gold { background: var(--gold); color: #201404; border: 1px solid var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); transform: translateY(-1px); }
.btn-sm { padding: 12px 22px; font-size: 11px; }
nav.links .btn { padding: 12px 22px; font-size: 11px; }
.navburger { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 168px 0 110px 0; text-align: center; }
.hero::before {
  content: "";
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 680px; max-width: 130vw; height: 420px;
  background: radial-gradient(closest-side, rgba(205,168,96,0.14), transparent 72%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
.hero .eyebrow { justify-content: center; }
.hero .eyebrow::before { display: none; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 68px);
  max-width: 880px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--cream);
}
.hero h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero .sub { max-width: 620px; margin: 28px auto 0 auto; font-size: 17.5px; color: var(--ink); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.fact-row { display: flex; gap: 0; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.fact-pill {
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-dim);
  padding: 0 22px; border-left: 1px solid var(--line);
}
.fact-pill:first-child { border-left: none; padding-left: 0; }
.fact-pill b { color: var(--gold); font-family: var(--serif); font-style: italic; font-size: 13px; margin-right: 3px; }

/* ---------- generic content blocks ---------- */
.center { text-align: center; }
.lead { font-size: 18px; color: var(--ink); max-width: 680px; font-weight: 400; }
.center .lead { margin-left: auto; margin-right: auto; }
h2.h2 { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 20px; letter-spacing: -0.01em; font-weight: 500; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: none;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.card:hover { background: var(--card-hover); border-color: rgba(243,239,230,0.22); transform: translateY(-2px); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(.16,.8,.24,1), transform 0.9s cubic-bezier(.16,.8,.24,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- script preview box ---------- */
.script-box { background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; max-width: 640px; margin: 30px auto 0 auto; text-align: left; }
.script-box .sb-head { background: var(--navy-3); color: var(--cream); padding: 14px 22px; font-weight: 600; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.script-box .sb-tag { border: 1px solid var(--teal); color: var(--teal); font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.6px; }
.script-box .sb-body { padding: 26px 22px; font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--cream); line-height: 1.75; }
.script-box .sb-note { padding: 10px 22px 22px 22px; font-size: 12.5px; color: var(--ink-dim); font-family: var(--sans); font-style: normal; }

/* ---------- two-col grid ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- free kit block ---------- */
.kit-band { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding: 44px; }
.kit-band .kit-copy { flex: 1; min-width: 280px; }

/* ---------- compare table ---------- */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 10px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare th { background: var(--navy-2); color: var(--cream); font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; padding: 20px 24px; text-align: left; font-weight: 600; }
.compare th.hl { color: var(--gold); }
.compare td { padding: 18px 24px; border-top: 1px solid var(--line); font-size: 14.5px; }
.compare tr:nth-child(even) td { background: rgba(243,239,230,0.02); }
.compare td.hl { color: var(--cream); font-weight: 500; }

/* ---------- value stack ---------- */
.stack-card { max-width: 620px; margin: 0 auto; }
.stack-row { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; gap: 20px; }
.stack-row:last-of-type { border-bottom: none; }
.stack-row .item { color: var(--cream); font-family: var(--serif); font-size: 16px; }
.stack-row .item small { display: block; color: var(--ink-dim); font-size: 12.5px; font-weight: 400; font-family: var(--sans); margin-top: 3px; }
.stack-row .val { color: var(--ink-dim); text-decoration: line-through; white-space: nowrap; font-weight: 500; font-family: var(--sans); }
.stack-total { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.stack-total .label { font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 1.6px; font-weight: 600; }
.stack-total .amount { font-family: var(--serif); font-weight: 500; font-size: 30px; color: var(--ink-dim); text-decoration: line-through; }
.price-drop { text-align: center; margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.price-drop .you-pay { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--ink-dim); font-weight: 600; }
.price-drop .amount-now {
  font-family: var(--serif); font-weight: 500; font-size: 62px; line-height: 1.1; color: var(--gold); font-style: italic;
}
.price-drop .amount-now sup { font-size: 28px; top: -1.8em; font-style: normal; }
.price-drop .amount-now .per-mo { font-size: 18px; font-weight: 400; font-style: normal; font-family: var(--sans); color: var(--ink-dim); }
.price-note { font-size: 13px; color: var(--ink-dim); margin-top: 8px; }

/* ---------- ai pack level-up band ---------- */
.levelup { background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 48px; }

/* ---------- affiliate band ---------- */
.affiliate-band { background: var(--navy-1); border: 1px solid rgba(205,168,96,0.3); border-radius: var(--radius); padding: 48px; text-align: center; }
.affiliate-band .big-pct {
  font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(40px, 9vw, 72px); line-height: 1.05;
  color: var(--gold);
}

/* ---------- faq accordion ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--cream); font-family: var(--serif); font-weight: 500; font-size: 18px; padding: 24px 4px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-q .plus { font-family: var(--sans); font-size: 18px; font-weight: 300; color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; font-size: 14.5px; color: var(--ink); }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
.faq-group-title { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); font-weight: 600; margin: 48px 0 8px 0; font-family: var(--sans); }
.faq-group-title:first-of-type { margin-top: 0; }

/* ---------- final CTA ---------- */
.final-band {
  background: var(--navy-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 72px 40px;
  text-align: center;
}
.final-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

footer { border-top: 1px solid var(--line); padding: 56px 0; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer .flinks { display: flex; gap: 32px; flex-wrap: wrap; }
footer .flinks a { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-dim); }
footer .flinks a:hover { color: var(--cream); }
footer .fbrand { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-dim); }

.list-check { list-style: none; margin: 0; padding: 0; }
.list-check li { position: relative; padding-left: 30px; margin-bottom: 16px; font-size: 15px; }
.list-check li::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 600; }
.list-x li::before { content: "—"; color: var(--ink-dim); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 820px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step-num {
  font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 32px; letter-spacing: -0.01em;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 640px) {
  nav.links { display: none; }
  section { padding: 88px 0; }
  .hero { padding: 120px 0 72px 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .affiliate-band, .levelup, .final-band { padding: 34px 22px; }
  .price-drop .amount-now { font-size: 48px; }
}
