/* TITAN STACK — static build */
@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald.woff2") format("woff2");
  font-weight: 200 700;
  font-display: swap;
}

:root {
  --background: oklch(0.13 0.005 240);
  --foreground: oklch(0.96 0.005 80);
  --card: oklch(0.17 0.008 240);
  --muted: oklch(0.2 0.008 240);
  --muted-foreground: oklch(0.65 0.01 240);
  --border: oklch(0.28 0.01 240);
  --input: oklch(0.22 0.01 240);
  --primary: oklch(0.72 0.21 45);
  --primary-foreground: oklch(0.1 0 0);
  --accent: oklch(0.62 0.24 30);
  --molten: oklch(0.72 0.21 45);
  --warning: oklch(0.85 0.18 90);
  --electric: oklch(0.7 0.18 230);
  --silver: oklch(0.75 0.01 240);

  --font-display: "Oswald", "Impact", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-sans: "Inter", system-ui, sans-serif;

  --gradient-furnace: radial-gradient(circle at 50% 100%, oklch(0.72 0.21 45 / 0.6), transparent 60%);
  --shadow-furnace: 0 0 60px oklch(0.72 0.21 45 / 0.45), 0 0 120px oklch(0.62 0.24 30 / 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html, body { background: var(--background); color: var(--foreground); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.02em; text-transform: uppercase; }

.text-display { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; }
.text-mono { font-family: var(--font-mono); letter-spacing: 0.08em; }
.text-molten { color: var(--molten); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-electric { color: var(--electric); }
.text-warning { color: var(--warning); }
.text-accent { color: var(--accent); }

.bg-grid {
  background-image:
    linear-gradient(oklch(1 0 0 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, oklch(1 0 0 / 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.bg-hazard {
  background-image: repeating-linear-gradient(45deg, var(--warning) 0 14px, var(--background) 14px 28px);
}
.bg-furnace { background: var(--gradient-furnace); }
.bg-card { background: var(--card); }
.bg-primary { background: var(--primary); color: var(--primary-foreground); }
.bg-foreground { background: var(--foreground); color: var(--background); }

.clip-tag { clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%); }
.clip-notch { clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px); }

/* Container & layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* Navbar */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: color-mix(in oklab, var(--background) 85%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav::before { content:""; position:absolute; inset:0 0 auto 0; height:2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity:.6; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1024px) { .nav-inner { padding: 0 2rem; } }
.brand { display: flex; align-items: center; gap: .5rem; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; background: var(--primary); color: var(--primary-foreground); font-family: var(--font-display); font-weight: 900; font-size: 1.125rem; clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px); }
.brand-name { font-family: var(--font-display); font-weight: 900; letter-spacing: .15em; font-size: 1rem; line-height: 1; }
.brand-sub { font-family: var(--font-mono); font-size: 9px; color: var(--muted-foreground); margin-top: 4px; letter-spacing: .12em; }

.nav-links { display: none; gap: .25rem; align-items: center; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { font-family: var(--font-mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; padding: .5rem .75rem; color: color-mix(in oklab, var(--foreground) 80%, transparent); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after { content:""; position:absolute; left:.5rem; right:.5rem; bottom:.25rem; height:2px; background: var(--primary); box-shadow: 0 0 8px var(--primary); }

.nav-right { display: flex; align-items: center; gap: .5rem; }
.live-pill { display: none; align-items: center; gap: .375rem; padding: .25rem .625rem; border: 1px solid var(--border); background: var(--card); font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; }
.live-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--electric); animation: pulse 1.6s infinite; }
@media (min-width: 768px) { .live-pill { display: inline-flex; } }
.cart-btn { display: inline-flex; align-items: center; gap: .5rem; background: var(--primary); color: var(--primary-foreground); padding: .5rem .875rem; font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%); }
.burger-btn { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--border); background: var(--card); }
@media (min-width: 1024px) { .burger-btn { display: none; } }
.mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--background); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: flex; justify-content: space-between; padding: .875rem 1rem; border-bottom: 1px solid color-mix(in oklab, var(--border) 50%, transparent); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; }

.main-spacer { height: 64px; }

/* Hero */
.hero { position: relative; min-height: 92vh; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; opacity: .4; }
.hero-glow { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 80vw; height: 60vh; background: var(--gradient-furnace); }
.hazard-strip { position: absolute; inset: 0 0 auto 0; height: 4px; }
.hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 3rem 1rem 6rem; display: grid; gap: 2rem; align-items: center; min-height: 92vh; }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 6fr 6fr; padding: 3rem 2rem 6rem; } }
.tag-row { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.online-pill { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid color-mix(in oklab, var(--primary) 50%, transparent); background: color-mix(in oklab, var(--primary) 10%, transparent); padding: .375rem .75rem; }
.online-pill .dot { width: 6px; height: 6px; background: var(--primary); animation: pulse 1.6s infinite; }
.online-pill span { font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: var(--primary); }

.hero h1 { font-size: clamp(3rem, 8vw, 8rem); font-weight: 900; line-height: .85; margin-bottom: 1.5rem; }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after { content:""; position:absolute; left:0; right:0; bottom:-8px; height: 4px; background: var(--primary); box-shadow: 0 0 20px var(--primary); }
.hero p.lead { font-size: 1.125rem; color: var(--muted-foreground); max-width: 36rem; margin-bottom: 2rem; line-height: 1.6; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem; }
.btn-primary { display: inline-flex; align-items: center; gap: .75rem; background: var(--primary); color: var(--primary-foreground); padding: 1rem 1.5rem; font-family: var(--font-mono); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%); animation: pulse-ember 2.4s ease-in-out infinite; }
.btn-ghost { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid var(--border); padding: 1rem 1.5rem; font-family: var(--font-mono); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; transition: border-color .2s; }
.btn-ghost:hover { border-color: var(--primary); }

.readouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; max-width: 32rem; }
.readouts .cell { border: 1px solid var(--border); background: color-mix(in oklab, var(--card) 60%, transparent); padding: .75rem; backdrop-filter: blur(4px); }
.readouts .k { font-family: var(--font-mono); font-size: 9px; color: var(--muted-foreground); letter-spacing: .12em; }
.readouts .v { font-family: var(--font-display); font-weight: 900; font-size: 1.125rem; margin-top: .25rem; }
.readouts .ic { color: var(--primary); margin-bottom: .5rem; }

.hero-img-wrap { position: relative; }
.hero-img-glow { position: absolute; inset: -1rem; background: var(--gradient-furnace); filter: blur(32px); opacity: .8; }
.hero-img-frame { position: relative; border: 1px solid color-mix(in oklab, var(--primary) 30%, transparent); background: var(--card); overflow: hidden; clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px); }
.hero-img-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.hud { position: absolute; padding: .25rem .5rem; border: 1px solid color-mix(in oklab, var(--primary) 60%, transparent); background: color-mix(in oklab, var(--background) 70%, transparent); backdrop-filter: blur(4px); font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; }
.hud-top-l { top: 12px; left: 12px; }
.hud-top-r { top: 12px; right: 12px; width: 36px; height: 36px; display: grid; place-items: center; animation: spin 6s linear infinite; }
.hud-bot-l { bottom: 12px; left: 12px; padding: .5rem .75rem; }
.hud-bot-l .lab { color: var(--muted-foreground); font-size: 9px; }
.hud-bot-l .val { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--electric); }
.hud-bot-r { bottom: 12px; right: 12px; padding: .5rem .75rem; background: color-mix(in oklab, var(--primary) 90%, transparent); color: var(--primary-foreground); border-color: var(--primary); }
.hud-bot-r .val { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; }

.spark { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--warning); box-shadow: 0 0 8px var(--warning); animation: spark 2s ease-out infinite; bottom: 20%; }

/* Ticker */
.ticker-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--card); overflow: hidden; padding: .75rem 0; }
.ticker { display: flex; white-space: nowrap; animation: ticker 40s linear infinite; }
.ticker span { font-family: var(--font-mono); font-size: 12px; color: var(--muted-foreground); margin: 0 2rem; display: inline-flex; align-items: center; gap: 2rem; letter-spacing: .12em; }
.ticker .dot { color: var(--primary); }

/* Stats bar */
.stats-bar { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; gap: 1.5rem; padding: 2rem 0; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-cell { display: flex; align-items: center; gap: .75rem; }
.stat-cell .ic { color: var(--primary); width: 20px; height: 20px; flex-shrink: 0; }
.stat-cell .v { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; line-height: 1; }
.stat-cell .k { font-family: var(--font-mono); font-size: 10px; color: var(--muted-foreground); text-transform: uppercase; margin-top: .25rem; letter-spacing: .12em; }

/* Section header */
.sh { margin-bottom: 3rem; max-width: 48rem; }
.sh .kicker-row { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.sh .kicker-bar { height: 2px; width: 48px; background: var(--primary); }
.sh .kicker { font-family: var(--font-mono); font-size: 11px; color: var(--primary); font-weight: 700; letter-spacing: .14em; }
.sh h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 900; line-height: .95; margin-bottom: .75rem; }
.sh p { color: var(--muted-foreground); font-size: 1.0625rem; max-width: 42rem; line-height: 1.55; }

/* Burger card grid */
.grid-3 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-4 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: border-color .2s; position: relative; }
.card:hover { border-color: color-mix(in oklab, var(--primary) 60%, var(--border)); }
.spec-strip { display: flex; align-items: center; justify-content: space-between; padding: .375rem .75rem; background: var(--background); border-bottom: 1px solid var(--border); }
.spec-strip .s { font-family: var(--font-mono); font-size: 9px; color: var(--muted-foreground); letter-spacing: .12em; }
.spec-strip .o { font-family: var(--font-mono); font-size: 9px; color: var(--electric); }
.card-img { position: relative; aspect-ratio: 1; overflow: hidden; background: #000; }
.card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.card:hover .card-img img { transform: scale(1.1); }
.card-img::before { content:""; position: absolute; inset: 0; background: var(--gradient-furnace); opacity: .6; z-index: 1; pointer-events: none; }
.tag-pill { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--primary); color: var(--primary-foreground); padding: .25rem .5rem; font-family: var(--font-mono); font-size: 9px; font-weight: 700; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%); letter-spacing: .1em; }
.card-body { padding: 1rem; }
.card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; margin-bottom: .25rem; }
.card-head h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; line-height: 1; }
.card-head .price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; color: var(--molten); }
.card-desc { font-size: 12px; color: var(--muted-foreground); line-height: 1.5; margin-bottom: 1rem; min-height: 3em; }
.readout-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem; margin-bottom: 1rem; }
.readout { border: 1px solid var(--border); padding: .5rem; }
.readout .k { font-family: var(--font-mono); font-size: 8px; color: var(--muted-foreground); letter-spacing: .12em; }
.readout .v { font-family: var(--font-mono); font-size: 12px; font-weight: 700; margin-top: 2px; }
.add-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; background: var(--foreground); color: var(--background); padding: .625rem; font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; transition: background .2s, color .2s; }
.add-btn:hover { background: var(--primary); color: var(--primary-foreground); }

.spice { display: inline-flex; gap: 2px; }
.spice i { width: 10px; height: 10px; background: var(--muted); clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%); }
.spice i.on { background: var(--accent); }

/* Filter chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: .75rem 0; margin-bottom: 2.5rem; }
.chip { font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; padding: .375rem .75rem; border: 1px solid var(--border); color: var(--muted-foreground); cursor: pointer; letter-spacing: .12em; transition: all .2s; }
.chip:hover, .chip.active { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }

/* Combos */
.combo-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; display: grid; }
@media (min-width: 768px) { .combo-card { grid-template-columns: 1fr 1fr; } }
.combo-img { position: relative; aspect-ratio: 1; background: #000; overflow: hidden; }
.combo-img img { position: absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .7s; }
.combo-card:hover .combo-img img { transform: scale(1.08); }
.combo-img::before { content:""; position:absolute; inset:0; background: var(--gradient-furnace); opacity: .5; z-index: 1; }
.combo-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--warning); color: var(--background); padding: .25rem .5rem; font-family: var(--font-mono); font-size: 9px; font-weight: 900; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%); letter-spacing: .1em; }
.combo-body { padding: 1.5rem; display: flex; flex-direction: column; }
.combo-body h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; }
.combo-body .id { font-family: var(--font-mono); font-size: 10px; color: var(--muted-foreground); letter-spacing: .12em; }
.combo-list { margin-bottom: 1.5rem; flex: 1; }
.combo-list li { display: flex; align-items: center; gap: .5rem; font-size: 14px; color: color-mix(in oklab, var(--foreground) 90%, transparent); padding: 3px 0; }
.combo-list li::before { content: ""; width: 4px; height: 4px; background: var(--primary); }
.combo-foot { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid var(--border); padding-top: 1rem; }
.combo-foot .price { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--molten); line-height: 1; }
.combo-foot .lab { font-family: var(--font-mono); font-size: 9px; color: var(--muted-foreground); letter-spacing: .12em; }

/* Deals */
.deal { position: relative; background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: border-color .2s; }
.deal:hover { border-color: var(--primary); }
.deal .hazard { height: 4px; }
.deal-body { padding: 2rem; position: relative; }
.deal-body::after { content:""; position:absolute; right:-3rem; bottom:-3rem; width: 12rem; height: 12rem; border-radius: 50%; background: var(--gradient-furnace); opacity: .5; }
.deal-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; position: relative; }
.deal-tag { background: var(--primary); color: var(--primary-foreground); padding: .25rem .5rem; font-family: var(--font-mono); font-size: 9px; font-weight: 900; letter-spacing: .12em; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%); }
.deal-timer { display: inline-flex; align-items: center; gap: .375rem; border: 1px solid var(--border); background: var(--background); padding: .25rem .5rem; font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: .1em; }
.deal h3 { font-size: 2rem; font-weight: 900; margin-bottom: .5rem; position: relative; }
.deal p { font-size: 14px; color: var(--muted-foreground); margin-bottom: 1.5rem; max-width: 28rem; position: relative; }
.deal-foot { display: flex; justify-content: space-between; align-items: flex-end; position: relative; }
.deal-foot .price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--molten); line-height: 1; }
.deal-claim { display: inline-flex; align-items: center; gap: .5rem; background: var(--foreground); color: var(--background); padding: .75rem 1.25rem; font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; transition: all .2s; }
.deal-claim:hover { background: var(--primary); color: var(--primary-foreground); }

/* Map */
.map-wrap { position: relative; aspect-ratio: 16/9; width: 100%; border: 1px solid var(--border); background: var(--background); overflow: hidden; }
.map-wrap .grid-bg { position: absolute; inset: 0; }
.map-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-node { position: absolute; transform: translate(-50%, -50%); }
.map-node .ping { position: absolute; inset: -12px; border-radius: 50%; background: color-mix(in oklab, var(--primary) 30%, transparent); animation: ping 2s ease-out infinite; }
.map-node .core { position: relative; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 24px var(--primary); }
.map-label { position: absolute; left: 24px; top: 0; white-space: nowrap; border: 1px solid var(--border); background: color-mix(in oklab, var(--card) 95%, transparent); backdrop-filter: blur(6px); padding: .375rem .75rem; }
.map-label .n { font-family: var(--font-display); font-size: 12px; font-weight: 700; }
.map-label .m { font-family: var(--font-mono); font-size: 9px; color: var(--muted-foreground); letter-spacing: .12em; margin-top: 2px; }
.map-hud { position: absolute; border: 1px solid var(--border); background: color-mix(in oklab, var(--background) 80%, transparent); padding: .25rem .5rem; font-family: var(--font-mono); font-size: 9px; color: var(--muted-foreground); letter-spacing: .12em; }

/* Factory section */
.factory { position: relative; height: 70vh; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.factory img { position: absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.factory::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, var(--background), color-mix(in oklab, var(--background) 70%, transparent), transparent); }
.factory-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 1rem; height: 100%; display: flex; align-items: center; }
@media (min-width: 1024px) { .factory-inner { padding: 0 2rem; } }
.factory-inner > div { max-width: 42rem; }
.factory h2 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1; margin-bottom: 1.5rem; }
.factory p { font-size: 1.0625rem; color: color-mix(in oklab, var(--foreground) 90%, transparent); margin-bottom: 1.5rem; max-width: 36rem; }
.factory .kicker { font-family: var(--font-mono); font-size: 12px; color: var(--primary); margin-bottom: .75rem; letter-spacing: .14em; }
.factory a.link { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--primary); border-bottom: 1px solid var(--primary); padding-bottom: 2px; letter-spacing: .12em; }

/* Reviews */
.review { background: var(--card); border: 1px solid var(--border); padding: 1.25rem; position: relative; }
.review::before { content:""; position: absolute; top: 0; right: 0; width: 48px; height: 4px; background-image: repeating-linear-gradient(45deg, var(--warning) 0 8px, var(--background) 8px 16px); }
.review-head { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.review-avatar { width: 40px; height: 40px; display: grid; place-items: center; background: var(--primary); color: var(--primary-foreground); font-family: var(--font-display); font-weight: 900; }
.review-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; line-height: 1; }
.review-city { font-family: var(--font-mono); font-size: 9px; color: var(--muted-foreground); margin-top: 4px; letter-spacing: .12em; }
.review-stars { color: var(--primary); margin-bottom: .75rem; font-size: 14px; }
.review p { font-size: 14px; color: color-mix(in oklab, var(--foreground) 85%, transparent); line-height: 1.55; }

/* CTA section */
.cta { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--card); position: relative; overflow: hidden; }
.cta .grid-bg, .cta .glow-bg { position: absolute; inset: 0; }
.cta .glow-bg { background: var(--gradient-furnace); }
.cta .inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 6rem 1rem; text-align: center; }
.cta h2 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1; margin-bottom: 1.5rem; }
.cta p { color: var(--muted-foreground); max-width: 32rem; margin: 0 auto 2rem; }

/* Page header padding */
.page { padding: 5rem 0 4rem; max-width: 1280px; margin: 0 auto; }
.page-inner { padding: 0 1rem; }
@media (min-width: 1024px) { .page-inner { padding: 0 2rem; } }

/* Delivery */
.zone-card { background: var(--card); border: 1px solid var(--border); padding: 1.5rem; position: relative; overflow: hidden; }
.zone-bigcode { position: absolute; top: 0; right: 0; font-family: var(--font-display); font-weight: 900; font-size: 9rem; color: color-mix(in oklab, var(--foreground) 3%, transparent); line-height: 1; pointer-events: none; }
.zone-card h3 { font-size: 1.875rem; font-weight: 900; margin-bottom: 1rem; position: relative; }
.zone-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-bottom: 1rem; position: relative; }
.zone-stats .cell { border: 1px solid var(--border); padding: .5rem; }
.zone-stats .k { font-family: var(--font-mono); font-size: 8px; color: var(--muted-foreground); letter-spacing: .12em; }
.zone-stats .v { font-family: var(--font-display); font-size: 14px; font-weight: 900; margin-top: 2px; }
.protocol-card { border: 1px solid var(--border); background: var(--card); padding: 1.25rem; position: relative; }
.protocol-card .ic { color: var(--primary); margin-bottom: .75rem; font-size: 1.5rem; }
.protocol-card h4 { font-size: 1.125rem; font-weight: 900; margin-bottom: .5rem; }
.protocol-card p { font-size: 14px; color: var(--muted-foreground); line-height: 1.5; }

/* Rewards */
.dash { background: var(--card); border: 1px solid var(--border); padding: 2rem; margin-bottom: 3rem; position: relative; overflow: hidden; }
.dash .grid-bg { position: absolute; inset: 0; opacity: .3; }
.dash .glow { position: absolute; top: 0; right: 0; bottom: 0; width: 33%; background: var(--gradient-furnace); opacity: .4; }
.dash-inner { position: relative; display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 768px) { .dash-inner { grid-template-columns: 1fr 1fr 1fr; } }
.dash-name { font-family: var(--font-display); font-size: 1.875rem; font-weight: 900; }
.dash-id { font-family: var(--font-mono); font-size: 10px; color: var(--primary); margin-bottom: 4px; letter-spacing: .14em; }
.dash-tier { font-family: var(--font-mono); font-size: 12px; color: var(--warning); margin-top: 4px; letter-spacing: .12em; }
.dash-points { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--molten); line-height: 1; }
.progress { height: 8px; background: var(--background); border: 1px solid var(--border); overflow: hidden; margin-top: .75rem; }
.progress > div { height: 100%; width: 49%; background: var(--primary); box-shadow: 0 0 12px var(--primary); }
.tier-card { border: 1px solid var(--border); background: var(--card); padding: 1.25rem; }
.tier-card .num { font-family: var(--font-mono); font-size: 9px; color: var(--muted-foreground); letter-spacing: .12em; }
.tier-card h4 { font-size: 1.25rem; font-weight: 900; margin: 4px 0; }
.tier-card .req { font-family: var(--font-mono); font-size: 10px; color: var(--muted-foreground); margin-bottom: .75rem; }
.tier-card p { font-size: 14px; color: color-mix(in oklab, var(--foreground) 85%, transparent); }
.achv { display: flex; align-items: center; gap: .75rem; border: 1px solid var(--border); background: var(--card); padding: 1rem; opacity: .6; }
.achv.got { border-color: var(--primary); opacity: 1; }
.achv .ic-box { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--border); color: var(--muted-foreground); flex-shrink: 0; font-size: 1.25rem; }
.achv.got .ic-box { border-color: var(--primary); color: var(--primary); background: color-mix(in oklab, var(--primary) 10%, transparent); }
.achv .body { flex: 1; }
.achv .name { font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.achv .desc { font-size: 12px; color: var(--muted-foreground); }
.achv .flag { font-family: var(--font-mono); font-size: 9px; color: var(--primary); letter-spacing: .12em; }

/* Contact */
.contact-form { background: var(--card); border: 1px solid var(--border); padding: 2rem; }
.contact-form label { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .12em; }
.contact-form input, .contact-form select, .contact-form textarea { margin-top: 4px; width: 100%; background: var(--input); border: 1px solid var(--border); padding: .625rem .75rem; font-size: 14px; outline: none; transition: border-color .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); }
.contact-form textarea { resize: none; }
.contact-form .field { margin-bottom: 1rem; }
.contact-form button { width: 100%; background: var(--primary); color: var(--primary-foreground); padding: .875rem; font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%); }
.contact-card { background: var(--card); border: 1px solid var(--border); padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; transition: border-color .2s; }
.contact-card:hover { border-color: var(--primary); }
.contact-card .ic { width: 48px; height: 48px; display: grid; place-items: center; background: color-mix(in oklab, var(--primary) 10%, transparent); border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent); color: var(--primary); flex-shrink: 0; font-size: 1.125rem; }
.contact-card .t { font-family: var(--font-mono); font-size: 10px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .12em; }
.contact-card .v { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; line-height: 1.25; margin-top: 4px; }
.contact-card .s { font-size: 12px; color: var(--muted-foreground); margin-top: 4px; }

/* Footer */
.footer { margin-top: 8rem; border-top: 1px solid var(--border); background: var(--card); }
.footer .hazard { height: 8px; }
.footer-grid { display: grid; gap: 3rem; padding: 4rem 0; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer h4 { font-family: var(--font-display); font-size: 14px; color: var(--molten); margin-bottom: 1rem; letter-spacing: .12em; }
.footer ul li { padding: 4px 0; color: var(--muted-foreground); font-size: 14px; }
.footer .manifesto { border: 1px solid var(--border); padding: .75rem; background: color-mix(in oklab, var(--background) 50%, transparent); margin-top: 1rem; }
.footer .manifesto .lab { font-family: var(--font-mono); font-size: 10px; color: var(--muted-foreground); margin-bottom: 4px; letter-spacing: .14em; }
.footer .manifesto p { font-size: 12px; line-height: 1.5; }
.footer .socials { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.footer .socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--border); transition: all .2s; }
.footer .socials a:hover { border-color: var(--primary); color: var(--primary); }
.footer .store { display: flex; align-items: center; gap: .75rem; border: 1px solid var(--border); padding: .75rem; margin-bottom: .5rem; transition: border-color .2s; }
.footer .store:hover { border-color: var(--primary); }
.footer .store .s1 { font-size: 10px; color: var(--muted-foreground); }
.footer .store .s2 { font-family: var(--font-mono); font-size: 12px; font-weight: 700; }
.footer .newsletter { display: flex; }
.footer .newsletter input { flex: 1; background: var(--input); border: 1px solid var(--border); padding: .5rem .75rem; font-size: 14px; outline: none; }
.footer .newsletter button { background: var(--primary); color: var(--primary-foreground); padding: 0 1rem; font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.footer .copyright { border-top: 1px solid var(--border); }
.footer .copyright .row { padding: 1rem 0; display: flex; flex-direction: column; gap: .5rem; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .footer .copyright .row { flex-direction: row; } }
.footer .copyright p { font-family: var(--font-mono); font-size: 10px; color: var(--muted-foreground); letter-spacing: .12em; }

/* Animations */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes pulse-ember {
  0%, 100% { box-shadow: 0 0 20px var(--molten), 0 0 40px oklch(0.62 0.24 30 / 0.5); }
  50% { box-shadow: 0 0 40px var(--molten), 0 0 80px oklch(0.62 0.24 30 / 0.7); }
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes ping { 0% { transform: scale(.6); opacity: .8; } 80%, 100% { transform: scale(2); opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spark {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-200px) scale(.3); opacity: 0; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
