:root {
  --bg: #071018;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-border: rgba(255, 255, 255, 0.16);
  --text: #f7fbff;
  --muted: #aab8c4;
  --tech: #3ce7d0;
  --studio: #ffb650;
  --accent: #8b5cf6;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(60, 231, 208, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 182, 80, 0.16), transparent 30%),
    linear-gradient(135deg, #071018 0%, #0b1320 52%, #100b1f 100%);
  color: var(--text);
}
a { color: inherit; }
.page-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; }
.brand-logo { width: 210px; max-width: 58vw; height: auto; }
.nav-link { color: var(--muted); text-decoration: none; border: 1px solid var(--panel-border); padding: 10px 14px; border-radius: 999px; }
.hero { padding: 82px 0 70px; max-width: 900px; }
.eyebrow { color: var(--tech); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 800; }
h1 { font-size: clamp(2.8rem, 8vw, 6.4rem); line-height: 0.92; letter-spacing: -0.07em; margin: 18px 0; }
.hero-copy { max-width: 780px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.22rem); line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button { text-decoration: none; padding: 14px 18px; border-radius: 999px; font-weight: 800; }
.primary { background: linear-gradient(135deg, var(--tech), var(--studio)); color: #071018; }
.secondary { border: 1px solid var(--panel-border); color: var(--text); }
.brand-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-bottom: 34px; }
.brand-card, .coming-soon { border: 1px solid var(--panel-border); background: var(--panel); backdrop-filter: blur(18px); border-radius: 30px; padding: 30px; box-shadow: 0 28px 80px rgba(0,0,0,0.24); }
.card-logo { width: 230px; max-width: 100%; height: auto; margin-bottom: 24px; }
.pill { display: inline-flex; border-radius: 999px; padding: 8px 12px; font-size: 0.78rem; font-weight: 800; background: rgba(255,255,255,0.08); color: var(--muted); }
.brand-card h2, .coming-soon h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.04em; margin: 18px 0 8px; }
.brand-card p, .coming-soon p { color: var(--muted); line-height: 1.7; }
.brand-card a { display: inline-block; margin-top: 10px; color: var(--text); font-weight: 800; text-decoration: none; }
.tech-card { box-shadow: inset 0 0 0 1px rgba(60, 231, 208, 0.08); }
.studio-card { box-shadow: inset 0 0 0 1px rgba(255, 182, 80, 0.08); }
.coming-soon { margin-bottom: 52px; }
footer { text-align: center; color: var(--muted); padding: 24px; font-size: 0.9rem; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; gap: 16px; flex-direction: column; }
  .hero { padding-top: 48px; }
  .brand-grid { grid-template-columns: 1fr; }
}
