* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
  line-height: 1.6;
  color: #e8e8ef;
  background: radial-gradient(1200px 600px at 20% -10%, #1b0b14 0%, rgba(11,11,15,0) 60%),
              radial-gradient(1200px 600px at 80% 110%, #0b1a2a 0%, rgba(11,11,15,0) 60%),
              #0b0b0f;
  background-image:
    radial-gradient(1200px 600px at 20% -10%, #1b0b14 0%, rgba(11,11,15,0) 60%),
    radial-gradient(1200px 600px at 80% 110%, #0b1a2a 0%, rgba(11,11,15,0) 60%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, auto, 40px 40px, 40px 40px;
  background-position: center, center, -20px -20px, -20px -20px;
}
:root{
  --accent: #f50057; /* brand pink */
  --muted: #a8a8b3;
  --card: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,.45);
}

/* ---------- Layout ---------- */
.container { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.site-header { display:flex; align-items:center; justify-content:space-between; padding: 20px 20px; }
.brand { display:flex; align-items:center; gap: 12px; color:#fff; text-decoration:none; }
.brand-icon{ width: 40px; height: 40px; border-radius: 10px; box-shadow: 0 0 0 1px var(--card-border), 0 6px 20px rgba(0,0,0,.4); }
.brand-name{ font-weight: 700; letter-spacing: .2px; }

/* ---------- Hero ---------- */
.hero{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items:center; padding: 40px 20px 20px; }
.hero-card{ background: var(--card); border:1px solid var(--card-border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); backdrop-filter: blur(6px); }
.hero h1{ margin:0 0 10px; font-size: clamp(28px, 5vw, 44px); line-height:1.1; }
.lead{ color:#d1d1da; margin: 0 0 18px; font-size: clamp(16px, 2.5vw, 18px); }
.hero-art img{ width:100%; height:auto; border-radius: 14px; box-shadow: var(--shadow); border:1px solid var(--card-border); }

/* ---------- Buttons ---------- */
.btn{ display:inline-block; padding: 12px 18px; border-radius: 10px; background: var(--accent); color:#fff; font-weight:600; text-decoration:none; box-shadow: 0 8px 24px rgba(245,0,87,.45); transition: transform .06s ease, box-shadow .2s ease; }
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 28px rgba(245,0,87,.55); }
.note{ color: var(--muted); font-size: 13px; margin-top: 8px; }

/* ---------- Socials ---------- */
.socials{ display:flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.socials a{ display:flex; align-items:center; gap:8px; padding: 8px 12px; border-radius: 999px; background: var(--card); border:1px solid var(--card-border); color:#fff; text-decoration:none; box-shadow: var(--shadow); }
.socials a:hover{ transform: translateY(-1px); }
.socials svg{ width: 18px; height: 18px; }

/* ---------- Features ---------- */
.features{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 30px 20px 30px; }
.feature{ background: var(--card); border:1px solid var(--card-border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.feature.reveal.in{ opacity: 1; transform: translateY(0); }
.feature .icon{ font-size: 24px; line-height: 1; margin-bottom: 6px; }
.feature h3{ margin: 4px 0 6px; font-size: 18px; }
.feature p{ margin: 0; color: #cfcfda; }

/* ---------- About ---------- */
.about{ padding: 0 20px 40px; }
.about h2{ font-size: 22px; margin: 0 0 10px; }
.about p{ color:#d6d6de; margin: 0 0 12px; }

/* ---------- Gallery ---------- */
.gallery-block{ padding: 0 20px 40px; }
.gallery-block h2{ font-size: 22px; margin: 0 0 12px; }
.gallery{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery a{ display:block; }
.gallery img{ width:100%; height:auto; border-radius: 12px; border:1px solid var(--card-border); box-shadow: var(--shadow); }

/* ---------- FAQ ---------- */
.faq{ padding: 0 20px 40px; }
.faq h2{ font-size: 22px; margin: 0 0 10px; }
.faq details{ background: var(--card); border:1px solid var(--card-border); border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; box-shadow: var(--shadow); }
.faq summary{ cursor: pointer; font-weight: 600; }
.faq p{ margin: 8px 0 0; color:#d6d6de; }

/* ---------- Secondary CTA ---------- */
.cta-bottom{ text-align:center; padding: 0 20px 60px; }
.cta-bottom h2{ margin: 0 0 10px; font-size: 24px; }

/* ---------- Lightbox ---------- */
.lightbox{ position: fixed; inset: 0; background: rgba(0,0,0,.7); display:none; align-items:center; justify-content:center; padding: 20px; z-index: 1000; }
.lightbox.open{ display:flex; }
.lightbox img{ max-width: 100%; max-height: 90vh; border-radius: 12px; box-shadow: var(--shadow); border:1px solid var(--card-border); }
.lightbox .close{ position: absolute; top: 16px; right: 16px; background: var(--card); border:1px solid var(--card-border); border-radius: 8px; padding: 8px 10px; cursor:pointer; color:#fff; }

/* ---------- Footer ---------- */
.site-footer{ display:flex; justify-content:space-between; align-items:center; gap: 16px; padding: 24px 20px 40px; color: var(--muted); font-size: 14px; }
.site-footer a{ color: var(--muted); text-decoration:none; }
.site-footer a:hover{ color:#fff; text-decoration:underline; }

/* ---------- Reveal (generic) ---------- */
.reveal{ opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; padding-top: 20px; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .features{ grid-template-columns: 1fr; }
}