:root {
  --bg: #0b0e14;
  --surface: #12161f;
  --text: #c9d1d9;
  --dim: #8b949e;
  --nixie: #d4a24e;
  --scope: #57d98f;
  --line: rgba(212, 162, 78, 0.22);
  --line-dim: rgba(139, 148, 158, 0.16);
  --mono: ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "PT Sans", sans-serif;
  --maxw: 60rem;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.6;
}
.mono { font-family: var(--mono); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.hero { position: relative; overflow: hidden; padding: 6rem 0 4rem; border-bottom: 1px solid var(--line-dim); }
.hero-decor { position: absolute; inset: 0; width: 100%; height: 100%; color: rgba(139,148,158,.45); pointer-events: none; }
.hero-decor .amber { stroke: var(--nixie); stroke-opacity: .65; }
.hero .wrap { position: relative; }
.eyebrow { color: var(--nixie); font-size: 0.85rem; letter-spacing: 0.08em; margin: 0 0 1rem; }
h1 { margin: 0 0 0.8rem; font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.1; color: #e6edf3; }
.tagline { margin: 0 0 1.6rem; font-size: clamp(1.05rem, 2.6vw, 1.3rem); max-width: 44rem; }

section { padding: 3.5rem 0; border-bottom: 1px solid var(--line-dim); }
h2 { margin: 0 0 0.4rem; font-size: 1.4rem; color: #e6edf3; }
h2 .idx { color: var(--nixie); font-weight: 400; font-size: 0.8em; }
.note { color: var(--dim); margin: 0 0 1.8rem; }

svg.i { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
h2 { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.h-ico-box { flex: none; width: 3.2rem; height: 3.2rem; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line-dim); border-radius: 10px; color: var(--nixie); }
.h-ico-box svg { width: 1.9rem; height: 1.9rem; }
.ico-box { width: 3rem; height: 3rem; display: grid; place-items: center; margin: 0 0 0.85rem; background: rgba(212,162,78,.1); border: 1px solid var(--line); border-radius: 10px; color: var(--nixie); }
.ico-box svg { width: 1.7rem; height: 1.7rem; }
.card.svc .ico-box { width: calc(100% + 2.6rem); height: auto; margin: -1.2rem -1.3rem 1rem; border: 0; border-bottom: 1px solid var(--line); border-radius: 7px 7px 0 0; }
.card.svc .ico-box svg { width: 80%; height: auto; display: block; }

figure.shot-wrap { margin: 0; }
figure.shot-wrap figcaption { font-family: var(--mono); font-size: 0.68rem; color: var(--dim); margin-top: 0.4rem; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); gap: 1px; background: var(--line-dim); border: 1px solid var(--line-dim); border-radius: 8px; overflow: hidden; }
.stat { background: var(--surface); padding: 1.6rem 1rem; text-align: center; }
.digits { display: flex; align-items: center; justify-content: center; gap: 0.25rem; }
.digits img { height: clamp(2.8rem, 8vw, 4.8rem); width: auto; border: 1px solid var(--line-dim); border-radius: 0.45rem; background: #000; }
.digits img.rot { transform: rotate(90deg); margin-left: 16px; }
.digits span { font-family: var(--mono); font-size: clamp(1.1rem, 3.5vw, 1.9rem); color: var(--nixie); text-shadow: 0 0 8px rgba(212,162,78,.5); }
.stat.bad .digits img { border-color: rgba(224,108,117,.55); }
.stat small { display: block; color: var(--dim); font-size: 0.85rem; margin-top: 0.4rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1rem; }
.card { background: var(--surface); border: 1px solid var(--line-dim); border-radius: 8px; padding: 1.2rem 1.3rem; display: flex; flex-direction: column; }
.card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: #e6edf3; }
.card p { margin: 0; font-size: 0.92rem; color: var(--dim); }
.card .src { margin: auto 0 0; padding-top: 0.6rem; border-top: 1px dashed var(--line-dim); font-family: var(--mono); font-size: 0.7rem; color: rgba(212,162,78,.65); }
.card-photo {
  display: block; width: calc(100% + 2.6rem); margin: -1.2rem -1.3rem 1rem;
  aspect-ratio: 16 / 10; object-fit: cover; object-position: center;
  border-radius: 7px 7px 0 0; border-bottom: 1px solid var(--line-dim);
  background: #000;
}
.shot { display: block; width: 100%; border-radius: 8px; border: 1px solid var(--line-dim); background: #000; }

footer { padding: 2rem 0 2.5rem; text-align: center; font-size: 0.8rem; color: var(--dim); }
footer p { margin: 0.3rem 0; }
a { color: var(--scope); text-decoration: none; }
a:hover { text-decoration: underline; }
@media (max-width: 720px) { .hero { padding: 4rem 0 3rem; } section { padding: 2.5rem 0; } }
