/* ==========================================================================
   Project Blueprint — Maximum-capability product site
   ========================================================================== */

:root {
  --bg: #05060a;
  --bg-2: #0a0b10;
  --elev: rgba(18, 20, 28, 0.78);
  --ink: #f4f5f7;
  --soft: #a9afbc;
  --mute: #6a7180;
  --azure: #3e9fe6;
  --azure-hot: #6bb8f2;
  --teal: #2ab8a6;
  --red: #e5484d;
  --amber: #f5a623;
  --violet: #8b7cf6;
  --paper: #f8f7f3;
  --g800: #17181c;
  --g700: #26282c;
  --line: rgba(255, 255, 255, 0.075);
  --line-2: rgba(255, 255, 255, 0.14);
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 12px 32px rgba(0, 0, 0, 0.35);
  --glow: 0 0 100px rgba(62, 159, 230, 0.28);
  --r: 22px;
  --rs: 14px;
  --nav: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav) + 16px); }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--azure-hot);
  outline-offset: 4px;
  border-radius: 8px;
}
.skip-link {
  position: fixed; top: 10px; left: 12px; z-index: 30000;
  padding: 10px 14px; border-radius: 10px;
  background: var(--paper); color: #0e0f12; font-weight: 700;
  transform: translateY(-160%); transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Atmosphere ---------- */
.fx-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.55;
}
.noise {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none; opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.45) 100%);
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  z-index: 200; background: linear-gradient(90deg, var(--azure), var(--teal));
  box-shadow: 0 0 12px rgba(62, 159, 230, 0.6);
  transform-origin: left;
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none;
  opacity: 0; transition: opacity 0.3s ease;
}
body.has-cursor .cursor { opacity: 1; }
.cursor-ring {
  position: absolute; width: 40px; height: 40px; margin: -20px 0 0 -20px;
  border: 1px solid rgba(255,255,255,0.45); border-radius: 50%;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease),
    border-color 0.25s ease, background 0.25s ease, transform 0.12s ease-out;
}
.cursor-dot {
  position: absolute; width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px;
  background: var(--azure-hot); border-radius: 50%;
  box-shadow: 0 0 12px rgba(62, 159, 230, 0.8);
}
.cursor-label {
  position: absolute; top: 24px; left: 16px;
  padding: 4px 8px; border-radius: 6px;
  background: rgba(10, 12, 18, 0.9); border: 1px solid var(--line-2);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--soft); white-space: nowrap; opacity: 0;
  transition: opacity 0.2s ease;
}
.cursor.is-hover .cursor-ring {
  width: 64px; height: 64px; margin: -32px 0 0 -32px;
  background: rgba(62, 159, 230, 0.08); border-color: var(--azure);
}
.cursor.is-label .cursor-label { opacity: 1; }
.cursor.is-down .cursor-ring { transform: scale(0.82); }

/* ---------- Layout helpers ---------- */
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.wrap.narrow { width: min(780px, calc(100% - 40px)); }
.center { text-align: center; }
.section { position: relative; z-index: 2; padding: 120px 0; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-sub, .lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--soft); line-height: 1.6; max-width: 54ch;
}
.section-sub { margin-top: 16px; }
.center .section-sub, .center .lead { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 650; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--azure); margin-bottom: 18px;
}
.display {
  font-size: clamp(2.15rem, 4.8vw, 3.75rem);
  font-weight: 670; letter-spacing: -0.038em; line-height: 1.05;
}
.kicker {
  font-size: 11px; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--azure); margin-bottom: 10px;
}
.grad {
  background: linear-gradient(120deg, #fff 0%, var(--azure-hot) 45%, var(--teal) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Split text */
[data-split] .line { display: block; overflow: hidden; }
[data-split] .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-split].is-in .word { transform: none; opacity: 1; }

/* Reveals */
[data-reveal] {
  opacity: 0; transform: translateY(36px) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-in {
  opacity: 1; transform: none; filter: none;
}

/* Glass */
.glass {
  background: var(--elev);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; font-weight: 620; letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-sm { height: 36px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 54px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn[aria-disabled="true"] { cursor: not-allowed; opacity: 0.62; pointer-events: none; }
.btn-primary {
  background: linear-gradient(180deg, var(--azure-hot), var(--azure));
  color: #031018;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14) inset, 0 12px 36px rgba(62, 159, 230, 0.4);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.6s var(--ease);
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2) inset, 0 16px 44px rgba(62, 159, 230, 0.5);
}
.btn-glass {
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-2); color: var(--ink);
  backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.25); transform: translateY(-2px);
}
.btn-ghost { color: var(--soft); }
.btn-ghost:hover { color: var(--ink); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--nav);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(5, 6, 10, 0.72);
  border-bottom-color: var(--line);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}
.nav-inner {
  width: min(1180px, calc(100% - 32px)); height: 100%; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 650; letter-spacing: -0.02em; font-size: 15px;
  flex-shrink: 0;
}
.nav-brand img { width: 28px; height: 28px; border-radius: 8px; }
.nav-brand span { white-space: nowrap; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13.5px; color: var(--soft);
  position: relative; transition: color 0.2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--azure); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-burger {
  display: none; width: 40px; height: 40px; place-items: center;
  flex-direction: column; gap: 6px;
}
.nav-burger span {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column; gap: 4px; padding: 12px 20px 20px;
  background: rgba(5, 6, 10, 0.96); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.mobile-nav a { padding: 12px 8px; color: var(--soft); border-radius: 10px; }
.mobile-nav a:hover { background: rgba(255,255,255,0.04); color: var(--ink); }
.mobile-nav .btn { margin-top: 8px; }
.mobile-nav:not([hidden]) { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative; z-index: 2;
  min-height: 100vh; min-height: 100dvh;
  padding: calc(var(--nav) + 40px) 0 90px;
  display: flex; flex-direction: column; align-items: center;
  overflow: hidden;
}
.hero-mesh { position: absolute; inset: 0; pointer-events: none; }
.mesh-orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  opacity: 0.55; animation: orb 20s ease-in-out infinite alternate;
}
.m1 { width: 560px; height: 560px; top: -12%; left: 10%; background: radial-gradient(circle, rgba(62,159,230,0.5), transparent 70%); }
.m2 { width: 420px; height: 420px; top: 25%; right: -8%; background: radial-gradient(circle, rgba(42,184,166,0.3), transparent 70%); animation-delay: -5s; }
.m3 { width: 380px; height: 380px; bottom: 0; left: 35%; background: radial-gradient(circle, rgba(139,124,246,0.2), transparent 70%); animation-delay: -10s; }
.m4 { width: 280px; height: 280px; top: 50%; left: 5%; background: radial-gradient(circle, rgba(229,72,77,0.12), transparent 70%); animation-delay: -15s; }
@keyframes orb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(50px, 40px) scale(1.1); }
}
.hero-blueprint {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 35%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 35%, #000 15%, transparent 72%);
}

.hero-content {
  position: relative; z-index: 3;
  width: min(920px, calc(100% - 40px));
  text-align: center; margin-bottom: 44px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.04); font-size: 12.5px; color: var(--soft);
  margin-bottom: 28px; backdrop-filter: blur(12px);
}
.badge-live { color: var(--teal); font-weight: 600; }
.badge-sep { opacity: 0.35; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 0 rgba(42,184,166,0.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42,184,166,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(42,184,166,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,184,166,0); }
}
.hero-title {
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
  font-weight: 700; letter-spacing: -0.048em; line-height: 0.98;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--soft); max-width: 58ch; margin: 0 auto 30px; line-height: 1.55;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 28px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
}
.trust-item {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 13px; color: var(--mute);
}
.trust-item b {
  font-size: 15px; color: var(--ink); font-family: var(--mono); letter-spacing: -0.02em;
}

.hero-stage {
  position: relative; z-index: 3;
  width: min(1120px, calc(100% - 24px));
  perspective: 1600px;
}
.stage-aura {
  position: absolute; inset: 8% 5% -8%;
  background: radial-gradient(ellipse at center, rgba(62,159,230,0.32), transparent 65%);
  filter: blur(24px); pointer-events: none;
  animation: aura 6s ease-in-out infinite alternate;
}
@keyframes aura {
  from { opacity: 0.7; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1.04); }
}

/* App shell */
.app-shell {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--g800); border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow), var(--glow);
  transform-style: preserve-3d; will-change: transform;
}
.app-shell.crop { border-radius: 14px; }
.specular {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 30%),
    rgba(255,255,255,0.12), transparent 40%);
  mix-blend-mode: soft-light; opacity: 0; transition: opacity 0.3s ease;
}
.app-shell:hover .specular { opacity: 1; }

.aw-titlebar {
  display: flex; align-items: center; gap: 12px; height: 40px; padding: 0 14px;
  background: linear-gradient(180deg, #1f2127, var(--g800));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.aw-lights { display: flex; gap: 6px; }
.aw-lights i { width: 10px; height: 10px; border-radius: 50%; background: #3a3d44; }
.aw-lights i:nth-child(1) { background: #ff5f57; }
.aw-lights i:nth-child(2) { background: #febc2e; }
.aw-lights i:nth-child(3) { background: #28c840; }
.aw-title { flex: 1; text-align: center; font-size: 12px; color: #a6a9af; font-family: var(--mono); }
.aw-meta { font-size: 11px; color: #6e727a; font-family: var(--mono); }
.aw-toolbar {
  display: flex; align-items: center; gap: 4px; padding: 8px 10px;
  background: var(--g700); border-bottom: 1px solid rgba(0,0,0,0.3); overflow-x: auto;
}
.aw-toolbar.solo { border-radius: 0; }
.aw-tool {
  padding: 5px 10px; border-radius: 6px; font-size: 11.5px; color: #c5c8ce; white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.aw-tool.is-on { background: rgba(62,159,230,0.2); color: var(--azure-hot); }
.aw-spacer { flex: 1; }
.aw-chip {
  font-family: var(--mono); font-size: 11.5px; color: var(--teal);
  background: rgba(42,184,166,0.12); padding: 4px 10px; border-radius: 999px;
}
.aw-body {
  display: grid; grid-template-columns: 118px 1fr 178px; min-height: 340px; background: #0e0f12;
}
.aw-rail {
  background: var(--g700); padding: 12px 10px; font-size: 11px; color: #a6a9af;
  display: flex; flex-direction: column; gap: 6px;
}
.aw-rail.left { border-right: 1px solid rgba(0,0,0,0.25); }
.aw-rail.right { border-left: 1px solid rgba(0,0,0,0.25); }
.aw-rail b {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #6e727a; margin: 6px 0 2px;
}
.aw-thumb {
  display: block; height: 46px; border-radius: 4px;
  background: linear-gradient(145deg, #2a2c31, #1a1b1f); border: 1px solid transparent;
}
.aw-thumb.is-on { border-color: var(--azure); box-shadow: 0 0 0 1px rgba(62,159,230,0.3); }
.aw-rail em {
  font-style: normal; padding: 4px 6px; border-radius: 4px; color: #8b8f97;
}
.aw-rail em.on { background: rgba(62,159,230,0.12); color: var(--azure-hot); }
.aw-canvas { position: relative; overflow: hidden; background: var(--paper); min-height: 280px; }
.aw-canvas img { width: 100%; height: 100%; object-fit: cover; }
.row, .prop {
  display: flex; align-items: center; gap: 6px; padding: 5px 4px; color: #c5c8ce;
}
.row em, .prop em {
  margin-left: auto; font-style: normal; color: #6e727a; font-family: var(--mono); font-size: 10px;
}
.d {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.d.red { background: var(--red); }
.d.teal { background: var(--teal); }
.d.azure { background: var(--azure); }
.d.amber { background: var(--amber); }

.hud-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(23,24,28,0.9); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px); box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  color: #fff; z-index: 3; animation: float 5.5s ease-in-out infinite;
}
.hud-card strong { display: block; font-size: 13px; letter-spacing: -0.01em; }
.hud-card small { display: block; font-size: 11px; color: #a6a9af; margin-top: 1px; }
.h1 { top: 12%; left: 5%; }
.h2 { top: 46%; right: 4%; animation-delay: -1.8s; }
.h3 { bottom: 12%; left: 16%; animation-delay: -3.2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(62,159,230,0.55), transparent);
  top: -10%; animation: scan 7s linear infinite; opacity: 0.5; pointer-events: none;
}
@keyframes scan {
  0% { top: -5%; }
  100% { top: 105%; }
}

.scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
  background: none; border: 0;
}
.scroll-cue i {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--azure), transparent);
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---------- Ticker ---------- */
.ticker {
  position: relative; z-index: 2;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  overflow: hidden; padding: 16px 0;
}
.ticker-track {
  display: flex; align-items: center; gap: 26px; width: max-content;
  animation: ticker 42s linear infinite;
  font-size: 12px; font-weight: 550; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute);
}
.ticker-track i {
  width: 4px; height: 4px; border-radius: 50%; background: var(--azure); opacity: 0.55; flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Story / stats ---------- */
.story { padding-top: 100px; }
.story .display { margin-bottom: 20px; }
.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px;
}
.stat {
  padding: 26px 20px; border-radius: var(--r); text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s ease;
}
.stat:hover { border-color: rgba(62,159,230,0.35); }
.stat b {
  display: block; font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #93c5f0);
  -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 6px;
}
.stat em { font-style: normal; font-size: 13px; color: var(--mute); }
.stat-bar {
  height: 2px; margin-top: 16px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden;
}
.stat-bar i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--azure), var(--teal));
  transition: width 1.2s var(--ease) 0.2s;
}
.stat.is-in .stat-bar i, [data-reveal].is-in .stat-bar i { width: var(--w); }

/* ---------- Explode layers ---------- */
.explode { overflow: hidden; }
.explode-scene {
  perspective: 1400px; min-height: 480px;
  display: grid; place-items: center; position: relative;
}
.explode-stack {
  position: relative; width: min(520px, 88vw); height: 360px;
  transform-style: preserve-3d;
  transform: rotateX(52deg) rotateZ(-18deg);
  transition: transform 0.1s linear;
}
.sheet {
  position: absolute; inset: 0; border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--paper);
  transition: transform 0.15s linear;
  will-change: transform;
}
.sheet svg { width: 100%; height: 100%; }
.sheet-tag {
  position: absolute; top: 12px; right: 12px;
  padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(23,24,28,0.88); color: #fff;
}
.sheet-tag.teal { background: rgba(42,184,166,0.92); color: #042; }
.sheet-tag.red { background: rgba(229,72,77,0.92); }
.explode-hint {
  margin-top: 28px; text-align: center; font-size: 13px; color: var(--mute);
}

/* ---------- Bento ---------- */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.bento-card {
  grid-column: span 4; border-radius: var(--r); padding: 28px;
  display: flex; flex-direction: column; gap: 12px; min-height: 300px;
  transition: transform 0.4s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.bento-card:hover {
  border-color: rgba(62,159,230,0.32);
  box-shadow: 0 28px 70px rgba(0,0,0,0.35), 0 0 0 1px rgba(62,159,230,0.08);
}
.bento-hero {
  grid-column: span 12; display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 0; align-items: stretch; min-height: 380px; padding: 0;
}
.bento-hero .bento-copy { padding: 42px; }
.bento-hero h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem); letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 12px;
}
.bento-card h3 { font-size: 1.28rem; letter-spacing: -0.025em; line-height: 1.2; }
.bento-card > p { color: var(--soft); font-size: 15px; line-height: 1.5; }
.bento-media { position: relative; overflow: hidden; min-height: 200px; }
.bento-hero .bento-media { min-height: 100%; }
.bento-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.bento-card:hover .bento-media img { transform: scale(1.04); }
.bento-media.pad {
  margin-top: auto; border-radius: 12px; border: 1px solid var(--line); min-height: 150px;
}
.media-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: translateX(-100%);
}
.bento-card:hover .media-shine { animation: shine 0.9s var(--ease); }
@keyframes shine {
  to { transform: translateX(100%); }
}
.mini-list { list-style: none; padding: 0; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.mini-list li {
  position: relative; padding-left: 18px; font-size: 14px; color: var(--soft);
}
.mini-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--azure);
}

.markup-stage {
  margin-top: auto; position: relative; height: 150px; border-radius: 12px;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px), #12141a;
  background-size: 24px 24px, 24px 24px, auto;
  border: 1px solid var(--line); overflow: hidden;
}
.md-cloud {
  position: absolute; top: 32px; left: 28px; width: 74px; height: 50px;
  border: 2.5px solid var(--red);
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  animation: cloud 3s ease-in-out infinite;
}
@keyframes cloud {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,72,77,0.35); }
  50% { box-shadow: 0 0 0 10px rgba(229,72,77,0); }
}
.md-leader {
  position: absolute; top: 52px; left: 100px; width: 22px; height: 1.5px; background: var(--red);
}
.md-callout {
  position: absolute; top: 28px; left: 122px; padding: 6px 10px; border-radius: 6px;
  background: rgba(229,72,77,0.12); border: 1px solid rgba(229,72,77,0.45);
  color: #ff8a8e; font-size: 12px; font-weight: 600;
}
.md-pills { position: absolute; bottom: 16px; left: 20px; display: flex; gap: 8px; }
.pill { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.pill.amber { background: rgba(245,166,35,0.15); color: var(--amber); }
.pill.teal { background: rgba(42,184,166,0.15); color: var(--teal); }
.pill.red { background: rgba(229,72,77,0.15); color: #ff8a8e; }

.search-demo { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.search-bar {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
  color: var(--soft); font-size: 14px; font-family: var(--mono); min-height: 46px;
}
.type-line { min-width: 1ch; }
.caret {
  width: 1.5px; height: 1em; background: var(--azure);
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.search-hits { display: flex; flex-wrap: wrap; gap: 8px; }
.search-hits span {
  padding: 6px 12px; border-radius: 999px; background: rgba(62,159,230,0.1);
  color: var(--azure-hot); font-size: 12px; font-weight: 600;
}
.search-hits .hit-teal { background: rgba(42,184,166,0.12); color: var(--teal); }

.lock-demo {
  margin-top: auto; display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 22px; border-radius: 12px; border: 1px solid var(--line); background: #12141a;
}
.lock { position: relative; width: 44px; height: 56px; }
.lock .body {
  position: absolute; bottom: 0; left: 0; right: 0; height: 34px;
  border: 3px solid var(--ink); border-radius: 8px;
}
.lock .shackle {
  position: absolute; top: 0; left: 50%; width: 26px; height: 24px; margin-left: -13px;
  border: 3px solid var(--ink); border-bottom: 0; border-radius: 14px 14px 0 0;
}
.lock .body::after {
  content: ""; position: absolute; left: 50%; top: 10px; width: 8px; height: 8px;
  margin-left: -4px; border-radius: 50%; border: 2px solid var(--azure);
  box-shadow: 0 8px 0 -2px var(--azure);
}
.lock-tags { display: flex; gap: 8px; }
.lock-tags span {
  font-size: 11px; padding: 4px 8px; border-radius: 999px;
  background: rgba(255,255,255,0.05); color: var(--mute);
}

/* ---------- Playground ---------- */
.playground {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(62,159,230,0.1), transparent 55%),
    var(--bg);
}
.play-board {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line-2);
}
.play-tools {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 14px 16px; background: rgba(0,0,0,0.35); border-bottom: 1px solid var(--line);
}
.play-tool {
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: var(--soft); border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  transition: all 0.2s ease;
}
.play-tool:hover { color: var(--ink); border-color: var(--line-2); }
.play-tool.is-on {
  color: #031018; background: linear-gradient(180deg, var(--azure-hot), var(--azure));
  border-color: transparent;
}
.play-tool.ghost { margin-left: auto; }
.play-readout {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  margin-left: auto; padding-left: 12px;
}
.play-tool.ghost + .play-readout { margin-left: 0; }
.play-readout span { font-size: 11px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.08em; }
.play-readout strong { font-family: var(--mono); font-size: 18px; color: var(--teal); letter-spacing: -0.02em; }
.play-stage { position: relative; background: #0c0d12; }
#play-canvas {
  width: 100%; height: auto; display: block; cursor: crosshair;
  touch-action: none;
}
body.has-cursor #play-canvas { cursor: none; }
.play-legend {
  position: absolute; top: 14px; right: 14px; width: min(220px, 42%);
  padding: 12px; border-radius: 12px;
  background: rgba(10,12,18,0.88); border: 1px solid var(--line-2);
  backdrop-filter: blur(12px); font-size: 12px; color: var(--soft);
  max-height: 60%; overflow: auto;
}
.legend-empty { color: var(--mute); font-size: 12px; }
.legend-row {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 6px 0; border-bottom: 1px solid var(--line);
}
.legend-row:last-child { border-bottom: 0; }
.legend-row b { font-family: var(--mono); color: var(--ink); font-weight: 600; }

/* ---------- Takeoff ---------- */
.takeoff {
  background: radial-gradient(ellipse 50% 50% at 85% 50%, rgba(42,184,166,0.08), transparent), var(--bg);
}
.split {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center;
}
.split-copy .display { margin-bottom: 16px; }
.split-copy .lead { margin-bottom: 28px; }
.qty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qty { padding: 18px 16px; border-radius: var(--rs); }
.qty b {
  display: block; font-size: 1.45rem; font-family: var(--mono);
  letter-spacing: -0.02em; color: var(--teal); margin-bottom: 4px;
}
.qty em { font-style: normal; font-size: 12px; color: var(--mute); }

/* ---------- Compare ---------- */
.compare-sec {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(62,159,230,0.12), transparent 60%),
    #04050a;
}
.compare { max-width: 940px; margin-inline: auto; }
.compare-stage {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow);
  aspect-ratio: 800 / 520; user-select: none; touch-action: none;
}
.compare-layer { position: absolute; inset: 0; }
.compare-layer svg { width: 100%; height: 100%; }
.compare-layer.before { clip-path: inset(0 42% 0 0); }
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 58%; width: 2px;
  background: #fff; box-shadow: 0 0 24px rgba(62,159,230,0.7);
  transform: translateX(-50%); z-index: 3; pointer-events: none;
}
.compare-handle span {
  position: absolute; top: 50%; left: 50%; width: 48px; height: 48px;
  margin: -24px 0 0 -24px; border-radius: 50%; background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.compare-handle span::before, .compare-handle span::after {
  content: ""; position: absolute; top: 50%; width: 0; height: 0;
  border-style: solid; transform: translateY(-50%);
}
.compare-handle span::before {
  left: 12px; border-width: 6px 7px 6px 0; border-color: transparent #111 transparent transparent;
}
.compare-handle span::after {
  right: 12px; border-width: 6px 0 6px 7px; border-color: transparent transparent transparent #111;
}
.ctag {
  position: absolute; top: 16px; padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.ctag.red { left: 16px; background: rgba(229,72,77,0.92); color: #fff; }
.ctag.blue { right: 16px; background: rgba(21,128,255,0.92); color: #fff; }
.compare-range {
  width: 100%; margin-top: 18px; accent-color: var(--azure); cursor: ew-resize;
}
.compare-hint { text-align: center; margin-top: 10px; font-size: 13px; color: var(--mute); }

/* ---------- Keys ---------- */
.keys { background: var(--bg-2); }
.key-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.key-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: var(--rs);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}
.key-card:hover { border-color: rgba(62,159,230,0.35); }
.key-card kbd {
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  padding: 8px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-2);
  color: var(--azure-hot); white-space: nowrap;
}
.key-card span { font-size: 14.5px; color: var(--soft); }

/* ---------- Steps / roles ---------- */
.steps {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.step {
  border-radius: var(--r); padding: 28px 22px; min-height: 240px;
  transition: transform 0.35s var(--ease), border-color 0.35s ease;
}
.step:hover { border-color: rgba(62,159,230,0.32); }
.step-num {
  display: block; font-family: var(--mono); font-size: 13px; color: var(--azure);
  margin-bottom: 20px; letter-spacing: 0.1em;
}
.step h3 { font-size: 1.15rem; letter-spacing: -0.02em; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--soft); line-height: 1.5; }

.why {
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(62,159,230,0.08), transparent), var(--bg);
}
.chip-cloud {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 48px;
}
.chip {
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.03); font-size: 13.5px; color: var(--soft);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}
.chip:hover {
  border-color: rgba(62,159,230,0.4); color: var(--ink);
  background: rgba(62,159,230,0.12); transform: translateY(-2px);
}
.roles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.role {
  border-radius: var(--r); padding: 26px 22px;
  transition: transform 0.35s var(--ease), border-color 0.35s ease;
}
.role:hover { border-color: rgba(62,159,230,0.32); }
.role h3 { font-size: 1.1rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.role p { font-size: 14.5px; color: var(--soft); line-height: 1.5; }

/* ---------- Pricing ---------- */
.pricing {
  background:
    radial-gradient(ellipse 50% 40% at 50% 15%, rgba(62,159,230,0.12), transparent 55%),
    #04050a;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  align-items: stretch; margin-bottom: 64px;
}
.price-card {
  position: relative; border-radius: 24px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.35s var(--ease), border-color 0.35s ease;
}
.price-card.featured {
  border-color: rgba(62,159,230,0.5);
  background: linear-gradient(180deg, rgba(62,159,230,0.14), rgba(18,20,28,0.9));
  box-shadow: 0 30px 80px rgba(62,159,230,0.14), 0 20px 50px rgba(0,0,0,0.3);
  transform: scale(1.035); z-index: 1;
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 12px; border-radius: 999px;
  background: linear-gradient(180deg, var(--azure-hot), var(--azure));
  color: #031018; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.price-card h3 { font-size: 1.4rem; letter-spacing: -0.025em; margin-bottom: 6px; }
.price-amount { display: flex; align-items: baseline; gap: 10px; margin: 8px 0 4px; }
.price-amount span {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.08;
}
.price-amount small { font-size: 13px; color: var(--mute); }
.price-note { font-size: 14px; color: var(--soft); margin-bottom: 16px; }
.price-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.price-list li {
  position: relative; padding-left: 22px; font-size: 14.5px; color: var(--soft);
}
.price-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 13px;
}

.table-title {
  text-align: center; font-size: 1.1rem; letter-spacing: -0.02em;
  margin-bottom: 18px; color: var(--soft);
}
.table-scroll {
  overflow-x: auto; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 14px; }
th, td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute); background: rgba(255,255,255,0.03);
}
td:first-child { color: var(--ink); font-weight: 500; }
.yes { color: var(--teal); font-weight: 600; }
.no { color: #8a5a5c; }
.mid { color: var(--amber); }
tr:last-child td { border-bottom: 0; }
.table-footnote {
  margin-top: 16px; font-size: 12.5px; color: var(--mute);
  text-align: center; max-width: 70ch; margin-inline: auto; line-height: 1.5;
}

/* ---------- Download ---------- */
.download {
  position: relative; padding: 130px 0 150px; overflow: hidden;
}
.dl-orb {
  position: absolute; inset: 15% 8%;
  background: radial-gradient(ellipse at center, rgba(62,159,230,0.24), transparent 60%);
  pointer-events: none; animation: aura 7s ease-in-out infinite alternate;
}
.dl-icon-wrap {
  position: relative; width: 128px; height: 128px; margin: 0 auto 30px;
}
.dl-icon {
  width: 128px; height: 128px; border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 50px rgba(62,159,230,0.25);
  position: relative; z-index: 1;
}
.dl-ring {
  position: absolute; inset: -16px; border-radius: 40px;
  border: 1px solid rgba(62,159,230,0.35);
  animation: ring 2.8s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.92); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}
.download .display { margin-bottom: 16px; }
.download .lead { margin-bottom: 32px; }
.meta { font-size: 13px; color: var(--mute); margin-top: 18px; }

/* ---------- Footer ---------- */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line); padding: 40px 0 48px; background: #03040a;
}
.footer-inner { display: grid; gap: 22px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 28px; height: 28px; border-radius: 7px; }
.footer-brand strong { display: block; font-size: 14px; }
.footer-brand span { font-size: 12.5px; color: var(--mute); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { font-size: 13.5px; color: var(--soft); }
.footer-links a:hover { color: var(--ink); }
.footer-legal { font-size: 12px; color: var(--mute); line-height: 1.5; }

/* ---------- Legal pages ---------- */
.legal-page { min-height: 100vh; background: var(--bg); }
.legal-nav {
  position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line);
  background: rgba(5,6,10,0.86); backdrop-filter: blur(20px);
}
.legal-nav .nav-inner { height: 68px; }
.legal-shell {
  position: relative; z-index: 2; width: min(760px, calc(100% - 40px));
  margin: 0 auto; padding: 96px 0 120px;
}
.legal-shell h1 {
  font-size: clamp(2.5rem, 7vw, 4.6rem); line-height: 1;
  letter-spacing: -0.045em; margin-bottom: 24px;
}
.legal-shell h2 { font-size: 1.35rem; letter-spacing: -0.02em; margin: 42px 0 12px; }
.legal-shell p, .legal-shell li { color: var(--soft); line-height: 1.7; }
.legal-shell p + p { margin-top: 14px; }
.legal-shell ul { padding-left: 20px; margin-top: 12px; }
.legal-meta { color: var(--azure) !important; font-family: var(--mono); font-size: 13px; margin-bottom: 20px; }
.legal-note {
  margin-top: 34px; padding: 18px 20px; border: 1px solid var(--line-2); border-radius: 14px;
  background: rgba(255,255,255,0.035);
}
.legal-card { min-width: 0; overflow-wrap: anywhere; }
.legal-card table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .bento-hero { grid-template-columns: 1fr; }
  .bento-hero .bento-copy { padding: 28px; }
  .bento-card { grid-column: span 6; }
  .bento-hero { grid-column: span 12; }
  .steps, .roles { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .key-grid { grid-template-columns: 1fr 1fr; }
  .aw-body { grid-template-columns: 1fr; }
  .aw-rail { display: none; }
  .h3 { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-burger { display: grid; }
  .hero-title { font-size: clamp(2.3rem, 10vw, 3.2rem); line-height: 1.03; }
  .hero-title .line { overflow: visible; }
  .bento-card { grid-column: span 12; }
  .steps, .roles, .key-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .play-legend { position: static; width: auto; margin: 0 12px 12px; max-height: none; }
  .play-tools .play-tool.ghost { margin-left: 0; }
  .play-readout { width: 100%; align-items: flex-start; margin-left: 0; padding-left: 0; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: auto; }
  .cursor { display: none; }
  .legal-shell { padding-top: 72px; }
}
@media (max-width: 480px) {
  .nav-actions .btn-primary { display: none; }
  .stat-band, .qty-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-split] .word {
    opacity: 1; transform: none; filter: none;
  }
  .cursor, .fx-canvas { display: none; }
  .ticker-track { animation: none; }
}

/* --------------------------------------------------------------------------
   Cinematic product-story pass
   A quieter, more editorial presentation: one large idea at a time.
   -------------------------------------------------------------------------- */
.cinematic-product {
  --bg: #000;
  --bg-2: #050507;
  --elev: #111114;
  --ink: #f5f5f7;
  --soft: #a1a1a6;
  --mute: #86868b;
  --azure: #0a84ff;
  --azure-hot: #2997ff;
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .18);
  --r: 30px;
  --rs: 20px;
  --shadow: 0 32px 84px rgba(0, 0, 0, .52);
  --glow: 0 36px 120px rgba(10, 132, 255, .22);
  background: #000;
}
.cinematic-product .fx-canvas,
.cinematic-product .noise,
.cinematic-product .cursor,
.cinematic-product .scroll-progress { display: none; }
.cinematic-product,
.cinematic-product a,
.cinematic-product button { cursor: auto !important; }
.cinematic-product .vignette {
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), transparent 35%, rgba(0, 0, 0, .38));
}
.cinematic-product .nav { height: 48px; }
.cinematic-product .nav-inner { width: min(980px, calc(100% - 32px)); }
.cinematic-product .nav.is-scrolled { background: rgba(0, 0, 0, .74); }
.cinematic-product .nav-brand { font-size: 12px; font-weight: 600; }
.cinematic-product .nav-brand img { width: 22px; height: 22px; border-radius: 6px; }
.cinematic-product .nav-links { gap: 22px; }
.cinematic-product .nav-links a { font-size: 12px; color: #d2d2d7; }
.cinematic-product .btn { font-weight: 500; }
.cinematic-product .btn-primary {
  background: #0077ed;
  color: #fff;
  box-shadow: none;
}
.cinematic-product .btn-primary:hover { background: #0071e3; box-shadow: none; }
.cinematic-product .btn-primary::after { display: none; }
.cinematic-product .btn-glass {
  border: 0;
  background: transparent;
  color: var(--azure-hot);
}
.cinematic-product .btn-glass:hover { background: transparent; color: #fff; }
.cinematic-product .hero {
  min-height: 940px;
  padding: 112px 0 80px;
  background:
    radial-gradient(ellipse 70% 34% at 50% 78%, rgba(12, 89, 161, .34), transparent 67%),
    linear-gradient(180deg, #050506 0%, #000 70%);
}
.cinematic-product .mesh-orb { display: none; }
.cinematic-product .hero-blueprint {
  opacity: .75;
  background-image:
    linear-gradient(rgba(52, 138, 235, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 138, 235, .1) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 66% 50% at 50% 82%, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 66% 50% at 50% 82%, #000 0%, transparent 68%);
}
.cinematic-product .hero-content { width: min(840px, calc(100% - 40px)); margin-bottom: 46px; }
.cinematic-product .hero-badge {
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  color: var(--soft);
}
.cinematic-product .badge-sep { display: none; }
.cinematic-product .badge-live { color: var(--azure-hot); }
.cinematic-product .pulse-dot { width: 6px; height: 6px; background: #30d158; box-shadow: none; animation: none; }
.cinematic-product .hero-title {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: clamp(3.6rem, 8vw, 7.25rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .92;
}
.cinematic-product .grad {
  background: linear-gradient(105deg, #fff 8%, #8fc9ff 88%);
  -webkit-background-clip: text;
  background-clip: text;
}
.cinematic-product .hero-sub { max-width: 54ch; font-size: 19px; color: var(--soft); }
.cinematic-product .hero-ctas { margin-bottom: 22px; }
.cinematic-product .btn-lg { height: 48px; padding: 0 22px; font-size: 16px; }
.cinematic-product .hero-trust { gap: 8px 20px; }
.cinematic-product .trust-item b { color: #f5f5f7; font-family: var(--font); font-size: 13px; }
.cinematic-product .trust-item { font-size: 12px; }
.cinematic-product .hero-stage { width: min(1240px, calc(100% - 32px)); }
.cinematic-product .stage-aura { inset: 12% 10% -12%; background: rgba(10, 132, 255, .42); filter: blur(110px); }
.cinematic-product .app-shell {
  border-radius: 24px;
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 50px 120px rgba(0, 0, 0, .72), 0 0 0 1px rgba(255, 255, 255, .04) inset;
}
.cinematic-product .aw-titlebar { height: 44px; background: #1d1d1f; }
.cinematic-product .aw-toolbar { padding: 10px 12px; background: #151518; }
.cinematic-product .hud-card { border-radius: 14px; box-shadow: 0 12px 36px rgba(0, 0, 0, .42); }
.cinematic-product .scroll-cue,
.cinematic-product .ticker { display: none; }
.cinematic-product .section { padding: 170px 0; }
.cinematic-product .wrap { width: min(1100px, calc(100% - 40px)); }
.cinematic-product .wrap.narrow { width: min(840px, calc(100% - 40px)); }
.cinematic-product .eyebrow { color: var(--azure-hot); font-size: 12px; letter-spacing: .04em; text-transform: none; }
.cinematic-product .display {
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .98;
}
.cinematic-product .section-sub,
.cinematic-product .lead { font-size: 19px; color: var(--soft); }
.cinematic-product .story {
  padding-top: 170px;
  background: linear-gradient(180deg, #000, #070709 70%, #000);
}
.cinematic-product .story .display { max-width: 18ch; }
.cinematic-product .stat-band { margin-top: 68px; gap: 0; border-block: 1px solid var(--line); }
.cinematic-product .stat {
  padding: 26px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}
.cinematic-product .stat:last-child { border-right: 0; }
.cinematic-product .stat b { background: none; color: #f5f5f7; }
.cinematic-product .stat-bar { display: none; }
.cinematic-product .explode {
  padding-top: 130px;
  background: radial-gradient(ellipse 52% 28% at 50% 58%, rgba(39, 150, 247, .18), transparent 74%), #000;
}
.cinematic-product .explode-scene { min-height: 580px; }
.cinematic-product .explode-hint { color: var(--mute); }
.cinematic-product #product { background: #f5f5f7; color: #1d1d1f; }
.cinematic-product #product .section-sub,
.cinematic-product #product .bento-card > p,
.cinematic-product #product .mini-list li { color: #6e6e73; }
.cinematic-product #product .kicker,
.cinematic-product #product .eyebrow { color: #0066cc; }
.cinematic-product .bento { gap: 18px; }
.cinematic-product .bento-card {
  border: 0;
  border-radius: 30px;
  background: #fff;
  box-shadow: none;
  min-height: 350px;
  padding: 34px;
}
.cinematic-product .bento-card:hover { border: 0; box-shadow: none; }
.cinematic-product .bento-hero { min-height: 500px; padding: 0; grid-template-columns: .92fr 1.08fr; }
.cinematic-product .bento-hero .bento-copy { padding: 56px 48px; }
.cinematic-product .bento-hero h3 { font-size: clamp(2.2rem, 3.4vw, 3.4rem); letter-spacing: -.05em; }
.cinematic-product .bento-card h3 { font-size: 1.65rem; letter-spacing: -.04em; }
.cinematic-product .bento-media.pad,
.cinematic-product .markup-stage,
.cinematic-product .lock-demo { border-color: #d2d2d7; background: #f5f5f7; }
.cinematic-product .markup-stage {
  background-image: linear-gradient(rgba(0, 0, 0, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .06) 1px, transparent 1px);
  background-color: #f5f5f7;
}
.cinematic-product .search-bar { background: #f5f5f7; border-color: #d2d2d7; color: #6e6e73; }
.cinematic-product .search-hits span { background: #e8f2ff; color: #0066cc; }
.cinematic-product .playground,
.cinematic-product .takeoff,
.cinematic-product .compare-sec,
.cinematic-product .keys,
.cinematic-product .why,
.cinematic-product .pricing { background: #000; }
.cinematic-product .play-board,
.cinematic-product .compare-stage { border-radius: 28px; }
.cinematic-product .split { gap: 80px; }
.cinematic-product .qty { border: 0; border-radius: 0; background: transparent; border-top: 1px solid var(--line); box-shadow: none; padding: 18px 0; }
.cinematic-product .key-grid { gap: 0; border-block: 1px solid var(--line); }
.cinematic-product .key-card { border: 0; border-right: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; }
.cinematic-product .key-card:nth-child(3n) { border-right: 0; }
.cinematic-product .steps { gap: 0; border-top: 1px solid var(--line); }
.cinematic-product .step { border: 0; border-right: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; }
.cinematic-product .step:last-child { border-right: 0; }
.cinematic-product .chip { background: transparent; }
.cinematic-product .roles { gap: 18px; }
.cinematic-product .role { border: 0; border-radius: 28px; background: #111114; box-shadow: none; }
.cinematic-product .pricing-grid { gap: 18px; }
.cinematic-product .price-card { border: 0; border-radius: 28px; background: #111114; box-shadow: none; }
.cinematic-product .price-card.featured { transform: none; background: linear-gradient(180deg, #14365b, #101116 54%); }
.cinematic-product .compare-table { margin-top: 100px; }
.cinematic-product .download { background: radial-gradient(ellipse 44% 46% at 50% 50%, rgba(7, 102, 205, .4), transparent 72%), #000; }
.cinematic-product .dl-orb { display: none; }
.cinematic-product .footer { background: #000; }
@media (max-width: 1024px) {
  .cinematic-product .hero { min-height: auto; }
  .cinematic-product .key-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .cinematic-product .key-card:nth-child(2n) { border-right: 0; }
}
@media (max-width: 768px) {
  .cinematic-product .section { padding: 96px 0; }
  .cinematic-product .hero { padding-top: 96px; }
  .cinematic-product .hero-title { font-size: clamp(3.25rem, 14vw, 4.7rem); }
  .cinematic-product .hero-sub { font-size: 17px; }
  .cinematic-product .hero-trust { display: none; }
  .cinematic-product .app-shell { border-radius: 14px; }
  .cinematic-product .stat-band { grid-template-columns: 1fr 1fr; }
  .cinematic-product .stat:nth-child(2) { border-right: 0; }
  .cinematic-product .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .cinematic-product .bento-hero { grid-template-columns: 1fr; }
  .cinematic-product .bento-hero .bento-copy { padding: 38px 30px; }
  .cinematic-product .bento-card { border-radius: 24px; }
  .cinematic-product .key-card,
  .cinematic-product .step { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .cinematic-product .step:last-child { border-bottom: 0; }
}
