:root {
  color-scheme: dark;
  --bg: #030b1a;
  --bg-soft: #07152e;
  --panel: rgba(10, 28, 61, .72);
  --panel-solid: #0b1c3c;
  --text: #f7f9ff;
  --muted: #a9b8d5;
  --blue: #1888ff;
  --cyan: #28d8ff;
  --violet: #8f5cff;
  --gold: #ffb64d;
  --green: #36df9a;
  --line: rgba(165, 190, 255, .14);
  --line-strong: rgba(165, 205, 255, .24);
  --max: 1200px;
  --shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% -5%, rgba(22, 137, 255, .20), transparent 34rem),
    radial-gradient(circle at 88% 10%, rgba(143, 92, 255, .18), transparent 31rem),
    linear-gradient(180deg, #06132a 0%, var(--bg) 45%, #020711 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

body.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(135, 170, 230, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 170, 230, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 72%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { text-wrap: balance; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: .75rem 1rem;
  border-radius: .8rem;
  background: white;
  color: #061633;
  font-weight: 850;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 1rem auto 0;
  padding: .7rem .78rem .7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(3, 12, 29, .76);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 56px rgba(0, 0, 0, .20);
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled {
  border-color: var(--line-strong);
  background: rgba(3, 11, 27, .94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .35);
}

.brand { display: inline-flex; align-items: center; gap: .75rem; min-width: 0; }
.brand img, .footer-brand img { border-radius: .8rem; box-shadow: 0 10px 28px rgba(0, 105, 255, .16); }
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 1.13rem; letter-spacing: -.025em; }
.brand-copy small { margin-top: .23rem; color: var(--muted); font-size: .68rem; font-weight: 700; }

.main-navigation { display: flex; align-items: center; gap: 1.15rem; color: var(--muted); font-weight: 760; font-size: .9rem; }
.main-navigation > a { transition: color .2s ease, transform .2s ease; }
.main-navigation > a:hover { color: var(--text); transform: translateY(-1px); }
.nav-cta {
  color: white !important;
  padding: .68rem 1rem;
  border-radius: .9rem;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 12px 30px rgba(34, 91, 255, .25);
}
.language-switch { display: inline-flex; padding: .2rem; border: 1px solid var(--line); border-radius: .72rem; background: rgba(255,255,255,.025); }
.language-switch button { min-width: 36px; border: 0; border-radius: .52rem; padding: .38rem .48rem; color: var(--muted); background: transparent; cursor: pointer; font-size: .72rem; font-weight: 900; }
.language-switch button.is-active { color: white; background: rgba(255,255,255,.10); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--line);
  border-radius: .85rem;
  padding: .7rem .8rem;
  color: var(--text);
  background: rgba(255,255,255,.035);
  font-weight: 780;
}
.menu-toggle-icon { display: grid; gap: 3px; width: 17px; }
.menu-toggle-icon i { display: block; height: 2px; border-radius: 999px; background: currentColor; }

main { overflow: clip; }
.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 4.3rem;
  width: min(calc(100% - 2rem), var(--max));
  min-height: 760px;
  margin: 0 auto;
  padding: 6.3rem 0 4.5rem;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.35rem;
  padding: .5rem .75rem;
  border: 1px solid rgba(67, 224, 167, .25);
  border-radius: 999px;
  color: #bff8df;
  background: rgba(33, 193, 128, .08);
  font-size: .74rem;
  letter-spacing: .035em;
}
.status-pill span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(54,223,154,.10); }
.eyebrow {
  margin: 0 0 1rem;
  color: #72ddff;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .72rem;
  font-weight: 900;
}
h1 { margin: 0; max-width: 760px; font-size: clamp(3.3rem, 7.25vw, 6.55rem); line-height: .94; letter-spacing: -.069em; }
h1 span, .gradient-text { background: linear-gradient(100deg, #6be3ff 0%, #1a89ff 44%, #a66cff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-text { max-width: 650px; margin: 1.7rem 0 0; color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .82rem; margin-top: 1.9rem; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: .86rem 1.25rem; border: 1px solid transparent; border-radius: .95rem; font-weight: 850; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--blue), var(--violet)); box-shadow: 0 15px 36px rgba(37, 93, 255, .27); }
.button.primary:hover { box-shadow: 0 20px 46px rgba(37, 93, 255, .36); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.035); }
.proof-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; max-width: 650px; margin-top: 2.15rem; }
.proof-row span { display: grid; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: .95rem; background: rgba(255,255,255,.025); }
.proof-row b { font-size: .82rem; }
.proof-row small { margin-top: .1rem; color: var(--muted); font-size: .68rem; }

.product-stage { position: relative; min-height: 620px; display: grid; place-items: center; }
.stage-glow { position: absolute; border-radius: 50%; filter: blur(12px); opacity: .64; }
.stage-glow-one { width: 290px; height: 290px; top: 1%; right: 0; background: radial-gradient(circle at 45% 45%, rgba(53,224,255,.75), rgba(0,104,255,.45) 55%, transparent 74%); }
.stage-glow-two { width: 340px; height: 340px; bottom: 0; left: -4%; background: radial-gradient(circle at 55% 40%, rgba(188,95,255,.70), rgba(80,36,255,.4) 58%, transparent 75%); }
.device-shell { position: relative; z-index: 4; width: min(370px, 82vw); padding: 10px; border: 1px solid rgba(174, 207, 255, .3); border-radius: 2.6rem; background: linear-gradient(150deg, #20365f, #050a14 30%, #18294b 80%, #020611); box-shadow: 0 58px 115px rgba(0,0,0,.50), inset 0 1px 1px rgba(255,255,255,.22); transform: rotate(2.2deg); }
.device-speaker { position: absolute; z-index: 2; top: 17px; left: 50%; width: 92px; height: 21px; transform: translateX(-50%); border-radius: 999px; background: #030710; }
.device-screen { min-height: 590px; padding: 3.3rem 1rem 1rem; border-radius: 2.08rem; background: radial-gradient(circle at 84% 10%, rgba(113,73,255,.18), transparent 15rem), linear-gradient(180deg, #0d2249, #06132d 58%, #071126); overflow: hidden; }
.app-head { display: flex; justify-content: space-between; align-items: center; }
.app-head div:first-child { display: grid; }
.app-head small { color: var(--muted); font-size: .72rem; }
.app-head strong { font-size: 1.3rem; letter-spacing: -.03em; }
.avatar-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--violet)); font-size: .8rem; font-weight: 900; }
.app-summary { display: flex; align-items: center; justify-content: space-between; margin-top: 1.4rem; padding: 1rem; border: 1px solid var(--line); border-radius: 1.15rem; background: linear-gradient(135deg, rgba(24,136,255,.18), rgba(143,92,255,.12)); }
.app-summary div { display: grid; }
.app-summary small { color: #a9c7ee; font-size: .69rem; }
.app-summary strong { font-size: 1.05rem; }
.app-summary > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #b9f5ff; background: rgba(29,212,255,.11); font-weight: 900; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .72rem; margin-top: .75rem; }
.app-tile { position: relative; min-height: 108px; padding: .85rem; border: 1px solid var(--line); border-radius: 1.08rem; overflow: hidden; }
.app-tile::after { content: ""; position: absolute; width: 90px; height: 90px; right: -38px; bottom: -44px; border-radius: 50%; background: rgba(255,255,255,.07); }
.tile-blue { background: linear-gradient(145deg, rgba(26,142,255,.23), rgba(8,35,78,.55)); }
.tile-violet { background: linear-gradient(145deg, rgba(148,88,255,.23), rgba(39,20,78,.50)); }
.app-tile > span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: .72rem; background: rgba(255,255,255,.10); font-size: .72rem; }
.app-tile b { display: block; margin-top: .45rem; font-size: 1.35rem; line-height: 1; }
.app-tile small { color: #b7c6e2; font-size: .67rem; }
.app-list { margin-top: .75rem; }
.app-list article { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: .72rem; margin-top: .55rem; padding: .7rem; border: 1px solid var(--line); border-radius: .95rem; background: rgba(255,255,255,.035); }
.signal { width: 36px; height: 36px; border-radius: .82rem; }
.signal.cyan { background: linear-gradient(135deg, #28efff, #1688ff); }
.signal.violet { background: linear-gradient(135deg, #d06bff, #7258ff); }
.signal.gold { background: linear-gradient(135deg, #ffd56b, #ff890c); }
.signal.blue { background: linear-gradient(135deg, #57b8ff, #2f52ff); }
.app-list div { display: grid; }
.app-list b { font-size: .78rem; }
.app-list small { color: var(--muted); font-size: .61rem; }
.app-list em { padding: .24rem .42rem; border-radius: .52rem; color: #a8efff; background: rgba(27,212,255,.1); font-size: .58rem; font-style: normal; font-weight: 950; }
.app-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-top: .9rem; padding: .7rem .55rem .15rem; }
.app-nav i { width: 25px; height: 5px; justify-self: center; border-radius: 999px; background: rgba(194,209,240,.25); }
.app-nav i:first-child { background: var(--cyan); }
.floating-chip { position: absolute; z-index: 7; display: inline-flex; align-items: center; gap: .55rem; padding: .65rem .8rem; border: 1px solid rgba(184,213,255,.22); border-radius: .85rem; background: rgba(8,21,48,.88); backdrop-filter: blur(14px); box-shadow: 0 20px 42px rgba(0,0,0,.30); font-size: .72rem; }
.floating-chip span { color: var(--cyan); }
.chip-smart { top: 15%; left: -2%; transform: rotate(-4deg); }
.chip-live { right: -4%; top: 42%; transform: rotate(4deg); }
.chip-live span { color: var(--green); }
.chip-network { bottom: 10%; left: 2%; transform: rotate(-2deg); }
.chip-network span { color: #4fe2a7; }

.signal-strip { width: 100%; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); overflow: hidden; }
.signal-track { display: flex; align-items: center; justify-content: center; gap: 1.1rem; width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; padding: 1rem 0; color: #d7e2f7; font-size: .76rem; font-weight: 850; letter-spacing: .035em; white-space: nowrap; }
.signal-track i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); opacity: .8; }

.section { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; padding: 6.5rem 0; }
.section-heading { max-width: 780px; }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 4rem; max-width: none; }
.split-heading > p { margin: 0 0 .35rem; color: var(--muted); font-size: 1.03rem; }
.centered-heading { max-width: 860px; margin-inline: auto; text-align: center; }
h2 { margin: 0; font-size: clamp(2.25rem, 4.6vw, 4.15rem); line-height: 1.02; letter-spacing: -.055em; }

.intelligence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.intelligence-card { position: relative; min-height: 365px; padding: 1.55rem; border: 1px solid var(--line); border-radius: 1.55rem; background: linear-gradient(160deg, rgba(15,41,87,.76), rgba(5,17,40,.88)); overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,.045); }
.intelligence-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -95px; bottom: -105px; border-radius: 50%; opacity: .22; }
.smart-card::after { background: var(--cyan); }
.helper-card::after { background: var(--blue); }
.dna-card::after { background: var(--violet); }
.card-number { color: #7bdfff; font-size: .73rem; font-weight: 950; letter-spacing: .14em; }
.intelligence-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-top: 3rem; border: 1px solid var(--line-strong); border-radius: 1.15rem; background: rgba(255,255,255,.045); font-size: 1.25rem; }
.intelligence-card h3 { margin: 1.1rem 0 .42rem; font-size: 1.45rem; letter-spacing: -.025em; }
.intelligence-card p { max-width: 330px; margin: 0; color: var(--muted); font-size: .93rem; }
.metric-lines { display: grid; gap: .48rem; margin-top: 1.65rem; }
.metric-lines span { width: var(--value); height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--blue)); opacity: .75; }
.helper-people { display: flex; align-items: center; margin-top: 1.7rem; }
.helper-people i, .helper-people b { display: grid; place-items: center; width: 37px; height: 37px; margin-left: -7px; border: 3px solid #091a39; border-radius: 50%; background: linear-gradient(135deg, #24c8ff, #546cff); }
.helper-people i:first-child { margin-left: 0; }
.helper-people i:nth-child(2) { background: linear-gradient(135deg, #ffb45d, #ff6f66); }
.helper-people i:nth-child(3) { background: linear-gradient(135deg, #ba6bff, #6c53ff); }
.helper-people i:nth-child(4) { background: linear-gradient(135deg, #45e4ae, #1d9f86); }
.helper-people b { background: #12264c; font-size: .65rem; }
.dna-ring { display: grid; place-items: center; width: 86px; height: 86px; margin-top: 1.25rem; border: 8px solid rgba(150,99,255,.18); border-top-color: #ac75ff; border-right-color: #28d8ff; border-radius: 50%; transform: rotate(-22deg); }
.dna-ring span { transform: rotate(22deg); font-size: .65rem; font-weight: 950; letter-spacing: .08em; }

.modules-section { padding-top: 5.5rem; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "communication communication events wallet"
    "communication communication network network"
    "documents onboarding onboarding onboarding";
  grid-auto-rows: minmax(245px, auto);
  gap: 1rem;
  margin-top: 3rem;
}
.communication-card { grid-area: communication; }
.events-card { grid-area: events; }
.wallet-card { grid-area: wallet; }
.documents-card { grid-area: documents; }
.network-card { grid-area: network; }
.onboarding-card { grid-area: onboarding; }
.bento-card { position: relative; padding: 1.45rem; border: 1px solid var(--line); border-radius: 1.5rem; background: linear-gradient(160deg, rgba(12,34,75,.72), rgba(5,16,37,.88)); overflow: hidden; }
.bento-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(130deg, rgba(255,255,255,.035), transparent 38%); }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-top { position: relative; display: flex; align-items: center; justify-content: space-between; }
.bento-top small { color: #9edff7; font-size: .63rem; font-weight: 950; letter-spacing: .11em; }
.bento-icon { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: .9rem; background: rgba(255,255,255,.04); color: #7bdfff; font-weight: 900; }
.bento-card h3 { position: relative; margin: 2rem 0 .45rem; font-size: 1.42rem; letter-spacing: -.03em; }
.bento-card p { position: relative; margin: 0; color: var(--muted); font-size: .88rem; }
.chat-preview { position: absolute; left: 1.45rem; right: 1.45rem; bottom: 1.45rem; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: .7rem; padding: .8rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(255,255,255,.045); }
.chat-preview > span { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #31dbff, #6962ff); }
.chat-preview div { display: grid; }
.chat-preview b { font-size: .78rem; }
.chat-preview small, .chat-preview em { color: var(--muted); font-size: .65rem; font-style: normal; }
.score-preview { position: absolute; left: 1.35rem; right: 1.35rem; bottom: 1.35rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .6rem; padding: .8rem; border: 1px solid var(--line); border-radius: .95rem; background: rgba(255,255,255,.04); text-align: center; font-size: .72rem; }
.score-preview b { color: #7fe7ff; font-size: 1.05rem; }
.wallet-preview { position: absolute; left: 1.35rem; right: 1.35rem; bottom: 1.35rem; display: grid; grid-template-columns: 43px 1fr; grid-template-rows: auto auto; gap: .02rem .75rem; align-items: center; padding: .8rem; border: 1px solid var(--line); border-radius: .95rem; background: rgba(255,255,255,.04); }
.wallet-preview i { grid-row: 1 / span 2; width: 43px; height: 43px; border-radius: .85rem; background: linear-gradient(135deg, #ffd467, #ff7d16); }
.wallet-preview b { font-size: 1rem; }
.wallet-preview small { color: var(--muted); font-size: .63rem; }
.document-lines { position: absolute; left: 1.35rem; right: 1.35rem; bottom: 1.45rem; display: grid; gap: .5rem; }
.document-lines i { height: 7px; border-radius: 999px; background: linear-gradient(90deg, rgba(74,212,255,.65), rgba(74,212,255,.08)); }
.document-lines i:nth-child(2) { width: 72%; }
.document-lines i:nth-child(3) { width: 48%; }
.events-card p, .wallet-card p, .documents-card p { padding-bottom: 5.6rem; }
.network-card { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 1.25rem; }
.network-card h3 { margin-top: 1.45rem; }
.network-copy { position: relative; z-index: 2; }
.network-map { position: relative; min-height: 180px; }
.network-map::before, .network-map::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 27%;
  width: 46%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(73,217,255,.16), rgba(73,217,255,.8), rgba(79,226,167,.25));
  transform-origin: left center;
}
.network-map::before { top: 45%; transform: rotate(-25deg); }
.network-map::after { top: 54%; transform: rotate(25deg); }
.network-map span { position: absolute; z-index: 1; display: grid; place-items: center; gap: .42rem; color: #dce9ff; font-size: .63rem; font-weight: 900; text-align: center; white-space: nowrap; }
.network-map span i { display: block; border: 6px solid #0a1a38; border-radius: 50%; box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.network-hub { left: 7%; top: 50%; transform: translateY(-50%); }
.network-hub i { width: 68px; height: 68px; background: linear-gradient(135deg, #49d9ff, #3d68ff); }
.network-partner { right: 3%; top: 4%; }
.network-partner i { width: 48px; height: 48px; background: linear-gradient(135deg, #c36bff, #6f56ff); }
.network-sgm { right: 1%; bottom: 2%; }
.network-sgm i { width: 52px; height: 52px; background: linear-gradient(135deg, #4fe2a7, #199883); }
.onboarding-card { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 1.4rem; }
.setup-preview { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: .35rem; }
.setup-preview span { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); background: rgba(255,255,255,.04); font-size: .7rem; font-weight: 900; }
.setup-preview .done { color: #07172b; background: var(--green); }
.setup-preview i { height: 2px; border-radius: 999px; background: rgba(142,178,228,.24); }

.flow-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4.5rem; align-items: center; }
.flow-copy > p:last-child { max-width: 510px; color: var(--muted); }
.flow-map { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: .8rem; }
.flow-map article { display: grid; min-height: 170px; padding: 1rem; border: 1px solid var(--line); border-radius: 1.2rem; background: rgba(255,255,255,.03); }
.flow-map article span { color: #76ddff; font-size: .67rem; font-weight: 950; letter-spacing: .12em; }
.flow-map article b { align-self: end; font-size: .96rem; }
.flow-map article small { color: var(--muted); font-size: .7rem; }
.flow-map > i { width: 22px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--violet)); }

.security-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; padding: 2.2rem; border: 1px solid var(--line-strong); border-radius: 1.9rem; background: linear-gradient(125deg, rgba(15,67,120,.20), rgba(82,35,140,.15)), rgba(7,19,43,.82); box-shadow: var(--shadow); }
.security-copy p:last-child { max-width: 470px; color: var(--muted); }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.security-grid article { display: grid; grid-template-columns: 37px 1fr; gap: .75rem; align-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(255,255,255,.035); }
.security-grid article > span { display: grid; place-items: center; width: 37px; height: 37px; border-radius: .8rem; color: #72ddff; background: rgba(39,199,255,.08); font-size: .65rem; font-weight: 950; }
.security-grid div { display: grid; }
.security-grid b { font-size: .82rem; }
.security-grid small { color: var(--muted); font-size: .68rem; }

.audience-section { padding-top: 4.5rem; }
.audience-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; max-width: 970px; margin: 2.3rem auto 0; }
.audience-cloud span { padding: .72rem 1rem; border: 1px solid var(--line); border-radius: 999px; color: #d9e5fa; background: rgba(255,255,255,.028); font-size: .82rem; font-weight: 780; }
.audience-cloud span:nth-child(2n) { background: rgba(31,131,255,.06); }
.audience-cloud span:nth-child(3n) { background: rgba(139,83,255,.07); }

.final-cta { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; margin-bottom: 5rem; padding: 2rem; border: 1px solid var(--line-strong); border-radius: 1.8rem; background: radial-gradient(circle at 10% 10%, rgba(26,142,255,.17), transparent 22rem), linear-gradient(120deg, rgba(14,44,92,.92), rgba(39,19,76,.82)); box-shadow: var(--shadow); }
.cta-mark { padding: .55rem; border: 1px solid var(--line); border-radius: 1.4rem; background: rgba(255,255,255,.04); }
.cta-mark img { border-radius: 1.15rem; }
.final-cta h2 { font-size: clamp(1.8rem, 3.6vw, 3.15rem); }
.final-cta p:not(.eyebrow) { margin: .6rem 0 0; color: var(--muted); }

footer { display: grid; grid-template-columns: 1fr auto; gap: 1rem 3rem; align-items: center; width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; padding: 2.5rem 0 3.5rem; border-top: 1px solid var(--line); color: var(--muted); }
.footer-brand { display: flex; align-items: center; gap: .7rem; color: var(--text); }
.footer-brand > div { display: grid; line-height: 1.1; }
.footer-brand small { margin-top: .18rem; color: var(--muted); font-size: .68rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem; font-size: .82rem; }
.footer-links a:hover { color: white; }
footer > p { grid-column: 1 / -1; margin: 0; font-size: .78rem; }

.page-shell { width: min(calc(100% - 2rem), 900px); margin: 0 auto; padding: 6rem 0; }
.page-shell h1 { font-size: clamp(2.75rem, 7vw, 5rem); }
.page-shell h2 { margin-top: 2.7rem; font-size: 1.65rem; letter-spacing: -.03em; }
.page-shell p, .page-shell li { color: var(--muted); }
.page-shell a:not(.button) { color: #83e2ff; }
.page-shell ul { padding-left: 1.2rem; }
.notice { margin: 2rem 0; padding: 1rem 1.1rem; border: 1px solid rgba(255, 192, 80, .4); border-radius: 1rem; background: rgba(255, 168, 0, .08); color: #ffe2a4; }
.contact-card { margin-top: 2rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: 1.3rem; background: var(--panel); }
code { color: #8de5ff; }

@media (max-width: 1020px) {
  .menu-toggle { display: inline-flex; }
  .main-navigation {
    position: absolute;
    top: calc(100% + .6rem);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: .15rem;
    padding: .75rem;
    border: 1px solid var(--line-strong);
    border-radius: 1.15rem;
    background: rgba(3, 11, 27, .98);
    box-shadow: 0 24px 60px rgba(0,0,0,.46);
  }
  .main-navigation.is-open { display: flex; }
  .main-navigation > a { padding: .75rem .85rem; border-radius: .7rem; }
  .language-switch { align-self: flex-start; margin: .35rem .8rem; }
  .nav-cta { text-align: center; }
  .hero { grid-template-columns: 1fr; gap: 1.2rem; padding-top: 5rem; }
  .hero-copy { max-width: 820px; }
  .proof-row { max-width: 740px; }
  .product-stage { min-height: 640px; }
  .split-heading { grid-template-columns: 1fr; gap: 1rem; }
  .intelligence-grid { grid-template-columns: 1fr 1fr; }
  .intelligence-card:last-child { grid-column: 1 / -1; }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "communication communication"
      "events wallet"
      "network network"
      "documents onboarding";
  }
  .communication-card { min-height: 430px; }
  .network-card { min-height: 280px; }
  .onboarding-card { grid-template-columns: 1fr; }
  .flow-section { grid-template-columns: 1fr; gap: 2rem; }
  .security-panel { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 700px) {
  .site-header { margin-top: .5rem; }
  .brand img { width: 42px; height: 42px; }
  .brand-copy small { display: none; }
  .menu-toggle-label { display: none; }
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .proof-row { grid-template-columns: 1fr; }
  .product-stage { min-height: 570px; }
  .device-shell { transform: none; }
  .device-screen { min-height: 560px; }
  .floating-chip { font-size: .64rem; }
  .chip-smart { left: -1%; top: 8%; }
  .chip-live { right: -1%; top: 45%; }
  .chip-network { left: 0; bottom: 3%; }
  .signal-track { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .section { padding: 4.7rem 0; }
  .intelligence-grid { grid-template-columns: 1fr; }
  .intelligence-card:last-child { grid-column: auto; }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "communication"
      "events"
      "wallet"
      "documents"
      "network"
      "onboarding";
    grid-auto-rows: auto;
  }
  .bento-large, .bento-wide { grid-column: auto; grid-row: auto; }
  .bento-card { min-height: 255px; }
  .communication-card { min-height: 390px; }
  .network-card { grid-template-columns: 1fr; min-height: 465px; }
  .network-map { min-height: 190px; }
  .network-hub { left: 3%; }
  .network-partner { right: 5%; }
  .network-sgm { right: 3%; }
  .onboarding-card { grid-template-columns: 1fr; min-height: 330px; }
  .flow-map { grid-template-columns: 1fr; }
  .flow-map > i { width: 1px; height: 22px; justify-self: center; background: linear-gradient(180deg, var(--blue), var(--violet)); }
  .flow-map article { min-height: 135px; }
  .security-panel { padding: 1.3rem; }
  .security-grid { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .cta-mark { width: max-content; margin: auto; }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

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