/* ============================================================
   THE FORGE, marketing site
   Dark + gold brutalist landing page. No build step required.
   ============================================================ */

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

:root {
  --bg: #0A0A0A;
  --bg-soft: #0f0f0f;
  --panel: #141414;
  --panel-2: #1B1B1B;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);

  --gold: #FACC15;
  --gold-deep: #F59E0B;

  --text: #FFFFFF;
  --muted: #9CA3AF;
  --faint: #6B7280;

  --orange: #F0997B;
  --green: #97C459;
  --blue: #85B7EB;
  --red: #E24B4A;

  --maxw: 1180px;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.disp {
  font-family: 'Anton', 'Inter', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 0.95;
}
.gold { color: var(--gold); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 13px;
  letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer;
  padding: 13px 22px; border-radius: 10px; border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #000; box-shadow: 0 8px 30px rgba(245,158,11,.25); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,158,11,.4); }
.btn-ghost { background: transparent; color: #fff; border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: var(--gold); }
.btn-block { width: 100%; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; }
.mono { display: flex; flex-direction: column; gap: 2.5px; width: 22px; }
.mono span { height: 6px; border-radius: 1.5px; }
.mono .m1 { background: linear-gradient(135deg, #FB923C, #F472B6); }
.mono .m2 { background: linear-gradient(135deg, #A78BFA, #818CF8); }
.mono .m3 { background: linear-gradient(135deg, #38BDF8, #22D3EE); }
.brand-name { font-size: 19px; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 84px 0 64px; }
.hero-glow {
  position: absolute; top: -180px; left: -160px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(245,158,11,.26), rgba(245,158,11,0) 62%);
  z-index: 0; pointer-events: none;
}
.hero-wm {
  position: absolute; right: -3%; top: 4%; font-size: 280px; line-height: 1;
  color: rgba(255,255,255,.022); z-index: 0; pointer-events: none; user-select: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center;
}
.eyebrow { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 3.5px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(44px, 7vw, 82px); letter-spacing: -1.5px; margin-bottom: 22px; }
.hero-sub { color: #c4c4c4; font-size: clamp(15px, 1.6vw, 18px); max-width: 460px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.stores { display: flex; gap: 11px; flex-wrap: wrap; }
.store {
  display: flex; align-items: center; gap: 9px; background: var(--panel);
  border: 1px solid var(--line); border-radius: 10px; padding: 9px 15px; transition: border-color .15s;
}
.store:hover { border-color: var(--line-2); }
.store .ti { font-size: 22px; }
.store small { display: block; font-size: 9px; color: var(--faint); letter-spacing: .5px; text-transform: uppercase; }
.store b { font-size: 13px; font-weight: 600; }

/* Hero phone, actual app screenshot in a device frame */
.hero-phone-wrap { display: flex; justify-content: center; }
.hero-device { max-width: 300px; }
.hero-device img { box-shadow: 0 0 80px rgba(245,158,11,.20), 0 24px 70px rgba(0,0,0,.5); }
.phone {
  width: 252px; background: #000; border: 8px solid #1c1c1c; border-radius: 36px;
  padding: 13px 12px 14px; box-shadow: 0 0 80px rgba(245,158,11,.20);
}
.phone .scr { background: #0A0A0A; border-radius: 22px; padding: 14px 13px 12px; overflow: hidden; }
.p-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--gold); padding-bottom: 9px; margin-bottom: 13px; }
.p-brand { font-size: 15px; }
.p-s { background: var(--red); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 3px; }
.blocks { display: flex; flex-direction: column; gap: 3.5px; align-items: center; margin: 5px 0 10px; }
.blocks span { width: 74px; height: 13px; border-radius: 2px; background: linear-gradient(90deg, #2563EB, #60A5FA); }
.p-cap { text-align: center; font-size: 10px; letter-spacing: 1.5px; color: #cbd5e1; margin-bottom: 13px; }
.p-stats { display: flex; gap: 9px; margin-bottom: 12px; }
.p-stat { flex: 1; border: 1px solid #2a2a2a; border-radius: 8px; padding: 9px; text-align: center; }
.p-stat small { font-size: 8px; letter-spacing: 1px; color: var(--faint); display: block; margin-bottom: 4px; }
.p-stat b { font-size: 25px; font-family: 'Anton', sans-serif; }
.p-stakes { border: 1px solid #14532d; background: rgba(34,197,94,.07); border-radius: 8px; padding: 9px 11px; }
.p-stakes small { font-size: 8px; letter-spacing: 1px; color: #4ADE80; display: block; margin-bottom: 4px; }
.p-stakes p { font-size: 10px; color: #9ca3af; line-height: 1.4; }
.p-nav { display: flex; justify-content: space-around; margin-top: 12px; padding-top: 10px; border-top: 1px solid #1f1f1f; color: #4b5563; font-size: 15px; }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee { background: #000; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; white-space: nowrap; padding: 13px 0; }
.marquee-track { display: inline-block; animation: marq 26s linear infinite; }
.marquee-track span { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 15px; letter-spacing: 2.5px; color: #e5e7eb; }
.marquee-track b { color: var(--gold); margin: 0 18px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section scaffolding ─────────────────────────────────── */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 46px; }
.kicker { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 3.5px; margin-bottom: 14px; }
.section-title { font-size: clamp(30px, 4.5vw, 50px); letter-spacing: -.5px; margin-bottom: 14px; }
.section-lead { color: var(--muted); font-size: 16px; }

/* ── System grid ─────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar {
  background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 20px 24px; transition: transform .15s, border-color .15s;
}
.pillar:hover { transform: translateY(-3px); }
.pillar .ti { font-size: 26px; display: block; margin-bottom: 14px; }
.pillar h3 { font-size: 15px; font-weight: 700; letter-spacing: .3px; margin-bottom: 8px; text-transform: uppercase; }
.pillar p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ── Showcase rows ───────────────────────────────────────── */
.showcase { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.showcase-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; padding: 80px 0; position: relative; z-index: 2; }
.showcase.rev .showcase-inner { grid-template-columns: 1fr 1.15fr; }
.showcase.rev .showcase-text { order: 2; }
.showcase-glow { position: absolute; width: 560px; height: 560px; border-radius: 50%; top: 50%; transform: translateY(-50%); z-index: 0; pointer-events: none; }
.showcase h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.showcase-text p { color: #c4c4c4; font-size: 16px; max-width: 460px; }
.showcase-img { display: flex; justify-content: center; }

.ring { width: 150px; height: 150px; border-radius: 50%; border: 7px solid var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 10px auto; box-shadow: 0 0 50px rgba(245,158,11,.3) inset; }
.ring b { font-size: 34px; font-family: 'Anton', sans-serif; }
.ring small { font-size: 9px; letter-spacing: 2.5px; color: var(--faint); }
.moon-box { border: 3px solid #fff; width: 68px; height: 68px; display: flex; align-items: center; justify-content: center; margin: 10px auto 16px; }
.moon-box .ti { color: var(--gold); font-size: 32px; }

/* ── Logo mark ───────────────────────────────────────────── */
/* The icon PNG has a pure-black backing square that shows as a block
   against the page. Feather the edges so only the monolith reads. */
.logo-img {
  width: 34px; height: 34px; display: block; flex-shrink: 0;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 40%, rgba(0,0,0,.55) 58%, transparent 72%);
          mask-image: radial-gradient(circle at 50% 50%, #000 40%, rgba(0,0,0,.55) 58%, transparent 72%);
}

/* ── iPhone device frame (real screenshots) ──────────────── */
.device { position: relative; max-width: 290px; width: 100%; margin: 0 auto; }
.device img { width: 100%; display: block; border: 9px solid #1a1a1a; border-radius: 38px; background: #1a1a1a; box-shadow: 0 24px 70px rgba(0,0,0,.5); transition: transform .2s; }
.device:hover img { transform: translateY(-4px); }
.device .notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 34%; height: 20px; background: #1a1a1a; border-radius: 0 0 14px 14px; z-index: 2; }
.device figcaption { margin-top: 16px; text-align: center; font-size: 12px; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; font-weight: 600; }
.device-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }

/* ── Pricing billing toggle + tier subtitle ──────────────── */
.billing-toggle { display: flex; width: fit-content; gap: 4px; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 4px; margin: 0 auto 32px; }
.bt-opt { background: transparent; border: none; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .3px; padding: 9px 18px; border-radius: 7px; cursor: pointer; font-family: 'Inter', sans-serif; transition: background .15s, color .15s; }
.bt-opt.active { background: var(--gold); color: #000; }
.tier-sub { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-top: 6px; min-height: 34px; }

/* ── Arena ───────────────────────────────────────────────── */
.arena { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: radial-gradient(circle at 50% -10%, rgba(226,75,74,.16), rgba(226,75,74,0) 55%); }
.shame-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 820px; margin: 0 auto; }
.shame { background: #140a0a; border: 1px solid #3a1414; border-radius: var(--radius); padding: 18px 20px; }
.shame.kept { background: #0a140d; border-color: #14532d; }
.shame-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.shame-handle { font-size: 13px; font-weight: 600; }
.flag { font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 3px; letter-spacing: .5px; }
.flag-broken { background: var(--red); color: #fff; }
.flag-kept { background: #22C55E; color: #052e16; }
.shame-word { font-size: 15px; font-weight: 600; margin-bottom: 9px; }
.shame-reason { font-size: 13px; color: #d4a3a3; font-style: italic; line-height: 1.55; border-left: 2px solid #5b1a1a; padding-left: 11px; }
.shame.kept .shame-reason { color: #a3d4a3; border-color: #1a5b2c; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.pricing-2 { grid-template-columns: repeat(2, 1fr); max-width: 680px; }
.tier { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; }
.tier.feat { border: 2px solid var(--gold); background: #16130a; }
.tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #000; font-size: 10px; font-weight: 800; letter-spacing: 1px; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; }
.tier-name { font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.tier-price { font-size: 42px; font-family: 'Anton', sans-serif; margin: 8px 0 2px; }
.tier-price small { font-size: 15px; color: var(--muted); font-family: 'Inter', sans-serif; }
.tier ul { list-style: none; margin: 20px 0 24px; display: flex; flex-direction: column; gap: 11px; }
.tier li { font-size: 13.5px; color: #d4d4d4; display: flex; gap: 9px; align-items: flex-start; line-height: 1.4; }
.tier li .ti { color: var(--gold); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.tier .btn { margin-top: auto; }

/* ── Final CTA ───────────────────────────────────────────── */
.cta { position: relative; overflow: hidden; text-align: center; padding: 110px 0; border-top: 1px solid var(--line); background: radial-gradient(circle at 50% 130%, rgba(245,158,11,.30), rgba(245,158,11,0) 58%); }
.cta h2 { font-size: clamp(38px, 6vw, 72px); letter-spacing: -1px; max-width: 760px; margin: 0 auto 18px; }
.cta p { color: var(--muted); font-size: 17px; margin-bottom: 28px; }
.date-chip { display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--gold); color: var(--gold); font-size: 13px; font-weight: 600; padding: 10px 18px; border-radius: 10px; margin-top: 22px; }
.ember { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold-deep); bottom: 40px; animation: rise linear infinite; z-index: 1; pointer-events: none; }
@keyframes rise { 0% { transform: translateY(0); opacity: 0; } 15% { opacity: .85; } 100% { transform: translateY(-360px); opacity: 0; } }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: #070707; border-top: 1px solid var(--line); padding: 50px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-about { max-width: 260px; }
.footer-about p { font-size: 13px; color: var(--faint); line-height: 1.6; margin-top: 14px; }
.fcol h4 { font-size: 11px; letter-spacing: 1.5px; color: var(--faint); margin-bottom: 14px; text-transform: uppercase; }
.fcol a { display: block; font-size: 14px; color: #bdbdbd; margin-bottom: 10px; transition: color .15s; }
.fcol a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--faint); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 20px; color: var(--muted); }
.footer-social a:hover { color: var(--gold); }

/* ── Reveal animation ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-phone-wrap { order: -1; }
  .hero-wm { display: none; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .showcase-inner, .showcase.rev .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .showcase.rev .showcase-text { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0;
    background: #0d0d0d; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 18px;
  }
  .nav-toggle { display: block; }
  .section { padding: 64px 0; }
  .pillars { grid-template-columns: 1fr; }
  .shame-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .device-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Waitlist ─────────────────────────────────────────── */
.wl-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.wl-input {
  flex: 1; min-width: 0; padding: 14px 16px; font: inherit; font-size: 15px;
  background: #121008; border: 1px solid var(--line); color: var(--ink, #F2EDE3);
  border-radius: 4px; outline: none;
}
.wl-input:focus { border-color: var(--gold, #FACC15); }
.wl-note { margin-top: 14px; font-size: 13px; color: #9a927e; min-height: 18px; }
.wl-note.ok { color: var(--gold, #FACC15); }
.wl-note.err { color: #DC2626; }
@media (max-width: 560px) { .wl-form { flex-direction: column; } }
