:root {
    --background: #07111f;
    --background-soft: #0b1728;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-strong: #ffffff;
    --border: rgba(255, 255, 255, 0.11);
    --text: #f8fafc;
    --text-soft: #a8b3c5;
    --dark-text: #0b1220;
    --accent: #ff7a31;
    --accent-dark: #e85f15;
    --green: #38d996;
    --max-width: 1180px;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(37, 99, 235, 0.18),
            transparent 32%
        ),
        var(--background);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}

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

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

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    background: rgba(7, 17, 31, 0.72);
    backdrop-filter: blur(18px);
    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.site-header.scrolled {
    border-color: var(--border);
    background: rgba(7, 17, 31, 0.92);
}

.header-content {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--accent), #ff9f61);
    box-shadow: 0 12px 30px rgba(255, 122, 49, 0.28);
    color: white;
    font-size: 18px;
}

.brand-text {
    font-size: 20px;
    letter-spacing: -0.04em;
}

.brand-text strong {
    color: var(--accent);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-navigation a {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: white;
}

.header-button {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.header-button:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: var(--surface);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 168px 0 110px;
}

.hero::before {
    position: absolute;
    top: 40px;
    left: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255, 122, 49, 0.08);
    filter: blur(50px);
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: 70px;
    grid-template-columns: 1.02fr 0.98fr;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: #dce4f1;
    font-size: 13px;
    font-weight: 700;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(56, 217, 150, 0.12);
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 6.2vw, 78px);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.hero h1 span {
    display: block;
    margin-top: 10px;
    color: var(--accent);
}

.hero-description {
    max-width: 670px;
    margin-top: 30px;
    color: var(--text-soft);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 23px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--accent);
    box-shadow: 0 18px 40px rgba(255, 122, 49, 0.24);
    color: white;
}

.button-primary:hover {
    background: var(--accent-dark);
}

.button-secondary {
    border: 1px solid var(--border);
    background: var(--surface);
    color: white;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    color: var(--text-soft);
    font-size: 13px;
}

.status-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.visual-glow {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    filter: blur(60px);
}

.dashboard-card {
    position: absolute;
    z-index: 2;
    top: 55px;
    right: 20px;
    left: 20px;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    transform: rotate(1.5deg);
}

.dashboard-header,
.progress-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dashboard-label,
.section-label {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.dashboard-header h2 {
    margin-top: 5px;
    font-size: 27px;
}

.dashboard-status {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(56, 217, 150, 0.12);
    color: #77edb9;
    font-size: 12px;
    font-weight: 800;
}

.dashboard-progress {
    margin-top: 30px;
}

.progress-heading {
    color: var(--text-soft);
    font-size: 13px;
}

.progress-heading strong {
    color: white;
    font-size: 18px;
}

.progress-track {
    height: 9px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.progress-fill {
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), #ffab72);
}

.dashboard-metrics {
    display: grid;
    gap: 12px;
    margin-top: 25px;
    grid-template-columns: repeat(3, 1fr);
}

.metric {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.metric span {
    display: block;
    color: var(--text-soft);
    font-size: 11px;
}

.metric strong {
    display: block;
    margin-top: 4px;
    font-size: 23px;
}

.timeline {
    display: grid;
    gap: 15px;
    margin-top: 27px;
}

.timeline-row {
    display: grid;
    align-items: center;
    gap: 16px;
    grid-template-columns: 105px 1fr;
    color: var(--text-soft);
    font-size: 11px;
}

.timeline-track {
    position: relative;
    height: 11px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

.timeline-bar {
    height: 100%;
    border-radius: inherit;
}

.bar-one {
    width: 88%;
    background: #5186ff;
}

.bar-two {
    width: 66%;
    background: var(--accent);
}

.bar-three {
    width: 53%;
    background: #8f6bff;
}

.bar-four {
    width: 31%;
    background: var(--green);
}

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 175px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(13, 28, 47, 0.88);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
}

.floating-card span {
    display: block;
    color: var(--text-soft);
    font-size: 11px;
}

.floating-card strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
}

.floating-card-top {
    top: 8px;
    right: -10px;
}

.floating-card-bottom {
    bottom: 5px;
    left: -5px;
}

.trusted-section {
    padding: 25px 0 60px;
}

.trusted-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted-content p {
    color: var(--text-soft);
    font-size: 14px;
}

.trusted-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.trusted-tags span {
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 700;
}

.products-section,
.platform-section,
.about-section,
.contact-section {
    padding: 110px 0;
}

.products-section {
    background: #f7f9fc;
    color: var(--dark-text);
}

.section-heading {
    display: grid;
    align-items: end;
    gap: 40px;
    grid-template-columns: 1fr 0.8fr;
}

.section-heading h2,
.platform-content h2,
.about-grid h2,
.contact-card h2 {
    margin-top: 12px;
    font-size: clamp(36px, 4.5vw, 55px);
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.section-heading p {
    color: #5f6b7b;
    font-size: 17px;
}

.product-grid {
    display: grid;
    gap: 24px;
    margin-top: 55px;
    grid-template-columns: 1.3fr 0.7fr;
}

.product-card {
    border-radius: 28px;
}

.product-card-featured {
    padding: 38px;
    background: white;
    box-shadow: 0 28px 70px rgba(36, 50, 77, 0.12);
}

.product-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.product-badge,
.coming-soon {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.product-badge {
    background: #fff0e7;
    color: var(--accent-dark);
}

.coming-soon {
    background: #eef2f7;
    color: #617083;
}

.product-card-featured > h3 {
    margin-top: 26px;
    font-size: 40px;
    letter-spacing: -0.04em;
}

.product-card-featured > p {
    max-width: 690px;
    margin-top: 14px;
    color: #5f6b7b;
    font-size: 17px;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin: 35px 0;
}

.feature-item {
    display: grid;
    gap: 16px;
    grid-template-columns: auto 1fr;
}

.feature-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: #eef3ff;
    color: #3e63d3;
    font-size: 12px;
    font-weight: 900;
}

.feature-item strong {
    font-size: 15px;
}

.feature-item p {
    margin-top: 3px;
    color: #6b7788;
    font-size: 14px;
}

.button-disabled {
    cursor: not-allowed;
    background: #e9edf3;
    color: #8b96a6;
}

.button-disabled:hover {
    transform: none;
}

.product-side-panel {
    display: grid;
    gap: 18px;
}

.side-panel-card {
    padding: 28px;
    border: 1px solid #e4e9f0;
    border-radius: 22px;
    background: white;
}

.side-panel-number {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.side-panel-card h3 {
    margin-top: 14px;
    font-size: 21px;
}

.side-panel-card p {
    margin-top: 8px;
    color: #697587;
    font-size: 14px;
}

.platform-section {
    background:
        radial-gradient(
            circle at 10% 80%,
            rgba(255, 122, 49, 0.1),
            transparent 34%
        ),
        var(--background-soft);
}

.platform-grid {
    display: grid;
    gap: 70px;
    grid-template-columns: 0.85fr 1.15fr;
}

.platform-content p {
    margin-top: 25px;
    color: var(--text-soft);
    font-size: 17px;
}

.platform-status {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 30px;
    color: #d8e0eb;
    font-size: 13px;
    font-weight: 700;
}

.platform-status span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(56, 217, 150, 0.11);
}

.module-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.module-card {
    min-height: 190px;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
}

.module-card span {
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 800;
}

.module-card h3 {
    margin-top: 25px;
    font-size: 23px;
}

.module-card p {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 14px;
}

.active-module {
    border-color: rgba(255, 122, 49, 0.45);
    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 49, 0.16),
            rgba(255, 255, 255, 0.05)
        );
}

.about-section {
    background: white;
    color: var(--dark-text);
}

.about-grid {
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
}

.about-content {
    display: grid;
    gap: 24px;
    color: #5f6b7b;
    font-size: 18px;
}

.contact-section {
    background: #f7f9fc;
    color: var(--dark-text);
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 55px;
    border-radius: 30px;
    background: var(--background);
    box-shadow: 0 30px 70px rgba(28, 39, 60, 0.15);
    color: white;
}

.contact-card p {
    max-width: 700px;
    margin-top: 17px;
    color: var(--text-soft);
}

.button-light {
    flex-shrink: 0;
    background: white;
    color: var(--dark-text);
}

.site-footer {
    padding: 35px 0;
    border-top: 1px solid var(--border);
    background: var(--background);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-brand .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 15px;
}

.footer-brand .brand-text {
    font-size: 17px;
}

.footer-content p {
    color: var(--text-soft);
    font-size: 12px;
}

@media (max-width: 980px) {
    .main-navigation {
        display: none;
    }

    .hero-grid,
    .section-heading,
    .product-grid,
    .platform-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .eyebrow,
    .hero-actions,
    .hero-note {
        justify-content: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-visual {
        width: min(100%, 650px);
        margin: 0 auto;
    }

    .section-heading {
        align-items: start;
    }

    .platform-grid,
    .about-grid {
        gap: 45px;
    }
}

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

    .header-content {
        min-height: 68px;
    }

    .header-button {
        padding: 8px 13px;
    }

    .hero {
        padding: 135px 0 75px;
    }

    .hero h1 {
        font-size: 48px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 455px;
    }

    .dashboard-card {
        top: 45px;
        right: 0;
        left: 0;
        padding: 20px;
        transform: none;
    }

    .dashboard-metrics {
        gap: 7px;
    }

    .metric {
        padding: 11px;
    }

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

    .timeline-row {
        grid-template-columns: 83px 1fr;
    }

    .floating-card {
        min-width: 145px;
    }

    .floating-card-top {
        right: -5px;
    }

    .trusted-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .trusted-tags {
        justify-content: flex-start;
    }

    .products-section,
    .platform-section,
    .about-section,
    .contact-section {
        padding: 80px 0;
    }

    .product-card-featured,
    .side-panel-card {
        padding: 25px;
    }

    .product-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-card-featured > h3 {
        font-size: 33px;
    }

    .module-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 32px 24px;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 450px) {
    .brand-text {
        font-size: 17px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .hero h1 {
        font-size: 41px;
    }

    .dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
    }

    .timeline {
        display: none;
    }

    .hero-visual {
        min-height: 500px;
    }

    .floating-card-top {
        top: 0;
    }

    .floating-card-bottom {
        bottom: 20px;
    }
}