
        :root {
            --bg: #04070c;
            --panel: #0a1018;
            --panel-2: #0f1622;
            --line: rgba(255, 255, 255, 0.08);
            --text: #f4f8ff;
            --muted: rgba(214, 225, 243, 0.56);
            --muted-strong: rgba(214, 225, 243, 0.74);
            --accent: #1ea5ff;
            --accent-2: #6dccff;
            --accent-deep: #2849ff;
            --accent-soft: rgba(30, 165, 255, 0.14);
            --content: min(1800px, calc(100% - 64px));
        }

        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            background:
                radial-gradient(circle at 18% 14%, rgba(30, 165, 255, 0.16), transparent 30%),
                radial-gradient(circle at 84% 18%, rgba(40, 73, 255, 0.12), transparent 24%),
                radial-gradient(circle at 58% 74%, rgba(109, 204, 255, 0.08), transparent 24%),
                linear-gradient(180deg, #02050a 0%, #04070c 100%);
            color: var(--text);
            font-family: "Inter", sans-serif;
            overflow-x: hidden;
        }

        a { color: inherit; text-decoration: none; }
        img { display: block; max-width: 100%; }
        button { font: inherit; }

        .icon {
            width: 22px;
            height: 22px;
            fill: currentColor;
            flex: 0 0 auto;
        }

        .page {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .page::before,
        .page::after {
            content: "";
            position: fixed;
            pointer-events: none;
            border-radius: 999px;
            filter: blur(120px);
            z-index: 0;
            opacity: 0.4;
        }

        .page::before {
            width: 34vw;
            height: 34vw;
            min-width: 280px;
            min-height: 280px;
            top: 12%;
            left: -10%;
            background: rgba(30, 165, 255, 0.18);
            animation: floatA 18s ease-in-out infinite;
        }

        .page::after {
            width: 36vw;
            height: 36vw;
            min-width: 300px;
            min-height: 300px;
            right: -12%;
            bottom: 4%;
            background: rgba(40, 73, 255, 0.16);
            animation: floatB 22s ease-in-out infinite;
        }

        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 6px;
            width: 100%;
            transform-origin: left;
            background: linear-gradient(90deg, var(--accent), var(--accent-2));
            z-index: 120;
            box-shadow: 0 0 18px rgba(30, 165, 255, 0.45);
        }

        .scroll-top-fab {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 68px;
            height: 68px;
            border: 0;
            border-radius: 999px;
            background: rgba(6, 12, 20, 0.92);
            color: var(--text);
            display: grid;
            place-items: center;
            cursor: pointer;
            z-index: 140;
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
            opacity: 0;
            pointer-events: none;
            transform: translate3d(0, 16px, 0) scale(0.92);
            transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
        }

        .scroll-top-fab.is-visible {
            opacity: 1;
            pointer-events: auto;
            transform: translate3d(0, 0, 0) scale(1);
        }

        .scroll-top-fab:hover {
            background: rgba(9, 17, 28, 0.95);
            box-shadow: 0 20px 42px rgba(30, 165, 255, 0.22);
            transform: translate3d(0, -1px, 0) scale(1.02);
        }

        .scroll-top-fab:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .scroll-top-fab-ring {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
            pointer-events: none;
        }

        .scroll-top-fab-track {
            fill: none;
            stroke: rgba(255, 255, 255, 0.16);
            stroke-width: 3;
        }

        .scroll-top-fab-progress {
            fill: none;
            stroke: var(--accent);
            stroke-width: 4;
            stroke-linecap: round;
            transition: stroke-dashoffset 120ms linear;
            filter: drop-shadow(0 0 8px rgba(30, 165, 255, 0.52));
        }

        .scroll-top-fab-content {
            position: relative;
            display: grid;
            place-items: center;
            gap: 2px;
            line-height: 1;
            pointer-events: none;
        }

        .scroll-top-fab-arrow {
            font-size: 18px;
            font-weight: 900;
            transform: translateY(-1px);
        }

        .scroll-top-fab-percent {
            font-size: 0.52rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.76);
        }

        .container {
            width: var(--content);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .reveal {
            opacity: 0;
            transform: translate3d(0, 48px, 0);
            transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: var(--delay, 0ms);
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        .text-stroke {
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
            color: transparent;
        }

        @supports not ((-webkit-text-stroke: 1px rgba(255, 255, 255, 0.12)) or (text-stroke: 1px rgba(255, 255, 255, 0.12))) {
            .text-stroke {
                color: rgba(255, 255, 255, 0.18);
            }
        }

        .marquee {
            display: flex;
            width: max-content;
            min-width: 100%;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }

        .top-nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(0, 0, 0, 0.82);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--line);
        }

        .top-nav .inner {
            min-height: 94px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand-link {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            flex: 0 0 auto;
        }

        .brand-mark {
            width: 52px;
            height: 52px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #04111f;
            box-shadow: 0 18px 40px rgba(30, 165, 255, 0.24);
        }

        .brand-logo {
            width: auto;
            height: 28px;
        }

        .brand-title {
            font-size: 2rem;
            font-weight: 900;
            font-style: italic;
            letter-spacing: -0.06em;
            text-transform: uppercase;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 44px;
            margin-left: auto;
        }

        .nav-links a {
            position: relative;
            color: rgba(255, 255, 255, 0.46);
            font-size: 0.68rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.34em;
            transition: color 180ms ease;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -10px;
            height: 2px;
            transform: scaleX(0);
            transform-origin: left;
            background: var(--accent);
            transition: transform 220ms ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .button,
        .ghost-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 52px;
            padding: 0 28px;
            border: 2px solid transparent;
            background: transparent;
            color: var(--text);
            font-size: 0.78rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.22em;
            transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
        }

        .button {
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            color: #05111d;
            box-shadow: 0 18px 36px rgba(30, 165, 255, 0.24);
        }

        .ghost-button {
            border-color: rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.02);
        }

        .button:hover,
        .ghost-button:hover {
            transform: translateY(-2px);
        }

        .ghost-button:hover {
            border-color: rgba(30, 165, 255, 0.42);
            color: var(--accent-2);
        }

        .flash {
            width: var(--content);
            margin: 18px auto 0;
            padding: 18px 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .flash.success {
            border-color: rgba(30, 165, 255, 0.32);
            box-shadow: inset 4px 0 0 rgba(30, 165, 255, 0.95);
        }

        .flash.error {
            border-color: rgba(255, 110, 110, 0.32);
            box-shadow: inset 4px 0 0 rgba(255, 110, 110, 0.95);
        }

        .hero {
            min-height: calc(100vh - 94px);
            display: flex;
            align-items: center;
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg-marquee {
            position: absolute;
            top: 24%;
            left: 0;
            width: 100%;
            opacity: 0.03;
            pointer-events: none;
            user-select: none;
            overflow: hidden;
        }

        .hero-bg-marquee .marquee {
            font-size: clamp(7rem, 20vw, 18rem);
            font-weight: 900;
            font-style: italic;
            line-height: 0.9;
            text-transform: uppercase;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 42px;
            align-items: end;
        }

        .hero-main {
            max-width: 1180px;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 34px;
            color: var(--accent-2);
            font-size: 0.74rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.42em;
        }

        .hero-kicker::before {
            content: "";
            width: 74px;
            height: 2px;
            background: var(--accent);
        }

        .hero-title {
            margin: 0;
            font-size: clamp(4.8rem, 14vw, 12rem);
            font-weight: 900;
            line-height: 0.8;
            letter-spacing: -0.08em;
            font-style: italic;
            text-transform: uppercase;
        }

        .hero-side {
            max-width: 340px;
            justify-self: end;
        }

        .hero-copy {
            margin: 0 0 28px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.18rem;
            line-height: 1.7;
            font-weight: 600;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .hero-actions .button,
        .hero-actions .ghost-button {
            justify-content: space-between;
            min-height: 76px;
            padding: 0 28px;
            font-size: 1.06rem;
            letter-spacing: 0.08em;
        }

        .hero-glow {
            position: absolute;
            border-radius: 999px;
            filter: blur(120px);
            pointer-events: none;
        }

        .hero-glow.a {
            top: 20%;
            right: 10%;
            width: 280px;
            height: 280px;
            background: rgba(30, 165, 255, 0.12);
        }

        .hero-glow.b {
            left: 4%;
            bottom: 10%;
            width: 360px;
            height: 360px;
            background: rgba(255, 255, 255, 0.04);
        }

        .proof-band {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.02);
            overflow: hidden;
        }

        .proof-band .marquee {
            padding: 18px 0;
            font-size: 1.2rem;
            font-weight: 900;
            font-style: italic;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.22);
            letter-spacing: -0.03em;
        }

        .proof-item {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            margin: 0 40px;
        }

        .proof-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: var(--accent);
            box-shadow: 0 0 14px rgba(30, 165, 255, 0.5);
        }

        .section {
            padding: 160px 0;
            position: relative;
        }

        .section-head {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 28px;
            margin-bottom: 72px;
        }

        .section-title {
            margin: 0;
            font-size: clamp(3.4rem, 10vw, 8.8rem);
            font-weight: 900;
            line-height: 0.8;
            letter-spacing: -0.08em;
            font-style: italic;
            text-transform: uppercase;
        }

        .section-copy {
            max-width: 560px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.28rem;
            line-height: 1.65;
            font-weight: 600;
        }

        .section-side-stat {
            align-self: flex-start;
            text-align: left;
        }

        .section-side-stat strong {
            display: block;
            font-size: clamp(5rem, 12vw, 10rem);
            font-weight: 900;
            line-height: 0.8;
            color: rgba(255, 255, 255, 0.05);
            font-style: italic;
        }

        .section-side-stat span {
            display: inline-block;
            margin-top: 8px;
            color: var(--accent-2);
            font-size: 0.72rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.42em;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 1px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .module-card {
            position: relative;
            background: #070b11;
            padding: 34px;
            overflow: hidden;
            min-height: 300px;
        }

        .module-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--accent);
            transition: height 280ms ease;
        }

        .module-card::after {
            content: "";
            position: absolute;
            right: -30px;
            bottom: -40px;
            width: 160px;
            height: 160px;
            border-radius: 999px;
            background: rgba(30, 165, 255, 0.08);
            filter: blur(40px);
            opacity: 0;
            transition: opacity 280ms ease;
        }

        .module-card:hover::before {
            height: 100%;
        }

        .module-card:hover::after {
            opacity: 1;
        }

        .module-index {
            margin-bottom: 24px;
            color: rgba(30, 165, 255, 0.24);
            font-size: 3.4rem;
            font-weight: 900;
            font-style: italic;
            line-height: 1;
        }

        .module-icon {
            color: var(--accent-2);
            margin-bottom: 20px;
        }

        .module-card h3 {
            margin: 0 0 12px;
            font-size: 1.7rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            font-style: italic;
        }

        .module-card p {
            margin: 0;
            color: rgba(255, 255, 255, 0.42);
            font-size: 0.95rem;
            line-height: 1.8;
            font-weight: 600;
        }

        .panel-intro {
            margin-bottom: 74px;
            text-align: center;
        }

        .panel-intro p {
            max-width: 760px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.42);
            font-size: 1.18rem;
            line-height: 1.7;
            font-weight: 600;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 22px;
        }

        .bento-main,
        .bento-card {
            position: relative;
            background: #070b11;
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }

        .bento-main {
            min-height: 620px;
            padding: 18px;
        }

        .bento-main::before,
        .bento-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(30, 165, 255, 0.12), transparent 36%);
            opacity: 0;
            transition: opacity 280ms ease;
            pointer-events: none;
        }

        .bento-main:hover::before,
        .bento-card:hover::before {
            opacity: 1;
        }

        .mock-dashboard {
            position: relative;
            height: 100%;
            border-radius: 22px;
            background: linear-gradient(180deg, rgba(13, 20, 32, 0.98), rgba(6, 10, 16, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 18px;
            display: grid;
            grid-template-rows: auto 1fr;
            gap: 18px;
        }

        .mock-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .mock-pills {
            display: flex;
            gap: 10px;
        }

        .mock-pill {
            height: 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
        }

        .mock-pill.wide { width: 120px; }
        .mock-pill.mid { width: 72px; }
        .mock-pill.small { width: 44px; }

        .mock-layout {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 18px;
            min-height: 0;
        }

        .mock-sidebar,
        .mock-content {
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.02);
            border-radius: 18px;
            padding: 18px;
        }

        .mock-sidebar {
            display: grid;
            grid-template-rows: repeat(6, 1fr);
            gap: 12px;
        }

        .mock-row {
            border-radius: 12px;
            background: linear-gradient(90deg, rgba(30, 165, 255, 0.2), rgba(255, 255, 255, 0.04));
        }

        .mock-content {
            display: grid;
            gap: 16px;
        }

        .mock-chart {
            min-height: 220px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background:
                linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
                linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
            background-size: 100% 48px, 48px 100%, auto;
            position: relative;
            overflow: hidden;
        }

        .mock-chart-line {
            position: absolute;
            inset: 0;
        }

        .mock-chart-line svg {
            width: 100%;
            height: 100%;
        }

        .mock-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
        }

        .mock-stat {
            min-height: 110px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .mock-stat span {
            display: block;
            color: rgba(255, 255, 255, 0.34);
            font-size: 0.72rem;
            font-weight: 900;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .mock-stat strong {
            font-size: 2.2rem;
            font-weight: 900;
            font-style: italic;
            letter-spacing: -0.06em;
        }

        .bento-stack {
            display: grid;
            gap: 22px;
        }

        .bento-card {
            min-height: 210px;
            padding: 34px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bento-card.is-accent {
            background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
            color: #05111d;
        }

        .bento-card.is-accent .icon,
        .bento-card.is-accent p,
        .bento-card.is-accent h3 {
            color: inherit;
        }

        .bento-card h3 {
            margin: 0 0 12px;
            font-size: 2.1rem;
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            font-style: italic;
        }

        .bento-card p {
            margin: 0;
            color: rgba(255, 255, 255, 0.42);
            font-size: 0.95rem;
            line-height: 1.75;
            font-weight: 600;
        }

        .bento-card.is-accent p {
            color: rgba(5, 17, 29, 0.62);
        }

        .bento-card .mini-mock {
            min-height: 150px;
            border-radius: 20px;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
                linear-gradient(180deg, rgba(7, 11, 17, 0.95), rgba(7, 11, 17, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: grid;
            place-items: center;
        }

        .bento-card .mini-mock .icon {
            width: 52px;
            height: 52px;
            color: var(--accent-2);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 16px;
        }

        .pricing-card {
            padding: 54px 40px;
            background: rgba(255, 255, 255, 0.01);
            display: flex;
            flex-direction: column;
        }

        .pricing-card.is-highlight {
            background: rgba(255, 255, 255, 0.04);
        }

        .pricing-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 36px;
        }

        .pricing-head h3 {
            margin: 0;
            font-size: 2.4rem;
            font-weight: 900;
            font-style: italic;
            text-transform: uppercase;
            letter-spacing: -0.05em;
        }

        .pricing-card.is-highlight .pricing-head h3 {
            color: var(--accent-2);
        }

        .pricing-badge {
            background: var(--accent);
            color: #06111d;
            padding: 5px 10px;
            font-size: 0.58rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.18em;
        }

        .pricing-price {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            margin-bottom: 48px;
        }

        .pricing-price small {
            color: rgba(255, 255, 255, 0.34);
            font-size: 1.4rem;
            font-weight: 900;
            font-style: italic;
            text-transform: uppercase;
        }

        .pricing-price strong {
            font-size: clamp(4.6rem, 8vw, 6.8rem);
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -0.08em;
        }

        .pricing-price span {
            color: rgba(255, 255, 255, 0.22);
            font-size: 1.15rem;
            font-weight: 900;
            font-style: italic;
            text-transform: uppercase;
        }

        .pricing-description {
            margin: 0 0 28px;
            color: rgba(255, 255, 255, 0.48);
            font-size: 0.98rem;
            line-height: 1.55;
            max-width: 44ch;
        }

        .pricing-list {
            list-style: none;
            padding: 0;
            margin: 0 0 54px;
            display: grid;
            gap: 18px;
            flex: 1 1 auto;
        }

        .pricing-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.84rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .pricing-list li::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.2);
            flex: 0 0 auto;
        }

        .pricing-card.is-highlight .pricing-list li::before {
            background: var(--accent);
        }

        .pricing-card .button,
        .pricing-card .ghost-button {
            width: 100%;
            min-height: 74px;
            font-size: 1.02rem;
            letter-spacing: 0.14em;
        }

        .final-cta {
            position: relative;
            overflow: hidden;
            padding: 180px 0;
            background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
            color: #04111f;
        }

        .final-cta .marquee {
            font-size: clamp(10rem, 30vw, 22rem);
            font-weight: 900;
            font-style: italic;
            line-height: 0.8;
            color: rgba(0, 0, 0, 0.1);
        }

        .final-cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .final-cta h2 {
            margin: 0 0 48px;
            font-size: clamp(4.6rem, 12vw, 10rem);
            font-weight: 900;
            line-height: 0.8;
            letter-spacing: -0.08em;
            text-transform: uppercase;
            font-style: italic;
        }

        .final-cta-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
        }

        .final-cta .button,
        .final-cta .ghost-button {
            min-height: 82px;
            padding: 0 44px;
            font-size: 1.18rem;
            letter-spacing: 0.08em;
        }

        .final-cta .button {
            background: #04111f;
            color: var(--accent-2);
            box-shadow: none;
        }

        .final-cta .ghost-button {
            border-color: rgba(4, 17, 31, 0.28);
            color: #04111f;
            background: transparent;
        }

        .footer {
            padding: 140px 0 80px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 64px;
            margin-bottom: 96px;
        }

        .footer-brand .brand-link {
            margin-bottom: 28px;
        }

        .footer-brand p {
            max-width: 720px;
            margin: 0;
            color: rgba(255, 255, 255, 0.18);
            font-size: clamp(1.7rem, 4vw, 3.2rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            font-style: italic;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 26px;
        }

        .footer-group h4 {
            margin: 0 0 22px;
            color: var(--accent-2);
            font-size: 0.66rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.42em;
        }

        .footer-group ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 16px;
        }

        .footer-group a {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.88rem;
            font-weight: 900;
            text-transform: uppercase;
            font-style: italic;
            transition: color 180ms ease;
        }

        .footer-group a:hover {
            color: #fff;
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 18px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-bottom span,
        .footer-bottom div {
            color: rgba(255, 255, 255, 0.18);
            font-size: 0.68rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.32em;
        }

        .footer-bottom div {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes floatA {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
            50% { transform: translate3d(40px, 28px, 0) scale(1.08); }
        }

        @keyframes floatB {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
            50% { transform: translate3d(-40px, -26px, 0) scale(1.12); }
        }

        @keyframes spinSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .spin-slow {
            animation: spinSlow 10s linear infinite;
        }

        @media (min-width: 1100px) {
            .nav-links {
                display: flex;
            }

            .hero-grid {
                grid-template-columns: minmax(0, 9fr) minmax(260px, 3fr);
            }

            .section-head {
                flex-direction: row;
                align-items: flex-end;
            }

            .section-side-stat {
                text-align: right;
                align-self: flex-end;
            }

            .modules-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .bento-grid {
                grid-template-columns: minmax(0, 8fr) minmax(320px, 4fr);
            }

            .footer-grid {
                grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
            }

            .footer-links {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .final-cta-actions {
                flex-direction: row;
                justify-content: center;
            }

            .pricing-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 1099px) {
            .mock-layout {
                grid-template-columns: 1fr;
            }

            .mock-sidebar {
                grid-template-rows: none;
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 820px) {
            :root {
                --content: min(100% - 28px, 1800px);
            }

            .top-nav .inner {
                min-height: 82px;
            }

            .brand-title {
                font-size: 1.5rem;
            }

            .hero {
                padding: 54px 0 44px;
            }

            .hero-copy,
            .section-copy,
            .panel-intro p {
                font-size: 1rem;
            }

            .hero-actions .button,
            .hero-actions .ghost-button,
            .pricing-card .button,
            .pricing-card .ghost-button,
            .final-cta .button,
            .final-cta .ghost-button {
                width: 100%;
            }

            .scroll-top-fab {
                right: 14px;
                bottom: 14px;
                width: 62px;
                height: 62px;
            }

            .mock-stats {
                grid-template-columns: 1fr;
            }

            .pricing-card {
                padding: 40px 26px;
            }

            .footer-bottom {
                text-align: center;
            }

            .footer-bottom div {
                justify-content: center;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto !important;
            }

            .page::before,
            .page::after,
            .hero-glow,
            .progress-bar,
            .scroll-top-fab,
            .scroll-top-fab-progress {
                animation: none !important;
                transition: none !important;
            }

            .reveal {
                transition: opacity 220ms ease !important, transform 220ms ease !important;
            }

            .marquee {
                animation-duration: 32s !important;
            }
        }
    
/* ---- Conta / login (mesmo sistema visual) ---- */
.auth-shell { min-height: calc(100vh - 94px); display: grid; place-items: center; padding: 48px 0 80px; }
.auth-card {
  width: min(100%, 460px);
  padding: 42px 34px 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 22, 34, 0.96), rgba(10, 16, 24, 0.94));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}
.auth-card .brand-link { margin-bottom: 22px; }
.auth-card h1 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 0.9;
}
.auth-card .auth-copy {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 600;
}
.form-grid { display: grid; gap: 16px; }
.form-grid label {
  display: grid; gap: 8px;
  color: rgba(255,255,255,0.42);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.form-grid input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.28);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
}
.form-grid input:focus {
  outline: none;
  border-color: rgba(30,165,255,0.7);
  box-shadow: 0 0 0 3px rgba(30,165,255,0.16);
}
.auth-extra {
  margin: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.auth-extra a { color: var(--accent-2); }
.flash {
  width: 100%;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 0.9rem;
  font-weight: 600;
}
.flash.success { border-color: rgba(30,165,255,0.32); box-shadow: inset 4px 0 0 rgba(30,165,255,0.95); }
.flash.error { border-color: rgba(255,110,110,0.32); box-shadow: inset 4px 0 0 rgba(255,110,110,0.95); }
.account-page { padding: 48px 0 100px; }
.account-page .section-title { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: 12px; }
.account-page .section-copy { margin-bottom: 36px; }
.panel-box {
  border: 1px solid var(--line);
  background: rgba(15, 22, 34, 0.72);
  padding: 28px;
  margin-bottom: 22px;
}
.panel-box h2 {
  margin: 0 0 18px;
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.license-list { display: grid; gap: 16px; }
.license-card {
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  padding: 20px;
}
.license-top { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.license-top strong { font-style: italic; text-transform: uppercase; letter-spacing: -0.03em; }
.badge {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
}
.badge-ok { color: #6dccff; border-color: rgba(30,165,255,0.35); }
.badge-bad { color: #ff8d8d; border-color: rgba(255,110,110,0.35); }
.badge-warn { color: #ffd27a; border-color: rgba(255,190,90,0.35); }
.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 18px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 600;
}
.meta-grid span {
  display: block;
  color: rgba(255,255,255,0.34);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.token-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.token-row code {
  flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
  padding: 12px 14px;
  font-size: 0.8rem;
}
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.actions .ghost-button, .actions .button { min-height: 48px; padding: 0 18px; font-size: 0.72rem; }
@media (max-width: 640px) {
  .meta-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 22px 26px; }
}
