:root {
    color-scheme: dark;
    --bg: #101214;
    --bg-deep: #090c0e;
    --panel: rgba(22, 26, 29, 0.76);
    --panel-strong: rgba(17, 22, 25, 0.94);
    --line: rgba(255, 255, 255, 0.11);
    --line-soft: rgba(255, 255, 255, 0.065);
    --text: #f3f6f7;
    --muted: #9ba5aa;
    --soft: #657177;
    --blue: #6a9cff;
    --mint: #8affc1;
    --yellow: #ffd36a;
    --red: #ff6a8f;
    --purple: #b388ff;
    --shadow: 0 25px 90px rgba(0, 0, 0, 0.46);
    --mono: "Roboto Mono", "Cascadia Code", Consolas, monospace;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; background: var(--bg); }
body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 4%, rgba(106, 156, 255, 0.08), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(138, 255, 193, 0.055), transparent 26%),
        linear-gradient(160deg, #131618 0%, #0d1012 44%, #0a0d0f 100%);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 44%, rgba(0, 0, 0, 0.52));
}

a { color: inherit; }
button, input { font: inherit; }
svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { color: #09100d; background: var(--mint); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #090b0d; }
::-webkit-scrollbar-thumb { border: 2px solid #090b0d; border-radius: 99px; background: linear-gradient(var(--blue), var(--mint)); }

#landingParticles,
.landing-noise,
.landing-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

#landingParticles { width: 100%; height: 100%; opacity: 0.72; }
.landing-noise {
    opacity: 0.026;
    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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.landing-glow { inset: auto; border-radius: 50%; filter: blur(110px); opacity: 0.16; }
.glow-one { top: 4%; left: -12%; width: 560px; height: 560px; background: var(--blue); }
.glow-two { top: 45%; right: -18%; width: 700px; height: 700px; background: var(--mint); opacity: 0.08; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 82px;
    padding: 14px clamp(18px, 4vw, 64px);
    border-bottom: 1px solid transparent;
    transition: min-height .25s ease, background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
    min-height: 70px;
    border-color: var(--line-soft);
    background: rgba(12, 15, 17, 0.78);
    backdrop-filter: blur(22px) saturate(135%);
}
.site-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; user-select: none; }
.site-brand-mark {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(138, 255, 193, 0.30);
    border-radius: 13px;
    color: var(--mint);
    background: linear-gradient(145deg, rgba(106, 156, 255, 0.16), rgba(138, 255, 193, 0.08));
    box-shadow: inset 0 0 24px rgba(138, 255, 193, 0.05), 0 0 24px rgba(106, 156, 255, 0.08);
    font: 800 21px/1 var(--mono);
}
.site-brand-copy { display: grid; gap: 2px; font-family: var(--mono); letter-spacing: .14em; }
.site-brand-copy strong { font-size: 13px; }
.site-brand-copy small { color: var(--soft); font-size: 8px; }
.main-navigation { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.main-navigation a {
    position: relative;
    padding: 8px 0;
    color: var(--muted);
    font: 600 12px/1 var(--mono);
    text-decoration: none;
    letter-spacing: .04em;
    transition: color .2s ease;
}
.main-navigation a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: linear-gradient(90deg, var(--blue), var(--mint)); transition: right .2s ease; }
.main-navigation a:hover { color: #fff; }
.main-navigation a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; }
.account-welcome { color: var(--muted); font: 600 11px/1 var(--mono); }
.header-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: 9px;
    font: 700 11px/1 var(--mono);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.header-button:hover,
.cta-button:hover { transform: translateY(-2px); }
.header-button.subtle,
.cta-button.secondary { color: var(--muted); background: rgba(255,255,255,.025); }
.header-button.subtle:hover,
.cta-button.secondary:hover { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.055); }
.header-button.primary,
.cta-button.primary {
    color: #0a1110;
    border-color: transparent;
    background: linear-gradient(110deg, var(--blue), var(--mint));
    box-shadow: 0 12px 32px rgba(93, 190, 205, .15);
}
.header-button.primary:hover,
.cta-button.primary:hover { box-shadow: 0 15px 38px rgba(93, 190, 205, .25); filter: brightness(1.05); }
.mobile-menu-button { display: none; }

main, .site-footer { position: relative; z-index: 2; }
.hero-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .8fr);
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
    min-height: 100vh;
    padding: 132px clamp(22px, 6vw, 100px) 90px;
    overflow: hidden;
}
.hero-grid { position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.7) 60%, transparent 100%); }
.hero-orbit { position: absolute; border: 1px solid rgba(138,255,193,.07); border-radius: 50%; pointer-events: none; animation: heroOrbitSpin 30s linear infinite; }
.orbit-one { width: 620px; height: 620px; right: -180px; top: 8%; }
.orbit-two { width: 420px; height: 420px; right: -80px; top: 20%; animation-direction: reverse; animation-duration: 22s; }
.hero-orbit::before { content: ""; position: absolute; width: 7px; height: 7px; top: 50%; left: -4px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 18px var(--mint); }
.hero-content, .hero-console { position: relative; z-index: 2; }
.release-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid rgba(138,255,193,.17); border-radius: 999px; color: #acd5c2; background: rgba(138,255,193,.035); font: 600 10px/1 var(--mono); letter-spacing: .04em; }
.release-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 14px rgba(138,255,193,.9); animation: pulseDot 2s ease-in-out infinite; }
.hero-kicker { margin: 35px 0 10px; color: var(--soft); font: 700 clamp(10px, 1vw, 12px)/1 var(--mono); text-transform: uppercase; letter-spacing: .22em; }
.hero-content h1 { margin: 0; font: 800 clamp(72px, 10vw, 154px)/.82 var(--mono); letter-spacing: -.10em; background: linear-gradient(95deg, #f4f7f8 2%, #b8cfff 45%, #9bffd0 92%); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 16px 38px rgba(106,156,255,.07)); animation: titleFlow 8s ease-in-out infinite alternate; }
.hero-content h2 { margin: 22px 0 0; color: #dce3e6; font: 650 clamp(25px, 3vw, 44px)/1.05 var(--sans); letter-spacing: -.055em; }
.hero-description { max-width: 760px; margin: 27px 0 0; color: var(--muted); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 35px; }
.cta-button { min-height: 49px; padding: 0 21px; font-size: 12px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 35px; color: var(--soft); font: 600 10px/1 var(--mono); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px rgba(138,255,193,.65); }
.hero-console { width: min(600px, 100%); justify-self: center; perspective: 1200px; }
.console-window { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(11,15,18,.85); box-shadow: 0 40px 120px rgba(0,0,0,.5), 0 0 90px rgba(106,156,255,.045); backdrop-filter: blur(18px); transform: rotateY(-5deg) rotateX(2deg); transition: transform .35s ease; }
.console-window:hover { transform: rotateY(0) rotateX(0) translateY(-3px); }
.console-titlebar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; height: 52px; padding: 0 16px; border-bottom: 1px solid var(--line-soft); color: var(--soft); background: rgba(255,255,255,.025); font: 600 9px/1 var(--mono); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #434a4e; }
.window-dots span:first-child { background: rgba(255,106,143,.7); }.window-dots span:nth-child(2) { background: rgba(255,211,106,.7); }.window-dots span:nth-child(3) { background: rgba(138,255,193,.7); }
.console-live { justify-self: end; display: inline-flex; align-items: center; gap: 6px; color: var(--mint); }
.console-live i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.console-body { padding: clamp(22px, 3vw, 34px); font-family: var(--mono); }
.console-brand-line { display: flex; align-items: center; gap: 13px; }
.console-logo { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(138,255,193,.25); border-radius: 13px; color: var(--mint); background: rgba(138,255,193,.055); font-weight: 800; font-size: 23px; }
.console-brand-line div { display: grid; gap: 4px; }
.console-brand-line strong { font-size: 13px; letter-spacing: .18em; }.console-brand-line small { color: var(--soft); font-size: 8px; letter-spacing: .14em; }
.console-separator { height: 1px; margin: 22px 0; background: linear-gradient(90deg, var(--line), transparent); }
.console-line { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 10px; min-height: 40px; border-bottom: 1px solid rgba(255,255,255,.035); font-size: 10px; }
.console-line > span { color: var(--blue); }.console-line strong { color: #cbd3d6; font-weight: 500; }.console-line em { color: var(--mint); font-style: normal; font-size: 8px; }
.console-progress-head { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; }.console-progress-head strong { color: var(--mint); }
.console-progress { height: 5px; margin-top: 10px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.06); }.console-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--mint)); box-shadow: 0 0 14px rgba(138,255,193,.45); }
.console-footer { display: flex; justify-content: space-between; gap: 10px; margin-top: 22px; color: #4e5a60; font-size: 8px; }
.floating-badge { position: absolute; display: grid; grid-template-columns: 37px 1fr; grid-template-rows: auto auto; column-gap: 10px; min-width: 148px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: rgba(18,23,26,.88); box-shadow: 0 18px 55px rgba(0,0,0,.32); backdrop-filter: blur(12px); font-family: var(--mono); animation: badgeFloat 5s ease-in-out infinite; }
.floating-badge > span { grid-row: 1/3; display: grid; place-items: center; width: 37px; height: 37px; border-radius: 10px; color: #0b1211; background: linear-gradient(135deg, var(--blue), var(--mint)); font-size: 18px; }.floating-badge strong { font-size: 9px; }.floating-badge small { color: var(--soft); font-size: 8px; }
.badge-sale { left: -55px; bottom: 48px; }.badge-stats { right: -42px; top: 82px; animation-delay: -2.4s; }
.scroll-indicator { position: absolute; z-index: 2; left: 50%; bottom: 24px; display: grid; justify-items: center; gap: 9px; color: var(--soft); font: 600 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .2em; text-decoration: none; transform: translateX(-50%); }.scroll-indicator i { width: 1px; height: 34px; background: linear-gradient(var(--mint), transparent); animation: scrollLine 2s ease-in-out infinite; }

.section-shell { width: min(1420px, calc(100% - 44px)); margin: 0 auto; }
.intro-section { padding: 125px 0 90px; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker { display: flex; align-items: center; gap: 11px; margin: 0 0 16px; color: #89b3a0; font: 700 10px/1.4 var(--mono); text-transform: uppercase; letter-spacing: .16em; }
.section-heading.centered .section-kicker { justify-content: center; }.section-kicker span { width: 26px; height: 1px; background: linear-gradient(90deg, var(--mint), transparent); }.section-heading.centered .section-kicker span:last-child { transform: rotate(180deg); }
.section-heading h2, .system-copy h2, .cta-panel h2 { margin: 0; font: 750 clamp(38px, 5vw, 70px)/1 var(--sans); letter-spacing: -.075em; }
.section-heading > p:last-child, .system-copy > p, .cta-panel > div > p:last-child { margin: 21px 0 0; color: var(--muted); font-size: clamp(14px, 1.25vw, 17px); line-height: 1.8; }
.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(19,24,27,.58); box-shadow: var(--shadow); backdrop-filter: blur(15px); }
.metric-strip article { display: grid; gap: 8px; padding: 30px; border-right: 1px solid var(--line-soft); }.metric-strip article:last-child { border-right: 0; }.metric-strip strong { font: 800 clamp(26px, 3vw, 42px)/1 var(--mono); background: linear-gradient(90deg, var(--blue), var(--mint)); -webkit-background-clip: text; background-clip: text; color: transparent; }.metric-strip span { color: var(--soft); font: 600 10px/1.4 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.features-section { padding: 110px 0 150px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.feature-card { position: relative; min-height: 310px; overflow: hidden; padding: clamp(25px, 3vw, 38px); border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(25,30,33,.78), rgba(14,18,20,.78)); box-shadow: 0 22px 65px rgba(0,0,0,.24); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(138,255,193,.22); background: linear-gradient(145deg, rgba(29,35,38,.90), rgba(16,21,23,.88)); }.feature-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; align-items: start; column-gap: 30px; min-height: 350px; }.feature-card::after { content: ""; position: absolute; right: -120px; bottom: -140px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(106,156,255,.08), transparent 68%); }
.feature-number { position: absolute; top: 23px; right: 27px; color: rgba(255,255,255,.055); font: 800 55px/1 var(--mono); }
.feature-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 30px; border: 1px solid currentColor; border-radius: 15px; background: rgba(255,255,255,.025); }.feature-icon.mint { color: var(--mint); }.feature-icon.blue { color: var(--blue); }.feature-icon.yellow { color: var(--yellow); }.feature-icon.purple { color: var(--purple); }.feature-icon.red { color: var(--red); }.feature-icon svg { width: 24px; height: 24px; }
.feature-label { color: var(--soft); font: 700 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .18em; }.feature-card h3 { margin: 12px 0 14px; font-size: clamp(24px, 2.5vw, 36px); line-height: 1.08; letter-spacing: -.055em; }.feature-card p { max-width: 680px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }.feature-copy ul { display: flex; flex-wrap: wrap; gap: 9px; margin: 27px 0 0; padding: 0; list-style: none; }.feature-copy li { padding: 8px 10px; border: 1px solid var(--line-soft); border-radius: 8px; color: #aab5ba; background: rgba(255,255,255,.025); font: 600 9px/1 var(--mono); }

.system-section { position: relative; overflow: hidden; padding: 145px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(7,10,11,.62); }
.system-background { position: absolute; inset: 0; opacity: .3; 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: 58px 58px; mask-image: radial-gradient(circle at 38% 50%, #000, transparent 70%); }
.system-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(420px,.9fr) minmax(0,1fr); align-items: center; gap: clamp(60px,8vw,140px); }
.system-visual { position: relative; min-height: 590px; }
.core-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(138,255,193,.12); border-radius: 50%; transform: translate(-50%,-50%); }.ring-outer { width: 530px; height: 530px; animation: orbitSpin 34s linear infinite; }.ring-middle { width: 390px; height: 390px; border-style: dashed; animation: orbitSpin 24s linear infinite reverse; }.ring-inner { width: 245px; height: 245px; border-color: rgba(106,156,255,.19); animation: pulseRing 5s ease-in-out infinite; }
.core-center { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 135px; height: 135px; border: 1px solid rgba(138,255,193,.32); border-radius: 37px; background: linear-gradient(145deg, rgba(106,156,255,.17), rgba(138,255,193,.08)); box-shadow: inset 0 0 45px rgba(138,255,193,.04), 0 0 80px rgba(106,156,255,.10); transform: translate(-50%,-50%) rotate(45deg); }.core-center strong,.core-center span { transform: rotate(-45deg); }.core-center strong { color: var(--mint); font: 800 52px/.75 var(--mono); }.core-center span { margin-top: -25px; color: var(--soft); font: 700 8px/1 var(--mono); letter-spacing: .2em; }
.core-node { position: absolute; display: grid; place-items: center; width: 75px; height: 75px; border: 1px solid var(--line); border-radius: 21px; background: rgba(18,23,25,.92); box-shadow: 0 20px 50px rgba(0,0,0,.34); color: #b9c3c7; font: 800 9px/1 var(--mono); }.core-node i { width: 7px; height: 7px; margin-bottom: -10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 13px var(--mint); }.node-one { left: 5%; top: 26%; }.node-two { right: 4%; top: 30%; }.node-three { left: 16%; bottom: 11%; }.node-four { right: 13%; bottom: 8%; }
.system-copy h2 { font-size: clamp(40px,5vw,68px); }.system-list { display: grid; gap: 10px; margin-top: 34px; }.system-list > div { display: grid; grid-template-columns: 43px 1fr; align-items: start; gap: 14px; padding: 16px; border: 1px solid var(--line-soft); border-radius: 13px; background: rgba(255,255,255,.022); transition: border-color .2s ease, transform .2s ease; }.system-list > div:hover { transform: translateX(4px); border-color: rgba(138,255,193,.18); }.system-list i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: var(--mint); background: rgba(138,255,193,.06); font: 700 9px/1 var(--mono); font-style: normal; }.system-list span { display: grid; gap: 5px; }.system-list strong { font-size: 14px; }.system-list small { color: var(--muted); font-size: 12px; line-height: 1.55; }

.dashboard-section { padding: 145px 0 120px; }
.dashboard-preview { position: relative; display: grid; grid-template-columns: 78px 1fr; min-height: 610px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: #090d0f; box-shadow: 0 45px 140px rgba(0,0,0,.55), 0 0 100px rgba(106,156,255,.045); transform: perspective(1400px) rotateX(2deg); }
.preview-sidebar { display: flex; flex-direction: column; align-items: center; padding: 22px 0; border-right: 1px solid var(--line-soft); background: rgba(255,255,255,.018); }.preview-brand span { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid rgba(138,255,193,.25); border-radius: 11px; color: var(--mint); font: 800 19px/1 var(--mono); }.preview-brand strong { display: none; }.preview-sidebar nav { display: grid; gap: 16px; margin-top: 72px; }.preview-sidebar nav i { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.04); }.preview-sidebar nav i.active { background: linear-gradient(135deg, rgba(106,156,255,.5), rgba(138,255,193,.45)); box-shadow: 0 0 22px rgba(106,156,255,.12); }.preview-avatar { width: 35px; height: 35px; margin-top: auto; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--mint)); }
.preview-main { padding: 25px; }.preview-top { display: flex; justify-content: space-between; color: #d4dcdf; font: 700 12px/1 var(--mono); }.preview-top div { display: flex; gap: 9px; }.preview-top i { width: 34px; height: 28px; border: 1px solid var(--line-soft); border-radius: 8px; background: rgba(255,255,255,.025); }
.preview-hero { display: flex; justify-content: space-between; align-items: center; min-height: 170px; margin-top: 25px; padding: 34px; border: 1px solid var(--line-soft); border-radius: 18px; background: linear-gradient(135deg, rgba(106,156,255,.09), rgba(138,255,193,.035)); }.preview-hero > div:first-child { display: grid; gap: 9px; }.preview-hero small { color: var(--soft); font: 700 8px/1 var(--mono); letter-spacing: .18em; }.preview-hero strong { font-size: clamp(24px,3vw,43px); letter-spacing: -.06em; }.preview-hero span { color: var(--muted); font-size: 12px; }.preview-status { display: grid; place-items: center; gap: 8px; width: 105px; height: 105px; border: 1px solid rgba(138,255,193,.17); border-radius: 50%; color: var(--mint); font: 700 9px/1 var(--mono); }.preview-status i { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 18px var(--mint); }
.preview-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 14px; }.preview-metrics i { height: 105px; border: 1px solid var(--line-soft); border-radius: 14px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }.preview-metrics i:nth-child(1)::after,.preview-metrics i:nth-child(2)::after,.preview-metrics i:nth-child(3)::after,.preview-metrics i:nth-child(4)::after { content:""; display:block; width:42%; height:7px; margin:25px 18px; border-radius:99px; background:rgba(255,255,255,.09); box-shadow:0 22px 0 rgba(255,255,255,.18),0 43px 0 rgba(255,255,255,.05); }
.preview-content { display: grid; grid-template-columns: 1.4fr .8fr; gap: 12px; margin-top: 14px; }.preview-content > div { display: grid; gap: 10px; min-height: 170px; padding: 17px; border: 1px solid var(--line-soft); border-radius: 14px; background: rgba(255,255,255,.018); }.preview-content span { height: 25px; border-radius: 7px; background: rgba(255,255,255,.045); }.preview-shine { position: absolute; inset: -100% auto -100% -30%; width: 20%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.035), transparent); transform: rotate(18deg); animation: previewShine 8s ease-in-out infinite; }
.dashboard-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 20px; }.dashboard-benefits article { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: rgba(20,25,28,.56); }.dashboard-benefits span { color: var(--mint); font: 700 9px/1 var(--mono); }.dashboard-benefits strong { display: block; margin-top: 15px; font-size: 17px; }.dashboard-benefits p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.cta-section { padding: 40px 0 130px; }.cta-panel { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; overflow: hidden; padding: clamp(38px,6vw,75px); border: 1px solid rgba(138,255,193,.18); border-radius: 24px; background: linear-gradient(125deg, rgba(106,156,255,.12), rgba(23,29,31,.82) 45%, rgba(138,255,193,.08)); box-shadow: var(--shadow); }.cta-panel > * { position: relative; z-index: 1; }.cta-panel h2 { font-size: clamp(42px,6vw,78px); }.cta-lines { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(120deg, transparent 45%, rgba(138,255,193,.12) 45.2%, transparent 45.5%), linear-gradient(120deg, transparent 58%, rgba(106,156,255,.12) 58.2%, transparent 58.5%); }.cta-panel-actions { display: grid; gap: 10px; min-width: 230px; }
.site-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 35px; padding: 35px clamp(20px,5vw,72px); border-top: 1px solid var(--line-soft); background: rgba(8,11,12,.65); }.footer-brand .site-brand-mark { width: 37px; height: 37px; font-size: 18px; }.site-footer p { color: var(--soft); font-size: 11px; }.site-footer nav { display: flex; gap: 17px; }.site-footer nav a { color: var(--muted); font: 600 10px/1 var(--mono); text-decoration: none; }.site-footer nav a:hover { color: #fff; }.site-footer > span { grid-column: 1/-1; color: #4d575b; font: 600 9px/1 var(--mono); text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes titleFlow { from { background-position: 0 50%; } to { background-position: 100% 50%; } }
@keyframes heroOrbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes pulseDot { 50% { opacity:.55; transform:scale(.8); } }
@keyframes badgeFloat { 50% { transform: translateY(-8px); } }
@keyframes scrollLine { 0%,100% { opacity:.25; transform:scaleY(.65); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } }
@keyframes pulseRing { 50% { box-shadow:0 0 80px rgba(106,156,255,.07); transform:translate(-50%,-50%) scale(1.035); } }
@keyframes previewShine { 0%,60% { left:-30%; } 100% { left:130%; } }

@media (max-width: 1180px) {
    .site-header { grid-template-columns:auto auto 1fr; }.main-navigation { position:absolute; top:75px; left:18px; right:18px; display:none; flex-direction:column; align-items:stretch; padding:15px; border:1px solid var(--line); border-radius:14px; background:rgba(12,15,17,.96); box-shadow:var(--shadow); backdrop-filter:blur(20px); }.main-navigation.open { display:flex; }.main-navigation a { padding:13px; }.mobile-menu-button { display:grid; justify-self:end; place-items:center; width:42px; height:42px; padding:10px; border:1px solid var(--line); border-radius:10px; background:rgba(255,255,255,.025); }.mobile-menu-button span { display:block; width:19px; height:1px; background:#cbd3d6; }.header-actions { grid-column:3; grid-row:1; }.hero-section { grid-template-columns:1fr; padding-top:145px; }.hero-content { max-width:900px; }.hero-console { width:min(680px,92%); }.system-layout { grid-template-columns:1fr; }.system-visual { order:2; }.site-footer { grid-template-columns:1fr auto; }.site-footer p { grid-column:1/-1; order:3; }
}
@media (max-width: 820px) {
    .site-header { min-height:72px; padding:12px 16px; gap:10px; }.site-brand-copy { display:none; }.header-button.subtle,.account-welcome { display:none; }.header-button { min-height:40px; padding:0 13px; }.hero-section { padding:120px 22px 80px; }.hero-content h1 { font-size:clamp(62px,20vw,105px); }.hero-content h2 { margin-top:16px; }.hero-console { width:100%; }.floating-badge { display:none; }.console-window { transform:none; }.console-titlebar { grid-template-columns:1fr 1fr; }.console-titlebar > span:nth-child(2) { display:none; }.metric-strip,.feature-grid,.dashboard-benefits { grid-template-columns:1fr; }.metric-strip article { border-right:0; border-bottom:1px solid var(--line-soft); }.metric-strip article:last-child { border-bottom:0; }.feature-card.featured { grid-column:auto; display:block; }.system-visual { min-height:430px; transform:scale(.78); margin:-40px; }.dashboard-preview { grid-template-columns:52px 1fr; min-height:480px; }.preview-main { padding:15px; }.preview-hero { min-height:130px; padding:20px; }.preview-status { display:none; }.preview-metrics { grid-template-columns:repeat(2,1fr); }.preview-metrics i { height:75px; }.preview-content { grid-template-columns:1fr; }.preview-content > div:last-child { display:none; }.cta-panel { grid-template-columns:1fr; gap:30px; }.cta-panel-actions { min-width:0; }.site-footer { grid-template-columns:1fr; text-align:center; }.site-footer .site-brand { justify-content:center; }.site-footer nav { justify-content:center; }.site-footer p { margin:0; }.site-footer > span { grid-column:auto; }
}
@media (max-width: 520px) {
    .header-actions .header-button { font-size:9px; }.release-pill { line-height:1.45; }.hero-actions { display:grid; }.hero-meta { display:grid; gap:12px; }.console-body { padding:18px; }.console-line { grid-template-columns:48px 1fr; }.console-line em { display:none; }.console-footer { display:grid; }.section-shell { width:min(100% - 28px,1420px); }.intro-section,.features-section,.dashboard-section { padding-top:95px; padding-bottom:95px; }.system-section { padding:95px 0; }.system-visual { transform:scale(.62); margin:-100px; }.dashboard-preview { grid-template-columns:1fr; }.preview-sidebar { display:none; }.preview-hero strong { font-size:23px; }.preview-metrics { grid-template-columns:1fr 1fr; }.cta-section { padding-bottom:85px; }
}
@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; }
}
