:root {
            color-scheme: dark;
            --bg: #050914;
            --bg-deep: #03060e;
            --surface: rgba(12, 23, 46, 0.78);
            --surface-solid: #0b162b;
            --surface-light: #101f3b;
            --line: rgba(151, 188, 235, 0.14);
            --line-strong: rgba(71, 190, 255, 0.32);
            --text: #f4f8ff;
            --muted: #9baac2;
            --muted-light: #c9d6e8;
            --blue: #1687ff;
            --blue-strong: #0567e8;
            --cyan: #44e4ff;
            --cyan-soft: #a8f5ff;
            --green: #48e6a4;
            --amber: #ffc56e;
            --danger: #ff7d8f;
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 30px;
            --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
            --container: 1180px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 110px;
        }

        body {
            margin: 0;
            min-width: 320px;
            overflow-x: hidden;
            background:
                radial-gradient(circle at 12% 2%, rgba(15, 112, 255, 0.16), transparent 28rem),
                radial-gradient(circle at 92% 18%, rgba(68, 228, 255, 0.09), transparent 25rem),
                linear-gradient(180deg, var(--bg) 0%, #060b18 44%, var(--bg-deep) 100%);
            color: var(--text);
            font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body::before {
            position: fixed;
            inset: 0;
            z-index: -2;
            pointer-events: none;
            content: "";
            opacity: 0.26;
            background-image:
                linear-gradient(rgba(98, 157, 225, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(98, 157, 225, 0.035) 1px, transparent 1px);
            background-size: 54px 54px;
            mask-image: linear-gradient(to bottom, black, transparent 78%);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        a {
            -webkit-tap-highlight-color: transparent;
        }

        button {
            color: inherit;
            font: inherit;
        }

        img,
        svg {
            display: block;
            max-width: 100%;
        }

        .container {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto;
        }

        .skip-link {
            position: fixed;
            top: 10px;
            left: 10px;
            z-index: 1000;
            padding: 10px 14px;
            border-radius: 10px;
            background: #ffffff;
            color: #07101f;
            transform: translateY(-140%);
            transition: transform 0.2s ease;
        }

        .skip-link:focus {
            transform: translateY(0);
        }

        .site-header {
            position: fixed;
            top: 16px;
            right: 0;
            left: 0;
            z-index: 100;
            transition: top 0.25s ease;
        }

        .header-shell {
            display: flex;
            min-height: 72px;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 11px 14px 11px 18px;
            border: 1px solid var(--line);
            border-radius: 22px;
            background: rgba(5, 10, 23, 0.76);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(22px) saturate(140%);
            -webkit-backdrop-filter: blur(22px) saturate(140%);
        }

        .site-header.is-scrolled {
            top: 8px;
        }

        .site-header.is-scrolled .header-shell {
            border-color: rgba(59, 173, 255, 0.2);
            background: rgba(4, 9, 20, 0.91);
        }

        .brand {
            display: inline-flex;
            flex: 0 0 auto;
            align-items: center;
            gap: 10px;
            min-width: max-content;
        }

        .brand-mark {
            display: grid;
            width: 44px;
            height: 44px;
            place-items: center;
            border: 1px solid rgba(94, 216, 255, 0.35);
            border-radius: 15px;
            background:
                linear-gradient(145deg, rgba(48, 180, 255, 0.24), rgba(9, 42, 91, 0.35)),
                #08142a;
            box-shadow: inset 0 0 22px rgba(44, 191, 255, 0.14), 0 0 25px rgba(0, 129, 255, 0.12);
            color: var(--cyan-soft);
            font-size: 34px;
            font-weight: 700;
            line-height: 1;
            text-shadow: 0 0 18px rgba(68, 228, 255, 0.65);
        }

        .brand-name {
            font-size: 18px;
            font-weight: 760;
            letter-spacing: -0.025em;
        }

        .brand-name span {
            color: var(--cyan);
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .desktop-nav a {
            position: relative;
            padding: 10px 10px;
            border-radius: 10px;
            color: var(--muted-light);
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            transition: color 0.2s ease, background 0.2s ease;
        }

        .desktop-nav a:hover,
        .desktop-nav a:focus-visible {
            outline: none;
            background: rgba(55, 148, 255, 0.09);
            color: #ffffff;
        }

        .header-cta {
            display: inline-flex;
            min-height: 44px;
            flex: 0 0 auto;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0 16px;
            border: 1px solid rgba(84, 219, 255, 0.32);
            border-radius: 13px;
            background: linear-gradient(135deg, var(--blue), #0b69e4);
            box-shadow: 0 12px 28px rgba(0, 106, 232, 0.26);
            color: #ffffff;
            font-size: 13px;
            font-weight: 750;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .header-cta:hover,
        .header-cta:focus-visible {
            outline: none;
            box-shadow: 0 16px 34px rgba(0, 126, 255, 0.34);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            width: 46px;
            height: 46px;
            cursor: pointer;
            place-items: center;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: rgba(20, 38, 69, 0.62);
        }

        .menu-toggle span,
        .menu-toggle span::before,
        .menu-toggle span::after {
            display: block;
            width: 20px;
            height: 2px;
            border-radius: 20px;
            background: #dff6ff;
            content: "";
            transition: transform 0.22s ease, opacity 0.22s ease;
        }

        .menu-toggle span {
            position: relative;
        }

        .menu-toggle span::before {
            position: absolute;
            transform: translateY(-6px);
        }

        .menu-toggle span::after {
            position: absolute;
            transform: translateY(6px);
        }

        .menu-toggle[aria-expanded="true"] span {
            background: transparent;
        }

        .menu-toggle[aria-expanded="true"] span::before {
            transform: rotate(45deg);
        }

        .menu-toggle[aria-expanded="true"] span::after {
            transform: rotate(-45deg);
        }

        .mobile-menu {
            display: none;
        }

        main {
            overflow: hidden;
        }

        .hero {
            position: relative;
            min-height: 790px;
            display: flex;
            align-items: center;
            padding: 148px 0 88px;
        }

        .hero::before {
            position: absolute;
            top: 80px;
            left: 50%;
            z-index: -1;
            width: min(940px, 90vw);
            height: 520px;
            border: 1px solid rgba(59, 188, 255, 0.06);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(20, 116, 255, 0.11), transparent 67%);
            content: "";
            filter: blur(6px);
            transform: translateX(-50%);
        }

        .hero-grid {
            display: grid;
            align-items: center;
            gap: clamp(50px, 8vw, 96px);
            grid-template-columns: minmax(0, 1.07fr) minmax(390px, 0.93fr);
        }

        .eyebrow {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            gap: 9px;
            margin: 0 0 21px;
            padding: 8px 12px;
            border: 1px solid rgba(70, 203, 255, 0.2);
            border-radius: 999px;
            background: rgba(20, 119, 213, 0.08);
            color: var(--cyan-soft);
            font-size: 12px;
            font-weight: 750;
            letter-spacing: 0.09em;
            text-transform: uppercase;
        }

        .eyebrow-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 0 5px rgba(68, 228, 255, 0.1), 0 0 16px rgba(68, 228, 255, 0.8);
        }

        .hero h1 {
            max-width: 780px;
            margin: 0;
            font-size: clamp(46px, 6.1vw, 78px);
            font-weight: 780;
            letter-spacing: -0.058em;
            line-height: 1.02;
        }

        .gradient-text {
            background: linear-gradient(92deg, #ffffff 0%, #8cdfff 35%, #1687ff 88%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-lead {
            max-width: 650px;
            margin: 25px 0 0;
            color: var(--muted-light);
            font-size: clamp(17px, 2vw, 20px);
            line-height: 1.75;
        }

        .hero-lead strong {
            color: #ffffff;
            font-weight: 700;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 34px;
        }

        .button {
            display: inline-flex;
            min-height: 54px;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 21px;
            border: 1px solid transparent;
            border-radius: 15px;
            font-size: 14px;
            font-weight: 750;
            transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
        }

        .button-primary {
            border-color: rgba(93, 221, 255, 0.28);
            background: linear-gradient(135deg, #168dff 0%, #075dd2 100%);
            box-shadow: 0 15px 38px rgba(7, 104, 225, 0.28);
            color: #ffffff;
        }

        .button-secondary {
            border-color: var(--line);
            background: rgba(15, 29, 54, 0.68);
            color: #eaf4ff;
        }

        .button:hover,
        .button:focus-visible {
            outline: none;
            border-color: rgba(96, 222, 255, 0.45);
            transform: translateY(-3px);
        }

        .button-primary:hover,
        .button-primary:focus-visible {
            box-shadow: 0 18px 44px rgba(7, 126, 255, 0.36);
        }

        .button-arrow {
            font-size: 18px;
            line-height: 1;
            transition: transform 0.2s ease;
        }

        .button:hover .button-arrow {
            transform: translateX(3px);
        }

        .hero-note {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            max-width: 590px;
            margin-top: 22px;
            color: #8d9bb0;
            font-size: 12.5px;
            line-height: 1.65;
        }

        .hero-note svg {
            width: 17px;
            flex: 0 0 17px;
            margin-top: 2px;
            color: var(--amber);
        }

        .performance-card {
            position: relative;
            overflow: hidden;
            padding: 24px;
            border: 1px solid rgba(94, 182, 255, 0.21);
            border-radius: var(--radius-lg);
            background:
                linear-gradient(150deg, rgba(20, 49, 91, 0.58), rgba(8, 18, 38, 0.9)),
                var(--surface-solid);
            box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
            isolation: isolate;
        }

        .performance-card::before {
            position: absolute;
            top: -150px;
            right: -130px;
            z-index: -1;
            width: 330px;
            height: 330px;
            border-radius: 50%;
            background: rgba(16, 139, 255, 0.14);
            content: "";
            filter: blur(14px);
        }

        .performance-card::after {
            position: absolute;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.025), transparent 66%);
            content: "";
        }

        .card-topline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }

        .card-label {
            color: #eef7ff;
            font-size: 14px;
            font-weight: 720;
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 10px;
            border: 1px solid rgba(75, 218, 255, 0.22);
            border-radius: 999px;
            background: rgba(40, 173, 233, 0.08);
            color: var(--cyan-soft);
            font-size: 10px;
            font-weight: 750;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .status-pill::before {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 10px var(--cyan);
            content: "";
        }

        .data-placeholder {
            display: grid;
            min-height: 180px;
            place-items: center;
            margin: 22px 0 17px;
            border: 1px solid rgba(112, 172, 231, 0.1);
            border-radius: 22px;
            background:
                linear-gradient(rgba(102, 167, 230, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(102, 167, 230, 0.045) 1px, transparent 1px),
                rgba(4, 12, 27, 0.35);
            background-size: 34px 34px;
            text-align: center;
        }

        .data-icon {
            display: grid;
            width: 58px;
            height: 58px;
            place-items: center;
            margin: 0 auto 11px;
            border: 1px solid rgba(85, 206, 255, 0.21);
            border-radius: 18px;
            background: rgba(19, 111, 197, 0.12);
            color: var(--cyan-soft);
            font-size: 25px;
        }

        .data-placeholder strong {
            display: block;
            font-size: 14px;
        }

        .data-placeholder span {
            display: block;
            max-width: 265px;
            margin-top: 5px;
            color: var(--muted);
            font-size: 11.5px;
            line-height: 1.55;
        }

        .metric-grid {
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(3, 1fr);
        }

        .metric {
            padding: 13px 12px;
            border: 1px solid rgba(119, 171, 224, 0.1);
            border-radius: 15px;
            background: rgba(10, 26, 53, 0.46);
        }

        .metric span {
            display: block;
            color: var(--muted);
            font-size: 10px;
        }

        .metric strong {
            display: block;
            margin-top: 4px;
            color: #eef8ff;
            font-size: 18px;
            line-height: 1.2;
        }

        .transparency-line {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin-top: 16px;
            color: #a7b8cd;
            font-size: 11px;
            line-height: 1.55;
        }

        .check {
            display: grid;
            width: 17px;
            height: 17px;
            flex: 0 0 17px;
            place-items: center;
            margin-top: 1px;
            border-radius: 50%;
            background: rgba(72, 230, 164, 0.12);
            color: var(--green);
            font-size: 10px;
            font-weight: 900;
        }

        .trust-strip {
            position: relative;
            z-index: 2;
            margin-top: -16px;
        }

        .trust-grid {
            display: grid;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 22px;
            background: rgba(8, 17, 35, 0.76);
            box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(16px);
            grid-template-columns: repeat(4, 1fr);
        }

        .trust-item {
            min-height: 98px;
            display: flex;
            align-items: center;
            gap: 13px;
            padding: 20px 24px;
            border-right: 1px solid var(--line);
        }

        .trust-item:last-child {
            border-right: 0;
        }

        .trust-icon {
            display: grid;
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            place-items: center;
            border-radius: 13px;
            background: rgba(24, 132, 255, 0.1);
            color: var(--cyan);
            font-size: 18px;
        }

        .trust-item strong,
        .trust-item span {
            display: block;
        }

        .trust-item strong {
            color: #eaf4ff;
            font-size: 13px;
        }

        .trust-item span {
            margin-top: 2px;
            color: var(--muted);
            font-size: 11px;
            line-height: 1.4;
        }

        .section {
            position: relative;
            padding: 118px 0;
        }

        .section-sm {
            padding: 82px 0;
        }

        .section-heading {
            max-width: 720px;
            margin-bottom: 44px;
        }

        .section-heading.center {
            margin-right: auto;
            margin-left: auto;
            text-align: center;
        }

        .section-kicker {
            display: block;
            margin-bottom: 13px;
            color: var(--cyan);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .section-heading h2,
        .split-copy h2,
        .cta-copy h2 {
            margin: 0;
            font-size: clamp(34px, 4.5vw, 54px);
            font-weight: 760;
            letter-spacing: -0.045em;
            line-height: 1.1;
        }

        .section-heading p,
        .split-copy > p,
        .cta-copy > p {
            margin: 18px 0 0;
            color: var(--muted-light);
            font-size: 16px;
            line-height: 1.75;
        }

        .performance-layout {
            display: grid;
            align-items: stretch;
            gap: 24px;
            grid-template-columns: 0.9fr 1.1fr;
        }

        .info-panel,
        .data-panel,
        .feature-card,
        .step-card,
        .partner-card {
            border: 1px solid var(--line);
            background: linear-gradient(155deg, rgba(15, 31, 59, 0.76), rgba(7, 16, 34, 0.78));
            box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
        }

        .info-panel,
        .data-panel {
            padding: clamp(24px, 4vw, 38px);
            border-radius: var(--radius-lg);
        }

        .info-panel h3,
        .data-panel h3,
        .feature-card h3,
        .partner-card h3 {
            margin: 0;
            color: #f4f8ff;
            font-size: 19px;
            line-height: 1.35;
        }

        .info-panel > p,
        .data-panel > p,
        .feature-card p,
        .partner-card > p {
            margin: 11px 0 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .principle-list {
            display: grid;
            gap: 12px;
            margin-top: 24px;
        }

        .principle {
            display: flex;
            align-items: flex-start;
            gap: 13px;
            padding: 15px;
            border: 1px solid rgba(121, 181, 235, 0.1);
            border-radius: 16px;
            background: rgba(10, 29, 57, 0.39);
        }

        .principle-number {
            display: grid;
            width: 29px;
            height: 29px;
            flex: 0 0 29px;
            place-items: center;
            border-radius: 9px;
            background: rgba(25, 139, 255, 0.13);
            color: var(--cyan-soft);
            font-size: 11px;
            font-weight: 800;
        }

        .principle strong,
        .principle span {
            display: block;
        }

        .principle strong {
            color: #eaf5ff;
            font-size: 13px;
        }

        .principle span {
            margin-top: 3px;
            color: var(--muted);
            font-size: 11.5px;
            line-height: 1.55;
        }

        .data-source {
            display: grid;
            align-items: center;
            gap: 10px;
            margin-top: 27px;
            grid-template-columns: 1fr auto 1fr auto 1fr;
        }

        .source-node {
            min-height: 102px;
            display: grid;
            place-items: center;
            padding: 14px 8px;
            border: 1px solid rgba(95, 172, 235, 0.12);
            border-radius: 17px;
            background: rgba(8, 24, 50, 0.56);
            text-align: center;
        }

        .source-node b {
            display: grid;
            width: 38px;
            height: 38px;
            place-items: center;
            margin: 0 auto 8px;
            border-radius: 12px;
            background: rgba(17, 131, 244, 0.13);
            color: var(--cyan);
            font-size: 15px;
        }

        .source-node span {
            color: #dce9f7;
            font-size: 10.5px;
            font-weight: 700;
            line-height: 1.35;
        }

        .source-arrow {
            color: #547493;
            font-size: 15px;
        }

        .data-notice {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 22px;
            padding: 14px 15px;
            border: 1px solid rgba(255, 197, 110, 0.14);
            border-radius: 15px;
            background: rgba(255, 174, 61, 0.055);
            color: #c7b895;
            font-size: 11.5px;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            gap: 18px;
            grid-template-columns: repeat(3, 1fr);
        }

        .feature-card {
            padding: 28px;
            border-radius: 23px;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }

        .feature-card:hover {
            border-color: rgba(68, 193, 255, 0.25);
            transform: translateY(-5px);
        }

        .feature-icon {
            display: grid;
            width: 48px;
            height: 48px;
            place-items: center;
            margin-bottom: 21px;
            border: 1px solid rgba(74, 202, 255, 0.2);
            border-radius: 15px;
            background: rgba(23, 132, 242, 0.11);
            color: var(--cyan-soft);
            font-size: 20px;
        }

        .steps {
            display: grid;
            gap: 17px;
            counter-reset: steps;
            grid-template-columns: repeat(4, 1fr);
        }

        .step-card {
            position: relative;
            min-height: 260px;
            padding: 26px;
            border-radius: 23px;
            counter-increment: steps;
        }

        .step-card::before {
            display: grid;
            width: 42px;
            height: 42px;
            place-items: center;
            margin-bottom: 36px;
            border: 1px solid rgba(62, 202, 255, 0.23);
            border-radius: 14px;
            background: rgba(13, 119, 226, 0.12);
            color: var(--cyan);
            content: "0" counter(steps);
            font-size: 12px;
            font-weight: 850;
        }

        .step-card:not(:last-child)::after {
            position: absolute;
            top: 47px;
            right: -18px;
            z-index: 2;
            width: 18px;
            height: 1px;
            background: linear-gradient(90deg, rgba(68, 228, 255, 0.6), transparent);
            content: "";
        }

        .step-card h3 {
            margin: 0;
            color: #eef7ff;
            font-size: 17px;
        }

        .step-card p {
            margin: 10px 0 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.7;
        }

        .split-section {
            display: grid;
            align-items: center;
            gap: clamp(40px, 8vw, 90px);
            grid-template-columns: 0.9fr 1.1fr;
        }

        .fee-visual {
            position: relative;
            overflow: hidden;
            padding: 34px;
            border: 1px solid rgba(68, 204, 255, 0.2);
            border-radius: 30px;
            background: linear-gradient(145deg, rgba(14, 43, 82, 0.8), rgba(7, 17, 36, 0.91));
            box-shadow: var(--shadow);
        }

        .fee-visual::after {
            position: absolute;
            right: -80px;
            bottom: -100px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: rgba(13, 128, 255, 0.16);
            content: "";
            filter: blur(25px);
        }

        .fee-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
        }

        .fee-top span {
            color: var(--muted);
            font-size: 12px;
        }

        .fee-top strong {
            display: block;
            margin-top: 6px;
            color: #ffffff;
            font-size: clamp(38px, 6vw, 62px);
            letter-spacing: -0.05em;
            line-height: 1;
        }

        .fee-badge {
            padding: 7px 10px;
            border: 1px solid rgba(78, 227, 168, 0.2);
            border-radius: 999px;
            background: rgba(72, 230, 164, 0.08);
            color: var(--green);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .fee-divider {
            height: 1px;
            margin: 28px 0;
            background: linear-gradient(90deg, var(--line-strong), transparent);
        }

        .fee-breakdown {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 12px;
        }

        .fee-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            color: var(--muted-light);
            font-size: 13px;
        }

        .fee-row strong {
            color: #ffffff;
        }

        .split-copy .button {
            margin-top: 28px;
        }

        .partner-points {
            display: grid;
            gap: 12px;
            margin-top: 25px;
        }

        .partner-point {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #c6d4e6;
            font-size: 13px;
        }

        .partner-point .check {
            margin-top: 2px;
        }

        .cta-panel {
            position: relative;
            display: grid;
            overflow: hidden;
            align-items: center;
            gap: 48px;
            padding: clamp(35px, 6vw, 68px);
            border: 1px solid rgba(70, 196, 255, 0.22);
            border-radius: 34px;
            background:
                radial-gradient(circle at 90% 0%, rgba(44, 188, 255, 0.18), transparent 38%),
                linear-gradient(135deg, rgba(14, 48, 93, 0.93), rgba(6, 17, 37, 0.94));
            box-shadow: var(--shadow);
            grid-template-columns: 1fr auto;
        }

        .cta-panel::before {
            position: absolute;
            right: 10%;
            bottom: -120px;
            width: 330px;
            height: 240px;
            border: 1px solid rgba(93, 214, 255, 0.1);
            border-radius: 50%;
            content: "";
            transform: rotate(-15deg);
        }

        .cta-actions {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 210px;
        }

        .cta-actions .button {
            width: 100%;
        }

        .cta-small {
            color: #8ea2bb;
            font-size: 10.5px;
            text-align: center;
        }

        .faq-list {
            display: grid;
            max-width: 860px;
            gap: 12px;
            margin: 0 auto;
        }

        .faq-item {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: rgba(10, 22, 44, 0.65);
        }

        .faq-item summary {
            position: relative;
            cursor: pointer;
            padding: 21px 58px 21px 22px;
            color: #eaf4ff;
            font-size: 14px;
            font-weight: 700;
            list-style: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            position: absolute;
            top: 50%;
            right: 22px;
            display: grid;
            width: 28px;
            height: 28px;
            place-items: center;
            border: 1px solid var(--line);
            border-radius: 9px;
            color: var(--cyan);
            content: "+";
            font-size: 17px;
            font-weight: 400;
            transform: translateY(-50%);
            transition: transform 0.2s ease;
        }

        .faq-item[open] summary::after {
            content: "−";
        }

        .faq-item p {
            margin: 0;
            padding: 0 22px 22px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.75;
        }

        .risk-section {
            padding: 0 0 84px;
        }

        .risk-box {
            display: flex;
            align-items: flex-start;
            gap: 17px;
            padding: 24px;
            border: 1px solid rgba(255, 197, 110, 0.18);
            border-radius: 20px;
            background: rgba(255, 181, 71, 0.055);
        }

        .risk-icon {
            display: grid;
            width: 43px;
            height: 43px;
            flex: 0 0 43px;
            place-items: center;
            border-radius: 13px;
            background: rgba(255, 185, 77, 0.1);
            color: var(--amber);
            font-size: 19px;
        }

        .risk-box strong {
            display: block;
            color: #f6e6c9;
            font-size: 13px;
        }

        .risk-box p {
            margin: 5px 0 0;
            color: #a99e8b;
            font-size: 11.5px;
            line-height: 1.7;
        }

        .site-footer {
            border-top: 1px solid var(--line);
            background: rgba(2, 6, 14, 0.58);
        }

        .footer-main {
            display: grid;
            gap: 50px;
            padding: 70px 0 52px;
            grid-template-columns: 1.25fr 0.75fr 0.75fr 0.9fr;
        }

        .footer-brand p {
            max-width: 360px;
            margin: 18px 0 0;
            color: var(--muted);
            font-size: 12.5px;
            line-height: 1.75;
        }

        .footer-column h3 {
            margin: 0 0 16px;
            color: #eaf4ff;
            font-size: 12px;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .footer-links {
            display: grid;
            gap: 10px;
        }

        .footer-links a {
            width: fit-content;
            color: #899bb3;
            font-size: 12px;
            transition: color 0.2s ease;
        }

        .footer-links a:hover,
        .footer-links a:focus-visible {
            outline: none;
            color: var(--cyan-soft);
        }

        .footer-contact {
            padding: 16px;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: rgba(13, 28, 54, 0.55);
        }

        .footer-contact strong,
        .footer-contact span {
            display: block;
        }

        .footer-contact strong {
            color: #e7f3ff;
            font-size: 12px;
        }

        .footer-contact span {
            margin-top: 4px;
            color: var(--muted);
            font-size: 11px;
        }

        .footer-contact a {
            display: inline-flex;
            margin-top: 13px;
            color: var(--cyan);
            font-size: 11.5px;
            font-weight: 750;
        }

        .footer-bottom {
            display: flex;
            min-height: 72px;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            border-top: 1px solid rgba(128, 177, 226, 0.09);
            color: #728299;
            font-size: 10.5px;
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-legal {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 16px;
        }

        .footer-legal a:hover {
            color: #bccbe0;
        }

        .telegram-float {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 120;
            display: inline-flex;
            min-height: 58px;
            align-items: center;
            gap: 11px;
            padding: 9px 17px 9px 9px;
            border: 1px solid rgba(112, 223, 255, 0.35);
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(19, 152, 225, 0.96), rgba(15, 108, 211, 0.98));
            box-shadow: 0 16px 42px rgba(0, 107, 207, 0.37);
            color: #ffffff;
            transition: transform 0.22s ease, box-shadow 0.22s ease;
        }

        .telegram-float:hover,
        .telegram-float:focus-visible {
            outline: none;
            box-shadow: 0 20px 46px rgba(0, 129, 236, 0.46);
            transform: translateY(-4px);
        }

        .telegram-icon {
            display: grid;
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            place-items: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.14);
        }

        .telegram-icon svg {
            width: 21px;
            height: 21px;
            fill: currentColor;
        }

        .telegram-label strong,
        .telegram-label span {
            display: block;
            line-height: 1.25;
        }

        .telegram-label strong {
            font-size: 12px;
        }

        .telegram-label span {
            margin-top: 2px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 9.5px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1120px) {
            .desktop-nav a {
                padding-inline: 7px;
                font-size: 12px;
            }

            .header-cta {
                display: none;
            }

            .hero-grid {
                gap: 45px;
            }

            .trust-item {
                padding-inline: 17px;
            }
        }

        @media (max-width: 920px) {
            .desktop-nav {
                display: none;
            }

            .menu-toggle {
                display: grid;
            }

            .mobile-menu {
                position: absolute;
                top: calc(100% + 8px);
                right: 20px;
                left: 20px;
                display: grid;
                overflow: hidden;
                gap: 4px;
                padding: 10px;
                border: 1px solid var(--line);
                border-radius: 18px;
                background: rgba(5, 11, 25, 0.97);
                box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
                opacity: 0;
                pointer-events: none;
                transform: translateY(-10px) scale(0.98);
                transform-origin: top;
                transition: opacity 0.22s ease, transform 0.22s ease;
            }

            .mobile-menu.is-open {
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0) scale(1);
            }

            .mobile-menu a {
                padding: 12px 14px;
                border-radius: 11px;
                color: #cbd9ea;
                font-size: 13px;
                font-weight: 650;
            }

            .mobile-menu a:hover,
            .mobile-menu a:focus-visible {
                outline: none;
                background: rgba(33, 139, 244, 0.1);
                color: #ffffff;
            }

            .hero {
                min-height: auto;
                padding-top: 145px;
            }

            .hero-grid,
            .performance-layout,
            .split-section,
            .cta-panel {
                grid-template-columns: 1fr;
            }

            .hero-copy {
                max-width: 760px;
            }

            .performance-card {
                max-width: 620px;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .trust-item:nth-child(2) {
                border-right: 0;
            }

            .trust-item:nth-child(-n + 2) {
                border-bottom: 1px solid var(--line);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid .feature-card:last-child {
                grid-column: 1 / -1;
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .step-card:not(:last-child)::after {
                display: none;
            }

            .split-copy {
                order: -1;
            }

            .cta-actions {
                width: min(100%, 360px);
                flex-direction: row;
            }

            .footer-main {
                grid-template-columns: 1.3fr 0.7fr 0.7fr;
            }

            .footer-column:last-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 640px) {
            .container {
                width: min(calc(100% - 28px), var(--container));
            }

            .site-header {
                top: 9px;
            }

            .site-header.is-scrolled {
                top: 5px;
            }

            .header-shell {
                min-height: 62px;
                padding: 8px 9px 8px 12px;
                border-radius: 18px;
            }

            .brand-mark {
                width: 40px;
                height: 40px;
                border-radius: 13px;
                font-size: 30px;
            }

            .brand-name {
                font-size: 16px;
            }

            .menu-toggle {
                width: 42px;
                height: 42px;
                border-radius: 12px;
            }

            .mobile-menu {
                right: 14px;
                left: 14px;
            }

            .hero {
                padding: 121px 0 62px;
            }

            .hero h1 {
                font-size: clamp(41px, 13vw, 58px);
                letter-spacing: -0.055em;
            }

            .hero-lead {
                font-size: 16px;
            }

            .hero-actions,
            .cta-actions {
                width: 100%;
                flex-direction: column;
            }

            .hero-actions .button,
            .cta-actions .button {
                width: 100%;
            }

            .performance-card {
                padding: 18px;
                border-radius: 23px;
            }

            .metric-grid {
                gap: 7px;
            }

            .metric {
                padding: 11px 8px;
            }

            .metric strong {
                font-size: 15px;
            }

            .trust-grid,
            .features-grid,
            .steps {
                grid-template-columns: 1fr;
            }

            .trust-item {
                border-right: 0;
                border-bottom: 1px solid var(--line);
            }

            .trust-item:nth-child(3) {
                border-bottom: 1px solid var(--line);
            }

            .trust-item:last-child {
                border-bottom: 0;
            }

            .features-grid .feature-card:last-child {
                grid-column: auto;
            }

            .section {
                padding: 88px 0;
            }

            .section-sm {
                padding: 68px 0;
            }

            .section-heading {
                margin-bottom: 32px;
            }

            .data-source {
                gap: 8px;
                grid-template-columns: 1fr;
            }

            .source-arrow {
                transform: rotate(90deg);
                text-align: center;
            }

            .step-card {
                min-height: auto;
            }

            .cta-panel {
                padding: 30px 22px;
                border-radius: 25px;
            }

            .fee-visual {
                padding: 26px 21px;
                border-radius: 24px;
            }

            .fee-row {
                align-items: flex-start;
                flex-direction: column;
                gap: 3px;
            }

            .footer-main {
                gap: 34px;
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-brand,
            .footer-column:last-child {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
                padding: 22px 0;
            }

            .footer-legal {
                justify-content: flex-start;
            }

            .telegram-float {
                right: 15px;
                bottom: 15px;
                min-height: 52px;
                padding: 6px;
            }

            .telegram-icon {
                width: 40px;
                height: 40px;
            }

            .telegram-label {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }
        }

        /* Konten ringkas InfinixFund */
        .master-card {
            display: flex;
            min-height: 100%;
            flex-direction: column;
        }

        .master-card .button {
            width: 100%;
            margin-top: auto;
        }

        .master-badge {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            gap: 7px;
            margin-bottom: 18px;
            padding: 7px 10px;
            border: 1px solid rgba(72, 230, 164, 0.2);
            border-radius: 999px;
            background: rgba(72, 230, 164, 0.08);
            color: var(--green);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .master-badge.secondary {
            border-color: rgba(68, 228, 255, 0.2);
            background: rgba(68, 228, 255, 0.07);
            color: var(--cyan-soft);
        }

        .master-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 20px 0 23px;
        }

        .master-meta span {
            padding: 7px 10px;
            border: 1px solid rgba(119, 171, 224, 0.11);
            border-radius: 10px;
            background: rgba(10, 26, 53, 0.46);
            color: #afbed2;
            font-size: 10.5px;
            font-weight: 650;
        }

        .performance-card > .button {
            width: 100%;
            margin-top: 18px;
        }

        .steps.steps-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .compact-copy {
            max-width: 610px;
        }

        @media (max-width: 920px) {
            .steps.steps-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps.steps-3 .step-card:last-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 640px) {
            .steps.steps-3 {
                grid-template-columns: 1fr;
            }

            .steps.steps-3 .step-card:last-child {
                grid-column: auto;
            }
        }


/* Layout halaman dengan sidebar */
.content-layout {
    display: grid;
    align-items: start;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.page-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}

.sidebar-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(15, 31, 59, 0.76), rgba(7, 16, 34, 0.78));
}

.sidebar-card h3 {
    margin: 0;
    font-size: 18px;
}

.sidebar-card p {
    margin: 10px 0 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.sidebar-card .button {
    width: 100%;
}

.desktop-nav a.active {
    background: rgba(55, 148, 255, 0.12);
    color: #ffffff;
}

@media (max-width: 920px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-sidebar {
        grid-template-columns: 1fr;
    }
}
