:root {
  --ink: #101217;
  --paper: #e9e5dc;
  --muted: #9c9b94;
  --line: rgba(233, 229, 220, .16);
  --ember: #ff5a1f;
  --ember-dark: #bb3816;
  --acid: #c9f25a;
  --blue: #72c6d6;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Space Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; background: var(--ink); color: var(--paper); font-family: var(--body); line-height: 1.55; }
body, button, a { cursor: default; }
a, button { color: inherit; }
a { cursor: pointer; text-decoration: none; }
button { cursor: pointer; font: inherit; }
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 20; opacity: .055; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px clamp(20px, 5vw, 72px); border-bottom: 1px solid var(--line); background: rgba(16,18,23,.88); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--paper); }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; background: var(--ember); color: var(--ink); font: 800 15px/1 var(--display); letter-spacing: -.04em; transform: skew(-8deg); }
.brand-name { font: 700 17px/1 var(--display); letter-spacing: .08em; }
.brand-name b { color: var(--ember); font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: clamp(15px, 2.4vw, 34px); font-size: 13px; font-weight: 600; letter-spacing: .03em; }
.site-nav a:not(.nav-play) { color: var(--muted); transition: color .2s ease; }
.site-nav a:not(.nav-play):hover { color: var(--paper); }
.nav-social { display: inline-flex; align-items: center; gap: 7px; color: var(--paper) !important; white-space: nowrap; transition: color .2s ease, transform .2s ease; }
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }
.nav-social:hover { color: var(--acid) !important; transform: translateY(-1px); }
.nav-play { padding: 10px 15px; background: var(--acid); color: var(--ink); font-weight: 700; }
.nav-play span { display: inline-block; margin-left: 7px; transform: translateY(-1px); }
.menu-toggle { display: none; border: 1px solid var(--line); padding: 8px 12px; background: transparent; color: var(--paper); }
.page { max-width: 1240px; margin: 0 auto; padding: clamp(54px, 9vw, 120px) clamp(20px, 5vw, 72px); }
.hero { min-height: calc(100vh - 71px); display: grid; align-items: center; position: relative; overflow: hidden; background: linear-gradient(132deg, #151820 0%, var(--ink) 54%); }
.hero:before { content: "01"; position: absolute; top: 8%; right: 7%; color: rgba(201,242,90,.07); font: 900 clamp(160px, 30vw, 420px)/.7 var(--display); letter-spacing: -.1em; }
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--acid); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow:before { content: ""; width: 27px; height: 2px; background: var(--ember); }
h1, h2, h3 { margin: 0; font-family: var(--display); text-transform: uppercase; letter-spacing: .025em; line-height: .92; }
h1 { max-width: 760px; margin-top: 22px; font-size: clamp(68px, 13vw, 178px); font-weight: 900; letter-spacing: -.045em; }
h1 em { color: var(--ember); font-style: normal; }
.hero-lede { max-width: 480px; margin: 30px 0; color: #c2c0b6; font-size: clamp(16px, 2vw, 20px); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 19px; border: 1px solid transparent; font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ember); color: var(--ink); }
.button-primary:hover { background: #ff7543; }
.button-quiet { border-color: var(--line); color: var(--paper); }
.button-quiet:hover { border-color: var(--acid); color: var(--acid); }
.hero-stamp { position: absolute; right: 8%; bottom: 14%; width: 142px; height: 142px; display: grid; place-items: center; border: 1px solid var(--acid); border-radius: 50%; color: var(--acid); font: 700 13px/1.1 var(--display); letter-spacing: .1em; text-align: center; transform: rotate(12deg); }
.hero-stamp:after { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(201,242,90,.5); border-radius: 50%; }
.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--ember); color: var(--ink); }
.ticker-track { display: flex; width: max-content; gap: 38px; padding: 12px 0; font: 700 14px/1 var(--display); letter-spacing: .16em; text-transform: uppercase; animation: ticker 24s linear infinite; }
.ticker-track span { white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.section-head h2 { max-width: 600px; font-size: clamp(48px, 7vw, 92px); }
.section-head p { max-width: 380px; color: var(--muted); }
.dark-section { background: #151820; }
.feature-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature { min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; background: #151820; }
.feature:first-child { background: var(--ember); color: var(--ink); }
.feature:nth-child(2) { background: #252c38; }
.feature:nth-child(3) { background: #1a2522; }
.feature-number { font: 800 48px/1 var(--display); opacity: .5; }
.feature h3 { font-size: 31px; }
.feature p { margin: 8px 0 0; color: inherit; opacity: .72; font-size: 14px; }
.feature:first-child p { opacity: .75; }
.campaign { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(35px, 8vw, 120px); align-items: center; }
.campaign-art { min-height: 410px; position: relative; display: grid; place-items: center; border: 1px solid var(--line); background: radial-gradient(circle at 40% 36%, rgba(255,90,31,.28), transparent 28%), #0d0f14; overflow: hidden; }
.campaign-art:before { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(201,242,90,.22); clip-path: polygon(0 0, 100% 0, 100% 78%, 70% 100%, 0 100%); }
.stick-figure { position: relative; width: 150px; height: 250px; filter: drop-shadow(0 0 16px rgba(255,90,31,.65)); }
.stick-figure:before { content: ""; position: absolute; top: 4px; left: 50px; width: 52px; height: 52px; border: 6px solid var(--paper); border-radius: 50%; }
.stick-figure:after { content: ""; position: absolute; top: 61px; left: 75px; width: 7px; height: 105px; background: var(--paper); box-shadow: -45px 40px 0 -1px var(--paper), 45px 25px 0 -1px var(--paper), -28px 150px 0 -1px var(--paper), 28px 150px 0 -1px var(--paper); transform: rotate(-7deg); }
.campaign-copy h2 { font-size: clamp(52px, 7vw, 90px); }
.campaign-copy p { max-width: 540px; color: var(--muted); font-size: 17px; }
.level-strip { display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; margin: 29px 0; }
.level-strip span { height: 7px; background: #30343d; }
.level-strip span:nth-child(-n+8) { background: var(--ember); }
.level-caption { display: flex; justify-content: space-between; color: var(--acid); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.quote { max-width: 910px; margin: 0 auto; text-align: center; }
.quote p { margin: 0; color: var(--paper); font: 500 clamp(31px, 5vw, 68px)/.98 var(--display); text-transform: uppercase; }
.quote cite { display: block; margin-top: 24px; color: var(--ember); font-size: 12px; font-style: normal; letter-spacing: .15em; text-transform: uppercase; }
.content-narrow { max-width: 820px; margin: 0 auto; }
.content-narrow h1 { max-width: 700px; margin-bottom: 22px; font-size: clamp(60px, 10vw, 120px); }
.content-narrow .intro { max-width: 650px; color: var(--muted); font-size: 18px; }
.content-narrow h2 { margin: 58px 0 15px; color: var(--acid); font-size: 38px; }
.content-narrow h3 { margin: 32px 0 8px; color: var(--ember); font-size: 25px; }
.content-narrow p, .content-narrow li { color: #c8c6bd; font-size: 16px; }
.content-narrow ul { padding-left: 22px; }
.roadmap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 38px; background: var(--line); }
.roadmap-card { min-height: 230px; padding: 28px; background: #151820; }
.roadmap-card:nth-child(2) { background: #1d2425; }
.roadmap-card:nth-child(3) { background: #24221e; }
.roadmap-card:nth-child(4) { background: #26202b; }
.roadmap-status { color: var(--acid); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.roadmap-card h3 { margin: 25px 0 10px; font-size: 33px; }
.roadmap-card p { color: var(--muted); }
.builder-card { display: grid; grid-template-columns: 120px 1fr; gap: 28px; align-items: start; padding: 30px; border: 1px solid var(--line); background: #181c21; }
.builder-initials { display: grid; place-items: center; aspect-ratio: 1; background: var(--acid); color: var(--ink); font: 800 42px/1 var(--display); }
.builder-card h2 { margin-bottom: 12px; color: var(--paper); font-size: 44px; }
.builder-card p { margin: 0 0 13px; color: #c8c6bd; }
.account-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.account-panel > div { padding: 30px; background: #151820; }
.account-panel h2 { margin-bottom: 13px; font-size: 37px; }
.account-panel p { color: var(--muted); }
.site-footer { display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 35px; padding: 48px clamp(20px, 5vw, 72px); border-top: 1px solid var(--line); background: #0c0e12; }
.footer-brand { margin-bottom: 13px; }
.footer-copy, .footer-meta { margin: 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: var(--acid); }
.footer-social { display: inline-flex; align-items: center; gap: 7px; color: var(--paper) !important; white-space: nowrap; transition: color .2s ease, transform .2s ease; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social:hover { color: var(--acid) !important; transform: translateY(-1px); }
.not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; }
@media (max-width: 760px) {
  .site-header { padding: 15px 20px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 69px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); background: #101217; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px 20px; border-top: 1px solid var(--line); }
  .site-nav .nav-social { gap: 9px; }
  .site-nav .nav-social svg { width: 18px; height: 18px; }
  .hero { min-height: 720px; }
  .hero-stamp { right: 20px; bottom: 44px; width: 105px; height: 105px; font-size: 11px; }
  .section-head, .campaign { display: block; }
  .section-head p { margin-top: 18px; }
  .feature-grid, .roadmap-grid, .account-panel { grid-template-columns: 1fr; }
  .feature { min-height: 210px; }
  .campaign-art { margin-bottom: 40px; min-height: 300px; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; }
  .footer-meta { order: 3; }
  .builder-card { grid-template-columns: 1fr; }
  .builder-initials { width: 80px; }
}