:root {
  --bg: #050505;
  --panel: #111114;
  --panel-2: #18181d;
  --text: #ffffff;
  --muted: #b7b7bd;
  --line: rgba(255,255,255,.12);
  --blue: #1f7cff;
  --yellow: #ffd43b;
  --red: #ff3b4f;
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 28px));
  height: 72px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,12,.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.02em; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #78d7ff);
  color: #fff;
  box-shadow: 0 10px 30px rgba(31,124,255,.35);
}

.nav { display: flex; align-items: center; gap: 26px; font-weight: 800; font-size: 14px; }
.nav a { color: var(--muted); }
.nav a:hover { color: #fff; }
.nav-cta { padding: 12px 18px; background: #fff; color: #000 !important; border-radius: 999px; }
.menu-btn { display: none; }

.hero {
  min-height: 100vh;
  padding: 170px 22px 80px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-bg {
  position: absolute;
  border-radius: 45% 55% 50% 50%;
  filter: blur(10px);
  opacity: .9;
}
.hero-bg-one {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(31,124,255,.95), transparent 67%);
  right: -140px;
  top: 95px;
}
.hero-bg-two {
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(255,59,79,.7), transparent 68%);
  left: -220px;
  bottom: -180px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 950;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 9vw, 128px);
  line-height: .86;
  letter-spacing: -.08em;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 680px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid var(--line);
}
.primary { background: #fff; color: #000; }
.ghost { background: rgba(255,255,255,.08); color: #fff; }

.split-feature, .news-section, .studio, .careers, .footer {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  padding: 90px 0;
}
.feature-card, .mini-card, .news-card, .studio, .careers {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}
.feature-main {
  min-height: 520px;
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.08)),
    radial-gradient(circle at 70% 20%, rgba(31,124,255,.9), transparent 34%),
    radial-gradient(circle at 20% 40%, rgba(255,212,59,.55), transparent 30%),
    #111;
}
.feature-main h2 { font-size: clamp(52px, 7vw, 96px); letter-spacing: -.06em; margin-bottom: 8px; }
.feature-main p:not(.eyebrow) { color: #e7e7e7; max-width: 520px; font-size: 18px; line-height: 1.6; }
.text-link { margin-top: 16px; font-weight: 950; color: var(--yellow); }
.feature-grid { display: grid; gap: 22px; }
.mini-card { padding: 34px; }
.mini-card span { color: var(--blue); font-weight: 950; }
.mini-card h3 { margin: 18px 0 10px; font-size: 28px; letter-spacing: -.04em; }
.mini-card p { color: var(--muted); line-height: 1.55; margin: 0; }

.news-section { padding: 70px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 26px; }
.section-head h2 { font-size: clamp(42px, 5vw, 72px); letter-spacing: -.06em; margin: 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { overflow: hidden; }
.news-image { height: 260px; }
.gradient-a { background: linear-gradient(135deg, #1f7cff, #00e5ff); }
.gradient-b { background: linear-gradient(135deg, #ff3b4f, #ff9f1c); }
.gradient-c { background: linear-gradient(135deg, #8247ff, #ff3bd4); }
.news-body { padding: 26px; }
.news-body p { color: var(--yellow); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 950; }
.news-body h3 { font-size: 24px; line-height: 1.1; letter-spacing: -.04em; }
.news-body a { color: var(--muted); font-weight: 900; }

.studio {
  margin-top: 60px;
  padding: 54px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.studio h2, .careers h2 { font-size: clamp(40px, 5vw, 76px); line-height: .95; letter-spacing: -.06em; margin-bottom: 0; }
.studio > p { color: var(--muted); font-size: 22px; line-height: 1.5; margin: 0; }

.careers {
  margin-top: 22px;
  margin-bottom: 90px;
  padding: 60px;
  text-align: center;
}
.careers p:not(.eyebrow) { color: var(--muted); max-width: 620px; margin: 18px auto 26px; font-size: 18px; line-height: 1.55; }

.footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}
.footer div { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 850px) {
  .menu-btn {
    display: inline-flex;
    border: 0;
    background: #fff;
    color: #000;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 950;
  }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10,10,12,.98);
    border: 1px solid var(--line);
    border-radius: 24px;
  }
  .nav.open { display: flex; }
  .split-feature, .studio { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .feature-main, .studio, .careers { padding: 32px; }
  .footer { flex-direction: column; }

.store-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.store-badge {
  height: 60px;
  width: auto;
  display: block;
}

.brand-logo {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain;
}

}
