:root {
  --ink: #080b0c;
  --ink-soft: #101517;
  --steel: #a7b0b2;
  --mist: #e8eeee;
  --white: #f8fbfa;
  --ember: #ff5b35;
  --ember-hot: #ff7655;
  --line: rgba(232, 238, 238, .15);
  --page: min(1160px, calc(100% - 2rem));
  --radius: 1.25rem;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--mist);
  background:
    radial-gradient(circle at 85% 4%, rgba(255, 91, 53, .09), transparent 24rem),
    linear-gradient(180deg, #0c1011 0%, var(--ink) 55%, #0a0e0f 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--ember); color: var(--white); }
:focus-visible { outline: 3px solid var(--ember-hot); outline-offset: 4px; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--white); color: var(--ink); padding: .7rem 1rem; border-radius: .4rem; }
.skip-link:focus { top: 1rem; }
.shell { width: var(--page); margin-inline: auto; position: relative; }
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: rgba(8,11,12,.78); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 4.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { text-decoration: none; display: inline-flex; align-items: center; gap: .72rem; font-weight: 800; letter-spacing: .04em; }
.brand-mark { width: 2.1rem; aspect-ratio: 1; position: relative; display: grid; place-items: end center; overflow: hidden; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; bottom: .18rem; transform: rotate(45deg); background: var(--mist); }
.brand-mark::before { width: 1.4rem; height: 1.4rem; left: .12rem; }
.brand-mark::after { width: .9rem; height: .9rem; right: .08rem; background: var(--ember); box-shadow: 0 0 16px rgba(255,91,53,.2); }
.brand-mark span { width: 2.2rem; height: .62rem; background: var(--ink); position: relative; z-index: 1; }
.brand-text small { display: block; color: var(--steel); font-size: .58rem; letter-spacing: .26em; font-weight: 650; margin-top: -.22rem; }
.site-nav { display: flex; align-items: center; gap: .3rem; }
.site-nav a { padding: .5rem .66rem; text-decoration: none; color: var(--steel); font-size: .84rem; font-weight: 650; border-radius: 99px; transition: color .2s, background .2s; position: relative; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.065); }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .28rem; height: 1px; background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-nav a:not(.nav-cta):hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .nav-cta { color: var(--white); background: var(--ember); }
.site-nav .nav-cta:hover { background: var(--ember-hot); }
.nav-toggle { display: none; border: 0; background: none; color: var(--white); width: 2.8rem; height: 2.8rem; border-radius: 50%; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 1.25rem; height: 2px; margin: 4px auto; background: currentColor; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

main { position: relative; }
.hero { min-height: calc(100svh - 4.8rem); display: grid; align-items: center; padding: 5rem 0; isolation: isolate; }
.hero::after { content: ""; position: absolute; z-index: -1; right: -18vw; bottom: -2rem; width: 78vw; height: 56vh; opacity: .34; background: linear-gradient(145deg, transparent 48%, rgba(167,176,178,.17) 48.3%, rgba(16,21,23,.9) 49%), linear-gradient(35deg, transparent 58%, rgba(255,91,53,.18) 58.3%, rgba(8,11,12,.8) 59%); clip-path: polygon(0 100%, 30% 36%, 43% 62%, 60% 6%, 100% 100%); }
.eyebrow { margin: 0 0 1.2rem; color: var(--ember-hot); text-transform: uppercase; letter-spacing: .2em; font-size: .75rem; font-weight: 800; }
h1, h2, h3 { color: var(--white); line-height: 1.04; letter-spacing: -.035em; margin-top: 0; }
h1 { max-width: 900px; font-size: clamp(3.6rem, 11vw, 8.8rem); margin-bottom: 1.45rem; text-transform: uppercase; }
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 1px rgba(232,238,238,.7); }
.lede { color: var(--steel); max-width: 650px; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 3.2rem; padding: .75rem 1.2rem; border: 1px solid var(--line); border-radius: .45rem; text-decoration: none; color: var(--white); font-weight: 750; transition: transform .2s, border-color .2s, background .2s, box-shadow .2s, filter .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); border-color: rgba(232,238,238,.4); }
.button-primary { background: var(--ember); border-color: var(--ember); }
.button-primary:hover { background: var(--ember-hot); box-shadow: 0 10px 28px rgba(255,91,53,.2); filter: brightness(1.04); }
.button-ghost { background: rgba(255,255,255,.035); }
.trust-line { display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; margin-top: 3.5rem; color: var(--steel); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.trust-line span::before { content: ""; display: inline-block; width: .38rem; height: .38rem; background: var(--ember); transform: rotate(45deg); margin-right: .65rem; vertical-align: .08rem; }

.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-tight { padding: 4rem 0; }
.section-head { display: grid; grid-template-columns: .65fr 1.35fr; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2.5rem, 6vw, 5.2rem); margin-bottom: 0; text-transform: uppercase; }
.section-head p { color: var(--steel); max-width: 620px; margin: 0; }
.rule { border: 0; height: 1px; margin: 0; background: linear-gradient(90deg, var(--line), rgba(255,91,53,.45), var(--line)); background-size: 200% 100%; animation: line-drift 8s linear infinite; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.022)); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow); transition: transform .22s ease, border-color .22s ease; }
.card:hover { transform: translateY(-2px); border-color: rgba(232,238,238,.24); }
.card-number { color: var(--ember); font-weight: 850; font-size: .78rem; letter-spacing: .15em; }
.card h3 { font-size: 1.55rem; margin: 2.8rem 0 .8rem; }
.card p { color: var(--steel); margin-bottom: 0; }
.game-panel { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1rem; background: #111719; border: 1px solid var(--line); border-radius: calc(var(--radius) + .35rem); overflow: hidden; }
.game-copy { padding: clamp(2rem, 7vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.game-copy h2 { font-size: clamp(3.5rem, 8vw, 7rem); margin-bottom: 1rem; }
.game-copy p { color: var(--steel); max-width: 500px; }
.pulse-visual { min-height: 470px; position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle, rgba(255,91,53,.17), transparent 52%); }
.pulse-ring { width: min(60vw, 300px); aspect-ratio: 1; border: 1px solid rgba(255,91,53,.8); border-radius: 50%; display: grid; place-items: center; animation: breathe 2.4s ease-in-out infinite; box-shadow: 0 0 60px rgba(255,91,53,.16), inset 0 0 60px rgba(255,91,53,.07); }
.pulse-core { width: 32%; aspect-ratio: 1; background: var(--ember); border-radius: 50%; box-shadow: 0 0 40px var(--ember); }
.pulse-line { position: absolute; width: 80%; height: 1px; background: linear-gradient(90deg, transparent, var(--ember), transparent); }
@keyframes breathe { 0%,100% { transform: scale(.94); opacity: .7; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes line-drift { to { background-position: -200% 0; } }
.quote { padding: clamp(4rem, 8vw, 7rem) 0; text-align: center; }
.quote blockquote { color: var(--white); font-size: clamp(2rem, 5vw, 4.6rem); font-weight: 750; letter-spacing: -.035em; line-height: 1.12; max-width: 950px; margin: 0 auto; }
.quote cite { color: var(--ember); display: block; font-style: normal; text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; margin-top: 1.5rem; }

.page-hero { padding: clamp(6rem, 13vw, 10rem) 0 5rem; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(3.6rem, 10vw, 8rem); max-width: 1050px; }
.page-hero .lede { max-width: 780px; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.split h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); text-transform: uppercase; }
.prose { color: var(--steel); max-width: 760px; }
.prose h2, .prose h3 { color: var(--white); margin-top: 2.8rem; }
.prose h2 { font-size: 2rem; }
.prose h3 { font-size: 1.25rem; }
.prose a { color: var(--white); text-decoration-color: var(--ember); text-underline-offset: .2em; }
.prose strong { color: var(--mist); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--ink); padding: 2rem; }
.stat strong { display: block; color: var(--white); font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; }
.stat span { color: var(--steel); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.faq { display: grid; gap: .7rem; }
.faq details { border: 1px solid var(--line); background: rgba(255,255,255,.025); border-radius: .8rem; padding: 0 1.25rem; }
.faq summary { color: var(--white); font-weight: 730; padding: 1.25rem 2rem 1.25rem 0; cursor: pointer; position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ember); position: absolute; right: 0; font-size: 1.4rem; top: 1rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--steel); margin: 0 0 1.3rem; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.support-card { min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; }
.support-card h2 { font-size: 2rem; }
.support-card a { color: var(--white); text-underline-offset: .25em; text-decoration-color: var(--ember); font-weight: 700; }

.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { color: var(--mist); font-size: .82rem; font-weight: 720; }
.field input, .field textarea, .field select { width: 100%; color: var(--white); background: #111617; border: 1px solid var(--line); border-radius: .55rem; padding: .9rem 1rem; outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ember); box-shadow: 0 0 0 3px rgba(255,91,53,.12); }
.field textarea { min-height: 170px; resize: vertical; }
.form-status { min-height: 1.5rem; color: var(--steel); font-size: .9rem; }
.contact-aside { position: sticky; top: 7rem; }
.contact-aside a { color: var(--white); text-decoration-color: var(--ember); text-underline-offset: .25em; }
.notice { padding: 1rem 1.2rem; border-left: 3px solid var(--ember); background: rgba(255,91,53,.07); color: var(--steel); }

.status-badge { display: inline-flex; align-items: center; gap: .55rem; color: var(--mist); border: 1px solid var(--line); border-radius: 99px; padding: .42rem .7rem; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: rgba(255,255,255,.035); }
.status-badge::before { content: ""; width: .45rem; height: .45rem; border-radius: 50%; background: var(--ember); box-shadow: 0 0 12px rgba(255,91,53,.5); }
.feature-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; }
.feature-list li { color: var(--steel); padding: .8rem 0 .8rem 1.4rem; border-bottom: 1px solid var(--line); position: relative; }
.feature-list li::before { content: ""; width: .42rem; height: .42rem; background: var(--ember); position: absolute; left: .1rem; top: 1.35rem; transform: rotate(45deg); }
.media-panel { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #050707; }
.media-panel img { width: 100%; height: auto; }
.screenshot-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(1rem,2vw,1.5rem); width: min(100%, 940px); margin-inline: auto; }
.screenshot-card { margin: 0; min-width: 0; }
.screenshot-frame { position: relative; overflow: hidden; aspect-ratio: 12 / 19; border: 1px solid rgba(83,255,162,.2); border-radius: 1.25rem; background: #050908; box-shadow: 0 24px 55px rgba(0,0,0,.32); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.screenshot-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.035); }
.screenshot-card:hover .screenshot-frame { transform: translateY(-3px); border-color: rgba(83,255,162,.42); box-shadow: 0 34px 80px rgba(0,0,0,.42), 0 0 30px rgba(83,255,162,.07); }
.screenshot-frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.screenshot-card figcaption { display: grid; gap: .25rem; padding: 1rem .35rem 0; }
.screenshot-card figcaption strong { color: var(--white); font-size: .95rem; }
.screenshot-card figcaption span { color: var(--steel); font-size: .82rem; line-height: 1.55; }
.store-slot { border: 1px dashed rgba(232,238,238,.25); color: var(--steel); display: inline-flex; align-items: center; gap: .8rem; padding: .75rem 1rem; border-radius: .5rem; margin-top: 1rem; font-size: .82rem; }
.devlog-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.devlog-entry { display: grid; grid-template-columns: 11rem 1fr auto; gap: 2rem; align-items: start; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.devlog-date { color: var(--steel); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.devlog-entry h2 { font-size: clamp(1.5rem,3vw,2.4rem); margin-bottom: .55rem; }
.devlog-entry p { color: var(--steel); margin: 0; max-width: 680px; }
.manifesto-list { counter-reset: manifesto; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.manifesto-item { counter-increment: manifesto; background: var(--ink); padding: clamp(1.5rem,4vw,3rem); min-height: 250px; }
.manifesto-item::before { content: counter(manifesto, decimal-leading-zero); color: var(--ember); font-size: .75rem; font-weight: 850; letter-spacing: .15em; }
.manifesto-item h2 { font-size: clamp(1.6rem,3vw,2.5rem); margin: 2.5rem 0 .8rem; }
.manifesto-item p { color: var(--steel); margin: 0; }
.demo-stage { min-height: 55vh; display: grid; place-items: center; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 3rem 1.5rem; background: radial-gradient(circle, rgba(255,91,53,.09), transparent 48%); }
.demo-stage h2 { font-size: clamp(2.4rem,6vw,5rem); margin-bottom: 1rem; }
.hero-actions-centered { justify-content: center; }
.eyebrow-spaced { margin-top: 1.5rem; }

.cta-band { margin: 2rem auto 7rem; padding: clamp(2rem, 7vw, 5rem); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(120deg, rgba(255,91,53,.16), rgba(255,255,255,.025) 58%); display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: .4rem; text-transform: uppercase; }
.cta-band p { color: var(--steel); margin: 0; }
.site-footer { border-top: 1px solid var(--line); padding: 3rem 0; color: var(--steel); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.footer-links { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; justify-content: flex-end; }
.footer-links a { text-decoration: none; font-size: .85rem; }
.footer-links a:hover { color: var(--white); }
.footer-statement { color: var(--steel); max-width: 460px; font-size: .88rem; margin: 1rem 0 0; }
.copyright { font-size: .78rem; margin: 1rem 0 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; background: rgba(8,11,12,.97); border-bottom: 1px solid var(--line); padding: .8rem 1rem 1.2rem; display: grid; transform: translateY(-120%); opacity: 0; pointer-events: none; transition: transform .25s, opacity .25s; }
  .site-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: .78rem 1rem; }
  .section-head, .split, .game-panel { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .game-copy { padding-bottom: 1rem; }
  .pulse-visual { min-height: 380px; }
  .support-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .devlog-entry { grid-template-columns: 1fr; gap: .6rem; }
  .manifesto-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --page: min(100% - 1.25rem, 1160px); }
  .brand-text { font-size: .86rem; }
  h1 { font-size: clamp(3.05rem, 16vw, 5rem); }
  .hero { min-height: auto; padding: 5rem 0 6rem; }
  .hero-actions .button { width: 100%; }
  .trust-line { display: grid; }
  .stats { grid-template-columns: 1fr; }
  .cta-band { align-items: stretch; flex-direction: column; }
  .cta-band .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .feature-list, .screenshot-grid { grid-template-columns: 1fr; }
  .screenshot-card { max-width: 320px; width: 100%; margin-inline: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
