:root {
  --bg: #08070f;
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --accent: #a873ff;
  --aqua: #7ce7ff;
  --text: #f0ecff;
  --muted: rgba(240,236,255,0.5);
  --radius: 16px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 60px 24px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,7,15,0.1) 0%, rgba(8,7,15,0.6) 60%, rgba(8,7,15,1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 600px;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.body-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.body-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 20px;
}
.body-section p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
  margin: 0 0 16px;
}
.glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.glass-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--accent); margin: 0 0 8px; }
.glass-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0; }
.glass-card a { color: #cba9ff; text-decoration: none; }
.model-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.model-cell {
  width: 160px;
  text-align: center;
}
.model-stage {
  width: 160px;
  height: 180px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}
model-viewer {
  width: 160px;
  height: 180px;
  --poster-color: transparent;
}
.video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  background: #120c1c;
}
.video-stage video,
.video-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.studio-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.9rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(247,244,255,0.4);
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.studio-ring a { color: rgba(168,115,255,0.7); text-decoration: none; }
.studio-ring a:hover { color: #a873ff; }
.ring-sep::before { content: '·'; color: rgba(255,255,255,0.2); }
.page-footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 0.82rem;
  color: rgba(240,236,255,0.3);
}
.page-footer a { color: rgba(240,236,255,0.45); text-decoration: none; }
.page-footer a:hover { color: var(--text); }
@media (max-width: 640px) {
  .hero { min-height: 55vh; }
  .glass-grid { grid-template-columns: 1fr; }
}
