:root {
  --bg: #08080c;
  --panel: #11111a;
  --panel-2: #171724;
  --text: #f6f2eb;
  --muted: #b9b0a5;
  --gold: #f3b44b;
  --red: #d94535;
  --aqua: #4fd7c8;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(217,69,53,.24), transparent 28rem),
    radial-gradient(circle at 80% 0%, rgba(79,215,200,.16), transparent 24rem),
    linear-gradient(135deg, #08080c 0%, #10101a 55%, #08080c 100%);
  color: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(8,8,12,.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand, .nav { display: flex; align-items: center; gap: .9rem; }
.brand { font-weight: 900; letter-spacing: -.04em; }
.mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: #09090d;
  font-size: .82rem;
}

.nav a { color: var(--muted); font-size: .92rem; }
.nav a:hover { color: var(--text); }
.nav-toggle { display: none; }

.section { padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem); }
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.8rem, 11vw, 8.8rem);
  line-height: .86;
  letter-spacing: -.09em;
}
h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.07em;
}
h3 { margin-bottom: .7rem; font-size: 1.15rem; }
p { color: var(--muted); line-height: 1.65; }
.lead { max-width: 42rem; font-size: clamp(1.1rem, 2vw, 1.35rem); }

.actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
}
.primary { background: var(--text); color: #09090d; }
.ghost { color: var(--text); }

.hero-card {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.logo-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.logo-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.split {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
}
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.045);
}

.feature {
  margin: 0 clamp(1rem, 4vw, 4rem);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(243,180,75,.12), rgba(79,215,200,.08));
  border: 1px solid var(--line);
}
.feature p { max-width: 46rem; font-size: 1.08rem; }

.ai-statement {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}
.statement-copy {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
}
.statement-copy p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}
.statement-copy p:first-child {
  color: var(--gold);
  font-weight: 800;
}
.ai-image-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(243,180,75,.22), transparent 18rem),
    radial-gradient(circle at 80% 0%, rgba(79,215,200,.16), transparent 16rem),
    rgba(255,255,255,.045);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ai-image-card img {
  display: block;
  width: 100%;
  border-radius: 1.35rem;
}

.release-section > div:first-child p:not(.eyebrow) { max-width: 18rem; }
.release-panel {
  display: grid;
  gap: .85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(243,180,75,.16), transparent 18rem),
    rgba(255,255,255,.035);
}
.release-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(8,8,12,.58);
}
.release-row:hover { border-color: rgba(243,180,75,.65); }
.release-row span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.release-row strong {
  color: var(--text);
  font-size: 1.08rem;
}
.release-row em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  font-size: .9rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
}
.link-stack { display: grid; gap: .75rem; }
.link-stack a {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  font-weight: 800;
}
.link-stack a:hover { border-color: rgba(243,180,75,.65); }

footer { padding: 2rem clamp(1rem, 4vw, 4rem); border-top: 1px solid var(--line); }
footer p { margin: 0; font-size: .9rem; }

@keyframes pulse {
  0%, 100% { transform: scale(.9); opacity: .65; }
  50% { transform: scale(1.18); opacity: 1; }
}

@media (max-width: 850px) {
  .hero, .split, .contact, .ai-statement { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .release-row { grid-template-columns: 1fr; gap: .35rem; }
  .hero { min-height: auto; padding-top: 5rem; }
  .hero-card { max-width: 26rem; }
  .nav {
    display: none;
    position: absolute;
    inset: 4.6rem 1rem auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--panel);
    border: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav-toggle {
    display: block;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: .75rem;
    padding: .55rem .75rem;
    font-size: 1rem;
  }
}
