:root {
  --bg: #050611;
  --panel: rgba(12, 20, 42, .76);
  --panel-2: rgba(18, 7, 42, .78);
  --ink: #f5fbff;
  --muted: #b8c8ef;
  --cyan: #23d8ff;
  --violet: #b45cff;
  --pink: #ff4ee8;
  --line: rgba(35, 216, 255, .26);
  --line-v: rgba(180, 92, 255, .3);
  --shadow: 0 30px 90px rgba(0, 0, 0, .54);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(35, 216, 255, .18), transparent 28rem),
    radial-gradient(circle at 86% 6%, rgba(255, 78, 232, .16), transparent 30rem),
    linear-gradient(180deg, #050611 0%, #07051a 45%, #030815 100%);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 17, .86);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(35, 216, 255, .32), 0 0 28px rgba(180, 92, 255, .24);
}
.brand-word { display: grid; line-height: 1; }
.brand-word strong { font-size: 1.04rem; }
.brand-word span { margin-top: 6px; color: var(--muted); font-size: .78rem; }
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 13px;
  color: #d7e5ff;
  font-size: .9rem;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  border-color: rgba(180, 92, 255, .46);
  background: rgba(180, 92, 255, .12);
}
.site-nav a:hover { transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
body.menu-open .nav-toggle span { opacity: 0; }
body.menu-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.button, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(35, 216, 255, .62);
  border-radius: 999px;
  padding: 12px 18px;
  color: #02030b;
  background: linear-gradient(135deg, #9ff4ff, var(--cyan), var(--violet));
  font-weight: 900;
  box-shadow: 0 18px 55px rgba(35, 216, 255, .22);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: none;
}
.button:hover, .nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 22px 64px rgba(180, 92, 255, .32);
}

.hero {
  width: min(1260px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: 22px;
  align-items: stretch;
}
.hero-copy,
.hero-media {
  min-height: 660px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-copy {
  position: relative;
  padding: clamp(28px, 4.2vw, 60px);
  background:
    linear-gradient(135deg, rgba(35, 216, 255, .12), transparent 36%),
    linear-gradient(225deg, rgba(255, 78, 232, .13), transparent 42%),
    var(--panel);
}
.hero-copy::after {
  content: "101";
  position: absolute;
  right: -20px;
  bottom: -44px;
  color: rgba(255, 255, 255, .055);
  font-size: clamp(7rem, 17vw, 15rem);
  font-weight: 950;
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(35, 216, 255, .35);
  border-radius: 999px;
  padding: 8px 12px;
  color: #dff9ff;
  background: rgba(35, 216, 255, .08);
  font-size: .82rem;
  font-weight: 900;
}
.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}
h1 {
  max-width: 760px;
  margin: 24px 0 18px;
  font-size: clamp(3rem, 7.3vw, 6.65rem);
  line-height: .9;
  letter-spacing: 0;
}
.neon-text {
  background: linear-gradient(90deg, #e8fbff, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}
.lead {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.signal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 42px;
}
.signal-card {
  min-height: 128px;
  border: 1px solid rgba(35, 216, 255, .22);
  border-bottom-color: rgba(255, 78, 232, .32);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .055);
}
.signal-card b { display: block; margin-bottom: 9px; color: #bff7ff; font-size: 1.12rem; }
.signal-card span { color: #c3d1f2; line-height: 1.5; }
.hero-media { position: relative; background: #050611; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-wide {
  position: relative;
  display: block;
  min-height: clamp(500px, 45vw, 640px);
  border: 1px solid rgba(35, 216, 255, .34);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 17, .86) 0%, rgba(5, 6, 17, .58) 34%, rgba(5, 6, 17, .06) 68%),
    linear-gradient(180deg, rgba(5, 6, 17, .08), rgba(5, 6, 17, .35)),
    var(--hero-bg) center / cover no-repeat;
  box-shadow: var(--shadow), 0 0 0 1px rgba(180, 92, 255, .12) inset;
}
.hero-wide .hero-copy {
  position: absolute;
  left: clamp(26px, 5vw, 74px);
  top: 50%;
  transform: translateY(-50%);
  width: min(660px, calc(100% - 80px));
  min-height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.hero-wide .hero-copy::after { display: none; }
.hero-wide h1 {
  display: grid;
  gap: 4px;
  max-width: 640px;
  margin: 22px 0 18px;
  font-size: clamp(3rem, 5.2vw, 5.85rem);
  line-height: .88;
  text-shadow: 0 20px 60px rgba(0, 0, 0, .62);
}
.hero-wide .lead {
  max-width: 560px;
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
  color: #d8e8ff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .72);
}
.hero-wide .hero-actions { margin-top: 24px; }
.hero-wide .eyebrow {
  background: rgba(5, 6, 17, .45);
  backdrop-filter: blur(10px);
}
.hero-wide .signal-grid {
  display: none;
}
.hero-wide .hero-badge {
  left: auto;
  right: clamp(18px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 32px);
  width: min(430px, calc(100% - 36px));
  grid-template-columns: auto 1fr;
  background: rgba(5, 6, 17, .56);
}
.hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(5, 6, 17, .74);
  backdrop-filter: blur(16px);
}
.hero-badge b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #02030b;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
}
.hero-badge span { color: #d3e5ff; line-height: 1.5; }

.data-ribbon {
  margin-top: 30px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-v);
  background: rgba(2, 3, 11, .92);
}
.data-track { display: flex; width: max-content; animation: drift 34s linear infinite; }
.data-track span {
  padding: 20px 28px;
  white-space: nowrap;
  color: #dff8ff;
  font-weight: 950;
  text-transform: uppercase;
}
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 84px auto;
}
.section-header {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(280px, .28fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.kicker {
  display: block;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}
.section-header p, .card p, .feature-copy p, .legal-page p, .page-intro p { color: var(--muted); line-height: 1.72; }

.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, .055);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.card.violet { border-color: var(--line-v); }
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 78, 232, .48);
  background: rgba(255, 255, 255, .08);
}
.glyph {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #02030b;
  background: linear-gradient(135deg, #c7fbff, var(--cyan), var(--violet));
  font-weight: 950;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(360px, .96fr) minmax(0, 1.04fr);
  gap: 26px;
  align-items: center;
}
.feature-split.reverse { grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); }
.feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050611;
  box-shadow: var(--shadow);
}
.feature-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-copy { padding: clamp(16px, 3vw, 36px); }
.checks { display: grid; gap: 12px; margin-top: 24px; }
.check {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(35, 216, 255, .2);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, .05);
}
.check b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #e5fbff;
  color: #02030b;
  font-size: 1.05rem;
}
.check span { color: #c7d7f7; line-height: 1.55; }

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .56fr);
  gap: 24px;
  align-items: center;
}
.page-intro {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(35, 216, 255, .12), transparent 40%),
    linear-gradient(225deg, rgba(255, 78, 232, .1), transparent 38%),
    rgba(255, 255, 255, .045);
}
.page-intro h1 { font-size: clamp(2.65rem, 6vw, 5.4rem); }
.page-art {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.page-art img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.content-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 58px auto 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.content-grid.two { grid-template-columns: repeat(2, 1fr); }
.card ul, .legal-page ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}
.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: 46px auto 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, .055);
}
.legal-page h2 { margin-top: 34px; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.notice {
  border-left: 4px solid var(--cyan);
  padding: 16px 18px;
  color: #e7fbff;
  background: rgba(35, 216, 255, .08);
  line-height: 1.65;
}

.faq { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .055);
}
.faq-button {
  width: 100%;
  border: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-button::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #02030b;
  background: var(--cyan);
}
.faq-item.open .faq-button::after { content: "-"; }
.faq-answer { display: none; padding: 0 20px 20px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 18px;
}
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: #e5f7ff; font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(35, 216, 255, .25);
  border-radius: 8px;
  padding: 14px 15px;
  background: rgba(0, 0, 0, .28);
  color: var(--ink);
  font: inherit;
  outline: none;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 78, 232, .12);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #040511;
}
.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}
.footer-logo { width: 230px; margin-bottom: 18px; }
.footer-shell p, .footer-shell li { color: #adbfeb; line-height: 1.65; }
.footer-shell ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-shell a { color: #dbedff; transition: color .2s ease; }
.footer-shell a:hover { color: var(--pink); }
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(35, 216, 255, .14);
  color: #8fa1d5;
  font-size: .9rem;
}
.not-found {
  width: min(900px, calc(100% - 32px));
  margin: 70px auto 90px;
  text-align: center;
}
.not-found .code {
  color: rgba(35, 216, 255, .16);
  font-size: clamp(8rem, 24vw, 18rem);
  font-weight: 950;
  line-height: .8;
}

@media (max-width: 1060px) {
  .nav-cta { display: none; }
  .hero, .page-hero, .feature-split, .feature-split.reverse, .contact-panel { grid-template-columns: 1fr; }
  .hero-copy, .hero-media { min-height: auto; }
  .hero-wide { min-height: 560px; }
  .hero-wide .hero-copy {
    left: 24px;
    width: min(560px, calc(100% - 48px));
  }
  .hero-media img { aspect-ratio: 16 / 10; }
  .matrix-grid, .content-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-shell { min-height: 66px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 6, 17, .98);
  }
  body.menu-open .site-nav { display: flex; }
  .site-nav a { border-radius: 8px; padding: 14px 16px; }
  .brand-word span { display: none; }
  .hero { margin-top: 16px; }
  .hero-copy { padding: 26px 20px; }
  .hero-wide {
    min-height: 620px;
    background-position: 56% center;
  }
  .hero-wide .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: calc(100% - 28px);
    margin: 18px 14px 0;
    padding: 0;
  }
  .hero-wide h1 { font-size: clamp(2.7rem, 13vw, 4.45rem); }
  .hero-wide .hero-badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 16px 14px 18px;
  }
  h1 { font-size: clamp(2.55rem, 14vw, 4.4rem); }
  .signal-grid, .section-header, .matrix-grid, .content-grid, .content-grid.two, .footer-shell { grid-template-columns: 1fr; }
  .signal-card { min-height: auto; }
  .section { margin: 60px auto; }
  .feature-copy { padding: 20px 0 0; }
  .feature-split.reverse .feature-copy { order: 2; }
  .feature-split.reverse .feature-media { order: 1; }
  .check { grid-template-columns: 52px 1fr; }
  .check b { width: 52px; height: 52px; }
  .hero-badge { grid-template-columns: 1fr; }
  .hero-badge b { width: 42px; height: 42px; }
}
