:root {
  --bg: #07070b;
  --bg-soft: #0d0d13;
  --panel: #111118;
  --line: rgba(255, 255, 255, 0.105);
  --muted: #9696a3;
  --text: #f5f4f1;
  --acid: #c8ff35;
  --violet: #875cff;
  --pink: #fb3e91;
  --cyan: #42d7ff;
  --red: #ff364a;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(135, 92, 255, .13), transparent 27rem),
    radial-gradient(circle at 5% 34%, rgba(66, 215, 255, .05), transparent 30rem),
    var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.section-shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }

.topbar {
  width: min(1320px, calc(100% - 32px));
  height: 72px;
  margin: 16px auto 0;
  padding: 0 14px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 16px;
  z-index: 10;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 10, 15, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 50px rgba(0,0,0,.24);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; }
.brand-logo { min-width: 76px; padding: 7px 10px 6px; display: inline-flex; align-items: baseline; border: 1px solid rgba(255,255,255,.17); border-radius: 5px; color: #f4f3f1; background: #050508; box-shadow: inset 0 0 0 1px rgba(255,255,255,.035); font-size: 15px; font-weight: 800; letter-spacing: .05em; line-height: 1; }
.brand-logo i { color: #7379ff; font-style: normal; }
.topbar nav { display: flex; gap: 30px; color: #b7b6c0; font-size: 13px; }
.topbar nav a { transition: color .2s; }
.topbar nav a:hover { color: white; }
.nav-cta { padding: 12px 17px; border: 1px solid var(--line); border-radius: 12px; font-size: 13px; font-weight: 700; background: rgba(255,255,255,.06); }
.nav-cta span { color: var(--acid); margin-left: 5px; }

.hero { min-height: 800px; padding: 112px 0 100px; display: grid; grid-template-columns: .85fr 1.35fr; align-items: center; gap: 44px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin-bottom: 22px; display: flex; align-items: center; gap: 9px; color: #a6a5b2; font: 500 11px/1 "DM Mono", monospace; letter-spacing: .13em; text-transform: uppercase; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(200,255,53,.1), 0 0 18px var(--acid); }
h1, h2 { margin: 0; font-weight: 600; letter-spacing: -.065em; line-height: .98; }
h1 { font-size: clamp(54px, 5.2vw, 82px); }
h2 { font-size: clamp(44px, 5vw, 72px); }
h1 em, h2 em { font-family: Georgia, serif; font-weight: 400; color: var(--acid); }
.hero-lead { max-width: 560px; margin: 28px 0 32px; color: #b1b0ba; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; border: 1px solid var(--line); border-radius: 13px; font-size: 13px; font-weight: 700; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #0a0a0c; border-color: var(--acid); background: var(--acid); box-shadow: 0 12px 40px rgba(200,255,53,.14); }
.button-primary:hover { background: #dcff7c; }
.button-ghost { color: #d6d5dc; background: rgba(255,255,255,.025); }
.play { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 8px; }
.compatibility { margin-top: 30px; display: flex; gap: 8px; flex-wrap: wrap; }
.compatibility span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 7px; color: #777683; font: 500 9px/1 "DM Mono", monospace; letter-spacing: .08em; }

.hero-stage { min-width: 0; position: relative; perspective: 1400px; }
.stage-glow { position: absolute; inset: 15% 10%; background: rgba(135,92,255,.25); filter: blur(90px); }
.resolve-window { position: relative; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; overflow: hidden; background: #0b0b10; box-shadow: 0 45px 100px rgba(0,0,0,.52), 0 0 0 1px rgba(0,0,0,.4); transform: rotateY(-5deg) rotateX(2deg); transform-origin: center; }
.window-bar { height: 44px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: #82818c; background: linear-gradient(#17171d, #111116); font: 500 8px/1 "DM Mono", monospace; letter-spacing: .06em; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; background: #393940; border-radius: 50%; }
.window-dots i:first-child { background: #ff6257; }
.window-mode { color: var(--acid); }
.resolve-proof { min-height: 510px; padding: 17px; position: relative; overflow: hidden; background: radial-gradient(circle at 82% 6%, rgba(128,83,255,.2), transparent 33%), #09090d; }
.resolve-proof::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.resolve-proof-head, .resolve-proof-foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #92919c; font: 500 7px/1 "DM Mono", monospace; letter-spacing: .1em; }
.resolve-proof-head > div { display: flex; align-items: center; gap: 7px; color: var(--acid); }
.resolve-proof-head small { color: #6e6d78; font: 500 7px "DM Mono", monospace; }
.proof-led { width: 5px; height: 5px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px var(--acid); }
.resolve-shot { height: 418px; margin: 13px 0 12px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: #05050a; box-shadow: 0 24px 45px rgba(0,0,0,.35); }
.resolve-shot img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; filter: saturate(.94) contrast(1.03) brightness(.93); }
.resolve-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,8,.18), transparent 40%, rgba(101,70,198,.12)); pointer-events: none; }
.resolve-scan { position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, transparent 45%, rgba(200,255,53,.08) 50%, transparent 55%); transform: translateX(-100%); animation: resolve-scan 5.5s ease-in-out infinite; }
.resolve-callout { position: absolute; z-index: 3; padding: 8px 10px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(200,255,53,.28); border-radius: 7px; color: #dedde6; background: rgba(8,8,12,.79); box-shadow: 0 12px 30px rgba(0,0,0,.35); font-size: 7px; backdrop-filter: blur(8px); }
.resolve-callout b { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 4px; color: #0a0a0d; background: var(--acid); font: 700 7px "DM Mono", monospace; }
.resolve-callout i { color: var(--acid); font-size: 6px; font-style: normal; }
.callout-one { left: 4%; top: 10%; }.callout-two { right: 3%; bottom: 15%; }
.resolve-proof-foot { align-items: flex-start; }.resolve-proof-foot span { color: #686772; }.resolve-proof-foot b { max-width: 360px; color: #c2c1ca; font-weight: 500; line-height: 1.5; text-align: right; }
.window-body { height: 510px; display: grid; grid-template-columns: 78px 1fr 165px; }
.node-rail { padding: 17px 10px; border-right: 1px solid var(--line); background: #0d0d12; }
.node { margin-bottom: 9px; padding: 10px 4px 8px; display: grid; place-items: center; gap: 4px; border: 1px solid transparent; border-radius: 8px; color: #65646f; font-size: 7px; }
.node b { font: 600 11px/1 "DM Mono", monospace; }
.node.active { color: var(--text); border-color: rgba(200,255,53,.22); background: rgba(200,255,53,.07); }
.node.active b { color: var(--acid); }
.viewer { position: relative; min-width: 0; display: grid; place-items: center; overflow: hidden; background: #050508; }
.viewer-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 30px 30px; }
.phone { position: relative; padding: 7px; border: 1px solid rgba(255,255,255,.22); border-radius: 28px; background: #08080b; box-shadow: 0 25px 50px rgba(0,0,0,.5); }
.phone::before { content: ""; position: absolute; z-index: 3; width: 36%; height: 4px; top: 7px; left: 32%; border-radius: 0 0 5px 5px; background: #09090b; }
.phone-hero { width: 196px; }
.phone-screen { position: relative; aspect-ratio: 9/16; overflow: hidden; border-radius: 22px; }
.video-gradient { background: linear-gradient(145deg, #6039b5 0%, #1f405c 45%, #131319 100%); }
.subject-shape { position: absolute; inset: 19% 16% 0; border-radius: 48% 48% 20% 20%; background: linear-gradient(160deg, #dcd7ff, #6b5b90 40%, #111118 80%); filter: saturate(.7); }
.subject-shape::before { content: ""; position: absolute; width: 45%; aspect-ratio: 1; left: 27%; top: -12%; border-radius: 50%; background: linear-gradient(145deg, #e7ddcf, #805e65); }
.subject-shape span { position: absolute; width: 80%; height: 3px; top: 46%; left: 10%; background: rgba(200,255,53,.75); box-shadow: 0 0 15px var(--acid); transform: rotate(-8deg); }
.scan-line { position: absolute; z-index: 2; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); box-shadow: 0 0 16px var(--cyan); animation: scan 3.6s ease-in-out infinite; }
.safe-zone { position: absolute; z-index: 2; inset: 15% 19% 23% 8%; border: 1px dashed rgba(200,255,53,.8); background: rgba(200,255,53,.035); }
.safe-zone::before, .safe-zone::after { content: ""; position: absolute; width: 10px; height: 10px; border-color: var(--acid); border-style: solid; }
.safe-zone::before { left: -1px; top: -1px; border-width: 2px 0 0 2px; }
.safe-zone::after { right: -1px; bottom: -1px; border-width: 0 2px 2px 0; }
.safe-zone > span { position: absolute; top: -15px; left: -1px; color: var(--acid); font: 500 6px/1 "DM Mono", monospace; }
.social-ui { position: absolute; z-index: 3; inset: 0; font-size: 6px; }
.ui-side { position: absolute; right: 6px; bottom: 43px; display: grid; gap: 9px; text-align: center; }
.ui-side > span { display: grid; place-items: center; font-size: 15px; text-shadow: 0 1px 6px #000; }
.ui-side small { margin-top: 2px; font: 500 5px "DM Mono", monospace; }
.ui-bottom { position: absolute; left: 9px; right: 35px; bottom: 12px; text-shadow: 0 1px 5px #000; }
.ui-bottom b { font-size: 6px; }
.ui-bottom p { margin: 3px 0; font-size: 5px; }
.audio-line { font-size: 5px; }
.viewer-chip { position: absolute; padding: 6px 8px; border: 1px solid rgba(255,255,255,.1); border-radius: 5px; background: rgba(11,11,16,.72); backdrop-filter: blur(6px); color: #8c8b97; font: 500 6px/1 "DM Mono", monospace; }
.chip-one { left: 12px; top: 14px; color: var(--acid); }
.chip-two { right: 12px; bottom: 14px; }
.inspector { padding: 15px 12px; border-left: 1px solid var(--line); background: #101015; color: #adacb6; font-size: 7px; }
.inspector-head { padding: 0 0 13px; display: flex; justify-content: space-between; color: #eee; font-weight: 600; }
.inspector-head i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px var(--acid); }
.control-group { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.07); }
.control-group label { display: block; margin-bottom: 9px; color: #666570; font: 500 6px "DM Mono", monospace; letter-spacing: .08em; }
.select-row { padding: 8px; display: flex; justify-content: space-between; border: 1px solid var(--line); border-radius: 5px; background: #17171d; }
.switch-row { margin: 8px 0; display: flex; justify-content: space-between; align-items: center; }
.switch { width: 20px; height: 10px; display: inline-block; position: relative; border-radius: 10px; background: #2a2a31; }
.switch::after { content: ""; width: 6px; height: 6px; position: absolute; left: 2px; top: 2px; border-radius: 50%; background: #72717b; transition: .2s; }
.switch.on { background: rgba(200,255,53,.3); }
.switch.on::after { left: 12px; background: var(--acid); }
.slider-row { margin: 10px 0; display: grid; grid-template-columns: 1fr 48px 20px; align-items: center; gap: 4px; }
.slider-row > i { height: 2px; background: #34343b; }
.slider-row > i b { display: block; height: 100%; background: var(--violet); }
.slider-row small { color: #777681; font-size: 6px; text-align: right; }
.floating-pill { position: absolute; padding: 10px 13px 10px 9px; display: flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; color: #aaa9b3; background: rgba(16,16,22,.88); backdrop-filter: blur(12px); font-size: 9px; box-shadow: 0 15px 30px rgba(0,0,0,.28); }
.floating-pill span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 6px; color: #0a0a0d; background: var(--acid); font: 700 7px "DM Mono", monospace; }
.pill-a { left: -16px; top: 16%; animation: float 5s ease-in-out infinite; }
.pill-b { right: -13px; top: 44%; animation: float 5s .8s ease-in-out infinite; }
.pill-c { left: 16%; bottom: -18px; animation: float 5s 1.4s ease-in-out infinite; }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.proof-strip div { min-height: 150px; padding: 34px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border: 0; }
.proof-strip strong { font-size: 30px; font-weight: 500; letter-spacing: -.04em; }
.proof-strip span { margin-top: 5px; color: #74737e; font: 500 9px "DM Mono", monospace; text-transform: uppercase; letter-spacing: .09em; }

.features, .preview-section, .closing { padding-block: 140px; }
.section-heading { max-width: 710px; margin-bottom: 64px; }
.section-heading p { max-width: 520px; margin: 24px 0 0; color: #9695a1; line-height: 1.75; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered p { margin-inline: auto; }
.features-intro { margin-bottom: 64px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 80px; }
.features-intro .section-heading { margin-bottom: 0; }
.workflow-demo { height: 420px; padding: 13px; display: grid; grid-template-rows: auto 1fr; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.workflow-demo-head { min-height: 42px; padding: 0 8px 10px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #73727e; font: 500 8px "DM Mono", monospace; letter-spacing: .09em; }
.workflow-demo-head a { color: var(--acid); text-transform: none; letter-spacing: 0; }
.workflow-video { min-height: 0; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: #050508; }
.workflow-video iframe { width: 100%; height: 100%; position: absolute; inset: 0; border: 0; }
.feature-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 16px; }
.feature-card { min-height: 440px; padding: 28px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); }
.feature-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% 5%, rgba(135,92,255,.09), transparent 40%); }
.feature-card h3, .motion-card h3 { position: relative; margin: 0 0 10px; font-size: 22px; letter-spacing: -.035em; }
.feature-card p, .motion-card p { position: relative; max-width: 500px; margin: 0; color: #8e8d99; font-size: 13px; line-height: 1.7; }
.card-number { position: absolute; top: 24px; left: 25px; color: #5e5d68; font: 500 9px "DM Mono", monospace; }
.feature-card.wide { min-height: 250px; grid-column: 1 / -1; }
.feature-copy-inline { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 40px; }
.feature-visual { position: absolute; left: 0; right: 0; top: 10px; height: 270px; }
.platform-stack { perspective: 800px; }
.stack-card { width: 180px; height: 210px; padding: 18px; position: absolute; top: 24px; left: 50%; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; font: 600 10px "DM Mono", monospace; box-shadow: 0 28px 45px rgba(0,0,0,.32); }
.stack-card span { font-size: 25px; }
.stack-ig { margin-left: -200px; transform: rotate(-9deg) translateY(20px); background: linear-gradient(145deg, #7d32ba, #e33f73 60%, #ff8d3c); }
.stack-yt { z-index: 2; margin-left: -90px; background: linear-gradient(145deg, #ff263e, #9e071a); }
.stack-tt { margin-left: 25px; transform: rotate(9deg) translateY(20px); background: linear-gradient(145deg, #16161d, #073f44); box-shadow: 8px 0 0 rgba(255,37,96,.7), -8px 0 0 rgba(45,251,255,.65), 0 28px 45px rgba(0,0,0,.32); }
.controls-visual { width: calc(100% - 54px); height: auto; left: 27px; top: 75px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #0b0b10; }
.controls-visual > div { min-height: 48px; padding: 0 12px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.06); color: #aaa9b3; font-size: 10px; }
.controls-visual > div:last-child { border: 0; }
.controls-visual b { width: 105px; height: 3px; position: relative; background: #2c2c33; }
.controls-visual b i { width: 68%; height: 100%; display: block; background: var(--violet); }
.safe-visual { display: grid; place-items: center; }
.safe-frame { width: 150px; aspect-ratio: 9/14; position: relative; border: 1px solid #494852; border-radius: 12px; background: linear-gradient(160deg, #23232d, #0b0b10); }
.safe-frame span { position: absolute; inset: 14% 17% 22% 9%; border: 1px dashed var(--acid); background: rgba(200,255,53,.04); }
.safe-frame span::before, .safe-frame span::after { content: ""; position: absolute; width: 18px; height: 18px; border: solid var(--acid); }
.safe-frame span::before { left: -1px; top: -1px; border-width: 2px 0 0 2px; }
.safe-frame span::after { right: -1px; bottom: -1px; border-width: 0 2px 2px 0; }
.safe-frame i { position: absolute; left: 9%; top: 8%; color: var(--acid); font: 500 7px "DM Mono", monospace; }
.install-flow { display: flex; align-items: center; justify-content: flex-end; gap: 16px; color: #565560; }
.install-flow span { min-width: 130px; padding: 13px 14px; display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 10px; color: #a8a7b1; background: rgba(255,255,255,.02); font-size: 10px; }
.install-flow b { width: 22px; height: 22px; display: grid; place-items: center; color: #09090b; background: var(--acid); border-radius: 6px; font: 700 8px "DM Mono", monospace; }

.preview-section { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(135,92,255,.045), rgba(0,0,0,0) 25%); }
.preview-console { overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 26px; background: #0c0c11; box-shadow: 0 45px 110px rgba(0,0,0,.45); }
.platform-tabs { padding: 10px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; border-bottom: 1px solid var(--line); background: #101016; }
.platform-tab { height: 52px; border: 1px solid transparent; border-radius: 12px; color: #777681; background: transparent; cursor: pointer; font-size: 11px; transition: .25s; }
.platform-tab:hover { color: #cccbd3; background: rgba(255,255,255,.025); }
.platform-tab.active { color: white; border-color: var(--line); background: rgba(255,255,255,.055); box-shadow: inset 0 -2px var(--platform-color, var(--pink)); }
.console-body { min-height: 750px; display: grid; grid-template-columns: 1.28fr .72fr; }
.console-demo { min-height: 750px; position: relative; display: grid; place-items: center; overflow: hidden; border-right: 1px solid var(--line); background: radial-gradient(circle at center, rgba(135,92,255,.14), transparent 45%), #07070a; }
.console-demo::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(circle at center, black, transparent 75%); }
.demo-meta { position: absolute; top: 22px; left: 24px; right: 24px; display: flex; justify-content: space-between; color: #65646e; font: 500 8px "DM Mono", monospace; letter-spacing: .08em; }
.demo-meta span { display: flex; align-items: center; gap: 7px; color: var(--acid); }
.demo-meta i { width: 5px; height: 5px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px var(--acid); }
.platform-image-shell { width: min(355px, 78%); height: 645px; position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: #09090d; box-shadow: 0 35px 65px rgba(0,0,0,.48); transition: transform .25s ease; }
.platform-preview-image { width: 100%; height: 100%; position: absolute; inset: 0; display: block; object-fit: contain; opacity: 0; visibility: hidden; transform: translateY(8px) scale(.985); transition: opacity .28s ease, transform .28s ease, visibility .28s; }
.platform-preview-image.visible { opacity: 1; visibility: visible; transform: none; }
.phone-demo { width: 255px; --ui-opacity: .92; transition: transform .25s ease; }
.demo-scene { background: #08080d; }
.demo-video { width: 100%; height: 100%; position: absolute; inset: 0; border: 0; z-index: 0; object-fit: cover; }
.dynamic-safe-zone { position: absolute; z-index: 2; inset: 12% 18% 20% 7%; border: 1px dashed rgba(200,255,53,.75); transition: opacity .25s; }
.dynamic-safe-zone span { position: absolute; top: -17px; left: 0; color: var(--acid); font: 500 6px "DM Mono", monospace; }
.platform-overlay { position: absolute; z-index: 3; inset: 0; opacity: 0; pointer-events: none; transition: opacity .28s; font-size: 7px; }
.platform-overlay.visible { opacity: var(--ui-opacity); }
.platform-overlay .ui-side { right: 9px; bottom: 54px; gap: 11px; }
.platform-overlay .ui-side > span { font-size: 18px; }
.platform-overlay .ui-side small { font-size: 6px; }
.platform-overlay .ui-bottom { left: 12px; right: 43px; bottom: 16px; }
.platform-overlay .ui-bottom b { font-size: 8px; }
.platform-overlay .ui-bottom p, .platform-overlay .audio-line { font-size: 6px; }
.top-story, .shorts-mark, .tiktok-top { position: absolute; left: 14px; top: 17px; font-size: 10px; font-weight: 700; text-shadow: 0 1px 5px #000; }
.tiktok-top { left: 50%; transform: translateX(-50%); white-space: nowrap; }
.avatar-mini { width: 23px; height: 23px; border: 1px solid white; border-radius: 50%; font-size: 8px !important; background: var(--violet); }
.subscribe-mini { width: max-content; margin-top: 5px; padding: 3px 6px; border-radius: 3px; background: var(--red); font-size: 5px; }
.console-controls { padding: 30px; background: #101016; }
.control-title { padding-bottom: 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.control-title > div { display: grid; gap: 3px; }
.control-title span { color: var(--acid); font-size: 12px; font-weight: 800; }
.control-title b { font: 500 8px "DM Mono", monospace; letter-spacing: .08em; }
.control-title small { color: #777681; font: 500 7px "DM Mono", monospace; }
.control-block { padding: 28px 0; border-bottom: 1px solid var(--line); }
.control-block > label { display: block; margin-bottom: 14px; color: #5f5e68; font: 500 8px "DM Mono", monospace; letter-spacing: .1em; }
.capture-info { min-height: 65px; padding: 13px; display: grid; align-content: center; gap: 5px; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 9px; color: #d3d2db; background: rgba(255,255,255,.018); font-size: 11px; }
.capture-info:last-child { border-bottom: 0; }
.capture-info small { color: #72717c; font: 500 7px "DM Mono", monospace; }
.toggle-row { width: 100%; min-height: 54px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 10px; color: #aaa9b3; background: transparent; cursor: pointer; }
.toggle-row:hover { background: rgba(255,255,255,.03); }
.toggle-row > span { display: flex; align-items: center; gap: 10px; font-size: 11px; }
.toggle-row > span > i { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; color: #696873; font: 500 8px "DM Mono", monospace; }
.toggle-row > b { width: 34px; height: 17px; position: relative; border-radius: 14px; background: #292930; }
.toggle-row > b i { width: 11px; height: 11px; position: absolute; left: 3px; top: 3px; border-radius: 50%; background: #777680; transition: left .2s, background .2s; }
.toggle-row.active > b { background: rgba(200,255,53,.22); }
.toggle-row.active > b i { left: 20px; background: var(--acid); box-shadow: 0 0 10px rgba(200,255,53,.4); }
.range-row { margin: 18px 0; display: grid; grid-template-columns: 1fr 120px 35px; align-items: center; gap: 11px; color: #aaa9b3; font-size: 10px; }
.range-row output { color: #777681; font: 500 8px "DM Mono", monospace; text-align: right; }
input[type="range"] { height: 3px; appearance: none; border-radius: 3px; outline: none; background: linear-gradient(90deg, var(--violet) 70%, #303038 70%); }
input[type="range"]::-webkit-slider-thumb { width: 11px; height: 11px; appearance: none; border: 2px solid #111116; border-radius: 50%; background: #fff; box-shadow: 0 0 0 1px #555; cursor: pointer; }
.control-note { margin-top: 28px; padding: 15px; display: flex; gap: 12px; border: 1px solid rgba(200,255,53,.12); border-radius: 10px; background: rgba(200,255,53,.035); }
.control-note span { color: var(--acid); font: 500 8px "DM Mono", monospace; }
.control-note p { margin: 0; color: #787782; font-size: 9px; line-height: 1.6; }
.motion-grid { margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.motion-card { padding: 18px 18px 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.018); }
.motion-card h3 { padding-inline: 5px; font-size: 16px; }
.motion-card p { padding-inline: 5px; font-size: 11px; }
.motion-demo { height: 190px; margin-bottom: 20px; position: relative; overflow: hidden; border-radius: 12px; background: #0d0d13; }
.motion-demo > span { position: absolute; left: 12px; top: 12px; color: #5e5d68; font: 500 7px "DM Mono", monospace; }
.motion-scan { background: linear-gradient(145deg, #181721, #0c0c11); }
.motion-scan div { width: 120px; height: 120px; position: absolute; left: calc(50% - 60px); top: 35px; border: 1px solid #3b3a45; border-radius: 14px; }
.motion-scan div::before { content: ""; position: absolute; left: -10px; right: -10px; height: 2px; background: var(--acid); box-shadow: 0 0 15px var(--acid); animation: scan-card 2.8s ease-in-out infinite; }
.motion-track::before { content: ""; width: 220px; height: 100px; position: absolute; left: calc(50% - 110px); top: 50px; border: 1px dashed #3b3a45; border-radius: 50%; transform: rotate(-8deg); }
.track-dot { width: 14px; height: 14px; position: absolute; z-index: 2; left: 24%; top: 52%; border: 3px solid #131319; border-radius: 50%; background: var(--violet); box-shadow: 0 0 14px var(--violet); animation: track 3.5s ease-in-out infinite; }
.motion-track > i { width: 45px; height: 45px; position: absolute; left: calc(50% - 22px); top: 77px; border: 1px solid rgba(135,92,255,.4); border-radius: 50%; animation: pulse 2s infinite; }
.motion-switch div { width: 130px; height: 58px; position: absolute; left: calc(50% - 65px); top: 67px; border-radius: 40px; background: rgba(200,255,53,.15); }
.motion-switch div i { width: 46px; height: 46px; position: absolute; left: 6px; top: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 24px rgba(200,255,53,.3); animation: toggle 3s ease-in-out infinite; }

.closing { padding-bottom: 70px; }
.faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 600; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #85848f; transition: transform .2s, color .2s; }
.accordion details[open] summary span { color: var(--acid); transform: rotate(45deg); }
.accordion details p { max-width: 660px; margin: -5px 45px 24px 0; color: #868590; font-size: 12px; line-height: 1.75; }
.purchase-card { min-height: 460px; margin-top: 130px; padding: 60px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 70px; border-radius: 30px; color: #09090b; background: var(--acid); }
.purchase-card::after { content: ""; width: 390px; height: 390px; position: absolute; right: -100px; top: -140px; border: 1px solid rgba(0,0,0,.13); border-radius: 50%; box-shadow: 0 0 0 50px rgba(0,0,0,.025), 0 0 0 100px rgba(0,0,0,.018); }
.purchase-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(#111 1px, transparent 1px), linear-gradient(90deg, #111 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(90deg, black, transparent 85%); }
.purchase-copy, .purchase-action { position: relative; z-index: 2; }
.eyebrow.light { color: rgba(0,0,0,.56); }
.eyebrow.light .live-dot { background: #0a0a0c; box-shadow: 0 0 0 5px rgba(0,0,0,.08); }
.purchase-copy h2 em { color: #09090b; }
.purchase-copy p { max-width: 540px; margin: 25px 0 0; color: rgba(0,0,0,.63); }
.purchase-action { padding: 24px; border: 1px solid rgba(0,0,0,.18); border-radius: 20px; background: rgba(255,255,255,.21); backdrop-filter: blur(12px); }
.product-mini { margin-bottom: 22px; display: flex; align-items: center; gap: 18px; font-size: 10px; line-height: 1.8; }
.mini-box { width: 92px; height: 116px; overflow: hidden; border-radius: 8px; background: #09090c; box-shadow: 10px 12px 20px rgba(0,0,0,.16); transform: rotate(-4deg); }
.mini-box img { width: 100%; height: 100%; display: block; object-fit: cover; }
.button-light { width: 100%; color: white; border-color: #09090b; background: #09090b; }
.button-light:hover { background: #25252b; }
.purchase-action > small { margin-top: 10px; display: block; color: rgba(0,0,0,.5); font: 500 7px "DM Mono", monospace; text-align: center; }
.footer { padding: 20px 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #666570; font-size: 10px; }
.footer p { margin: 0; }
.footer .brand { color: white; }
.toast { max-width: 360px; padding: 15px 18px; position: fixed; z-index: 30; left: 50%; bottom: 24px; display: grid; gap: 4px; border: 1px solid rgba(200,255,53,.28); border-radius: 12px; background: rgba(16,16,22,.94); box-shadow: 0 20px 50px rgba(0,0,0,.5); backdrop-filter: blur(16px); transform: translate(-50%, 140%); transition: transform .35s ease; }
.toast.show { transform: translate(-50%, 0); }
.toast b { color: var(--acid); font-size: 11px; }
.toast span { color: #9998a3; font-size: 9px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes scan { 0%, 100% { top: 15%; opacity: .2; } 50% { top: 78%; opacity: 1; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes resolve-scan { 0%, 30% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }
@keyframes scan-card { 0%,100% { top: 12px; opacity: .4; } 50% { top: 104px; opacity: 1; } }
@keyframes track { 0%,100% { left: 24%; top: 52%; } 50% { left: 72%; top: 38%; } }
@keyframes pulse { 0%,100% { transform: scale(.75); opacity: .2; } 50% { transform: scale(1.35); opacity: 1; } }
@keyframes toggle { 0%, 25%, 100% { left: 6px; } 50%, 75% { left: 78px; } }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-copy { max-width: 730px; }
  .hero-stage { margin-top: 30px; }
  .features-intro { grid-template-columns: 1fr 420px; gap: 36px; }
  .faq-layout { grid-template-columns: 1fr; gap: 10px; }
  .faq-layout .section-heading { margin-bottom: 30px; }
  .purchase-card { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 780px) {
  .section-shell { width: min(100% - 28px, 620px); }
  .topbar { width: calc(100% - 20px); height: 62px; top: 10px; margin-top: 10px; padding-inline: 15px 9px; }
  .topbar nav { display: none; }
  .nav-cta { padding: 10px 13px; }
  .hero { min-height: auto; padding: 80px 0 90px; }
  h1 { font-size: clamp(46px, 14vw, 68px); }
  h2 { font-size: clamp(40px, 12vw, 60px); }
  .hero-lead { font-size: 15px; }
  .resolve-window { transform: none; }
  .resolve-proof { min-height: 400px; padding: 12px; }
  .resolve-shot { height: 318px; }
  .resolve-proof-foot b { max-width: 270px; font-size: 6px; }
  .window-body { height: 430px; grid-template-columns: 57px 1fr; }
  .inspector { display: none; }
  .phone-hero { width: 174px; }
  .floating-pill { font-size: 7px; }
  .floating-pill span { width: 18px; height: 18px; }
  .pill-a { left: -5px; }.pill-b { right: -5px; }.pill-c { left: 30%; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip div { min-height: 110px; padding: 20px; border-bottom: 1px solid var(--line); }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .features, .preview-section, .closing { padding-block: 95px; }
  .features-intro { grid-template-columns: 1fr; gap: 32px; }
  .workflow-demo { height: 520px; }
  .feature-grid, .motion-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: auto; }
  .feature-copy-inline { grid-template-columns: 1fr; }
  .install-flow { justify-content: flex-start; flex-wrap: wrap; }
  .install-flow i { display: none; }
  .console-body { grid-template-columns: 1fr; }
  .console-demo { min-height: 720px; border-right: 0; border-bottom: 1px solid var(--line); }
  .platform-image-shell { height: 620px; }
  .console-controls { padding: 22px 18px; }
  .platform-tabs { grid-template-columns: 1fr; }
  .platform-tab { height: 44px; }
  .range-row { grid-template-columns: 1fr 110px 35px; }
  .purchase-card { margin-top: 85px; padding: 38px 24px; border-radius: 22px; }
  .footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions .button { width: 100%; }
  .resolve-proof { min-height: 310px; }
  .resolve-proof-head small, .resolve-proof-foot { display: none; }
  .resolve-shot { height: 275px; margin: 11px 0 0; }
  .resolve-callout { padding: 6px 7px; font-size: 6px; }
  .resolve-callout b { width: 15px; height: 15px; font-size: 6px; }
  .window-body { grid-template-columns: 1fr; }
  .node-rail { display: none; }
  .proof-strip strong { font-size: 24px; }
  .proof-strip span { font-size: 7px; }
  .feature-card { min-height: 400px; }
  .stack-card { width: 145px; height: 185px; }
  .stack-ig { margin-left: -160px; }.stack-yt { margin-left: -73px; }.stack-tt { margin-left: 16px; }
  .install-flow span { min-width: 0; }
  .workflow-demo { height: 450px; }
  .platform-image-shell { width: min(320px, 86%); height: 575px; }
  .console-demo { min-height: 665px; }
  .control-title { align-items: flex-start; }
  .range-row { grid-template-columns: 1fr 85px 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
