@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;700&display=swap');

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --card: #161616;
  --line: #262626;
  --text: #f4f1ea;
  --mute: #a19d94;
  --fire: #ff5a1f;
  --fire2: #ff8a3d;
  --gold: #f5b942;
  --dead: #6b6b6b;
  --radius: 14px;
  --max: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Inter', system-ui, sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-family: 'Anton', 'Oswald', Impact, sans-serif; font-weight: 400; letter-spacing: .01em; line-height: 1.02; text-transform: uppercase; }
h1 { font-size: clamp(3rem, 9vw, 7rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); }
h3 { font-size: 1.5rem; }
.eyebrow { font-family: 'Oswald', sans-serif; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--fire); font-size: .85rem; }
.lede { font-size: 1.2rem; color: var(--mute); max-width: 60ch; }
.fire { color: var(--fire); }
.gold { color: var(--gold); }
.strike { text-decoration: line-through; text-decoration-color: var(--fire); text-decoration-thickness: .08em; color: var(--dead); }
section { padding: 88px 0; }
.alt { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(10,10,10,.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.logo { font-family: 'Anton', sans-serif; font-size: 1.5rem; text-decoration: none; text-transform: uppercase; letter-spacing: .02em; }
.logo span { color: var(--fire); }
.nav ul { display: flex; gap: 20px; list-style: none; }
.nav a.link { text-decoration: none; color: var(--mute); font-weight: 600; font-size: .92rem; }
.nav a.link:hover, .nav a.link.on { color: var(--text); }
.cartbtn { background: none; border: 1px solid var(--line); color: var(--text); border-radius: 999px; padding: 8px 14px; font-weight: 700; cursor: pointer; font-family: inherit; }
.cartbtn b { color: var(--fire); }
.burger { display: none; background: none; border: 0; color: var(--text); font-size: 1.6rem; cursor: pointer; }
@media (max-width: 860px) {
  .burger { display: block; }
  .nav ul { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 18px 20px; border-bottom: 1px solid var(--line); gap: 16px; }
  .nav ul.open { display: flex; }
}

/* BUTTONS */
.btn { display: inline-block; background: var(--fire); color: #0a0a0a; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .06em; padding: 16px 28px; border-radius: 10px; border: 0; cursor: pointer; font-family: inherit; font-size: .95rem; transition: transform .15s, background .15s; }
.btn:hover { background: var(--fire2); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--text); border: 2px solid var(--text); }
.btn.ghost:hover { background: var(--text); color: #0a0a0a; }
.btn.block { display: block; width: 100%; text-align: center; }
.btn[disabled] { opacity: .5; cursor: wait; }

/* HERO */
.hero { padding: 90px 0 70px; background: radial-gradient(900px 500px at 78% 10%, rgba(255,90,31,.22), transparent 60%), var(--bg); }
.hero h1 .strike { display: block; font-size: .55em; }
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.statrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.stat { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--card); }
.stat b { display: block; font-family: 'Anton', sans-serif; font-size: 2.4rem; color: var(--fire); font-weight: 400; }
.stat span { color: var(--mute); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
@media (max-width: 760px) { .statrow { grid-template-columns: repeat(2, 1fr); } section { padding: 60px 0; } }

/* VS */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.vs > div { border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); background: var(--card); }
.vs .bad { opacity: .8; }
.vs .bad h3 { color: var(--dead); }
.vs .good { border-color: var(--fire); box-shadow: 0 0 0 1px var(--fire), 0 20px 60px rgba(255,90,31,.12); }
.vs .good h3 { color: var(--fire); }
.vs ul { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.vs li::before { content: '✕  '; color: var(--dead); }
.vs .good li::before { content: '✓  '; color: var(--fire); }
@media (max-width: 760px) { .vs { grid-template-columns: 1fr; } }

/* GRID/CARDS */
.grid { display: grid; gap: 20px; margin-top: 40px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.card .price { font-family: 'Anton', sans-serif; font-size: 2.2rem; }
.card .price small { font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--mute); }
.card p { color: var(--mute); }
.card.feature { border-color: var(--fire); }
.badge { align-self: flex-start; background: var(--fire); color: #0a0a0a; font-weight: 800; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.tick { list-style: none; display: grid; gap: 8px; color: var(--text); }
.tick li::before { content: '✓  '; color: var(--fire); font-weight: 800; }
.spacer { flex: 1; }

/* MERCH ART (CSS-drawn "print" tiles) */
.art { aspect-ratio: 1/1; border-radius: 12px; background: #1c1c1c; display: grid; place-items: center; text-align: center; padding: 18px; position: relative; overflow: hidden; }
.art::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.06), transparent 55%); }
.art .big { font-family: 'Anton', sans-serif; text-transform: uppercase; line-height: .95; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--fire); }
.art .small { font-family: 'Oswald', sans-serif; letter-spacing: .3em; font-size: .7rem; color: var(--text); text-transform: uppercase; margin-top: 8px; }
.art.b2 .big { color: var(--text); } .art.b2 { background: #ff5a1f; } .art.b2 .big { color: #0a0a0a; } .art.b2 .small { color: #0a0a0a; }
.art.b3 { background: #101010; border: 1px solid var(--gold); } .art.b3 .big { color: var(--gold); }
.art.b4 { background: #222; }
select { background: var(--bg); color: var(--text); border: 1px solid var(--line); border-radius: 8px; padding: 12px; font-family: inherit; font-size: 1rem; width: 100%; }

/* ROUTINE */
.routine { counter-reset: step; display: grid; gap: 10px; margin-top: 36px; }
.step { counter-increment: step; display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 16px; padding: 16px 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }
.step::before { content: counter(step); font-family: 'Anton', sans-serif; font-size: 1.8rem; color: var(--fire); }
.step strong { font-size: 1.05rem; }
.step em { font-style: normal; font-family: 'Anton', sans-serif; font-size: 1.5rem; color: var(--gold); text-transform: uppercase; }
.step small { display: block; color: var(--mute); }
.cycle { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; margin-top: 36px; }
.cycle div { border-radius: 10px; padding: 16px 6px; text-align: center; font-family: 'Oswald', sans-serif; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; border: 1px solid var(--line); background: var(--card); }
.cycle .on { background: var(--fire); color: #0a0a0a; border-color: var(--fire); font-weight: 700; }
.cycle .off { color: var(--mute); }
.cycle .max { background: var(--gold); color: #0a0a0a; border-color: var(--gold); font-weight: 700; }
.cycle .rest { background: #1d2a33; border-color: #2c4658; color: #9fd0f0; }
.cycle b { display: block; font-family: 'Anton', sans-serif; font-size: 1.6rem; font-weight: 400; }
@media (max-width: 760px) { .cycle { grid-template-columns: repeat(4, 1fr); } }

/* FORMS */
.emailform { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.emailform input { flex: 1; min-width: 220px; padding: 16px; border-radius: 10px; border: 1px solid var(--line); background: var(--card); color: var(--text); font-size: 1rem; font-family: inherit; }
.note { color: var(--mute); font-size: .8rem; margin-top: 10px; }

/* CART DRAWER */
.drawer-bg { position: fixed; inset: 0; background: rgba(0,0,0,.6); opacity: 0; pointer-events: none; transition: .25s; z-index: 90; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%); background: var(--bg2); border-left: 1px solid var(--line); z-index: 100; transform: translateX(100%); transition: .3s; display: flex; flex-direction: column; }
body.cart-open .drawer { transform: none; } body.cart-open .drawer-bg { opacity: 1; pointer-events: auto; }
.drawer header { padding: 20px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.drawer header h3 { font-size: 1.6rem; }
.drawer .items { flex: 1; overflow: auto; padding: 14px 20px; display: grid; gap: 14px; align-content: start; }
.line { display: grid; grid-template-columns: 1fr auto; gap: 4px 10px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.line small { color: var(--mute); }
.line button { background: none; border: 0; color: var(--fire); cursor: pointer; font-weight: 700; text-align: right; font-family: inherit; }
.qty { display: inline-flex; gap: 10px; align-items: center; margin-top: 6px; }
.qty button { width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--line); background: var(--card); color: var(--text); cursor: pointer; text-align: center; }
.drawer footer { padding: 20px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.2rem; }
.empty { color: var(--mute); text-align: center; padding: 40px 0; }

/* FOOTER */
footer.site { border-top: 1px solid var(--line); padding: 56px 0 40px; background: #060606; color: var(--mute); font-size: .9rem; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
footer.site a { display: block; text-decoration: none; margin: 6px 0; } footer.site a:hover { color: var(--text); }
footer.site h4 { color: var(--text); font-family: 'Oswald', sans-serif; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }
.disclaimer { border-top: 1px solid var(--line); padding-top: 20px; font-size: .78rem; }
@media (max-width: 640px) { footer.site .cols { grid-template-columns: 1fr; } }

/* NEXUS THEME (serious brand) */
body.nexus { --fire: #f5b942; --fire2: #ffd27a; }
body.nexus .hero { background: radial-gradient(900px 500px at 20% 0%, rgba(245,185,66,.16), transparent 60%), var(--bg); }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px); opacity: 0; pointer-events: none; background: var(--fire); color: #0a0a0a; font-weight: 800; padding: 12px 22px; border-radius: 999px; transition: .3s; z-index: 200; }
.toast.show { transform: translateX(-50%); opacity: 1; }

/* STORY / PROOF */
.pull { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: clamp(1.8rem, 4.5vw, 3rem); line-height: 1.08; max-width: 22ch; }
.pull em { font-style: normal; color: var(--fire); }
.prose { max-width: 66ch; color: var(--mute); font-size: 1.1rem; display: grid; gap: 16px; margin-top: 22px; }
.prose b { color: var(--text); }
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 40px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cmp > div { padding: 28px; display: grid; gap: 12px; align-content: start; }
.cmp > div:first-child { background: var(--card); color: var(--mute); border-right: 1px solid var(--line); }
.cmp > div:last-child { background: #1b120d; }
.cmp h3 { font-size: 1.3rem; } .cmp > div:last-child h3 { color: var(--fire); }
.cmp p { padding-top: 10px; border-top: 1px solid var(--line); }
@media (max-width: 760px) { .cmp { grid-template-columns: 1fr; } .cmp > div:first-child { border-right: 0; border-bottom: 1px solid var(--line); } }
.iam { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
@media (max-width: 760px) { .iam { grid-template-columns: 1fr; } }
.script { border: 1px dashed var(--line); border-radius: var(--radius); padding: 28px; margin-top: 30px; background: var(--card); }
.script q { display: block; font-size: 1.3rem; line-height: 1.5; quotes: none; }
.proofstrip { padding: 38px 0; background: var(--fire); color: #0a0a0a; }
.proofstrip .wrap { display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.proofstrip h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.proofstrip .btn { background: #0a0a0a; color: var(--text); }
body.nexus .proofstrip { background: var(--gold); }

table.pct { width: 100%; border-collapse: collapse; margin-top: 8px; font-variant-numeric: tabular-nums; }
table.pct th, table.pct td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
table.pct thead th { color: var(--fire); font-family: 'Oswald', sans-serif; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
table.pct td.wt { font-family: 'Anton', sans-serif; font-size: 1.2rem; color: var(--gold); text-align: right; }

/* MEDIA / PROOF */
.media2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; align-items: start; }
.media2 video, .media2 img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); background: #000; display: block; }
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.strip figure { margin: 0; position: relative; }
.strip img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; border-radius: 12px; border: 1px solid var(--line); display: block; }
.strip figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 10px; font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; background: linear-gradient(transparent, rgba(0,0,0,.85)); border-radius: 0 0 12px 12px; }
img.round { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); display: block; }
@media (max-width: 760px) { .media2 { grid-template-columns: 1fr; } .strip { grid-template-columns: repeat(2, 1fr); } }
/* TIKTOK TICKER + FOLLOW */
.ticker { overflow: hidden; background: #0a0a0a; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); white-space: nowrap; }
.ticker .track { display: inline-flex; animation: tick 38s linear infinite; }
.ticker a { display: inline-block; padding: 14px 0; font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: .18em; font-size: .9rem; text-decoration: none; color: var(--mute); }
.ticker a span { color: var(--fire); }
.ticker:hover .track { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker .track { animation: none; } .ticker { overflow-x: auto; } }
.follow { background: #0d0d0d; border-top: 1px solid var(--line); padding: 64px 0; }
.follow .fire { color: var(--fire); }
.ttembed { margin-top: 26px; min-height: 0; max-width: 780px; }

/* ---- Logo / brand ---- */
:root { --bronze: #c8964f; --bronze2: #e6c18a; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo .emblem { width: 44px; height: 44px; filter: drop-shadow(0 0 8px rgba(200,150,79,.35)); }
.herogrid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center; }
.herologo img { width: 100%; height: auto; display: block; filter: drop-shadow(0 0 40px rgba(200,150,79,.28)); }
.herologo { position: relative; }
@media (max-width: 860px) { .herogrid { grid-template-columns: 1fr; } .herologo { order: -1; max-width: 380px; margin: 0 auto 6px; } }
.eyebrow { color: var(--bronze2); }

.manifesto { background: linear-gradient(180deg,#0e0d0b,#171512); border-block: 1px solid rgba(200,150,79,.35); padding: 34px 0; text-align: center; }
.manifesto p { font-family: 'Anton', sans-serif; font-size: clamp(1.8rem, 6vw, 3.6rem); letter-spacing: .06em; margin: 0; color: var(--text); }
.manifesto b { color: var(--bronze); font-weight: inherit; }
.manifesto small { display: block; margin-top: 10px; color: var(--mute); letter-spacing: .04em; }
.nav a.link, .nav .cartbtn, .logo { white-space: nowrap; }
@media (min-width: 861px) and (max-width: 1240px) { .nav ul { gap: 14px; } .nav a.link { font-size: .84rem; } .logo { font-size: 1.3rem; } }
footer.site .logo { display: flex; }
@media (max-width: 520px) { .logo { font-size: 1.05rem; gap: 7px; } .logo .emblem { width: 34px; height: 34px; } }

.bundlebar { display: block; text-align: center; background: linear-gradient(90deg,#8a5f2b,#c8964f,#8a5f2b); color: #0a0a0a; padding: 9px 14px; font-size: .9rem; text-decoration: none; letter-spacing: .02em; }
.bundlebar span { text-decoration: underline; font-weight: 700; margin-left: 6px; }
.bundlehero { padding: 46px 0; background: radial-gradient(ellipse at 80% 20%, rgba(200,150,79,.16), transparent 60%), #0e0d0b; border-block: 1px solid rgba(200,150,79,.4); }
.bundlebox { display: grid; grid-template-columns: 1.4fr .8fr; gap: 34px; align-items: center; }
.bundlebox h2 { margin: 0; }
.bundleprice { background: var(--card); border: 1.5px solid var(--bronze); border-radius: 16px; padding: 24px; text-align: center; box-shadow: 0 0 60px rgba(200,150,79,.15); }
.bundleprice .now { font-family: 'Anton', sans-serif; font-size: 4.2rem; line-height: 1; color: var(--bronze2); margin: 6px 0 2px; }
.bundleprice .was { color: var(--mute); text-decoration: line-through; }
.bundleprice .save { display: inline-block; background: var(--fire); color: #0a0a0a; font-weight: 800; font-size: .8rem; padding: 3px 10px; border-radius: 99px; margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; }
.bundleprice small { display: block; margin-top: 10px; color: var(--mute); }
@media (max-width: 860px) { .bundlebox { grid-template-columns: 1fr; } }

.legal h3 { margin-top: 26px; }
.legal { max-width: 760px; }
.legal-links { margin: 22px 0 6px; font-size: .9rem; }
.legal-links a { color: var(--mute); margin-right: 4px; }
.legal a, #cnote a { color: var(--bronze2); }
footer.site .legal-links a { display: inline; }
@media (min-width: 861px) and (max-width: 1060px) { .nav ul { gap: 10px; } .nav a.link { font-size: .78rem; } .logo { font-size: 1.1rem; } .logo .emblem { width: 34px; height: 34px; } }
