:root {
  --bg: #0e0b1a;
  --bg-2: #130f22;
  --fg: #ece9f7;
  --muted: #9086ad;
  --border: #2a2340;
  --panel: #17132a;
  --input-bg: #130f24;
  --accent: #8b5cf6;
  --accent-2: #22d3c8;
  --gradient: linear-gradient(120deg, var(--accent), var(--accent-2));
  --on-accent: #0e0b1a;
  --danger: #ff6584;
  --good: #22d3c8;
  --max: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent-2); outline-offset: 2px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---- nav ---- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.nav .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; }
.nav .brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav .links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav .links a { color: var(--muted); }
.nav .links a:hover { color: var(--fg); }
.nav .cta {
  background: var(--gradient); color: var(--on-accent); font-weight: 700;
  padding: 9px 18px; border-radius: 8px; font-size: 14px;
}
.nav .cta:hover { text-decoration: none; opacity: 0.92; }

/* ---- ambient background ---- */
.ambient {
  background:
    radial-gradient(circle at 10% 10%, rgba(139,92,246,0.28), transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(34,211,200,0.20), transparent 50%);
}

/* ---- hero ---- */
.hero { padding: 70px 0 40px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px;
  background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.4); color: #cabaf9;
  font-size: 13px; padding: 6px 14px; border-radius: 20px; letter-spacing: 0.03em;
}
.hero .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); }
.hero h1 {
  font-size: clamp(38px, 6vw, 60px); line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 22px; max-width: 16ch; text-wrap: balance;
}
.hero h1 .accent { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 56ch; margin: 0 0 32px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; border: none;
}
.btn-primary { background: var(--gradient); color: var(--on-accent); }
.btn-secondary { background: var(--panel); color: var(--fg); border: 1px solid var(--border); }
.btn-primary:hover, .btn-secondary:hover { text-decoration: none; filter: brightness(1.08); }

.stat-row { display: flex; gap: 48px; flex-wrap: wrap; padding: 8px 0 60px; border-bottom: 1px solid var(--border); }
.stat .num { font-size: 32px; font-weight: 800; }
.stat .lbl { font-size: 14px; color: var(--muted); margin-top: 2px; }

.hero-shot { width: 100%; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 40px 100px rgba(0,0,0,0.5); margin: 0 0 -1px; display: block; }

/* ---- sections ---- */
section.block { padding: 72px 0; }
.eyebrow { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); font-weight: 700; margin: 0 0 10px; }
h2.section-title { font-size: clamp(28px, 4vw, 38px); letter-spacing: -0.01em; margin: 0 0 16px; text-wrap: balance; max-width: 20ch; }
p.section-sub { color: var(--muted); font-size: 17px; max-width: 60ch; margin: 0 0 44px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 22px;
}
.feature .icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--gradient);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  font-size: 17px; color: var(--on-accent); font-weight: 800;
}
.feature h3 { font-size: 16px; margin: 0 0 8px; }
.feature p { font-size: 14px; color: var(--muted); margin: 0; }

.shot-gallery { display: flex; flex-direction: column; gap: 28px; }
.shot-gallery img { width: 100%; border-radius: 14px; border: 1px solid var(--border); display: block; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 44px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 8px; background: var(--panel); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--accent-2); font-size: 14px;
}
.step h3 { font-size: 16px; margin: 0 0 6px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }

.cta-band {
  background: var(--panel); border: 1px solid var(--border); border-radius: 20px;
  padding: 48px; text-align: center; margin: 0 0 40px;
}
.cta-band h2 { margin: 0 0 12px; }
.cta-band p { color: var(--muted); margin: 0 0 26px; }

footer { border-top: 1px solid var(--border); padding: 36px 0 50px; }
footer .foot-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer .foot-links { display: flex; gap: 24px; font-size: 14px; color: var(--muted); }
footer .foot-links a { color: var(--muted); }
footer .copyright { font-size: 13px; color: var(--muted); }

/* ---- simple content pages (privacy) ---- */
.doc { padding: 70px 0 90px; max-width: 74ch; margin: 0 auto; }
.doc h1 { font-size: 34px; margin: 0 0 6px; letter-spacing: -0.01em; }
.doc .updated { color: var(--muted); font-size: 14px; margin: 0 0 40px; }
.doc h2 { font-size: 20px; margin: 40px 0 12px; }
.doc p, .doc li { color: #d7d3e8; font-size: 15.5px; line-height: 1.7; }
.doc ul { padding-left: 20px; }
.doc table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.doc th, .doc td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border); color: #d7d3e8; }
.doc th { color: var(--muted); font-weight: 600; }

/* ---- contact form ---- */
.contact-wrap { max-width: 560px; margin: 0 auto; padding: 70px 24px 100px; }
.contact-wrap h1 { font-size: 32px; margin: 0 0 10px; }
.contact-wrap p.lead { color: var(--muted); margin: 0 0 36px; }
.field-group { margin-bottom: 18px; }
.field-group label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.field-group input, .field-group textarea {
  width: 100%; background: var(--input-bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 13px; color: var(--fg); font-size: 15px; font-family: inherit;
}
.field-group textarea { min-height: 140px; resize: vertical; }
.field-group input:focus, .field-group textarea:focus { outline: none; border-color: var(--accent); }
#contactForm button { width: 100%; margin-top: 6px; }
#formStatus { margin-top: 16px; font-size: 14px; }
#formStatus.success { color: var(--good); }
#formStatus.error { color: var(--danger); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

@media (max-width: 640px) {
  .nav .links { display: none; }
}
