:root {
  --bg-0: #060608;
  --bg-1: #1b0632;
  --bg-2: #3c0069;
  --text: #f4f2ff;
  --muted: #c9c2de;
  --line: rgba(255,255,255,0.1);
  --card: rgba(255,255,255,0.04);
  --accent-1: #8f4acf;
  --accent-2: #7094f4;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(143,74,207,.22), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(112,148,244,.18), transparent 40%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-2) 120%);
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(6,6,8,0.55);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand img { width: 28px; height: 28px; }
.back-link {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
}
.back-link:hover { background: rgba(255,255,255,0.08); }
.hero {
  padding: 48px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
}
.eyebrow img { width: 22px; height: 22px; }
h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1;
  font-weight: 800;
}
.gradient {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  max-width: 62ch;
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 20px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 600;
}
.btn-primary {
  border: none;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}
.btn:hover { filter: brightness(1.06); }
.shot-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.shot-card img { width: 100%; max-height: 660px; object-fit: contain; }
.section {
  padding: 26px 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
}
.card h2, .card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.features li {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--muted);
}
.features li strong { color: var(--text); }
.footer {
  padding: 20px 0 40px;
  color: var(--muted);
  text-align: center;
}
.reveal { opacity: 0; transform: translateY(12px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }
@media (max-width: 900px) {
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding-top: 28px; }
  .shot-card img { max-height: 520px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { transition: none; transform: none; opacity: 1; }
}
