:root {
  color-scheme: light dark;
  --bg: #0f1220;
  --fg: #f5f5f7;
  --muted: #a8a8b3;
  --accent: #e0b34c;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --cta: #ffffff;
  --cta-text: #111111;
  --brand-purple: #6b5cff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}
main {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 20px 96px;
}
header.site {
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  background: rgba(15, 18, 32, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}
header.site nav {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: baseline;
}
header.site a {
  color: var(--fg);
  text-decoration: none;
  font-size: 15px;
}
header.site a.brand { font-weight: 700; font-size: 17px; }
header.site a:hover { color: var(--accent); }
h1 { font-size: clamp(28px, 5vw, 40px); margin: 0 0 8px; letter-spacing: -0.02em; }
h2 { font-size: 22px; margin: 40px 0 12px; letter-spacing: -0.01em; }
h3 { font-size: 18px; margin: 0 0 6px; }
p.effective { color: var(--muted); margin-top: 0; font-size: 17px; }
a { color: var(--accent); }
ul { padding-left: 22px; }
footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  padding: 24px;
  text-align: center;
}
.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 20px 0;
}
.btn {
  display: inline-block;
  background: var(--cta);
  color: var(--cta-text) !important;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 999px;
  margin-top: 8px;
}
.btn:hover { opacity: 0.92; }
.hero {
  text-align: center;
  padding: 24px 0 8px;
}
.hero p.lead {
  max-width: 560px;
  margin: 12px auto 20px;
  color: var(--muted);
  font-size: 17px;
}
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  margin: 36px 0;
  padding: 8px 0;
}
@media (min-width: 760px) {
  .feature {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
  }
  .feature.reverse .feature-copy { order: 2; }
  .feature.reverse .feature-media { order: 1; }
}
.feature-copy p { color: var(--muted); margin: 0; }
.feature-media {
  max-width: 320px;
  margin-inline: auto;
  width: 100%;
}
.feature-media img,
.shot img,
.gallery img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 473 / 1024;
  object-fit: contain;
  object-position: top center;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #1a1a2e;
}
@media (min-width: 760px) {
  .feature-media {
    max-width: 360px;
    margin-inline: 0;
  }
}
.shot {
  margin: 14px 0 4px;
  max-width: 240px;
}
.shot.wide { max-width: 280px; }
.shot figcaption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
  justify-content: start;
  gap: 16px;
  margin: 20px 0 8px;
}
.gallery figure {
  margin: 0;
  max-width: 200px;
}
.gallery figcaption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.35;
}
.kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
details {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
details:last-of-type { border-bottom: none; }
summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}
details[open] summary::after { content: "–"; }
details p, details ul { margin: 10px 0 4px; color: var(--fg); }
details ul { margin-bottom: 8px; }
.legal-main { max-width: 720px; }
