:root {
  --bg: #080a0f;
  --bg-2: #0d1018;
  --panel: rgba(17, 21, 31, 0.78);
  --panel-solid: #11151f;
  --panel-soft: #151a26;
  --text: #f6f7fb;
  --muted: #aab0bf;
  --dim: #767d8e;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);
  --accent: #7c5cff;
  --accent-2: #2ad2ff;
  --accent-3: #b98cff;
  --good: #60d394;
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1220px;
  --shadow: 0 24px 80px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(124,92,255,.20), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(42,210,255,.12), transparent 30%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: rgba(124,92,255,.45); color: white; }

.site-shell { min-height: 100vh; overflow: clip; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8,10,15,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar { min-height: 74px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .12em; font-size: .92rem; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 30px rgba(124,92,255,.30);
}
.brand-mark::after { content:""; position:absolute; inset:7px; border:2px solid rgba(255,255,255,.9); border-left-color:transparent; transform:rotate(45deg); border-radius:5px; }
.nav-links { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.nav-links a { color: #c7cbd5; font-size: .93rem; transition: .2s ease; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { padding: 10px 15px; border:1px solid var(--line-strong); border-radius: 11px; background: rgba(255,255,255,.04); }
.menu-button { display:none; margin-left:auto; width:42px; height:42px; border-radius:10px; border:1px solid var(--line); background:var(--panel); color:white; }

.hero { padding: 92px 0 72px; position: relative; }
.hero-grid { display:grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items:center; }
.eyebrow { display:inline-flex; gap:9px; align-items:center; padding:7px 10px; border:1px solid var(--line); border-radius:999px; color:#cbd0dd; background:rgba(255,255,255,.035); font-size:.78rem; text-transform:uppercase; letter-spacing:.12em; }
.eyebrow-dot { width:7px; height:7px; border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent-2)); box-shadow:0 0 16px var(--accent); }
h1 { font-size: clamp(3.15rem, 7vw, 6.65rem); line-height: .92; margin: 23px 0 26px; letter-spacing: -.065em; max-width: 940px; }
.gradient-text { background:linear-gradient(92deg,#fff 10%,#cac1ff 52%,#8fe7ff 95%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-copy { max-width: 650px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.22rem); }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.btn { min-height:48px; display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:0 18px; border-radius:12px; border:1px solid var(--line); font-weight:700; font-size:.92rem; transition:.2s ease; cursor:pointer; }
.btn:hover { transform: translateY(-1px); border-color:var(--line-strong); }
.btn-primary { background:linear-gradient(135deg,var(--accent),#5b46d8); box-shadow:0 12px 34px rgba(124,92,255,.25); border-color:rgba(255,255,255,.12); }
.btn-secondary { background:rgba(255,255,255,.04); }
.btn-ghost { background:transparent; }
.btn[aria-disabled="true"] { opacity:.52; pointer-events:none; }
.mini-note { margin-top:16px; color:var(--dim); font-size:.81rem; }

.hero-visual { position:relative; min-height:580px; }
.glow-orb { position:absolute; width:400px; height:400px; border-radius:50%; filter:blur(80px); background:rgba(124,92,255,.15); top:70px; right:5%; }
.visual-card { position:absolute; border:1px solid var(--line); border-radius:20px; overflow:hidden; background:#10131b; box-shadow:var(--shadow); }
.visual-card img { width:100%; height:100%; object-fit:cover; }
.visual-main { width:78%; height:390px; right:0; top:58px; transform:rotate(1.2deg); }
.visual-secondary { width:55%; height:270px; left:0; bottom:20px; transform:rotate(-3deg); }
.visual-badge { position:absolute; right:18px; bottom:0; padding:13px 16px; border:1px solid var(--line); border-radius:14px; background:rgba(13,16,24,.88); backdrop-filter:blur(18px); box-shadow:var(--shadow); }
.visual-badge strong { display:block; font-size:1.05rem; }
.visual-badge span { color:var(--muted); font-size:.8rem; }

.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:32px; margin-bottom:34px; }
.section-kicker { color:#a99cff; text-transform:uppercase; letter-spacing:.14em; font-size:.75rem; font-weight:800; }
h2 { margin:8px 0 0; font-size:clamp(2.15rem,4vw,4rem); line-height:1; letter-spacing:-.045em; }
.section-head p { max-width:520px; color:var(--muted); margin:0; }

.product-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:18px; }
.product-card { grid-column:span 6; border:1px solid var(--line); background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.02)); border-radius:var(--radius); overflow:hidden; position:relative; transition:.25s ease; }
.product-card:hover { transform:translateY(-3px); border-color:rgba(255,255,255,.20); box-shadow:var(--shadow); }
.product-media { height:290px; position:relative; overflow:hidden; background:#10131b; }
.product-media img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.product-card:hover .product-media img { transform:scale(1.025); }
.product-media::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 48%,rgba(7,9,13,.78)); }
.product-status { position:absolute; z-index:2; top:16px; left:16px; padding:7px 10px; border-radius:999px; background:rgba(8,10,15,.72); backdrop-filter:blur(14px); border:1px solid var(--line); font-size:.72rem; text-transform:uppercase; letter-spacing:.09em; }
.product-body { padding:24px; }
.product-title-row { display:flex; justify-content:space-between; align-items:start; gap:18px; }
.product-title { margin:0; font-size:1.55rem; letter-spacing:-.03em; }
.product-type { color:#9fa6b6; font-size:.8rem; }
.product-desc { color:var(--muted); margin:12px 0 19px; }
.tag-row { display:flex; flex-wrap:wrap; gap:8px; }
.tag { padding:6px 9px; border-radius:8px; background:rgba(255,255,255,.045); border:1px solid var(--line); color:#c9ced9; font-size:.75rem; }

.feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; }
.feature { padding:22px; min-height:195px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.027); }
.feature-icon { width:39px; height:39px; display:grid; place-items:center; border-radius:11px; background:linear-gradient(135deg,rgba(124,92,255,.20),rgba(42,210,255,.10)); border:1px solid rgba(124,92,255,.26); margin-bottom:28px; font-size:1.05rem; }
.feature h3 { margin:0 0 8px; font-size:1rem; }
.feature p { margin:0; color:var(--muted); font-size:.89rem; }

.story-section { border:1px solid var(--line); border-radius:28px; overflow:hidden; background:linear-gradient(135deg,rgba(124,92,255,.08),rgba(255,255,255,.02)); }
.story-grid { display:grid; grid-template-columns: .92fr 1.08fr; min-height:560px; }
.story-copy { padding:54px; align-self:center; }
.story-copy h2 { font-size:clamp(2.4rem,4.8vw,4.8rem); }
.story-copy p { color:var(--muted); max-width:540px; }
.flow { margin:32px 0; display:grid; gap:11px; }
.flow-step { display:flex; gap:14px; align-items:center; color:#d9dce5; }
.flow-num { width:28px; height:28px; display:grid; place-items:center; border-radius:8px; background:rgba(124,92,255,.13); border:1px solid rgba(124,92,255,.28); color:#c8bdff; font-size:.75rem; font-weight:800; }
.story-image { min-height:500px; position:relative; overflow:hidden; background:#0c0e14; }
.story-image img { width:100%; height:100%; object-fit:cover; }
.story-image::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(12,14,20,.85),transparent 36%); }

.cta-panel { padding:54px; border-radius:28px; border:1px solid var(--line); background:
  radial-gradient(circle at 86% 30%, rgba(42,210,255,.15), transparent 24%),
  radial-gradient(circle at 18% 100%, rgba(124,92,255,.18), transparent 32%),
  var(--panel-solid); display:flex; justify-content:space-between; gap:34px; align-items:center; }
.cta-panel h2 { font-size:clamp(2rem,4vw,3.5rem); max-width:720px; }
.cta-panel p { color:var(--muted); max-width:600px; }

.page-hero { padding:76px 0 44px; }
.page-hero h1 { font-size:clamp(3rem,6vw,5.8rem); margin-bottom:20px; }
.page-hero p { max-width:760px; color:var(--muted); font-size:1.12rem; }
.breadcrumbs { color:var(--dim); font-size:.82rem; margin-bottom:20px; }
.breadcrumbs a:hover { color:white; }

.product-hero { padding:74px 0 36px; }
.product-hero-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:50px; align-items:center; }
.product-hero h1 { font-size:clamp(3.6rem,7vw,6.8rem); }
.product-hero .lead { color:var(--muted); font-size:1.13rem; max-width:620px; }
.product-meta { display:flex; flex-wrap:wrap; gap:9px; margin:24px 0 0; }
.product-shot { min-height:520px; border:1px solid var(--line); border-radius:26px; overflow:hidden; box-shadow:var(--shadow); background:#0f1219; }
.product-shot img { width:100%; height:100%; object-fit:cover; }

.gallery-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:16px; }
.gallery-item { grid-column:span 6; min-height:340px; border:1px solid var(--line); border-radius:20px; overflow:hidden; background:#10131a; position:relative; }
.gallery-item.wide { grid-column:span 12; min-height:440px; }
.gallery-item img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.gallery-label { position:absolute; left:14px; bottom:14px; z-index:2; padding:8px 11px; border-radius:9px; background:rgba(8,10,15,.78); backdrop-filter:blur(12px); border:1px solid var(--line); font-size:.78rem; }

.docs-layout { display:grid; grid-template-columns:260px 1fr; gap:40px; align-items:start; }
.docs-nav { position:sticky; top:96px; border:1px solid var(--line); background:rgba(255,255,255,.025); border-radius:16px; padding:14px; }
.docs-nav a { display:block; padding:9px 10px; border-radius:9px; color:var(--muted); font-size:.88rem; }
.docs-nav a:hover { background:rgba(255,255,255,.045); color:white; }
.docs-content { max-width:820px; }
.docs-content h2 { font-size:2rem; margin:45px 0 15px; }
.docs-content h2:first-child { margin-top:0; }
.docs-content h3 { margin-top:28px; }
.docs-content p, .docs-content li { color:var(--muted); }
.code-block { background:#0c0f15; border:1px solid var(--line); border-radius:13px; padding:18px; overflow:auto; color:#d9dce8; font-family:"SFMono-Regular",Consolas,"Liberation Mono",monospace; font-size:.84rem; }
.notice { border:1px solid rgba(124,92,255,.25); background:rgba(124,92,255,.075); padding:17px 18px; border-radius:13px; color:#d6d0ff; }

.support-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.support-card { border:1px solid var(--line); border-radius:18px; padding:26px; background:rgba(255,255,255,.028); min-height:225px; }
.support-card h3 { margin:26px 0 9px; }
.support-card p { color:var(--muted); }
.support-card .btn { margin-top:8px; }

.site-footer { border-top:1px solid var(--line); margin-top:76px; padding:42px 0 30px; background:rgba(0,0,0,.12); }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,.7fr); gap:40px; }
.footer-brand p { color:var(--muted); max-width:390px; font-size:.9rem; }
.footer-col strong { font-size:.82rem; text-transform:uppercase; letter-spacing:.11em; color:#c8ccd6; }
.footer-col a { display:block; color:var(--muted); font-size:.87rem; margin-top:11px; }
.footer-col a:hover { color:white; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; border-top:1px solid var(--line); margin-top:34px; padding-top:20px; color:var(--dim); font-size:.8rem; }

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

@media (max-width: 980px) {
  .nav-links { display:none; position:absolute; top:74px; left:20px; right:20px; padding:14px; border:1px solid var(--line); border-radius:15px; background:rgba(12,15,22,.97); flex-direction:column; align-items:stretch; gap:4px; }
  .nav-links.open { display:flex; }
  .nav-links a { padding:10px 8px; }
  .menu-button { display:block; }
  .hero { padding-top:64px; }
  .hero-grid, .product-hero-grid, .story-grid { grid-template-columns:1fr; }
  .hero-visual { min-height:520px; }
  .story-image { order:-1; min-height:400px; }
  .story-image::after { background:linear-gradient(180deg,transparent 55%,rgba(12,14,20,.95)); }
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .docs-layout { grid-template-columns:1fr; }
  .docs-nav { position:static; display:flex; overflow:auto; white-space:nowrap; }
  .support-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width:min(calc(100% - 28px),var(--max)); }
  .hero { padding:50px 0 30px; }
  .hero-grid { gap:32px; }
  h1 { font-size:clamp(3rem,16vw,5rem); }
  .hero-visual { min-height:430px; }
  .visual-main { width:88%; height:285px; }
  .visual-secondary { width:68%; height:220px; }
  .section { padding:64px 0; }
  .section-head { align-items:start; flex-direction:column; gap:14px; }
  .product-card { grid-column:span 12; }
  .product-media { height:245px; }
  .feature-grid { grid-template-columns:1fr; }
  .story-copy, .cta-panel { padding:30px; }
  .cta-panel { align-items:flex-start; flex-direction:column; }
  .gallery-item, .gallery-item.wide { grid-column:span 12; min-height:290px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
}
