        :root {
            color-scheme: light;
            --bg: #01050f;
            --text: #f3f7ff;
            --line: rgba(108, 142, 216, 0.32);
            --accent: #7fa6ff;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            min-height: 100vh;
            font-family: Georgia, "Times New Roman", serif;
            color: var(--text);
            background:
                radial-gradient(23.44% 5.64% at 79.66% 7.36%, rgba(8, 39, 117, 0.5) 0%, rgba(1, 5, 15, 0.5) 100%),
                radial-gradient(31.88% 5.88% at 25.65% 17.52%, rgba(8, 39, 117, 0.3) 27.05%, rgba(1, 5, 15, 0.3) 100%);
            background-color: var(--bg);
            padding: 0;
        }

        .page {
            min-height: 100vh;
            width: min(1600px, 100%);
            margin: 0 auto;
            padding: 28px 24px 40px;
        }

        .header {
            border-radius: 20px;
            padding: 14px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            background: transparent;
        }

        .logo {
            width: 252px;
            max-width: 100%;
            height: auto;
            display: block;
        }

        .menu {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            font-family: "Inter", sans-serif;
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 0.04em;
            text-transform: none;
        }

        .menu a {
            color: var(--text);
            text-decoration: none;
            text-transform: none;
            transition: color 0.2s ease;
        }

        .menu a:hover {
            color: var(--accent);
        }

        .sep {
            color: rgba(189, 207, 255, 0.65);
            user-select: none;
        }

        .hero {
            margin-top: 42px;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            gap: 24px;
        }

        .hero-copy {
            flex: 0 0 calc(56% - 12px);
            max-width: calc(56% - 12px);
            padding-bottom: 0;
            display: flex;
            flex-direction: column;
            gap: 24px;
            justify-content: space-between;
            align-items: flex-start;
            align-self: stretch;
            min-height: 0;
        }

        .hero-title {
            margin: 0;
            font-family: "Inter", sans-serif;
            font-size: 58px;
            font-weight: 600;
            line-height: 1;
            color: #fff;
        }

        .hero-title-accent {
            text-transform: uppercase;
            color: rgba(69, 163, 243, 1);
        }

        .hero-subtitle {
            margin: 0;
            font-family: "Inter", sans-serif;
            font-size: 32px;
            font-weight: 600;
            line-height: 1;
            color: rgba(212, 229, 246, 1);
            max-width: 640px;
        }

        .hero-cta {
            margin-top: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 34px;
            font-family: "Inter", sans-serif;
            font-size: 38px;
            font-weight: 700;
            line-height: 1;
            color: #fff;
            text-decoration: none;
            background: linear-gradient(203.28deg, #186CF1 2.37%, #0B42C6 96.46%);
            border: 2px solid rgba(44, 146, 252, 1);
            box-shadow: 0 0 20px 0 rgba(44, 146, 252, 1);
            border-radius: 14px;
        }

        .hero-beta {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .hero-copy .hero-beta {
            margin-top: -10px;
        }

        .hero-beta-dot {
            width: 14px;
            height: 14px;
            background: rgba(44, 146, 252, 1);
            transform: rotate(45deg);
            flex: 0 0 14px;
        }

        .hero-beta-text {
            margin: 0;
            font-family: "Inter", sans-serif;
            font-size: 32px;
            font-weight: 500;
            color: rgba(212, 229, 246, 1);
            line-height: 1;
        }

        .contact-buttons {
            margin-top: 0;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            width: 100%;
            max-width: 640px;
        }

        .contact-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 10px 18px;
            border-radius: 10px;
            border: 2px solid rgba(30, 54, 105, 0.5);
            background: rgba(44, 146, 252, 0.15);
            color: #fff;
            text-decoration: none;
            font-family: "Inter", sans-serif;
            font-size: 20px;
            font-weight: 600;
            line-height: 1;
            gap: 10px;
        }

        .contact-button svg {
            width: 26px;
            height: 26px;
            flex: 0 0 26px;
        }

        .hero-image-wrap {
            flex: 0 0 calc(44% - 12px);
            max-width: calc(44% - 12px);
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
            align-self: stretch;
        }

        .hero-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .second-block {
            margin-top: 96px;
            margin-bottom: 0;
        }

        .second-title {
            margin: 0;
            text-align: right;
            text-transform: uppercase;
            font-family: "Inter", sans-serif;
            font-size: 60px;
            font-weight: 600;
            line-height: 1;
            color: rgba(69, 163, 243, 1);
        }

        .second-subtitle {
            margin: 5px 0 0;
            text-align: right;
            font-family: "Inter", sans-serif;
            font-size: 60px;
            font-weight: 600;
            line-height: 1;
            color: #fff;
        }

        .feature-block {
            margin-top: 96px;
            display: grid;
            grid-template-columns: minmax(0, 61%) minmax(0, 39%);
            column-gap: 30px;
            align-items: center;
        }

        .feature-intro {
            margin-top: 96px;
        }

        .feature-copy {
            height: 100%;
            display: flex;
            flex-direction: column;
            padding-bottom: 0;
        }

        .feature-items {
            margin-top: 18px;
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 50px;
        }

        .feature-image {
            width: 100%;
            height: auto;
            max-height: 700px;
            object-fit: contain;
            object-position: center right;
            display: block;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 26px;
        }

        .feature-heading {
            margin: 0;
            text-align: left;
            text-transform: uppercase;
            font-family: "Inter", sans-serif;
            font-size: 60px;
            font-weight: 600;
            line-height: 1;
            color: rgba(69, 163, 243, 1);
        }

        .feature-heading-subtitle {
            margin: 5px 0 0;
            text-align: left;
            font-family: "Inter", sans-serif;
            font-size: 60px;
            font-weight: 600;
            line-height: 1;
            color: rgba(212, 229, 246, 1);
        }

        .feature-item {
            display: grid;
            grid-template-columns: 121px 1fr;
            column-gap: 24px;
            align-items: start;
        }

        .feature-diamond {
            width: 73px;
            height: 73px;
            margin-top: 0;
            margin-left: 0;
            margin-right: 0;
            justify-self: center;
            transform: rotate(45deg);
            border: 2px solid;
            border-radius: 15px;
            border-image-slice: 1;
            border-image-source: linear-gradient(45deg, #2961AE 4.5%, #A9F0FF 94.18%);
            box-shadow: 0 0 17px 3px rgba(69, 163, 243, 1);
        }

        .feature-title {
            margin: 0;
            font-family: "Inter", sans-serif;
            font-size: 40px;
            font-weight: 600;
            line-height: 1;
            color: rgba(69, 163, 243, 1);
            text-transform: uppercase;
        }

        .feature-subtitle {
            margin: 8px 0 0;
            font-family: "Inter", sans-serif;
            font-size: 20px;
            font-weight: 600;
            line-height: 1;
            color: rgba(212, 229, 246, 1);
            text-transform: lowercase;
        }

        .feature-block-prev {
            margin-top: 96px;
            display: grid;
            grid-template-columns: minmax(0, 42%) minmax(0, 58%);
            column-gap: 24px;
            align-items: stretch;
        }

        .feature-copy-prev {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 18px;
            padding-bottom: 0;
        }

        .feature-block-control {
            margin-top: 96px;
        }

        .feature-intro-control {
            margin-top: 96px;
        }

        .feature-block-daily {
            margin-top: 96px;
        }

        .feature-intro-daily {
            margin-top: 96px;
        }

        .feature-block-organization {
            margin-top: 96px;
        }

        .feature-intro-organization {
            margin-top: 96px;
        }

        .feature-intro-organization .feature-heading,
        .feature-intro-organization .feature-heading-subtitle {
            text-align: right;
        }

        .start-block {
            margin-top: 96px;
            width: 100%;
            border: 2px solid rgba(30, 54, 105, 0.5);
            background: rgba(44, 146, 252, 0.15);
            border-radius: 20px;
            padding: 34px 24px;
            text-align: center;
        }

        .start-text {
            margin: 0;
            font-family: "Inter", sans-serif;
            font-size: 64px;
            font-weight: 600;
            line-height: 1;
            color: #fff;
        }

        .start-text-accent {
            text-transform: uppercase;
            color: rgba(69, 163, 243, 1);
        }

        .roadmap-note {
            margin: 34px auto 0;
            width: calc(100% - 30px);
            max-width: none;
            padding: 0;
            text-align: center !important;
            font-family: "Inter", sans-serif;
            font-size: 32px;
            font-weight: 600;
            line-height: 1;
            color: rgba(212, 229, 246, 1);
        }

        .final-cta {
            margin: 42px auto 0;
            width: calc(100% - 30px);
            padding: 0;
            text-align: center;
            font-family: "Inter", sans-serif;
            font-size: 64px;
            font-weight: 600;
            line-height: 1;
            color: #fff;
        }

.final-actions {
            margin-top: 50px;
            width: 100%;
            text-align: center;
}

.legal-footer {
    margin: 36px auto 24px;
    padding: 18px 20px;
    max-width: 1140px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.legal-footer-links,
.legal-footer-contacts {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.legal-footer a {
    color: #d8e5ff;
    text-decoration: none;
    font-size: 14px;
}

.legal-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

        .final-actions .hero-cta {
            margin-top: 0;
        }

        .final-actions .hero-beta {
            margin-top: 12px;
            justify-content: center;
        }

        .final-actions .contact-buttons {
            margin-top: 22px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 640px) {
            .page {
                padding: 16px;
            }

            .header {
                flex-direction: column;
                align-items: flex-start;
                border-radius: 16px;
            }

            .menu {
                font-size: 14px;
            }

            .hero {
                margin-top: 24px;
                min-height: 0;
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-copy {
                max-width: 100%;
                padding-bottom: 0;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 24px;
            }

            .hero-cta {
                font-size: 28px;
                padding: 12px 24px;
            }

            .hero-beta {
                gap: 10px;
            }

            .hero-beta-text {
                font-size: 22px;
            }

            .contact-buttons {
                gap: 8px;
                grid-template-columns: 1fr;
            }

            .contact-button {
                font-size: 16px;
            }

            .hero-image-wrap {
                width: 100%;
                flex: 0 0 auto;
            }

            .second-block {
                margin-top: 52px;
                margin-bottom: 0;
            }

            .second-title,
            .second-subtitle {
                font-size: 34px;
            }

            .feature-block {
                margin-top: 52px;
                grid-template-columns: 1fr;
                row-gap: 24px;
            }

            .feature-intro {
                margin-top: 52px;
            }

            .feature-block-prev {
                margin-top: 52px;
                grid-template-columns: 1fr;
                row-gap: 24px;
            }

            .feature-block-control {
                margin-top: 52px;
            }

            .feature-intro-control {
                margin-top: 52px;
            }

            .feature-block-daily {
                margin-top: 52px;
            }

            .feature-intro-daily {
                margin-top: 52px;
            }

            .feature-block-organization {
                margin-top: 52px;
            }

            .feature-intro-organization {
                margin-top: 52px;
            }

            .start-block {
                margin-top: 52px;
                padding: 22px 14px;
                border-radius: 16px;
            }

            .start-text {
                font-size: 34px;
            }

            .roadmap-note {
                margin-top: 22px;
                padding: 0 8px;
                font-size: 22px;
            }

            .final-cta {
                margin-top: 24px;
                font-size: 34px;
            }

            .final-actions {
                margin-top: 20px;
            }

            .final-actions .hero-beta {
                margin-top: 10px;
            }

            .final-actions .contact-buttons {
                margin-top: 16px;
            }

            .feature-list {
                gap: 14px;
            }

            .feature-image-wrap {
                width: 100%;
            }

            .feature-copy,
            .feature-items {
                height: auto;
            }

            .feature-heading {
                font-size: 34px;
            }

            .feature-heading-subtitle {
                font-size: 24px;
                margin-top: 5px;
            }

            .feature-item {
                grid-template-columns: 32px 1fr;
                column-gap: 12px;
            }

            .feature-diamond {
                width: 32px;
                height: 32px;
                margin-left: 0;
                margin-right: 0;
            }

            .feature-title {
                font-size: 28px;
            }

            .feature-subtitle {
                font-size: 16px;
            }
        }
