:root {
  --bg: #080d1f;
  --bg-2: #0d1430;
  --surface: rgba(255,255,255,.07);
  --surface-strong: rgba(255,255,255,.12);
  --text: #f8fbff;
  --muted: #aab6cf;
  --line: rgba(255,255,255,.13);
  --brand: #50f5ff;
  --brand-2: #7c5cff;
  --brand-3: #ff5ab3;
  --success: #34d399;
  --warning: #fbbf24;
  --shadow: 0 28px 70px rgba(0,0,0,.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(80,245,255,.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(255,90,179,.14), transparent 34rem),
    radial-gradient(circle at 70% 65%, rgba(124,92,255,.16), transparent 32rem),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--brand);
  color: #05101a;
  padding: .8rem 1rem;
  border-radius: 12px;
  z-index: 999;
}
.skip-link:focus { left: 16px; }

.container { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }

.notice-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(8,13,31,.72);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 30;
}
.notice-inner {
  display: flex;
  justify-content: center;
  gap: .6rem;
  align-items: center;
  min-height: 42px;
  color: var(--muted);
  font-size: .92rem;
}
.notice-pill {
  color: #06121e;
  background: linear-gradient(90deg, var(--brand), #b9fbff);
  padding: .22rem .55rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,13,31,.74);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: .85rem; min-width: 230px; }
.brand-logo { width: 46px; height: 46px; border-radius: 15px; box-shadow: 0 14px 32px rgba(80,245,255,.2); }
.brand-text strong { display: block; font-size: 1rem; letter-spacing: -.02em; line-height: 1.05; }
.brand-text span { display: block; color: var(--muted); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: .3rem; }
.nav-links a {
  padding: .7rem .88rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .82rem 1.12rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--surface-strong); border-color: rgba(255,255,255,.24); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2) 48%, var(--brand-3));
  color: white;
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(124,92,255,.33);
}
.btn-primary:hover { box-shadow: 0 24px 54px rgba(124,92,255,.45); }
.btn-ghost { background: transparent; }
.btn-small { min-height: 40px; padding: .6rem .82rem; font-size: .88rem; }

.hero { padding: 88px 0 76px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .78fr);
  align-items: center;
  gap: 64px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .42rem .78rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  color: #dce6ff;
  font-weight: 800;
  font-size: .86rem;
  margin-bottom: 22px;
}
.dot { width: .55rem; height: .55rem; border-radius: 999px; background: var(--success); box-shadow: 0 0 0 6px rgba(52,211,153,.12); }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -.05em; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); max-width: 900px; }
h2 { font-size: clamp(2.35rem, 4vw, 4.4rem); max-width: 860px; }
h3 { font-size: 1.35rem; letter-spacing: -.03em; }
.gradient-text { background: linear-gradient(110deg, #fff, var(--brand) 34%, #c8bbff 65%, var(--brand-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { color: #d3dcf1; font-size: clamp(1.08rem, 2vw, 1.28rem); max-width: 740px; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 34px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; margin-top: 42px; }
.proof-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.055);
}
.proof-card b { display: block; font-size: 1.2rem; }
.proof-card span { color: var(--muted); font-size: .88rem; }

.device-card {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.device-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(80,245,255,.16);
  right: -120px;
  top: -120px;
  filter: blur(3px);
}
.code-panel {
  position: relative;
  z-index: 1;
  border-radius: 26px;
  background: rgba(4,8,20,.92);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.code-top { display: flex; align-items: center; gap: .4rem; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.code-top i { width: 11px; height: 11px; border-radius: 99px; background: var(--brand-3); }
.code-top i:nth-child(2) { background: var(--warning); }
.code-top i:nth-child(3) { background: var(--success); }
.code-top span { margin-left: auto; color: var(--muted); font-size: .84rem; }
.code-body { padding: 24px; font-family: "SFMono-Regular", Consolas, monospace; font-size: .92rem; color: #cfe7ff; }
.code-line { display: block; margin-bottom: .56rem; }
.c1 { color: var(--brand); } .c2 { color: #c8bbff; } .c3 { color: var(--brand-3); } .c4 { color: var(--success); }
.launch-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.launch-metric { padding: 1rem; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid var(--line); }
.launch-metric strong { display: block; font-size: 1.45rem; }
.launch-metric span { color: var(--muted); font-size: .86rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 34px; }
.section-head p { color: var(--muted); max-width: 540px; margin: 0; }

.marquee-strip { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.04); }
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: move 22s linear infinite; padding: 16px 0; }
.marquee-track span { color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: .52rem .85rem; background: rgba(255,255,255,.05); white-space: nowrap; }
@keyframes move { to { transform: translateX(-50%); } }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
  box-shadow: 0 14px 44px rgba(0,0,0,.18);
  padding: 1.35rem;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto 18px -1px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: .65;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(80,245,255,.2), rgba(124,92,255,.22));
  border: 1px solid rgba(255,255,255,.14);
  color: var(--brand);
}
.card p { color: var(--muted); margin: .8rem 0 0; }
.card ul { padding-left: 1.1rem; color: var(--muted); margin: 1rem 0 0; }
.card li + li { margin-top: .42rem; }

.process { counter-reset: steps; }
.step-card { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.step-num {
  counter-increment: steps;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 900;
}
.step-num::before { content: counter(steps, decimal-leading-zero); }

.showcase {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1.1rem;
  align-items: stretch;
}
.showcase-panel { min-height: 430px; padding: 1.4rem; }
.mockup {
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(80,245,255,.18), transparent 34%),
    linear-gradient(220deg, rgba(255,90,179,.16), transparent 34%),
    #070b1a;
  padding: 1rem;
}
.mockup-window { background: rgba(255,255,255,.08); border: 1px solid var(--line); border-radius: 24px; padding: 1rem; min-height: 330px; }
.mockup-bar { height: 12px; border-radius: 99px; background: rgba(255,255,255,.12); margin-bottom: 16px; }
.mockup-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.mockup-box { height: 112px; border-radius: 18px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.09); }
.mockup-box.wide { grid-column: 1 / -1; height: 96px; }

.pricing-card { padding: 1.55rem; }
.price { font-size: 2.1rem; font-weight: 950; margin: .4rem 0; letter-spacing: -.05em; }
.price small { font-size: .9rem; color: var(--muted); font-weight: 700; }
.badge { display: inline-flex; align-items: center; gap: .35rem; padding: .36rem .66rem; border-radius: 999px; background: rgba(80,245,255,.12); color: #bafaff; border: 1px solid rgba(80,245,255,.25); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.featured { border-color: rgba(80,245,255,.45); box-shadow: 0 24px 70px rgba(80,245,255,.09); }

.info-list { display: grid; gap: .75rem; }
.info-row { display: grid; grid-template-columns: 170px 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row dt { color: var(--muted); font-weight: 800; }
.info-row dd { margin: 0; }

.contact-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.1rem; }
.contact-link { display: flex; align-items: center; gap: .9rem; padding: 1rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.055); }
.contact-link + .contact-link { margin-top: .8rem; }
.contact-link b { display: block; }
.contact-link span { color: var(--muted); font-size: .9rem; }
.form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.input { width: 100%; border: 1px solid var(--line); border-radius: 16px; color: var(--text); background: rgba(255,255,255,.06); padding: .95rem 1rem; outline: none; }
.input:focus { border-color: rgba(80,245,255,.58); box-shadow: 0 0 0 4px rgba(80,245,255,.1); }
textarea.input { min-height: 145px; resize: vertical; }

.policy { max-width: 900px; }
.policy h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.policy h2 { font-size: 1.8rem; margin-top: 2rem; }
.policy p, .policy li { color: var(--muted); }
.policy-card { padding: 2rem; }

.cta-block {
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(80,245,255,.14), transparent 36%),
    linear-gradient(235deg, rgba(255,90,179,.14), transparent 44%),
    rgba(255,255,255,.065);
  box-shadow: var(--shadow);
}
.cta-block p { color: var(--muted); max-width: 700px; }

.site-footer { border-top: 1px solid var(--line); padding: 54px 0 28px; background: rgba(3,7,18,.44); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, .7fr); gap: 2rem; }
.footer-grid p, .footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--text); }
.footer-links { display: grid; gap: .48rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 24px; margin-top: 34px; font-size: .92rem; }

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

@media (max-width: 980px) {
  .hero-grid, .showcase, .contact-shell { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links {
    position: fixed;
    inset: 82px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8,13,31,.95);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .nav-actions .btn-primary { display: none; }
  .section-head { align-items: start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .hero { padding-top: 54px; }
  .hero-proof, .grid-3, .grid-2, .launch-card, .form-row { grid-template-columns: 1fr; }
  .brand { min-width: unset; }
  .brand-text span { display: none; }
  .info-row { grid-template-columns: 1fr; gap: .3rem; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; flex-direction: column; }
}
