:root {
  color-scheme: dark;
  --bg: #030713;
  --bg-2: #071124;
  --panel: rgba(10, 19, 40, .78);
  --panel-strong: rgba(12, 24, 51, .94);
  --border: rgba(135, 166, 233, .15);
  --border-bright: rgba(109, 153, 255, .34);
  --text: #f5f7ff;
  --muted: #98a5be;
  --muted-2: #71819f;
  --blue: #3a7dff;
  --blue-2: #6bb7ff;
  --violet: #8b66ff;
  --green: #54e6b1;
  --shadow: 0 28px 90px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -12%, rgba(51, 105, 214, .26), transparent 34%),
    radial-gradient(circle at 100% 38%, rgba(94, 55, 180, .10), transparent 24%),
    linear-gradient(180deg, #071226 0%, var(--bg) 35%, #020610 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { font: inherit; }
button { color: inherit; }

.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.page-glow {
  position: fixed;
  z-index: -3;
  border-radius: 50%;
  filter: blur(125px);
  opacity: .15;
  pointer-events: none;
}
.glow-a { width: 580px; height: 580px; background: #2466ff; top: 8%; right: -330px; }
.glow-b { width: 560px; height: 560px; background: #6949e7; bottom: 14%; left: -350px; opacity: .10; }
.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .022;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 9, 21, .64);
  border-bottom: 1px solid rgba(130, 162, 221, .08);
  backdrop-filter: blur(22px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 43px; height: 43px; display: grid; place-items: center;
  color: #8bc6ff;
  border: 1px solid rgba(99, 160, 255, .35);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(54, 130, 255, .34), rgba(10, 27, 62, .78));
  box-shadow: 0 12px 36px rgba(43, 106, 244, .18), inset 0 0 20px rgba(75, 139, 255, .06);
}
.brand-mark svg { width: 27px; height: 27px; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-size: 14px; letter-spacing: .01em; }
.brand-copy small { margin-top: 3px; color: var(--muted-2); font-size: 10px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; color: #a7b2c7; font-size: 12px; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: white; }
.header-login {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 42px; padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(10, 22, 45, .72);
  font-size: 12px; font-weight: 750;
}
.header-login:hover { border-color: var(--border-bright); background: rgba(15, 31, 63, .86); }
.menu-button { display: none; border: 0; background: transparent; font-size: 24px; cursor: pointer; }
.mobile-menu { padding: 0 0 18px; display: grid; gap: 5px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 12px 0; border-bottom: 1px solid rgba(127, 155, 209, .08); color: #b4bfd2; }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 62px;
  padding: 92px 0 90px;
}
.eyebrow { color: #82adf1; font-size: 10px; font-weight: 850; letter-spacing: .18em; }
.eyebrow i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px rgba(84, 230, 177, .75); }
.eyebrow.plain { display: block; }
.hero h1 {
  margin: 20px 0 25px;
  font-size: clamp(54px, 7vw, 82px);
  line-height: .96;
  letter-spacing: -.058em;
  font-weight: 850;
}
.hero h1 span {
  background: linear-gradient(94deg, #82c9ff 5%, #4f8cff 54%, #9576ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead { max-width: 650px; margin: 0; color: #a9b5ca; font-size: 17px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 21px;
  border-radius: 15px;
  border: 1px solid transparent;
  font-size: 13px; font-weight: 800;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.button-primary {
  background: linear-gradient(135deg, #3d89ff, #2459e0 55%, #654ee5);
  box-shadow: 0 16px 44px rgba(45, 105, 255, .24);
}
.button-secondary { border-color: var(--border); background: rgba(10, 21, 43, .66); color: #d8e1f0; }
.button-secondary:hover { border-color: var(--border-bright); }
.button.full { width: 100%; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.hero-trust span { padding: 8px 11px; border: 1px solid rgba(129, 163, 224, .12); border-radius: 999px; background: rgba(9, 20, 42, .52); color: #8492aa; font-size: 10px; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 530px; }
.orbital-card {
  position: relative;
  width: min(490px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(112, 157, 233, .15);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 48%, rgba(50, 116, 255, .18), transparent 29%),
    linear-gradient(145deg, rgba(12, 27, 58, .62), rgba(4, 10, 23, .82));
  box-shadow: inset 0 0 90px rgba(40, 96, 220, .05), 0 36px 110px rgba(0,0,0,.34);
  overflow: hidden;
}
.orbital-card::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(117,157,226,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(117,157,226,.045) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(circle, black, transparent 70%); }
.orbit { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%) rotate(-14deg); border:1px solid rgba(92,145,232,.14); border-radius:50%; }
.orbit-one { width: 205px; height: 205px; }
.orbit-two { width: 315px; height: 315px; }
.orbit-three { width: 425px; height: 425px; }
.diamond-core {
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width: 124px; height: 124px; display:grid; place-items:center;
  color:#92c9ff;
  border:1px solid rgba(94, 155, 255, .34);
  border-radius: 36px;
  background: radial-gradient(circle at 50% 30%, rgba(100,174,255,.31), rgba(19,53,119,.82) 55%, rgba(9,27,63,.94));
  box-shadow: 0 0 65px rgba(58, 120, 255, .32), inset 0 0 35px rgba(142, 203, 255, .12);
}
.diamond-core svg { width:72px; height:72px; filter: drop-shadow(0 0 14px rgba(104,180,255,.3)); }
.server-dot { position:absolute; display:grid; place-items:center; width:52px; height:52px; border:1px solid rgba(106,157,240,.2); border-radius:17px; background:rgba(8,21,46,.9); box-shadow:0 10px 30px rgba(0,0,0,.3); }
.server-dot span { width:8px; height:8px; border-radius:50%; background:#6fd3ff; box-shadow:0 0 14px rgba(111,211,255,.8); }
.server-dot small { position:absolute; bottom:5px; font-size:7px; color:#6f829f; }
.server-one { top:17%; right:18%; }
.server-two { bottom:19%; left:16%; }
.signal { position:absolute; width:9px; height:9px; border-radius:50%; background:var(--green); box-shadow:0 0 20px rgba(84,230,177,.9); }
.signal-a { top:32%; left:22%; }
.signal-b { right:21%; bottom:29%; }
.visual-label { position:absolute; display:flex; align-items:center; gap:8px; padding:10px 12px; border:1px solid rgba(122,161,226,.14); border-radius:13px; background:rgba(5,13,30,.74); backdrop-filter:blur(12px); box-shadow:0 12px 30px rgba(0,0,0,.22); }
.visual-label b { font-size:10px; }
.visual-label small { color:#72819b; font-size:8px; }
.label-top { left:8%; top:8%; flex-direction:column; align-items:flex-start; gap:2px; }
.label-bottom { right:8%; bottom:8%; }
.status-dot { width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 10px rgba(84,230,177,.8); }

.metrics {
  display:grid; grid-template-columns:repeat(4,1fr);
  margin-top: -8px; margin-bottom: 25px;
  border:1px solid var(--border); border-radius:22px;
  background:linear-gradient(145deg, rgba(12,25,50,.70), rgba(5,12,28,.68));
  overflow:hidden;
}
.metrics > div { min-height:104px; padding:22px 24px; display:flex; flex-direction:column; justify-content:center; border-right:1px solid var(--border); }
.metrics > div:last-child { border-right:0; }
.metrics strong { font-size:25px; letter-spacing:-.03em; }
.metrics span { margin-top:5px; color:var(--muted-2); font-size:10px; }

.section { padding: 105px 0; }
.section-heading { display:flex; justify-content:space-between; align-items:flex-end; gap:36px; margin-bottom:38px; }
.section-heading > div { max-width:680px; }
.section-heading h2, .devices-copy h2, .philosophy-card h2, .cta-card h2 {
  margin: 12px 0 0;
  font-size: clamp(36px, 5vw, 57px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-heading > p, .section-heading.centered > p { max-width:440px; margin:0; color:var(--muted); line-height:1.6; font-size:14px; }
.section-heading.centered { display:block; max-width:680px; margin:0 auto 42px; text-align:center; }
.section-heading.centered p { margin:16px auto 0; }

.feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.feature-card { min-height:260px; padding:25px; border:1px solid var(--border); border-radius:23px; background:linear-gradient(145deg, rgba(11,24,50,.78), rgba(5,13,29,.72)); box-shadow:0 18px 55px rgba(0,0,0,.17); }
.feature-icon { display:grid; place-items:center; width:45px; height:45px; border:1px solid rgba(111,157,233,.16); border-radius:14px; background:rgba(27,64,126,.30); font-size:20px; }
.feature-card h3 { margin:44px 0 10px; font-size:17px; letter-spacing:-.02em; }
.feature-card p { margin:0; color:var(--muted); font-size:12px; line-height:1.65; }

.how-section { border-top:1px solid rgba(128,159,216,.07); border-bottom:1px solid rgba(128,159,216,.07); background:linear-gradient(180deg, rgba(9,19,41,.32), rgba(5,12,27,.12)); }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:13px; }
.step-card { position:relative; min-height:210px; padding:28px; border:1px solid var(--border); border-radius:23px; background:rgba(7,17,37,.62); overflow:hidden; }
.step-card::after { content:""; position:absolute; width:150px; height:150px; right:-75px; bottom:-75px; border-radius:50%; border:1px solid rgba(78,128,221,.11); box-shadow:0 0 0 32px rgba(72,122,217,.025),0 0 0 64px rgba(72,122,217,.018); }
.step-index { color:#5d91ea; font-size:10px; font-weight:900; letter-spacing:.14em; }
.step-card h3 { margin:55px 0 9px; font-size:19px; }
.step-card p { margin:0; max-width:280px; color:var(--muted); font-size:12px; line-height:1.6; }

.pricing-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; max-width:820px; margin:0 auto; }
.price-card { position:relative; padding:32px; border:1px solid var(--border); border-radius:27px; background:linear-gradient(145deg, rgba(11,24,49,.84), rgba(4,12,27,.78)); box-shadow:var(--shadow); overflow:hidden; }
.price-card.featured { border-color:rgba(87,137,255,.39); background:radial-gradient(circle at 80% 0, rgba(104,77,232,.14), transparent 31%), linear-gradient(145deg, rgba(16,35,71,.92), rgba(6,14,31,.86)); }
.popular { position:absolute; top:18px; right:18px; padding:6px 9px; border-radius:999px; background:rgba(83,118,240,.17); border:1px solid rgba(110,144,255,.3); color:#a7c2ff; font-size:8px; font-weight:900; letter-spacing:.13em; }
.price-kicker { color:#7894bf; font-size:9px; font-weight:850; letter-spacing:.18em; }
.price { display:flex; align-items:flex-start; gap:4px; margin:15px 0 8px; }
.price strong { font-size:58px; line-height:.95; letter-spacing:-.055em; }
.price span { margin-top:8px; color:#90a3c2; font-size:18px; }
.price-card > p { min-height:44px; color:var(--muted); font-size:12px; line-height:1.55; }
.price-card ul { list-style:none; margin:25px 0 27px; padding:0; display:grid; gap:12px; color:#c2cce0; font-size:12px; }
.price-card li::before { content:"✓"; display:inline-grid; place-items:center; width:18px; height:18px; margin-right:9px; border-radius:6px; background:rgba(63,203,151,.1); color:#61dfb0; font-size:9px; }
.payment-note { margin:18px 0 0; text-align:center; color:#667793; font-size:9px; }

.devices-section { background:radial-gradient(circle at 25% 50%, rgba(34,91,194,.12), transparent 30%); }
.devices-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.devices-copy p { max-width:520px; color:var(--muted); line-height:1.65; font-size:14px; }
.device-pills { display:flex; flex-wrap:wrap; gap:8px; margin:25px 0; }
.device-pills span { padding:9px 12px; border:1px solid var(--border); border-radius:999px; background:rgba(10,21,44,.6); color:#aeb9cc; font-size:10px; }
.text-link { display:inline-flex; align-items:center; gap:8px; color:#78adff; font-size:12px; font-weight:800; }
.apps-panel { padding:18px; border:1px solid var(--border); border-radius:27px; background:linear-gradient(145deg, rgba(12,27,57,.86), rgba(5,13,30,.8)); box-shadow:var(--shadow); }
.apps-panel-top { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:7px 5px 17px; color:#8593aa; font-size:9px; }
.apps-panel-top i { display:flex; align-items:center; gap:6px; font-style:normal; }
.apps-panel-top b { width:6px; height:6px; border-radius:50%; background:var(--green); box-shadow:0 0 10px rgba(84,230,177,.65); }
.app-row { display:flex; align-items:center; gap:14px; min-height:92px; padding:17px; border:1px solid rgba(125,157,216,.10); border-radius:19px; background:rgba(4,12,28,.58); }
.app-row + .app-row { margin-top:9px; }
.featured-app { background:linear-gradient(135deg, rgba(28,71,148,.34), rgba(5,14,32,.65)); border-color:rgba(83,135,232,.20); }
.app-logo { flex:0 0 auto; display:grid; place-items:center; width:48px; height:48px; border-radius:15px; background:linear-gradient(145deg,#338cff,#204bb9); font-weight:900; font-size:19px; box-shadow:0 10px 28px rgba(31,94,225,.26); }
.app-logo.icy { background:linear-gradient(145deg,#714fff,#3f36a7); }
.app-row div { margin-right:auto; }
.app-row strong, .app-row small { display:block; }
.app-row strong { font-size:14px; }
.app-row small { margin-top:4px; color:#75849d; font-size:9px; }
.app-tag { padding:6px 8px; border:1px solid rgba(93,147,239,.18); border-radius:999px; color:#84b7ff; background:rgba(50,109,218,.12); font-size:8px; }
.chevron { color:#71819e; font-size:27px; }
.apps-footnote { padding:16px 7px 5px; color:#6f7e97; font-size:9px; line-height:1.5; }

.philosophy-card { position:relative; display:grid; grid-template-columns:1.15fr .85fr; align-items:center; min-height:430px; padding:55px; border:1px solid var(--border); border-radius:31px; background:radial-gradient(circle at 85% 50%, rgba(79,104,224,.13), transparent 28%), linear-gradient(145deg, rgba(12,27,58,.86), rgba(5,13,30,.78)); overflow:hidden; }
.philosophy-copy p { max-width:590px; color:var(--muted); line-height:1.75; font-size:14px; }
.philosophy-visual { position:relative; min-height:280px; }
.ring { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); border:1px solid rgba(106,149,230,.18); border-radius:50%; }
.ring-a { width:225px; height:225px; box-shadow:0 0 0 38px rgba(78,117,210,.025),0 0 0 76px rgba(78,117,210,.017); }
.ring-b { width:130px; height:130px; border-color:rgba(106,166,255,.25); box-shadow:inset 0 0 45px rgba(65,126,240,.10); }
.mini-diamond { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); font-size:58px; color:#6da8ff; text-shadow:0 0 35px rgba(75,134,255,.45); }

.faq-list { display:grid; gap:8px; max-width:900px; margin:0 auto; }
.faq-item { border:1px solid var(--border); border-radius:18px; background:rgba(8,18,38,.63); overflow:hidden; }
.faq-item summary { list-style:none; min-height:66px; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:0 21px; cursor:pointer; font-size:13px; font-weight:750; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary span { color:#6d8fc6; font-size:22px; font-weight:300; transition:transform .2s ease; }
.faq-item[open] summary span { transform:rotate(45deg); }
.faq-item p { margin:0; padding:0 21px 20px; color:var(--muted); font-size:12px; line-height:1.65; }

.cta-section { padding-top:70px; }
.cta-card { display:flex; align-items:center; justify-content:space-between; gap:35px; padding:45px; border:1px solid rgba(100,146,233,.23); border-radius:28px; background:radial-gradient(circle at 80% 0, rgba(120,79,238,.17), transparent 31%), linear-gradient(135deg, rgba(20,52,111,.66), rgba(8,20,45,.82)); box-shadow:0 30px 90px rgba(0,0,0,.26); }
.cta-card p { margin:15px 0 0; color:var(--muted); font-size:13px; }
.cta-actions { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:10px; }

.site-footer { margin-top:25px; border-top:1px solid rgba(129,160,216,.08); background:rgba(2,6,14,.56); }
.footer-inner { padding:44px 0 34px; }
.footer-brand { display:flex; align-items:center; gap:12px; }
.brand-mark.small { width:37px; height:37px; border-radius:12px; font-size:12px; }
.footer-brand strong, .footer-brand small { display:block; }
.footer-brand strong { font-size:13px; }
.footer-brand small { margin-top:4px; color:#657590; font-size:9px; }
.footer-links { display:flex; flex-wrap:wrap; gap:20px; margin:26px 0; color:#7c8ba4; font-size:10px; }
.footer-links a:hover { color:#b7c4d9; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-top:20px; border-top:1px solid rgba(127,158,215,.07); color:#56657e; font-size:9px; }

.reveal { opacity:0; transform:translateY(14px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; transition:none; }
  .button { transition:none; }
}

@media (max-width: 980px) {
  .desktop-nav { display:none; }
  .hero { grid-template-columns:1fr; min-height:auto; padding-top:75px; }
  .hero-copy { text-align:center; }
  .hero-lead { margin-inline:auto; }
  .hero-actions, .hero-trust { justify-content:center; }
  .hero-visual { min-height:450px; }
  .orbital-card { width:min(440px,92vw); }
  .metrics { grid-template-columns:repeat(2,1fr); }
  .metrics > div:nth-child(2) { border-right:0; }
  .metrics > div:nth-child(-n+2) { border-bottom:1px solid var(--border); }
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .devices-layout { grid-template-columns:1fr; gap:45px; }
  .philosophy-card { grid-template-columns:1fr; }
  .philosophy-visual { min-height:240px; }
}

@media (max-width: 720px) {
  .shell { width:min(100% - 28px, 1160px); }
  .header-inner { min-height:70px; }
  .brand-copy small { display:none; }
  .header-login { display:none; }
  .menu-button { display:block; }
  .hero { padding:62px 0 55px; gap:30px; }
  .hero h1 { font-size:clamp(45px,14.4vw,65px); }
  .hero-lead { font-size:15px; }
  .hero-actions .button { width:100%; }
  .hero-visual { min-height:auto; }
  .orbital-card { border-radius:30px; }
  .visual-label { display:none; }
  .metrics { margin-top:25px; }
  .metrics > div { min-height:90px; padding:18px; }
  .metrics strong { font-size:21px; }
  .section { padding:78px 0; }
  .section-heading { display:block; margin-bottom:29px; }
  .section-heading > p { margin-top:16px; }
  .section-heading h2, .devices-copy h2, .philosophy-card h2, .cta-card h2 { font-size:clamp(34px,10vw,46px); }
  .feature-grid, .steps-grid, .pricing-grid { grid-template-columns:1fr; }
  .feature-card { min-height:215px; }
  .feature-card h3 { margin-top:30px; }
  .step-card { min-height:185px; }
  .step-card h3 { margin-top:42px; }
  .price-card { padding:26px; }
  .devices-layout { gap:35px; }
  .philosophy-card { padding:30px 24px; }
  .philosophy-visual { min-height:215px; }
  .cta-card { display:block; padding:30px 24px; }
  .cta-actions { margin-top:25px; justify-content:flex-start; }
  .cta-actions .button { width:100%; }
  .footer-bottom { display:block; }
  .footer-bottom span { display:block; margin-top:8px; }
}
