:root {
  --bg: #05080d;
  --bg-soft: #0a1018;
  --panel: #0d141e;
  --panel-2: #111b27;
  --text: #f4f7fb;
  --muted: #9aa8b9;
  --muted-2: #6f7d8d;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);
  --blue: #0fa7ff;
  --blue-2: #39c7ff;
  --silver: #d7dde5;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 24px 80px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 10%, rgba(15,167,255,.08), transparent 28%),
    radial-gradient(circle at 10% 22%, rgba(80,125,255,.045), transparent 24%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { background: rgba(15,167,255,.28); color: #fff; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  padding: 0!important;
  margin: -1px!important;
  overflow: hidden!important;
  clip: rect(0,0,0,0)!important;
  white-space: nowrap!important;
  border: 0!important;
}

.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 104px 0; }
.section.compact { padding: 76px 0; }
.section-rule { border-top: 1px solid var(--line); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(5,8,13,.78);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; min-width: 190px; }
.brand img { width: 185px; height: 46px; object-fit: cover; object-position: center 48%; border-radius: 3px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: #cbd4df;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(57,199,255,.34);
  border-radius: 999px;
  color: #eaf8ff;
  background: rgba(15,167,255,.08);
}
.nav .nav-cta:hover { border-color: rgba(57,199,255,.70); background: rgba(15,167,255,.14); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span:not(.sr-only) { width: 19px; height: 2px; background: currentColor; border-radius: 2px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow.silver { color: #bfc7d0; }

h1,h2,h3 { margin: 0; line-height: 1.06; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 7.5vw, 7rem); max-width: 900px; }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.35rem); max-width: 800px; }
h3 { font-size: 1.35rem; letter-spacing: -.02em; }
p { margin: 0; }
.lead {
  color: #c4cfdb;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.7;
  max-width: 780px;
}
.muted { color: var(--muted); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  font-size: .94rem;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #139fe8, #26c2ff); color: #02111b; box-shadow: 0 10px 30px rgba(15,167,255,.18); }
.btn-primary:hover { background: linear-gradient(135deg, #33b8ff, #54d1ff); }
.btn-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.025); color: #eef4fa; }
.btn-secondary:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.05); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -220px;
  top: 30px;
  border: 1px solid rgba(57,199,255,.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(57,199,255,.018),
    0 0 0 180px rgba(57,199,255,.013),
    0 0 110px rgba(15,167,255,.04);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 62%, transparent 92%);
}
.hero .shell { position: relative; z-index: 2; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 60px;
  padding: 120px 0 104px;
}
.hero-copy h1 span { color: transparent; background: linear-gradient(90deg, #fff, #9fdfff 60%, #24bfff); -webkit-background-clip: text; background-clip: text; }
.hero-copy .lead { margin-top: 28px; max-width: 675px; }
.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 510px;
}
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 14% 4%;
  background: radial-gradient(circle, rgba(15,167,255,.16), rgba(15,167,255,.03) 38%, transparent 68%);
  filter: blur(14px);
}
.hero-logo {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.55));
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 56px;
}
.hero-meta div { padding: 22px 20px 0 0; }
.hero-meta div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-meta strong { display: block; font-size: .78rem; color: #e7edf4; text-transform: uppercase; letter-spacing: .12em; }
.hero-meta span { display: block; margin-top: 7px; color: var(--muted); font-size: .9rem; }

.statement {
  padding: 88px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.01), transparent);
}
.statement-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.statement-copy { color: #c5cfda; font-size: 1.2rem; line-height: 1.82; }
.statement-copy p + p { margin-top: 20px; }

.section-head { display: grid; grid-template-columns: 1fr .72fr; gap: 60px; align-items: end; margin-bottom: 44px; }
.section-head p:last-child { color: var(--muted); max-width: 560px; justify-self: end; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.016));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.card:hover { border-color: rgba(57,199,255,.23); }
.card .index { color: var(--blue-2); font-size: .76rem; letter-spacing: .14em; font-weight: 800; }
.card h3 { margin-top: 44px; }
.card p { margin-top: 14px; color: var(--muted); font-size: .98rem; }
.card .mini { margin-top: 24px; color: #cbd5df; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }

.application-card { position: relative; overflow: hidden; min-height: 360px; }
.application-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  border: 1px solid rgba(57,199,255,.16);
  box-shadow: 0 0 0 36px rgba(57,199,255,.018), 0 0 0 72px rgba(57,199,255,.012);
}
.application-card .app-label { color: var(--blue-2); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.application-card h3 { margin-top: 82px; font-size: 1.6rem; }
.application-card p { max-width: 320px; }

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.band-row {
  min-height: 106px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.band strong { font-size: 1.05rem; }
.band p { margin-top: 4px; color: var(--muted); }

.page-hero { padding: 116px 0 76px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(57,199,255,.06); border-radius: 50%; right: -160px; top: -160px; box-shadow: 0 0 0 80px rgba(57,199,255,.012), 0 0 0 160px rgba(57,199,255,.008); }
.page-hero .shell { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(3.1rem, 6.5vw, 6rem); max-width: 940px; }
.page-hero .lead { margin-top: 24px; }

.process { display: grid; gap: 18px; }
.process-row { display: grid; grid-template-columns: 82px 1fr .8fr; gap: 28px; padding: 30px 0; border-top: 1px solid var(--line); align-items: start; }
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-num { font-size: .82rem; color: var(--blue-2); letter-spacing: .14em; font-weight: 800; }
.process-row h3 { font-size: 1.7rem; }
.process-row p { color: var(--muted); }

.callout {
  border-radius: 24px;
  border: 1px solid rgba(57,199,255,.18);
  background: linear-gradient(135deg, rgba(15,167,255,.09), rgba(255,255,255,.025));
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}
.callout h3 { font-size: 1.7rem; }
.callout p { margin-top: 8px; color: var(--muted); max-width: 760px; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.about-panel { border-left: 1px solid var(--line); padding-left: 42px; }
.about-panel p { color: var(--muted); font-size: 1.04rem; }
.about-panel p + p { margin-top: 18px; }
.founder-card { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.founder-card strong { font-size: 1.35rem; display: block; }
.founder-card span { color: var(--blue-2); font-size: .83rem; text-transform: uppercase; letter-spacing: .12em; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #c4ced9; font-size: .85rem; background: rgba(255,255,255,.018); }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-note { color: var(--muted); max-width: 420px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #d8e0e8; font-weight: 650; font-size: .9rem; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  color: #fff;
  padding: 13px 14px;
  outline: none;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: rgba(57,199,255,.55); box-shadow: 0 0 0 3px rgba(15,167,255,.08); }
.form-help { grid-column: 1 / -1; color: var(--muted-2); font-size: .82rem; }
.form-status { grid-column: 1 / -1; color: #ccecff; min-height: 1.4em; }
.contact-form .btn { justify-self: start; }

.site-footer { border-top: 1px solid var(--line); padding: 54px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.footer-brand img { width: 240px; height: 60px; object-fit: cover; object-position: center 48%; }
.footer-brand p { margin-top: 14px; color: var(--muted); max-width: 480px; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px 28px; flex-wrap: wrap; color: #c5cfda; font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .8rem; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(8,12,18,.97);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 12px; }
  .nav .nav-cta { border-radius: 10px; }
  .hero-layout { grid-template-columns: 1fr; gap: 20px; }
  .hero-logo-wrap { order: -1; min-height: 380px; margin-bottom: -30px; }
  .hero-logo { max-width: 640px; }
  .statement-grid, .section-head, .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .section-head p:last-child { justify-self: start; }
  .card-grid, .card-grid.four { grid-template-columns: repeat(2,1fr); }
  .process-row { grid-template-columns: 60px 1fr; }
  .process-row p { grid-column: 2; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 74px 0; }
  .section.compact { padding: 56px 0; }
  .brand img { width: 165px; height: 42px; }
  .hero { min-height: auto; }
  .hero-layout { padding: 54px 0 72px; }
  .hero-logo-wrap { min-height: 260px; margin-bottom: 0; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta div { padding: 16px 0; }
  .hero-meta div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .card-grid, .card-grid.two, .card-grid.four { grid-template-columns: 1fr; }
  .application-card { min-height: 300px; }
  .band-row { grid-template-columns: 1fr; padding: 26px 0; }
  .callout { grid-template-columns: 1fr; padding: 28px; }
  .about-panel { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 30px; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full, .form-help, .form-status { grid-column: 1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none!important; animation: none!important; }
}
