:root {
  --bg: #07080d;
  --bg-2: #0c1018;
  --panel: rgba(16, 22, 34, 0.78);
  --line: rgba(120, 180, 255, 0.16);
  --text: #e8eef8;
  --muted: #8b97ad;
  --cyan: #4db3ff;
  --cobalt: #0a4ea8;
  --violet: #1a6fe0;
  --gold: #d4b56a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); font-family: "IBM Plex Sans", system-ui, sans-serif; min-height: 100%; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7,8,13,0.82);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 22px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img.orb {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  background: #041428;
  box-shadow: 0 0 18px rgba(10,78,168,0.5);
}
.brand .lockup { display: flex; align-items: center; gap: 6px; }
.brand img.wordmark {
  height: 28px; width: auto; max-width: 220px;
  object-fit: contain;
  background: transparent;
}
.brand em { color: var(--cyan); font-style: normal; font-size: 13px; font-weight: 500; font-family: "IBM Plex Sans", system-ui, sans-serif; }
.links { display: flex; gap: 18px; font-size: 13px; color: var(--muted); flex: 1; flex-wrap: wrap; }
.links a:hover, .links a.active { color: var(--text); }
.links a.active { box-shadow: inset 0 -2px 0 var(--cyan); padding-bottom: 3px; }
.actions { display: flex; gap: 8px; align-items: center; }
.ghost, .solid, button.ghost, button.solid, a.ghost, a.solid {
  border: 0; cursor: pointer; font: inherit; font-size: 13px; padding: 8px 14px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.solid { background: linear-gradient(135deg, var(--cyan), var(--violet)); color: #061018; font-weight: 600; }
.solid.gold { background: linear-gradient(135deg, #e8d39a, var(--gold)); color: #1a1408; }
.search {
  width: 150px; background: #101624; border: 1px solid var(--line); color: var(--text);
  border-radius: 999px; padding: 8px 14px; font: inherit; font-size: 13px;
}
.page-head { padding: 40px 0 16px; }
.page-head h1 { font-family: "Space Grotesk", sans-serif; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.04em; }
.page-head p { color: var(--muted); margin-top: 10px; max-width: 62ch; line-height: 1.55; }
.kicker { color: var(--cyan); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.hero { margin-top: 28px; display: grid; grid-template-columns: 1.65fr 0.95fr; gap: 18px; }
.hero-main { position: relative; min-height: 460px; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); }
.hero-main > img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.hero-main::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,8,13,0.08) 18%, rgba(7,8,13,0.94) 100%);
}
.hero-copy { position: absolute; inset: auto 28px 28px 28px; z-index: 2; }
.chip {
  display: inline-flex; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #061018; background: var(--cyan); padding: 4px 10px; border-radius: 999px; font-weight: 700;
}
.hero-copy h1 {
  font-family: "Space Grotesk", sans-serif; font-size: clamp(32px, 5vw, 54px);
  line-height: 0.96; letter-spacing: -0.05em; margin: 14px 0 12px; max-width: 16ch;
}
.hero-copy p { color: #c9d4e6; max-width: 52ch; margin-bottom: 16px; }
.meta { display: flex; gap: 16px; color: var(--muted); font-size: 12px; flex-wrap: wrap; }
.rail {
  background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
}
.rail h2 { font-family: "Space Grotesk", sans-serif; font-size: 16px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #ff4d6d; box-shadow: 0 0 12px #ff4d6d; }
.news-item { display: grid; grid-template-columns: 72px 1fr; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.news-item:last-of-type { border: 0; }
.news-item img { width: 72px; height: 56px; object-fit: cover; border-radius: 8px; }
.news-item small { color: var(--muted); display: block; font-size: 11px; margin-bottom: 4px; }
.news-item strong { font-size: 13px; font-weight: 600; }
.section { margin: 48px 0 18px; display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.section h3 { font-family: "Space Grotesk", sans-serif; font-size: 22px; letter-spacing: -0.03em; }
.section a { color: var(--cyan); font-size: 13px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 48px; }
.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.card img.cover { height: 160px; width: 100%; object-fit: cover; }
.card .body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3, .card h4 { font-size: 17px; font-family: "Space Grotesk", sans-serif; }
.card p { color: var(--muted); font-size: 13px; line-height: 1.5; }
.price { font-size: 12px; color: var(--gold); letter-spacing: 0.04em; }
.studios-banner {
  margin: 48px 0; border-radius: 24px; overflow: hidden; position: relative; min-height: 280px;
  border: 1px solid var(--line);
}
.studios-banner img { width: 100%; height: 280px; object-fit: cover; filter: brightness(0.5); }
.studios-banner .overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 40px; }
.studios-banner h3 { font-family: "Space Grotesk", sans-serif; font-size: 34px; letter-spacing: -0.04em; }
.studios-banner p { max-width: 48ch; color: #d5deee; margin: 10px 0 18px; }
.social-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.social {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; font-size: 13px; color: var(--text);
}
.social:hover { border-color: var(--cyan); color: var(--cyan); }
.form {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 22px;
  display: grid; gap: 12px;
}
.form label { font-size: 12px; color: var(--muted); display: grid; gap: 6px; }
.form input, .form textarea, .form select {
  background: #101624; border: 1px solid var(--line); color: var(--text);
  border-radius: 10px; padding: 10px 12px; font: inherit;
}
.form textarea { min-height: 120px; resize: vertical; }
.note { font-size: 12px; color: var(--muted); }
.article { max-width: 720px; padding-bottom: 64px; }
.article p { color: #c9d4e6; line-height: 1.7; margin: 14px 0; }
.cta-bar {
  margin: 28px 0 56px; padding: 22px; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(10,78,168,0.18), rgba(7,8,13,0.4));
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
footer {
  border-top: 1px solid var(--line); margin-top: 40px; padding: 28px 0 48px;
  color: var(--muted); font-size: 13px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
.foot-grid h4 { color: var(--text); font-family: "Space Grotesk", sans-serif; margin-bottom: 10px; }
.foot-grid a { display: block; margin: 6px 0; color: var(--muted); }
.foot-grid a:hover { color: var(--cyan); }
.legal { margin-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12px; }
.signal-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; margin-bottom: 48px; }
.signal-embed { min-height: 400px; }
@media (max-width: 960px) {
  .hero, .grid-4, .grid-3, .grid-2, .foot-grid, .signal-grid { grid-template-columns: 1fr; }
  .links, .search { display: none; }
  .hero-main, .hero-main > img { min-height: 360px; }
}
