:root {
    --bg: #06100f;
    --bg-soft: #0a1715;
    --panel: #0c1b18;
    --panel-2: #10221f;
    --ink: #f2f7f4;
    --muted: #8fa49e;
    --line: rgba(225, 255, 245, .12);
    --line-strong: rgba(225, 255, 245, .24);
    --acid: #b9ff45;
    --mint: #56f1c8;
    --cyan: #5edcff;
    --orange: #ff9650;
    --max: 1220px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 76% 8%, rgba(86, 241, 200, .09), transparent 27rem),
        radial-gradient(circle at 15% 38%, rgba(94, 220, 255, .05), transparent 30rem),
        var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
[id] { scroll-margin-top: 76px; }

a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
.noise {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
    opacity: .18;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(calc(100% - 40px), var(--max));
    min-height: 76px;
    margin: 0 auto;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 16, 15, .76);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: max-content;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .12em;
}
.brand > span:last-child > span { color: var(--acid); }
.brand-mark {
    position: relative;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(185, 255, 69, .5);
    border-radius: 9px;
    background: rgba(185, 255, 69, .08);
    transform: rotate(45deg);
}
.brand-mark::before,
.brand-mark::after,
.brand-mark i {
    position: absolute;
    content: "";
    border: 1px solid rgba(185, 255, 69, .62);
    border-radius: 2px;
}
.brand-mark::before { width: 12px; height: 12px; }
.brand-mark::after { width: 5px; height: 5px; background: var(--acid); }
.brand-mark i { width: 18px; height: 18px; opacity: .28; }

.topnav { display: flex; gap: 32px; }
.topnav a {
    position: relative;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    transition: color .2s ease;
}
.topnav a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--acid);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.topnav a:hover { color: var(--ink); }
.topnav a:hover::after { transform: scaleX(1); }
.cabinet-link {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
    min-height: 42px;
    padding: 0 7px 0 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
    transition: border-color .2s ease, background .2s ease;
}
.cabinet-link b {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: #07100d;
    background: var(--acid);
}
.cabinet-link:hover { border-color: var(--acid); background: rgba(185, 255, 69, .05); }
.menu-toggle { display: none; }

main, .footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
    align-items: center;
    min-height: calc(100svh - 76px);
    padding: 72px 0 78px;
    border-bottom: 1px solid var(--line);
    overflow: clip;
}
.hero-copy { position: relative; z-index: 2; max-width: 690px; }
.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 31px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255,255,255,.025);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 12px var(--acid);
    animation: status-pulse 2.2s ease-in-out infinite;
}
.hero h1 {
    max-width: 760px;
    margin: 26px 0 24px;
    font-size: clamp(60px, 7.3vw, 116px);
    font-weight: 800;
    letter-spacing: -.075em;
    line-height: .88;
}
.hero h1 em {
    color: transparent;
    background: linear-gradient(100deg, var(--acid), var(--mint) 64%, var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    font-style: normal;
}
.hero-copy > p {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; margin-top: 32px; }
.hero-assurance {
    margin-top: 14px !important;
    color: rgba(242,247,244,.58) !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: 13px;
    font-size: 14px;
    font-weight: 780;
    transition: transform .22s var(--ease), border-color .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-main {
    color: #07100d;
    border-color: var(--acid);
    background: var(--acid);
    box-shadow: 0 14px 42px rgba(185, 255, 69, .16);
}
.button-main:hover { background: #c9ff72; }
.button-quiet { color: var(--ink); background: rgba(255,255,255,.025); }
.button-quiet:hover { border-color: var(--line-strong); background: rgba(255,255,255,.055); }
.hero-proof {
    display: flex;
    gap: 0;
    margin-top: 58px;
}
.hero-proof div {
    display: grid;
    min-width: 138px;
    padding-right: 26px;
    margin-right: 26px;
    border-right: 1px solid var(--line);
}
.hero-proof div:last-child { padding: 0; margin: 0; border: 0; }
.hero-proof strong { font-size: 18px; letter-spacing: -.03em; }
.hero-proof span { margin-top: 4px; color: var(--muted); font-size: 11px; }

.hero-scene {
    --rx: -3deg;
    --ry: 5deg;
    position: relative;
    min-height: 570px;
    perspective: 1100px;
    transform-style: preserve-3d;
}
.scene-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185,255,69,.2), rgba(86,241,200,.06) 42%, transparent 70%);
    filter: blur(16px);
    transform: translate(-50%, -50%);
}
.core-model {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 182px;
    height: 182px;
    transform: translate(-50%, -50%) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform .18s ease-out;
    animation: core-float 5.5s ease-in-out infinite;
}
.core-face {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(185,255,69,.34);
    background: linear-gradient(145deg, rgba(20,48,42,.94), rgba(8,21,18,.86));
    box-shadow: inset 0 0 30px rgba(185,255,69,.04);
    backface-visibility: hidden;
}
.core-front { transform: translateZ(91px); }
.core-back { transform: rotateY(180deg) translateZ(91px); }
.core-left { transform: rotateY(-90deg) translateZ(91px); }
.core-right { transform: rotateY(90deg) translateZ(91px); }
.core-top { transform: rotateX(90deg) translateZ(91px); }
.core-bottom { transform: rotateX(-90deg) translateZ(91px); }
.core-front svg { width: 74px; fill: none; stroke: var(--acid); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 12px rgba(185,255,69,.35)); }
.core-front span { position: absolute; bottom: 24px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .28em; }
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(225,255,245,.12);
    border-radius: 50%;
    transform-style: preserve-3d;
}
.orbit-one { width: 430px; height: 430px; animation: orbit-spin 18s linear infinite; }
.orbit-two { width: 300px; height: 300px; border-color: rgba(86,241,200,.2); animation: orbit-spin-two 13s linear infinite reverse; }
.orbit i {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 16px var(--mint);
}
.orbit i:nth-child(1) { top: 8%; left: 26%; }
.orbit i:nth-child(2) { top: 70%; right: 7%; background: var(--acid); }
.orbit i:nth-child(3) { bottom: 8%; left: 22%; background: var(--cyan); }
.device-chip {
    position: absolute;
    z-index: 3;
    display: grid;
    grid-template-columns: 34px 36px;
    align-items: center;
    width: 92px;
    height: 52px;
    padding: 7px;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    color: var(--ink);
    background: rgba(12,27,24,.82);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
    backdrop-filter: blur(12px);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    transform-style: preserve-3d;
}
.device-chip i {
    width: 28px;
    height: 34px;
    border: 1px solid rgba(185,255,69,.35);
    border-radius: 7px;
    background: linear-gradient(160deg, rgba(185,255,69,.18), transparent);
}
.chip-win { top: 17%; left: 10%; transform: rotate(-8deg) translateZ(60px); animation: chip-float 5s ease-in-out infinite; }
.chip-ios { top: 24%; right: 1%; transform: rotate(7deg) translateZ(80px); animation: chip-float 5.8s .6s ease-in-out infinite; }
.chip-tv { right: 10%; bottom: 13%; transform: rotate(-5deg) translateZ(50px); animation: chip-float 4.7s 1s ease-in-out infinite; }
.scene-floor {
    position: absolute;
    right: 5%;
    bottom: 40px;
    left: 5%;
    height: 190px;
    background-image:
        linear-gradient(rgba(86,241,200,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(86,241,200,.14) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, transparent, black 30%, transparent 92%);
    transform: rotateX(66deg);
    transform-origin: bottom;
}
.scene-caption {
    position: absolute;
    right: 7%;
    bottom: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.scene-caption span { color: var(--acid); font-weight: 900; }

.trust-strip {
    display: grid;
    grid-template-columns: .85fr 2.15fr;
    align-items: center;
    min-height: 98px;
    border-bottom: 1px solid var(--line);
}
.trust-strip p { margin: 0; color: var(--muted); font-size: 12px; }
.trust-strip div { display: flex; justify-content: space-between; gap: 20px; }
.trust-strip span { color: rgba(242,247,244,.64); font-size: 10px; font-weight: 850; letter-spacing: .13em; }

.section { padding: 132px 0; border-bottom: 1px solid var(--line); }
.section-head {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    column-gap: 56px;
    align-items: end;
    margin-bottom: 62px;
}
.section-head .kicker { grid-column: 1 / -1; }
.kicker { color: var(--acid); font-size: 10px; font-weight: 850; letter-spacing: .17em; }
.section-head h2,
.device-copy h2,
.final-cta h2 {
    margin: 18px 0 0;
    font-size: clamp(46px, 5.4vw, 80px);
    font-weight: 760;
    letter-spacing: -.06em;
    line-height: .98;
}
.section-head > p {
    max-width: 520px;
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.step {
    position: relative;
    min-height: 350px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(150deg, rgba(255,255,255,.025), transparent 65%);
    transition: background .25s ease;
}
.step:hover { background: rgba(185,255,69,.035); }
.step-no { color: var(--muted); font-size: 11px; font-weight: 800; }
.step-icon { display: grid; height: 160px; place-items: center; perspective: 500px; }
.step h3 { margin: 0 0 12px; font-size: 24px; letter-spacing: -.035em; }
.step p { max-width: 300px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.cube-mini {
    position: relative;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(185,255,69,.42);
    background: rgba(185,255,69,.07);
    box-shadow: 18px 18px 0 rgba(86,241,200,.06), 18px 18px 0 1px rgba(86,241,200,.2);
    transform: rotateX(56deg) rotateZ(45deg);
    animation: mini-float 4s ease-in-out infinite;
}
.key-mini {
    position: relative;
    width: 86px;
    height: 32px;
    border: 2px solid var(--mint);
    border-radius: 18px 5px 5px 18px;
    filter: drop-shadow(0 0 12px rgba(86,241,200,.25));
    transform: rotate(-14deg);
}
.key-mini::before { position: absolute; top: 7px; left: 8px; width: 12px; height: 12px; content: ""; border: 2px solid var(--mint); border-radius: 50%; }
.key-mini::after { position: absolute; right: -10px; bottom: -2px; width: 22px; height: 12px; content: ""; border-right: 2px solid var(--mint); border-bottom: 2px solid var(--mint); }
.pulse-mini {
    position: relative;
    width: 78px;
    height: 78px;
    border: 1px solid rgba(94,220,255,.45);
    border-radius: 50%;
}
.pulse-mini::before, .pulse-mini::after { position: absolute; inset: 15px; content: ""; border: 1px solid rgba(94,220,255,.5); border-radius: 50%; animation: pulse-ring 2s ease-out infinite; }
.pulse-mini::after { inset: 29px; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); animation: none; }

.device-story {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 60px;
    min-height: 760px;
    overflow: clip;
}
.device-copy { max-width: 560px; }
.device-copy > p { margin: 26px 0 30px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.device-copy ul { display: grid; gap: 15px; padding: 0; margin: 0 0 32px; list-style: none; }
.device-copy li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; }
.device-copy li i { display: grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; border: 1px solid rgba(185,255,69,.32); border-radius: 50%; color: var(--acid); font-style: normal; font-size: 11px; }
.device-copy li strong { color: var(--ink); }
.text-link { display: inline-flex; gap: 18px; color: var(--acid); font-size: 14px; font-weight: 780; }
.device-model {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    min-height: 620px;
    perspective: 1300px;
    transform-style: preserve-3d;
}
.phone {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 500px;
    border: 1px solid rgba(225,255,245,.24);
    border-radius: 44px;
    background: linear-gradient(145deg, #1a302b, #081310 72%);
    box-shadow: 0 50px 90px rgba(0,0,0,.45), inset 0 0 0 6px rgba(255,255,255,.02);
    transform-style: preserve-3d;
    transition: transform .18s ease-out;
}
.phone-back { transform: translate(-70%, -49%) rotateY(calc(-16deg + var(--ry))) rotateX(calc(3deg + var(--rx))) rotateZ(-2deg) translateZ(-50px); opacity: .58; }
.phone-front { transform: translate(-31%, -51%) rotateY(calc(-8deg + var(--ry))) rotateX(calc(2deg + var(--rx))) rotateZ(1deg) translateZ(30px); }
.speaker { position: absolute; top: 12px; left: 50%; width: 72px; height: 18px; z-index: 2; border-radius: 12px; background: #040a08; transform: translateX(-50%); }
.phone-screen { position: absolute; inset: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 37px; background: radial-gradient(circle at 50% 38%, rgba(185,255,69,.17), transparent 34%), linear-gradient(160deg, #0d211d, #07100e); overflow: hidden; }
.phone-screen::after { position: absolute; inset: 0; content: ""; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.05) 48%, transparent 70%); transform: translateX(-100%); animation: screen-shine 4.5s ease-in-out infinite; }
.screen-logo { display: grid; width: 92px; height: 92px; place-items: center; border: 1px solid rgba(185,255,69,.26); border-radius: 50%; box-shadow: 0 0 0 22px rgba(185,255,69,.03), 0 0 0 44px rgba(185,255,69,.018); }
.screen-logo i { width: 35px; height: 42px; border: 2px solid var(--acid); clip-path: polygon(50% 0,100% 16%,88% 76%,50% 100%,12% 76%,0 16%); background: rgba(185,255,69,.08); }
.phone-screen small { margin-top: 42px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .25em; }
.phone-screen strong { margin-top: 8px; color: var(--acid); font-size: 14px; letter-spacing: .18em; }
.screen-line { display: flex; align-items: center; gap: 8px; margin-top: 34px; }
.screen-line i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px var(--acid); }
.screen-line span { width: 72px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--acid) 70%, rgba(255,255,255,.1) 70%); }
.camera { position: absolute; top: 22px; left: 24px; width: 50px; height: 50px; border: 1px solid var(--line-strong); border-radius: 17px; background: radial-gradient(circle at 50% 50%, #07100e 0 8px, #28423b 9px 12px, transparent 13px); }
.phone-light { position: absolute; inset: 20%; border-radius: 50%; background: rgba(86,241,200,.14); filter: blur(32px); }
.key-token {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 126px;
    height: 50px;
    padding: 8px 14px 8px 8px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(9,23,20,.84);
    box-shadow: 0 20px 44px rgba(0,0,0,.38);
    backdrop-filter: blur(14px);
    animation: token-float 4.8s ease-in-out infinite;
}
.key-token span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; color: #07100d; background: var(--acid); font-size: 10px; font-weight: 900; }
.key-token b { font-size: 9px; letter-spacing: .12em; }
.token-one { top: 12%; left: 4%; transform: rotate(-8deg) translateZ(80px); }
.token-two { top: 43%; right: 2%; transform: rotate(3deg) translateZ(100px); animation-delay: .7s; }
.token-three { bottom: 10%; left: 8%; transform: rotate(4deg) translateZ(70px); animation-delay: 1.2s; }

.bento-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 14px; }
.bento-card {
    position: relative;
    min-height: 380px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
    overflow: hidden;
}
.bento-card h3 { position: absolute; right: 26px; bottom: 70px; left: 26px; margin: 0; font-size: 23px; letter-spacing: -.04em; }
.bento-card p { position: absolute; right: 26px; bottom: 24px; left: 26px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.bento-label { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .16em; }
.speed-dial { position: absolute; top: 76px; left: 50%; display: grid; width: 174px; height: 174px; place-items: center; border: 1px solid rgba(185,255,69,.3); border-radius: 50%; transform: translateX(-50%); }
.speed-dial::before, .speed-dial::after { position: absolute; content: ""; border-radius: 50%; }
.speed-dial::before { inset: 16px; border: 10px solid rgba(185,255,69,.05); border-top-color: var(--acid); border-right-color: var(--mint); transform: rotate(28deg); animation: dial-spin 8s linear infinite; }
.speed-dial::after { inset: 48px; background: radial-gradient(circle, rgba(185,255,69,.18), transparent 68%); }
.speed-dial i { position: absolute; width: 55px; height: 2px; background: var(--acid); transform: rotate(-28deg) translateX(22px); transform-origin: left; box-shadow: 0 0 10px var(--acid); }
.speed-dial strong { z-index: 2; margin-top: 55px; color: var(--acid); font-size: 9px; letter-spacing: .18em; }
.platform-cloud { position: absolute; top: 86px; right: 26px; left: 26px; height: 160px; }
.platform-cloud i { position: absolute; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 16px; color: var(--mint); background: rgba(86,241,200,.06); font-style: normal; font-size: 12px; font-weight: 850; box-shadow: 0 15px 30px rgba(0,0,0,.22); }
.platform-cloud i:nth-child(1) { top: 0; left: 5%; width: 65px; height: 65px; transform: rotate(-8deg); }
.platform-cloud i:nth-child(2) { top: 30px; left: 38%; width: 78px; height: 78px; color: var(--acid); transform: rotate(5deg); }
.platform-cloud i:nth-child(3) { top: 5px; right: 2%; width: 58px; height: 58px; color: var(--cyan); transform: rotate(9deg); }
.platform-cloud i:nth-child(4) { bottom: 0; left: 16%; width: 62px; height: 48px; color: var(--orange); transform: rotate(3deg); }
.control-lines { position: absolute; top: 88px; right: 26px; left: 26px; display: grid; gap: 18px; }
.control-lines i { position: relative; height: 38px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(90deg, rgba(86,241,200,.1), transparent); }
.control-lines i::before { position: absolute; top: 50%; left: 12px; width: 9px; height: 9px; content: ""; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); transform: translateY(-50%); }
.control-lines i::after { position: absolute; top: 50%; right: 12px; width: 34px; height: 16px; content: ""; border: 1px solid rgba(185,255,69,.34); border-radius: 10px; transform: translateY(-50%); }
.bento-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; min-height: 320px; }
.bento-wide h3, .bento-wide p { position: static; }
.bento-wide h3 { max-width: 580px; margin: 70px 0 16px; font-size: 32px; }
.bento-wide p { max-width: 570px; }
.privacy-model { position: relative; min-height: 260px; }
.privacy-model i, .privacy-model span, .privacy-model b { position: absolute; top: 50%; left: 50%; border-radius: 50%; transform: translate(-50%,-50%); }
.privacy-model i { width: 210px; height: 210px; border: 1px solid rgba(86,241,200,.2); animation: privacy-spin 14s linear infinite; }
.privacy-model i::before, .privacy-model i::after { position: absolute; width: 11px; height: 11px; content: ""; border-radius: 50%; background: var(--mint); box-shadow: 0 0 14px var(--mint); }
.privacy-model i::before { top: 18px; left: 25px; }
.privacy-model i::after { right: 15px; bottom: 40px; background: var(--acid); }
.privacy-model span { width: 138px; height: 138px; border: 1px solid rgba(185,255,69,.26); background: rgba(185,255,69,.035); }
.privacy-model b { width: 58px; height: 70px; border: 2px solid var(--acid); clip-path: polygon(50% 0,100% 16%,88% 76%,50% 100%,12% 76%,0 16%); background: rgba(185,255,69,.09); filter: drop-shadow(0 0 16px rgba(185,255,69,.25)); }

.pricing .section-head { margin-bottom: 72px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 570px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(155deg, rgba(255,255,255,.035), rgba(255,255,255,.006));
    overflow: hidden;
    transition: transform .25s var(--ease), border-color .25s ease;
}
.plan:hover { border-color: var(--line-strong); transform: translateY(-5px); }
.plan-featured { border-color: rgba(185,255,69,.42); background: linear-gradient(150deg, rgba(185,255,69,.09), rgba(255,255,255,.012) 60%); box-shadow: 0 24px 70px rgba(0,0,0,.24); }
.plan-featured::before { position: absolute; top: -120px; right: -110px; width: 280px; height: 280px; content: ""; border-radius: 50%; background: rgba(185,255,69,.09); filter: blur(24px); }
.plan-ribbon { position: absolute; top: 0; right: 0; padding: 10px 18px; color: #07100d; background: var(--acid); border-radius: 0 23px 0 14px; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.plan-top { display: flex; align-items: center; justify-content: space-between; min-height: 26px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .15em; }
.plan-top b { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); font-size: 9px; }
.plan h3 { margin: 48px 0 18px; font-size: 25px; letter-spacing: -.04em; }
.plan-price { display: flex; align-items: flex-start; gap: 7px; }
.plan-price strong { font-size: 64px; font-weight: 780; letter-spacing: -.07em; line-height: .9; }
.plan-price > span { display: grid; margin-top: 7px; font-size: 20px; font-weight: 780; }
.plan-price small { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 600; white-space: nowrap; }
.plan-saving { min-height: 18px; margin: 16px 0 0; color: var(--acid); font-size: 11px; font-weight: 800; }
.plan-saving-neutral { color: var(--muted); }
.device-count { margin: 14px 0 0; padding: 13px 14px; border: 1px solid rgba(185,255,69,.22); border-radius: 10px; color: var(--acid); background: rgba(185,255,69,.055); font-size: 13px; font-weight: 800; }
.plan ul { display: grid; gap: 14px; padding: 0; margin: 28px 0 32px; color: var(--muted); list-style: none; font-size: 13px; }
.plan li { position: relative; padding-left: 22px; }
.plan li::before { position: absolute; top: 1px; left: 0; content: "✓"; color: var(--mint); font-weight: 900; }
.plan-button { width: 100%; margin-top: auto; background: rgba(255,255,255,.035); }
.plan-button:hover { border-color: var(--acid); background: rgba(185,255,69,.07); }
.plan-featured .plan-button { color: #07100d; border-color: var(--acid); background: var(--acid); }
.payment-note { display: flex; align-items: center; justify-content: center; gap: 13px; margin: 28px 0 0; color: var(--muted); font-size: 11px; }
.payment-note i { color: var(--acid); font-style: normal; }
.payment-note span { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.faq-section .section-head { display: block; margin: 0; }
.faq-section .section-head h2 { font-size: clamp(44px, 4.4vw, 66px); }
.faq-grid { border-top: 1px solid var(--line); }
.faq-grid details { border-bottom: 1px solid var(--line); }
.faq-grid summary { display: grid; grid-template-columns: 40px 1fr 26px; align-items: center; gap: 12px; padding: 26px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary span { color: var(--acid); font-size: 9px; letter-spacing: .12em; }
.faq-grid summary i { color: var(--muted); font-style: normal; font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-grid details[open] summary i { transform: rotate(45deg); }
.faq-grid details p { max-width: 680px; padding: 0 40px 26px 52px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.final-cta {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 70px;
    min-height: 530px;
    padding: 90px 70px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.final-cta > div:not(.cta-orb) { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(48px, 5.3vw, 78px); }
.final-cta p { max-width: 450px; margin: 0 0 28px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.cta-orb { position: absolute; top: 50%; left: 56%; width: 430px; height: 430px; border: 1px solid rgba(185,255,69,.12); border-radius: 50%; transform: translate(-50%,-50%); animation: privacy-spin 20s linear infinite; }
.cta-orb::before, .cta-orb::after { position: absolute; content: ""; border: 1px solid rgba(86,241,200,.13); border-radius: 50%; }
.cta-orb::before { inset: 55px; }
.cta-orb::after { inset: 130px; background: radial-gradient(circle, rgba(185,255,69,.1), transparent 70%); }
.cta-orb i, .cta-orb span, .cta-orb b { position: absolute; z-index: 2; width: 10px; height: 10px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 15px var(--acid); }
.cta-orb i { top: 60px; left: 70px; }
.cta-orb span { right: 30px; bottom: 120px; background: var(--mint); }
.cta-orb b { bottom: 16px; left: 48%; background: var(--cyan); }

.footer { padding: 72px 0 30px; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid var(--line); }
.footer-main p { max-width: 360px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.footer-cabinet { color: var(--acid); font-size: 13px; font-weight: 780; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; padding: 50px 0; }
.footer-links > div { display: grid; align-content: start; gap: 12px; }
.footer-links strong { margin-bottom: 8px; color: var(--muted); font-size: 9px; letter-spacing: .15em; }
.footer-links a { width: max-content; color: rgba(242,247,244,.72); font-size: 13px; transition: color .2s ease; }
.footer-links a:hover { color: var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; border-top: 1px solid var(--line); }
.footer-bottom p { max-width: 520px; margin: 0; color: rgba(143,164,158,.7); font-size: 10px; line-height: 1.6; }
.footer-bottom p:last-child { text-align: right; }

.reveal { opacity: 0; translate: 0 18px; transition: opacity .7s var(--ease), translate .7s var(--ease); }
.reveal.is-visible { opacity: 1; translate: 0 0; }

@keyframes status-pulse { 0%,100% { opacity: .6; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes core-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
@keyframes orbit-spin { from { transform: translate(-50%,-50%) rotateX(68deg) rotateZ(0); } to { transform: translate(-50%,-50%) rotateX(68deg) rotateZ(360deg); } }
@keyframes orbit-spin-two { from { transform: translate(-50%,-50%) rotateY(68deg) rotateZ(0); } to { transform: translate(-50%,-50%) rotateY(68deg) rotateZ(360deg); } }
@keyframes chip-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes mini-float { 0%,100% { translate: 0 7px; } 50% { translate: 0 -7px; } }
@keyframes pulse-ring { 0% { opacity: .8; transform: scale(.55); } 100% { opacity: 0; transform: scale(2); } }
@keyframes token-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes screen-shine { 0%,20% { transform: translateX(-100%); } 65%,100% { transform: translateX(100%); } }
@keyframes dial-spin { to { transform: rotate(388deg); } }
@keyframes privacy-spin { to { rotate: 360deg; } }

@media (max-width: 1050px) {
    .topbar { grid-template-columns: 1fr auto; }
    .topnav { display: none; }
    .hero { grid-template-columns: 1fr .8fr; }
    .hero h1 { font-size: clamp(58px, 8vw, 86px); }
    .hero-scene { min-height: 500px; transform: scale(.86); transform-origin: center right; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-speed { grid-row: span 1; }
    .bento-wide { grid-column: 1 / -1; }
    .device-story { gap: 20px; }
    .plan { padding: 26px; }
}

@media (max-width: 820px) {
    .topbar { width: min(calc(100% - 28px), var(--max)); min-height: 68px; }
    .cabinet-link { gap: 8px; min-height: 38px; padding: 0 3px 0 12px; font-size: 11px; }
    main, .footer { width: min(calc(100% - 28px), var(--max)); }
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 64px; }
    .hero-copy { max-width: none; }
    .hero h1 { font-size: clamp(54px, 14vw, 86px); }
    .hero-scene { min-height: 500px; transform: scale(.9); transform-origin: center; }
    .trust-strip { grid-template-columns: 1fr; gap: 22px; padding: 26px 0; }
    .trust-strip div { display: grid; grid-template-columns: 1fr 1fr; }
    .section { padding: 92px 0; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }
    .section-head > p { margin: 0; }
    .steps { grid-template-columns: 1fr; }
    .step { min-height: 290px; }
    .step-icon { height: 120px; }
    .device-story { grid-template-columns: 1fr; }
    .device-copy { max-width: none; }
    .device-model { min-height: 590px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: auto; grid-template-columns: 1fr; min-height: 560px; }
    .bento-wide .privacy-model { min-height: 260px; }
    .plan-grid { grid-template-columns: 1fr; }
    .plan { min-height: 540px; }
    .faq-section { grid-template-columns: 1fr; gap: 48px; }
    .final-cta { grid-template-columns: 1fr; align-items: start; gap: 40px; min-height: 650px; padding: 72px 0; }
    .cta-orb { left: 70%; opacity: .65; }
    .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
    [id] { scroll-margin-top: 68px; }
    .brand { gap: 9px; font-size: 12px; }
    .brand-mark { width: 25px; height: 25px; }
    .hero { padding-top: 46px; }
    .hero h1 { margin-top: 22px; font-size: clamp(48px, 15vw, 66px); line-height: .92; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions { display: grid; }
    .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 0; margin-top: 44px; }
    .hero-proof div { min-width: 0; padding-right: 16px; margin-right: 16px; }
    .hero-proof div:nth-child(2) { padding: 0; margin: 0; border: 0; }
    .hero-proof div:nth-child(3) { grid-column: 1 / -1; }
    .hero-scene { min-height: 410px; margin: 8px -55px -18px; transform: scale(.72); }
    .trust-strip div { gap: 14px; }
    .section-head h2, .device-copy h2, .final-cta h2 { font-size: 44px; }
    .device-model { min-height: 500px; margin: 8px -42px -54px; transform: scale(.82); transform-origin: center top; }
    .bento-card { min-height: 350px; padding: 22px; }
    .bento-card h3 { right: 22px; left: 22px; }
    .bento-card p { right: 22px; left: 22px; }
    .bento-wide { min-height: 540px; }
    .plan { min-height: 550px; padding: 26px 22px; }
    .plan-price strong { font-size: 58px; }
    .payment-note { flex-wrap: wrap; }
    .faq-grid summary { grid-template-columns: 30px 1fr 20px; padding: 22px 0; font-size: 16px; }
    .faq-grid details p { padding-left: 42px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-links > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .footer-bottom p:last-child { text-align: left; }
}

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