:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: #bbbbbb;
  --line: rgba(255,255,255,0.16);
  --card: #111111;
  --border: rgba(255,255,255,0.12);
  --accent: #e6e6e6;
  --shadow: rgba(0,0,0,0.45);
}
[data-theme="light"] {
  --bg: #ffffff;
  --fg: #0b0b0b;
  --muted: #4a4a4a;
  --line: rgba(0,0,0,0.12);
  --card: #f7f7f7;
  --border: rgba(0,0,0,0.12);
  --accent: #111111;
  --shadow: rgba(0,0,0,0.1);
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #ffffff;
    --fg: #0b0b0b;
    --muted: #4a4a4a;
    --line: rgba(0,0,0,0.12);
    --card: #f7f7f7;
    --border: rgba(0,0,0,0.12);
    --accent: #111111;
    --shadow: rgba(0,0,0,0.1);
  }
  body:not([data-theme]) { background: var(--bg); color: var(--fg); }
}

/* Base */
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Mulish', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container { width: min(900px, 70%); margin: 0 auto; }
.cluster { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.stack { display: grid; gap: 16px; }

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: clip;
}
.hero .content { display:grid; gap: 20px; }
.hero .content { text-align: center; align-items:center; justify-items:center; }
.hero img { width: 80px; height: auto; filter: invert(1); }
@media (prefers-color-scheme: light) { .hero img { filter: none; } }
.hero h1 { font-size: clamp(32px, 6vw, 64px); line-height: 1.06; margin:0; letter-spacing:-0.02em; font-weight: 700; }
.hero p.tagline { font-size: clamp(16px, 2.8vw, 22px); color: var(--muted); margin: 0; }
.hero .actions { margin-top: 12px; }

/* Subtle line art background */
.line-art {
  pointer-events: none;
  position: absolute; inset: 0;
  opacity: 0.8;
}
.line-art svg { width: 100%; height: 100%; display: block; }
.line-art path, .line-art circle, .line-art rect { stroke: var(--line); }

/* Sections */
section { padding: 72px 0; border-top: 1px solid var(--border); }
section:first-of-type { border-top: none; }
.section-title { font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
h2 { font-size: clamp(26px, 3.6vw, 40px); line-height: 1.15; margin: 8px 0 20px; }
p.lead { color: var(--muted); font-size: 18px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 24px; }
.feature { border: 1px solid var(--border); border-radius: 14px; padding: 18px; background: linear-gradient(180deg, color-mix(in oklab, var(--card), transparent 5%), color-mix(in oklab, var(--card), transparent 35%)); box-shadow: 0 10px 20px var(--shadow); }
.feature h3 { margin: 0 0 6px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.shot { aspect-ratio: 9/16; border: 1px dashed var(--border); border-radius: 16px; overflow: hidden; background: color-mix(in oklab, var(--card), transparent 10%); display:grid; place-items:center; color: var(--muted); font-size: 14px; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* CTAs */
.cta-row { display:flex; flex-wrap:wrap; gap: 12px; align-items:center; }
.button {
  display:inline-flex; align-items:center; gap:10px; text-decoration:none; color: var(--fg);
  border: 1px solid var(--fg); padding: 12px 16px; border-radius: 4px; font-weight: 700;
}
.button:hover { transform: translateY(-1px); }

/* FAQ */
.faq { display: grid; gap: 12px; margin-top: 20px; }
details {
  border:1px solid var(--border); border-radius: 12px; padding: 14px 16px; background: color-mix(in oklab, var(--card), transparent 30%);
}
details summary { cursor: pointer; list-style: none; font-weight: 700; }
details[open] { background: color-mix(in oklab, var(--card), transparent 10%); }
details summary::-webkit-details-marker { display: none }
details .answer { color: var(--muted); margin-top: 10px; }

/* Footer */
footer { padding: 56px 0; border-top: 1px solid var(--border); color: var(--muted); }

/* Utilities */
.muted { color: var(--muted); }
.center { text-align: center; }