:root{
  --bg: #050711;
  --bg2:#070A12;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.18);
  --text:#EAF0FF;
  --muted: rgba(234,240,255,.72);
  --muted2: rgba(234,240,255,.55);
  --accent:#6EE7FF;
  --accent2:#A78BFA;
  --accent3:#22C55E;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 35px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 28px;
  --max: 1160px;
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
  --safe-left: env(safe-area-inset-left);
  --safe-right: env(safe-area-inset-right);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background: radial-gradient(1200px 700px at 10% 10%, rgba(110,231,255,.18), transparent 45%),
              radial-gradient(1000px 650px at 85% 25%, rgba(167,139,250,.17), transparent 50%),
              radial-gradient(800px 650px at 60% 95%, rgba(34,197,94,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  letter-spacing: .2px;
  overflow-x:hidden;
}

::selection{background: rgba(110,231,255,.25)}

#top{
  position:absolute;
  top:0;
  left:0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible{
  outline: 3px solid rgba(110,231,255,.32);
  outline-offset: 3px;
  border-radius: 16px;
}

.skip{
  position:absolute; left:-999px; top:12px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:var(--text);
  z-index:1000;
}
.skip:focus{left:12px}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
  padding-left: max(0px, var(--safe-left));
  padding-right:max(0px, var(--safe-right));
}

.muted{color:var(--muted)}
.toTop{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(234,240,255,.86);
  text-decoration:none;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.toTop:hover{transform: translateY(-1px); border-color: rgba(110,231,255,.20); background: rgba(255,255,255,.04)}
.toTop:active{transform: translateY(0px) scale(.99)}
.link{
  color: rgba(234,240,255,.9);
  text-decoration:none;
  border-bottom: 1px solid rgba(110,231,255,.28);
  padding-bottom: 1px;
}
.link:hover{border-bottom-color: rgba(110,231,255,.55)}

.bg{
  position:fixed; inset:0;
  pointer-events:none;
  z-index:-1;
}
.bg__grid{
  position:absolute; inset:-2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(700px 520px at 50% 15%, rgba(0,0,0,.92), transparent 72%);
  opacity:.7;
}
.bg__glow{
  position:absolute; inset:auto;
  width: 900px; height: 900px;
  filter: blur(70px);
  opacity:.55;
}
.bg__glow--a{left:-260px; top:-260px; background: radial-gradient(circle at 30% 30%, rgba(110,231,255,.55), transparent 60%)}
.bg__glow--b{right:-320px; top:160px; background: radial-gradient(circle at 30% 30%, rgba(167,139,250,.5), transparent 60%)}
.bg__noise{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity:.10;
  mix-blend-mode: overlay;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(5,7,17,.78), rgba(5,7,17,.42));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top: calc(14px + var(--safe-top));
  padding-bottom: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
  min-width: 0;
}
.brand__mark{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  color: rgba(110,231,255,.95);
  background:
    radial-gradient(circle at 25% 25%, rgba(110,231,255,.22), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(167,139,250,.18), transparent 55%),
    rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
}
.brand__logo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display:block;
  background: #ffffff;
}
.brand__mark svg{width:26px; height:26px}
.brand__text{display:flex; flex-direction:column; min-width:0}
.brand__name{
  font-weight: 720;
  letter-spacing: .2px;
  font-size: 14px;
  line-height: 1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand__tag{
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand--small .brand__mark{width:36px; height:36px; border-radius:13px}
.brand--small .brand__mark svg{width:22px; height:22px}

.nav{display:none; gap:18px; align-items:center}
.nav__link{
  color: var(--muted);
  text-decoration:none;
  font-size: 13px;
  padding:10px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav__link:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.header__cta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  text-decoration:none;
  color: var(--text);
  background: rgba(255,255,255,.06);
  box-shadow: 0 8px 25px rgba(0,0,0,.35);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  font-size: 13px;
  font-weight: 620;
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18)}
.btn:active{transform: translateY(0px) scale(.99)}
.btn--primary{
  background:
    radial-gradient(circle at 30% 20%, rgba(110,231,255,.35), transparent 55%),
    linear-gradient(135deg, rgba(110,231,255,.18), rgba(167,139,250,.18)),
    rgba(255,255,255,.05);
  border-color: rgba(110,231,255,.25);
  box-shadow: 0 18px 55px rgba(110,231,255,.12), 0 18px 55px rgba(167,139,250,.10);
}
.btn--primary:hover{border-color: rgba(110,231,255,.42)}
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.10);
  box-shadow:none;
}
.btn--glass{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.btn--lg{padding: 12px 18px; font-size: 14px}
.btn--sm{padding: 8px 12px; font-size: 13px}
.btn__icon svg{width:18px; height:18px}
.btn__arrow{font-weight:800}

.hero{
  padding-top: 52px;
  padding-bottom: 34px;
}
.hero__inner{
  display:grid;
  gap: 22px;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 13px;
  width: fit-content;
}
.pill__dot{
  width:8px; height:8px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(110,231,255,.16), 0 0 26px rgba(110,231,255,.35);
}
.h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.8px;
}
.h1__accent{
  background: linear-gradient(90deg, var(--accent), rgba(167,139,250,.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin: 0 0 18px;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
}
.hero__actions{display:flex; flex-wrap:wrap; gap:12px}

.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 18px;
}
.stat{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.stat--link{
  text-decoration:none;
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.stat--link:hover{
  transform: translateY(-1px);
  border-color: rgba(110,231,255,.22);
  background: rgba(255,255,255,.06);
}
.stat--link:active{transform: translateY(0px) scale(.99)}
.stat__num{
  font-weight: 800;
  letter-spacing: .8px;
  font-size: 14px;
}
.stat__label{
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted2);
}

.hero__visual{position:relative; min-height: 360px}
.hero__scan{
  position:relative;
  height: 100%;
  display:grid;
  place-items:center;
}
.card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 20% 10%, rgba(110,231,255,.14), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(167,139,250,.12), transparent 55%),
    rgba(255,255,255,.045);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card--hero{padding:18px; position:relative}
.card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.card__badge{
  font-size: 12px;
  font-weight: 700;
  color: rgba(234,240,255,.85);
  padding: 7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.card__signal{display:flex; gap:7px}
.dot{
  width:9px; height:9px; border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
}
.dot:nth-child(1){background: rgba(34,197,94,.25); border-color: rgba(34,197,94,.35)}
.dot:nth-child(2){background: rgba(110,231,255,.22); border-color: rgba(110,231,255,.35)}
.dot:nth-child(3){background: rgba(167,139,250,.20); border-color: rgba(167,139,250,.35)}
.card__body{padding-top:16px; display:grid; gap:16px}

.scan{
  position:relative;
  height: 210px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.scan--hero{
  width: min(520px, 100%);
  height: clamp(320px, 46vw, 380px);
  border-radius: 32px;
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 20% 10%, rgba(110,231,255,.14), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(167,139,250,.12), transparent 55%),
    rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.scan__line{
  position:absolute; inset:0;
  background: linear-gradient(90deg, transparent, rgba(110,231,255,.18), transparent);
  transform: translateX(-30%);
  animation: sweep 4.6s ease-in-out infinite;
  z-index: 1;
}
.scan__ring{
  position:absolute;
  width: 220px; height: 220px;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(110,231,255,.14), transparent 62%);
  box-shadow: inset 0 0 0 1px rgba(110,231,255,.12);
  z-index: 0;
}
.scan__ring--b{
  width: 150px; height:150px;
  opacity:.75;
  background: radial-gradient(circle at 50% 50%, rgba(167,139,250,.14), transparent 62%);
  box-shadow: inset 0 0 0 1px rgba(167,139,250,.12);
}

.principle{
  position:absolute;
  inset: 0;
  display:grid;
  place-items:center;
  padding: 18px;
  text-align:center;
  z-index: 2;
}
.principle__text{
  max-width: 34ch;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 30% 20%, rgba(110,231,255,.12), transparent 60%),
    rgba(5,7,17,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(234,240,255,.92);
  font-weight: 820;
  letter-spacing: .2px;
  line-height: 1.35;
  font-size: clamp(15px, 2.2vw, 20px);
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
  transition: opacity .34s ease, transform .34s ease;
}
.principle__text.is-fading{
  opacity: 0;
  transform: translateY(4px);
}

@keyframes sweep{
  0%{transform: translateX(-38%)}
  50%{transform: translateX(38%)}
  100%{transform: translateX(-38%)}
}

.bars{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:10px;
}
.bar{
  height: 62px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(110,231,255,.18), rgba(255,255,255,.03));
  overflow:hidden;
  position:relative;
}
.bar::after{
  content:"";
  position:absolute;
  inset:-40% -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), transparent 55%);
  transform: rotate(18deg);
  opacity:.7;
}
.bar:nth-child(2){background: linear-gradient(180deg, rgba(167,139,250,.18), rgba(255,255,255,.03)); height:78px}
.bar:nth-child(3){background: linear-gradient(180deg, rgba(34,197,94,.16), rgba(255,255,255,.03)); height:70px}
.bar:nth-child(4){height:84px}
.bar:nth-child(5){height:56px}

.mini{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.mini__label{color: var(--muted); font-size: 13px}
.mini__chip{
  font-size: 12px;
  padding: 7px 10px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(234,240,255,.88);
}

.card--floating{
  position:absolute;
  right: -10px;
  bottom: -12px;
  width: min(360px, 92%);
  padding: 14px 14px 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(110,231,255,.16), transparent 58%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  transform: translateZ(0);
}
.card__row{display:flex; gap:8px; flex-wrap:wrap; margin: 10px 0 8px}
.kbd{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  color: rgba(234,240,255,.84);
}

.section{
  padding: 56px 0;
  scroll-margin-top: calc(92px + var(--safe-top));
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 65%);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.section__head{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-end;
  flex-wrap:wrap;
  margin-bottom: 18px;
}
.h2{
  margin:0;
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: -0.6px;
  line-height: 1.08;
}
.h3{
  margin: 10px 0 6px;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}
.tile{
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.tile:hover{
  transform: translateY(-2px);
  border-color: rgba(110,231,255,.26);
  background: rgba(255,255,255,.05);
}
.tile__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  color: rgba(110,231,255,.9);
  background:
    radial-gradient(circle at 30% 30%, rgba(110,231,255,.18), transparent 60%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}
.tile__icon svg{width:22px; height:22px}
.tile__meta{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted2);
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.split{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items:center;
}
.chips{display:flex; gap:8px; flex-wrap:wrap; margin: 14px 0}
.chip{
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.86);
}
.callout{
  padding: 14px 14px;
  border-radius: 22px;
  border: 1px solid rgba(110,231,255,.18);
  background:
    radial-gradient(circle at 20% 20%, rgba(110,231,255,.12), transparent 60%),
    rgba(255,255,255,.03);
}
.callout__title{
  font-weight: 760;
  font-size: 13px;
  margin-bottom: 6px;
}

.rich{margin-top: 18px}
.rich .h3{margin-top: 18px}
.bullets{
  display:grid;
  gap:10px;
  margin: 12px 0;
}
.bullet{
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(234,240,255,.86);
  font-size: 13px;
  line-height: 1.45;
}
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin: 12px 0 6px;
}
.tag{
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.86);
}
.detail{
  margin-top: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.detail__summary{
  list-style:none;
  cursor:pointer;
  padding: 14px 14px;
  font-weight: 820;
  letter-spacing: -0.2px;
  color: rgba(234,240,255,.92);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.detail__summary::-webkit-details-marker{display:none}
.detail__summary::after{
  content:"+";
  color: rgba(110,231,255,.9);
  font-weight: 900;
}
.detail[open] .detail__summary::after{content:"–"}
.detail__body{
  padding: 0 14px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.detail__body p{margin: 10px 0 0; font-size: 14px; line-height: 1.65}

.panel{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 20% 0%, rgba(167,139,250,.14), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.panel__title{font-weight:760; letter-spacing:.2px}
.panel__pill{
  font-size: 12px;
  color: rgba(234,240,255,.88);
  padding: 7px 10px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.panel__body{padding: 16px; display:grid; gap:16px}
.gauge{
  height: 200px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display:grid; place-items:center;
  position:relative;
  overflow:hidden;
}
.gauge__ring{
  width: 230px; height: 230px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    conic-gradient(from 220deg, rgba(110,231,255,.75), rgba(167,139,250,.65), rgba(34,197,94,.55), rgba(110,231,255,.75));
  filter: blur(.2px);
  opacity:.35;
}
.gauge__value{
  position:absolute;
  text-align:center;
}
.gauge__big{font-size: 40px; font-weight: 860; letter-spacing:-0.8px}
.gauge__small{font-size: 12px; color: var(--muted2); margin-top: 4px}
.list{
  display:grid;
  gap:10px;
}
.list__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.list__k{color: var(--muted2); font-size: 13px}
.list__v{font-weight: 700; font-size: 13px}
.panel__cta{display:flex; gap:8px; align-items:center; justify-content:flex-end; flex-wrap:wrap}

.quote-grid{
  display:grid;
  gap: 12px;
  margin-top: 18px;
}
.quote{
  margin:0;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}
.quote blockquote{
  margin:0 0 10px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(234,240,255,.88);
}

.people{
  display:grid;
  gap: 12px;
  margin-top: 18px;
}
.person{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}
.person__avatar{
  width: 56px; height:56px;
  border-radius: 18px;
  display:grid; place-items:center;
  font-weight: 850;
  letter-spacing:.4px;
  color: rgba(5,7,17,.95);
  background: linear-gradient(135deg, rgba(110,231,255,.95), rgba(167,139,250,.9));
  box-shadow: 0 18px 45px rgba(110,231,255,.16), 0 18px 45px rgba(167,139,250,.12);
  flex: 0 0 auto;
}
.person__avatar--alt{
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(110,231,255,.9));
}
.person__name{font-weight: 820; letter-spacing:-0.2px}
.person__role{margin-top: 4px; font-size: 13px}
.person p{margin: 10px 0 0; font-size: 14px; line-height:1.6}

.cta{
  border-radius: 34px;
  border: 1px solid rgba(110,231,255,.16);
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(110,231,255,.16), transparent 55%),
    radial-gradient(900px 420px at 80% 10%, rgba(167,139,250,.14), transparent 55%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 18px;
  display:grid;
  gap: 14px;
}
.cta__actions{display:flex; flex-wrap:wrap; gap:12px; margin-top: 14px}
.cta__panel{display:grid; gap:10px}
.cta__card{
  padding: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.map{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.map iframe{
  width:100%;
  height: 220px;
  border:0;
  display:block;
}
.map__actions{
  display:flex;
  justify-content:flex-end;
  padding: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.10);
}
.cta__row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cta__row:last-child{border-bottom:none}
.cta__hint{font-size: 12px}

.footer{
  padding: 28px 0 calc(28px + var(--safe-bottom));
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.12);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.footer__links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  align-items:center;
}
.footer__link{
  color: var(--muted);
  text-decoration:none;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.footer__link:hover{color: var(--text); border-color: rgba(255,255,255,.14)}
.footer__link--secret{
  opacity: .28;
  border-color: rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
}
.footer__link--secret:hover{opacity: .9}

.cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.tile--link{
  text-decoration:none;
  color: inherit;
}
.tile--link:hover{
  transform: translateY(-2px);
  border-color: rgba(110,231,255,.26);
  background: rgba(255,255,255,.05);
}

@media (min-width: 900px){
  .cards{grid-template-columns: repeat(2, minmax(0, 1fr))}
}

.mobile{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(5,7,17,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.mobile__inner{
  padding: 14px 0 18px;
}
.mobile__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  padding: 6px 0 10px;
}
.mobile__title{font-weight: 820; letter-spacing:-0.2px}
.mobile__links{
  display:grid;
  gap:10px;
}
.mobile__link{
  display:flex;
  justify-content:space-between;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(234,240,255,.90);
  text-decoration:none;
  font-weight: 680;
}
.mobile__link::after{content:"→"; color: rgba(110,231,255,.85)}
.mobile__note{margin-top: 12px}

.modal[hidden]{display:none}
.modal{
  position:fixed;
  inset:0;
  z-index:100;
}
.modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal__panel{
  position:relative;
  width: min(720px, calc(100% - 26px));
  margin: calc(14px + var(--safe-top)) auto calc(14px + var(--safe-bottom));
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(110,231,255,.16), transparent 55%),
    radial-gradient(900px 420px at 80% 10%, rgba(167,139,250,.14), transparent 55%),
    rgba(5,7,17,.78);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.modal__eyebrow{font-size:12px; color: var(--muted2); font-weight: 720; letter-spacing:.35px}
.modal__title{font-size: 18px; font-weight: 860; letter-spacing: -0.2px; margin-top: 4px}

.form{padding: 16px}
.form__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.field{display:grid; gap: 8px}
.field__label{font-size: 12px; color: var(--muted2); font-weight: 740; letter-spacing: .28px}
.field__input{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.92);
  padding: 12px 12px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.field__input:focus{
  border-color: rgba(110,231,255,.30);
  box-shadow: 0 0 0 4px rgba(110,231,255,.12);
}
.field__textarea{resize: vertical; min-height: 120px}
.field--full{grid-column: 1 / -1}
.field--hp{display:none}

.form__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.form__note{margin-top: 12px; font-size: 12px}
.form__error{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,190,190,.92);
  border: 1px solid rgba(255,120,120,.22);
  background: rgba(255,120,120,.08);
  padding: 10px 12px;
  border-radius: 16px;
}
.form__success{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.form__successTitle{
  font-weight: 860;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

@media (min-width: 720px){
  .form__grid{grid-template-columns: 1fr 1fr}
}

@media (min-width: 900px){
  .nav{display:flex}
  .hero__inner{grid-template-columns: 1.05fr .95fr; gap: 22px}
  .hero{padding-top: 66px; padding-bottom: 46px}
  .grid{grid-template-columns: repeat(4, minmax(0,1fr))}
  .split{grid-template-columns: 1.1fr .9fr; gap: 22px}
  .quote-grid{grid-template-columns: repeat(3, minmax(0,1fr))}
  .people{grid-template-columns: repeat(2, minmax(0,1fr))}
  .cta{grid-template-columns: 1.2fr .8fr; padding: 22px}
}

@media (max-width: 420px){
  .stat__num{font-size: 13px}
  .stat__label{font-size: 11.5px}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .scan__line{animation:none}
  .principle__text{transition:none}
  .btn{transition:none}
  .tile{transition:none}
}
