:root {
  --bg: #070b16;
  --panel: #0e1424;
  --panel-2: #121a2e;
  --text: #f3f6fb;
  --muted: #aab6cc;
  --line: rgba(255,255,255,.13);
  --cyan: #57d7ff;
  --violet: #b184ff;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0,0,0,.36);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(87, 215, 255, .12), transparent 32rem),
    radial-gradient(circle at 15% 50%, rgba(177, 132, 255, .10), transparent 26rem),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

img { max-width: 100%; display: block; }

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  background:
    radial-gradient(circle at 35% 35%, #fff, var(--cyan) 35%, rgba(87,215,255,.25) 64%, transparent 65%),
    linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 32px rgba(87,215,255,.45);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover { color: var(--white); }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 46px;
  align-items: center;
  padding: 60px 0 90px;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 18px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: .91;
  letter-spacing: -.075em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 22px;
}

h3 {
  font-size: 22px;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}

.lede {
  color: var(--muted);
  font-size: 19px;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #07101c;
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.04);
}

.button.large {
  min-height: 56px;
  padding: 0 28px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  max-width: 680px;
}

.metric-strip div {
  padding: 20px;
  background: rgba(255,255,255,.05);
}

.metric-strip strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.metric-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.hero-art {
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-art img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.section {
  padding: 105px 0 40px;
}

.intro {
  max-width: 850px;
}

.intro p:last-child {
  color: var(--muted);
  font-size: 19px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 35px 0 90px;
}

.card {
  min-height: 280px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.card-number {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--cyan);
  font-weight: 800;
  font-size: 13px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 36px;
  align-items: center;
  padding: 90px 0;
}

.split-copy {
  padding: 38px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 22px rgba(87,215,255,.45);
}

.dashboard-card {
  padding: 12px;
  border-radius: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dashboard-card img {
  border-radius: 28px;
}

.statement {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement p {
  font-size: clamp(34px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
  max-width: 980px;
  margin: 0;
}

.contact {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  padding: 95px 0;
}

.contact h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.footer {
  min-height: 90px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
    padding-top: 40px;
  }

  .hero-art img { height: 420px; }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 26px, 1180px);
  }

  .nav-links { display: none; }

  .hero {
    padding-bottom: 60px;
  }

  .metric-strip,
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 220px;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .split-copy {
    padding: 26px;
  }

  .statement,
  .section,
  .split,
  .contact {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
