:root {
  --bg: #0c0c0d;
  --panel: #141416;
  --panel-2: #1b1b1f;
  --text: #f4f4f5;
  --muted: #b5b8c3;
  --line: #292932;
  --accent: #ffffff;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #0a0a0b 0%, #111216 100%);
  color: var(--text);
  line-height: 1.55;
}
a { color: var(--text); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }
header.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(10,10,12,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 0;
}
.brand { font-weight: 800; letter-spacing: .02em; font-size: 1.1rem; }
.nav-links { display: flex; gap: 16px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.hero {
  padding: 62px 0 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 16px;
}
h1 {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.03em;
}
.subhead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 62ch;
}
.cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px;
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.12);
  background: #fff;
  color: #0b0b0c;
}
.btn.secondary {
  background: transparent;
  color: var(--text);
}
.panel {
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
}
.mock-shot {
  aspect-ratio: 10 / 18;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #3c4154 0%, #16181f 45%, #0d0e12 100%);
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-top, .mock-bottom, .mock-strip { border-radius: 16px; }
.mock-top { height: 44px; background: rgba(255,255,255,.06); }
.mock-strip { height: 26px; background: rgba(255,255,255,.08); width: 48%; }
.mock-canvas {
  flex: 1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 35%, rgba(255,193,7,.24), transparent 22%),
    radial-gradient(circle at 68% 45%, rgba(255,255,255,.16), transparent 18%),
    linear-gradient(145deg, #6a738b 0%, #242935 55%, #151821 100%);
  position: relative;
  overflow: hidden;
}
.mock-sticker, .mock-sticker2, .mock-sticker3 {
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
}
.mock-sticker { width: 120px; height: 56px; top: 18%; left: 15%; transform: rotate(-11deg); }
.mock-sticker2 { width: 84px; height: 84px; top: 52%; left: 54%; transform: rotate(12deg); border-radius: 50%; }
.mock-sticker3 { width: 100px; height: 34px; top: 68%; left: 16%; transform: rotate(-4deg); }
.mock-bottom { height: 82px; background: rgba(255,255,255,.06); }
section { padding: 26px 0; }
.section-title { font-size: 1.7rem; margin: 0 0 8px; }
.section-copy { color: var(--muted); max-width: 72ch; margin: 0 0 18px; }
.grid-3, .grid-2, .shots {
  display: grid;
  gap: 16px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.shots { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}
.card h3 { margin: 0 0 8px; font-size: 1.06rem; }
.card p { margin: 0; color: var(--muted); }
.shot {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.shot-art {
  aspect-ratio: 10 / 16;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.10), transparent 20%),
    linear-gradient(145deg, #505772 0%, #1a1d26 58%, #12141b 100%);
}
.shot p { margin: 0; padding: 12px 14px 16px; color: var(--muted); }
.callout {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.08);
}
footer {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 34px;
  padding: 22px 0 36px;
  color: var(--muted);
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.page-hero { padding: 52px 0 12px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.legal {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
.legal h2 { margin-top: 26px; font-size: 1.15rem; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 20px; }
.small { font-size: .95rem; color: var(--muted); }
@media (max-width: 900px) {
  .hero-grid, .grid-3, .shots, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
}
