:root {
    --midnight: #071b32;
    --midnight-2: #0b1f3b;
    --midnight-3: #102b4c;

    --blue: #1677ff;
    --blue-2: #2563eb;
    --cyan: #12c8eb;
    --teal: #14b8a6;
    --amber: #f59e0b;
    --purple: #8b5cf6;
    --indigo: #5268f5;

    --page: #f7fbff;
    --surface: #ffffff;
    --surface-soft: #f6faff;
    --surface-blue: #eef7ff;

    --text: #071b32;
    --muted: #5e7189;
    --border: #dce9f5;

    --shadow:
        0 14px 42px
        rgba(8, 40, 72, 0.08);

    --radius: 16px;
    --page-width: 1400px;
}


html[data-theme="dark"] {
    --page: #071421;
    --surface: #0c1c2d;
    --surface-soft: #102338;
    --surface-blue: #102943;

    --text: #f4f8fc;
    --muted: #9fb0c3;
    --border: #203a52;

    --shadow:
        0 16px 46px
        rgba(0, 0, 0, 0.28);
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    color: var(--text);
    background: var(--page);

    font-family:
        "Plus Jakarta Sans",
        system-ui,
        sans-serif;

    transition:
        background-color 180ms ease,
        color 180ms ease;
}


h1,
h2,
h3,
h4,
strong,
.brand-word {
    font-family:
        Inter,
        system-ui,
        sans-serif;
}


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


button,
input {
    font: inherit;
}


.page-shell {
    width:
        min(
            calc(100% - 64px),
            var(--page-width)
        );

    margin-inline: auto;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 14px;
}


.brand-word {
    color: white;

    font-size: 25px;
    font-weight: 800;

    letter-spacing: -0.04em;
}


.brand-word span {
    color: #1f8dff;
}


.stack-mark {
    width: 38px;
    height: 42px;

    display: inline-flex;
    flex-direction: column;
    justify-content: center;

    gap: 3px;

    transform: skewY(-8deg);
}


.stack-mark span {
    width: 36px;
    height: 10px;

    display: block;

    border-radius:
        3px
        9px
        9px
        3px;

    background:
        linear-gradient(
            100deg,
            #1677ff,
            #1bb4fa,
            #17e5c5
        );
}


.stack-mark span:nth-child(2) {
    transform: translateX(2px);
}


.stack-mark span:nth-child(3) {
    transform: translateX(4px);
}


.small-mark {
    transform:
        scale(0.9)
        skewY(-8deg);

    transform-origin: left center;
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header {
    position: absolute;
    z-index: 100;

    inset:
        0
        0
        auto
        0;

    color: white;
}


.nav-shell {
    width:
        min(
            calc(100% - 64px),
            var(--page-width)
        );

    min-height: 90px;

    margin-inline: auto;

    display: grid;
    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    gap: 40px;
}


.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 34px;
}


.desktop-nav a,
.signin-link {
    color:
        rgba(
            255,
            255,
            255,
            0.86
        );

    font-size: 14px;
    font-weight: 600;
}


.desktop-nav a:hover,
.signin-link:hover {
    color: white;
}


.desktop-nav a span {
    opacity: 0.65;
}


.nav-actions {
    display: flex;
    align-items: center;

    gap: 18px;
}


.theme-toggle {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.24
        );

    border-radius: 10px;

    color: white;

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );

    cursor: pointer;
}


.theme-icon {
    grid-column: 1;
    grid-row: 1;

    font-size: 17px;

    transition:
        opacity 160ms ease,
        transform 160ms ease;
}


.theme-icon-moon {
    opacity: 1;
}


.theme-icon-sun {
    opacity: 0;

    transform: rotate(-30deg);
}


html[data-theme="dark"]
.theme-icon-moon {
    opacity: 0;

    transform: rotate(30deg);
}


html[data-theme="dark"]
.theme-icon-sun {
    opacity: 1;

    transform: rotate(0);
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    min-height: 52px;

    padding:
        0
        24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    border:
        1px solid
        transparent;

    border-radius: 9px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #0b9eff,
            #1677ff
        );

    box-shadow:
        0
        12px
        30px
        rgba(
            15,
            122,
            255,
            0.27
        );

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}


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

    box-shadow:
        0
        17px
        36px
        rgba(
            15,
            122,
            255,
            0.34
        );
}


.button-small {
    min-height: 44px;

    padding:
        0
        20px;
}


.button-outline-dark {
    border-color:
        rgba(
            70,
            178,
            255,
            0.72
        );

    background:
        rgba(
            2,
            20,
            39,
            0.52
        );

    box-shadow: none;
}


.button-outline {
    color: #0b4c89;

    border-color: #1c8cff;

    background: transparent;

    box-shadow: none;
}


html[data-theme="dark"]
.button-outline {
    color: #dceeff;
}


.play-icon {
    font-size: 11px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 750px;

    position: relative;

    overflow: hidden;

    padding:
        146px
        0
        56px;

    color: white;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(
                0,
                119,
                255,
                0.30
            ),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #041527,
            #05294d 52%,
            #063b70
        );
}


.hero::before {
    content: "";

    width: 700px;
    height: 700px;

    position: absolute;

    top: -220px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(
                21,
                131,
                255,
                0.23
            ),
            transparent 64%
        );
}


.hero-grid {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(620px, 1.18fr);

    align-items: center;

    gap: 70px;
}


.eyebrow {
    color: #7890aa;

    font-family:
        Inter,
        sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.28em;
}


.eyebrow-light {
    color: #a8c9e9;
}


.short-line {
    width: 28px;
    height: 3px;

    margin:
        17px
        0
        23px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #168dff,
            #1de9c3
        );
}


.hero h1 {
    margin: 0;

    font-size:
        clamp(
            46px,
            4.5vw,
            72px
        );

    line-height: 1.03;

    letter-spacing: -0.05em;
}


.hero h1 span {
    color: #1594ff;
}


.hero-lede {
    max-width: 610px;

    margin:
        28px
        0
        30px;

    color: #c8d9e9;

    font-size: 18px;
    line-height: 1.6;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 16px;
}


.hero-facts {
    margin-top: 45px;

    display: grid;

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


.hero-facts > div {
    padding-right: 24px;

    border-right:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );
}


.hero-facts > div:not(:first-child) {
    padding-left: 24px;
}


.hero-facts > div:last-child {
    border-right: 0;
}


.hero-facts small {
    display: block;

    margin-bottom: 7px;

    color: #8fb5d9;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.16em;
}


.hero-facts strong {
    display: block;

    font-size: 17px;
}


/* =========================================================
   PRODUCT WINDOW
========================================================= */

.product-window {
    overflow: hidden;

    border:
        1px solid
        rgba(
            71,
            171,
            255,
            0.52
        );

    border-radius: 18px;

    background:
        rgba(
            5,
            23,
            42,
            0.96
        );

    box-shadow:
        0
        30px
        90px
        rgba(
            0,
            0,
            0,
            0.36
        ),
        0
        0
        40px
        rgba(
            15,
            120,
            255,
            0.16
        );
}


.hero-product-window {
    transform:
        perspective(1400px)
        rotateY(-4deg)
        rotateX(1deg);
}


.window-topbar {
    min-height: 48px;

    display: grid;

    grid-template-columns:
        100px
        1fr
        auto;

    align-items: center;

    gap: 14px;

    padding:
        0
        15px;

    background: #091d33;
}


.window-dots {
    display: flex;

    gap: 6px;
}


.window-dots i {
    width: 8px;
    height: 8px;

    border-radius: 50%;
}


.window-dots i:nth-child(1) {
    background: #ff5f57;
}


.window-dots i:nth-child(2) {
    background: #febc2e;
}


.window-dots i:nth-child(3) {
    background: #28c840;
}


.window-search {
    max-width: 285px;

    padding:
        8px
        12px;

    border-radius: 7px;

    color: #7fa0bf;

    background: #102a47;

    font-size: 11px;
}


.window-avatar {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;
    background: #187af5;

    font-size: 10px;
    font-weight: 800;
}


.product-layout {
    min-height: 455px;

    display: grid;

    grid-template-columns:
        145px
        1fr;
}


.product-sidebar {
    padding:
        16px
        11px;

    display: flex;
    flex-direction: column;

    gap: 7px;

    background: #07182a;
}


.mini-brand {
    display: flex;
    align-items: center;

    gap: 8px;

    padding:
        0
        8px
        13px;

    color: white;

    font-size: 11px;
    font-weight: 800;
}


.mini-brand > span:last-child span {
    color: #1e91ff;
}


.mini-stack {
    width: 18px;

    display: inline-flex;
    flex-direction: column;

    gap: 2px;

    transform: skewY(-8deg);
}


.mini-stack i {
    height: 5px;

    display: block;

    border-radius:
        2px
        5px
        5px
        2px;

    background:
        linear-gradient(
            90deg,
            #177cff,
            #17e3cb
        );
}


.product-sidebar a,
.control-sidebar a {
    padding:
        9px
        10px;

    display: flex;

    gap: 10px;

    border-radius: 7px;

    color: #98aec4;

    font-size: 10px;
}


.product-sidebar a.active,
.control-sidebar a.active {
    color: #d9edff;

    background: #143c64;
}


.product-sidebar-spacer {
    flex: 1;
}


.product-main {
    padding: 20px;

    background:
        linear-gradient(
            180deg,
            #0a2037,
            #081b30
        );
}


.dashboard-heading {
    display: flex;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 18px;
}


.dashboard-heading h3 {
    margin:
        0
        0
        5px;

    font-size: 18px;
}


.dashboard-heading p,
.dashboard-heading small {
    margin: 0;

    color: #849fb9;

    font-size: 10px;
}


.metric-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;
}


.metric-card {
    padding: 13px;

    border:
        1px solid
        #163b5d;

    border-radius: 8px;

    background: #0c2946;
}


.metric-card small {
    color: #84a5c2;

    font-size: 8px;
}


.metric-value {
    margin:
        9px
        0
        4px;

    display: flex;
    align-items: center;

    gap: 7px;

    color: #16c7e8;
}


.metric-value strong {
    color: white;

    font-size: 16px;
}


.metric-card p {
    margin: 0;

    color: #7e9ebc;

    font-size: 8px;
}


.metric-card p.positive {
    color: #1be0b5;
}


.dashboard-lower {
    margin-top: 14px;

    display: grid;

    grid-template-columns:
        1.65fr
        0.85fr;

    gap: 12px;
}


.live-panel,
.upcoming-panel {
    padding: 12px;

    border:
        1px solid
        #163b5d;

    border-radius: 9px;

    background: #0b2540;
}


.panel-heading {
    margin-bottom: 8px;

    display: flex;
    justify-content: space-between;

    font-size: 9px;
}


.panel-heading a {
    color: #1995ff;
}


.live-image {
    height: 94px;

    position: relative;

    overflow: hidden;

    border-radius: 7px;

    background:
        radial-gradient(
            circle at 70% 50%,
            #168dff,
            transparent 14%
        ),
        radial-gradient(
            circle at 40% 45%,
            #f4a340,
            transparent 8%
        ),
        linear-gradient(
            135deg,
            #221b1f,
            #052848
        );
}


.on-air {
    position: absolute;

    top: 8px;
    left: 8px;

    padding:
        3px
        6px;

    border-radius: 3px;

    color: white;
    background: #e03e3e;

    font-size: 8px;
    font-weight: 800;
}


.studio-mic {
    width: 13px;
    height: 52px;

    position: absolute;

    bottom: 0;
    left: 55%;

    border-radius:
        8px
        8px
        3px
        3px;

    background: #151c27;

    transform: rotate(-15deg);
}


.live-panel h4 {
    margin:
        9px
        0
        4px;

    font-size: 11px;
}


.live-panel > p {
    margin: 0;

    color: #8aa3bc;

    font-size: 8px;
}


.live-footer {
    margin-top: 9px;

    display: flex;
    justify-content: space-between;

    color: #8ba7c2;

    font-size: 8px;
}


.audio-meter {
    display: flex;
    align-items: end;

    gap: 2px;
}


.audio-meter i {
    width: 2px;

    display: block;

    background: #1fe0c2;
}


.audio-meter i:nth-child(1) {
    height: 5px;
}


.audio-meter i:nth-child(2) {
    height: 9px;
}


.audio-meter i:nth-child(3) {
    height: 12px;
}


.audio-meter i:nth-child(4) {
    height: 8px;
}


.audio-meter i:nth-child(5) {
    height: 11px;
}


.live-panel button {
    margin-top: 10px;

    float: right;

    padding:
        7px
        10px;

    border: 0;
    border-radius: 5px;

    color: #d9edff;
    background: #145292;

    font-size: 8px;
}


.upcoming-panel article {
    padding:
        10px
        0;

    display: flex;

    gap: 9px;

    border-bottom:
        1px solid
        #163b5d;
}


.upcoming-panel article > span {
    color: #52aaff;
}


.upcoming-panel article strong,
.upcoming-panel article small {
    display: block;
}


.upcoming-panel article strong {
    margin-bottom: 3px;

    font-size: 8px;
}


.upcoming-panel article small {
    color: #86a1bb;

    font-size: 8px;
}


/* =========================================================
   FEATURE STRIP
========================================================= */

.feature-strip {
    border-bottom:
        1px solid
        var(--border);

    background: var(--surface);
}


.feature-strip-grid {
    min-height: 105px;

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    align-items: center;
}


.feature-strip-item {
    min-height: 53px;

    padding:
        0
        20px;

    display: flex;
    align-items: center;

    gap: 13px;

    border-right:
        1px solid
        var(--border);
}


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


.feature-strip-item strong,
.feature-strip-item small {
    display: block;
}


.feature-strip-item strong {
    margin-bottom: 5px;

    font-size: 13px;
}


.feature-strip-item small {
    color: var(--muted);

    font-size: 9px;
}


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


.blue {
    color: #147fff;
}


.teal {
    color: #14b8a6;
}


.midnight {
    color: #0b1f3b;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding:
        86px
        0;

    background: var(--surface);
}


.section-intro-row {
    display: grid;

    grid-template-columns:
        1.4fr
        0.6fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 42px;
}


.section h2,
.final-cta h2,
.control-section h2 {
    margin: 0;

    font-size:
        clamp(
            34px,
            3vw,
            50px
        );

    line-height: 1.08;

    letter-spacing: -0.045em;
}


.section-intro-row > p {
    margin:
        0
        0
        4px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   MODULES
========================================================= */

.module-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.module-card {
    min-height: 215px;

    position: relative;

    padding: 25px;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    background: var(--surface-soft);

    box-shadow:
        0
        2px
        10px
        rgba(
            8,
            43,
            79,
            0.025
        );

    transition:
        transform 170ms ease,
        border-color 170ms ease,
        box-shadow 170ms ease;
}


.module-card:hover {
    transform: translateY(-4px);

    border-color: #9bd1ff;

    box-shadow: var(--shadow);
}


.module-title {
    display: flex;
    align-items: center;

    gap: 14px;
}


.module-title h3 {
    margin: 0;

    font-size: 19px;
    line-height: 1.02;
}


.module-title h3 small {
    display: block;

    margin-bottom: 3px;

    font-size: 10px;
    font-weight: 700;
}


.module-title h3 small span {
    color: #1686ff;
}


.module-icon {
    width: 46px;
    height: 46px;

    flex:
        0
        0
        46px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: white;

    font-size: 23px;
}


.module-blue {
    background:
        linear-gradient(
            135deg,
            #08a7ff,
            #116bff
        );
}


.module-indigo {
    background:
        linear-gradient(
            135deg,
            #4d78ff,
            #5962ec
        );
}


.module-purple {
    background:
        linear-gradient(
            135deg,
            #914ff3,
            #c05ae8
        );
}


.module-teal {
    background:
        linear-gradient(
            135deg,
            #0dbd9a,
            #1aa7d8
        );
}


.module-amber {
    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #f48316
        );
}


.module-midnight {
    background:
        linear-gradient(
            135deg,
            #122a44,
            #081626
        );
}


.module-card > p {
    margin:
        22px
        40px
        0
        0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.65;
}


.circle-link {
    width: 37px;
    height: 37px;

    position: absolute;

    right: 18px;
    bottom: 18px;

    display: grid;
    place-items: center;

    border:
        1px solid
        var(--border);

    border-radius: 50%;

    color: #1685ff;

    background: var(--surface);
}


.module-message {
    color: white;

    border-color: transparent;

    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(
                32,
                119,
                210,
                0.4
            ),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #0b2139,
            #0c355e
        );
}


.module-message h3 {
    margin: 0;

    font-size: 25px;
    line-height: 1.16;
}


.module-message p {
    color: #a8c1d8;

    font-size: 11px;

    letter-spacing: 0.18em;
}


/* =========================================================
   VALUE SECTION
========================================================= */

.section-value {
    background:
        linear-gradient(
            110deg,
            var(--surface-blue),
            var(--surface)
        );
}


.value-grid {
    display: grid;

    grid-template-columns:
        0.72fr
        1.28fr;

    gap: 95px;

    align-items: center;
}


.value-copy > p {
    max-width: 470px;

    margin:
        22px
        0
        27px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}


.value-card-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}


.value-card {
    min-height: 116px;

    padding: 22px;

    display: flex;

    gap: 18px;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    background: var(--surface);

    box-shadow:
        0
        5px
        18px
        rgba(
            10,
            51,
            92,
            0.04
        );
}


.value-icon {
    width: 44px;

    flex:
        0
        0
        44px;

    font-size: 31px;
}


.value-card h3 {
    margin:
        1px
        0
        7px;

    font-size: 15px;
}


.value-card p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   CONTROL
========================================================= */

.control-section {
    padding:
        72px
        0;

    color: white;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(
                17,
                110,
                213,
                0.26
            ),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #06182a,
            #082b4c
        );
}


.control-grid {
    display: grid;

    grid-template-columns:
        0.55fr
        1.2fr
        0.35fr;

    align-items: center;

    gap: 42px;
}


.control-copy h2 {
    font-size: 40px;
}


.control-copy p {
    margin:
        22px
        0
        28px;

    color: #a9bfd3;

    font-size: 14px;
    line-height: 1.72;
}


.control-window {
    min-height: 360px;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        140px
        1fr;

    border:
        1px solid
        rgba(
            43,
            136,
            220,
            0.44
        );

    border-radius: 13px;

    background: #071b31;
}


.control-sidebar {
    padding:
        17px
        11px;

    display: flex;
    flex-direction: column;

    gap: 7px;

    background: #071628;
}


.control-main {
    padding: 20px;

    background:
        linear-gradient(
            180deg,
            #0a243f,
            #081c32
        );
}


.control-window-header {
    display: flex;
    justify-content: space-between;
    align-items: start;

    gap: 20px;
}


.control-window-header h3 {
    margin:
        0
        0
        4px;

    font-size: 18px;
}


.control-window-header p {
    margin: 0;

    color: #8aa7c2;

    font-size: 9px;
}


.control-window-header button {
    padding:
        9px
        12px;

    border: 0;
    border-radius: 6px;

    color: white;
    background: #147fff;

    font-size: 9px;
}


.control-search {
    width: 230px;

    margin:
        18px
        0
        10px;

    padding:
        9px
        11px;

    border-radius: 6px;

    color: #7695b1;
    background: #102c49;

    font-size: 8px;
}


.customer-table {
    overflow: hidden;

    border:
        1px solid
        #153b5e;

    border-radius: 7px;
}


.customer-row {
    min-height: 42px;

    padding:
        0
        10px;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.1fr
        0.7fr
        0.5fr;

    align-items: center;

    border-bottom:
        1px solid
        #133653;

    color: #c2d4e5;

    font-size: 8px;
}


.customer-row:last-child {
    border-bottom: 0;
}


.table-head {
    min-height: 32px;

    color: #7d9ab5;

    background: #0d2a47;

    font-weight: 700;
}


.module-dots {
    display: flex;

    gap: 3px;
}


.module-dots i {
    width: 10px;
    height: 10px;

    display: block;

    border-radius: 2px;

    background: #1b82ff;
}


.module-dots i:nth-child(even) {
    background: #5d67ec;
}


.status-active {
    padding:
        3px
        5px;

    border-radius: 3px;

    color: #0c604a;
    background: #52ddb0;

    font-size: 7px;
}


.control-stats {
    display: grid;

    gap: 12px;
}


.control-stats article {
    padding: 15px;

    display: flex;

    gap: 13px;

    border:
        1px solid
        rgba(
            41,
            132,
            214,
            0.37
        );

    border-radius: 9px;

    background:
        rgba(
            9,
            42,
            72,
            0.72
        );
}


.control-stats article > span {
    color: #2b9aff;

    font-size: 23px;
}


.control-stats small,
.control-stats strong,
.control-stats em {
    display: block;
}


.control-stats small {
    color: #829fba;

    font-size: 8px;
}


.control-stats strong {
    margin:
        3px
        0;

    font-size: 20px;
}


.control-stats em {
    color: #28d8ae;

    font-size: 8px;
    font-style: normal;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    min-height: 230px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            180deg,
            #f6fbff,
            #e8f5ff
        );
}


html[data-theme="dark"]
.final-cta {
    background:
        linear-gradient(
            180deg,
            #102338,
            #0b1c2d
        );
}


.final-cta-grid {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        1fr
        auto;

    align-items: center;

    gap: 50px;
}


.final-cta h2 {
    margin-top: 8px;

    font-size: 36px;
}


.final-cta p {
    margin:
        9px
        0
        0;

    color: var(--muted);
}


.final-actions {
    display: flex;

    gap: 15px;
}


/* =========================================================
   MOUNTAINS
========================================================= */

.mountains {
    pointer-events: none;

    height: 130px;

    position: absolute;

    inset:
        auto
        0
        0;

    opacity: 0.28;

    background:
        linear-gradient(
            155deg,
            transparent 55%,
            #2273af 56% 62%,
            transparent 63%
        )
        0 60px / 22% 100%
        repeat-x,

        linear-gradient(
            210deg,
            transparent 50%,
            #1b5f91 51% 66%,
            transparent 67%
        )
        30px 20px / 30% 100%
        repeat-x;
}


.mountains-hero {
    opacity: 0.14;
}


.mountains-cta {
    opacity: 0.20;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding:
        48px
        0
        0;

    color: white;

    background:
        linear-gradient(
            115deg,
            #041527,
            #062848
        );
}


.footer-grid {
    display: grid;

    grid-template-columns:
        0.8fr
        1.3fr
        0.7fr;

    gap: 70px;

    padding-bottom: 38px;
}


.footer-brand p {
    margin:
        13px
        0
        0
        54px;

    color: #7699bb;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.footer-links {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.footer-links strong,
.footer-links a {
    display: block;
}


.footer-links strong {
    margin-bottom: 12px;

    font-size: 11px;
}


.footer-links a {
    margin-bottom: 8px;

    color: #89a6c1;

    font-size: 10px;
}


.footer-newsletter strong {
    font-size: 11px;
}


.footer-newsletter p {
    color: #8ca7c1;

    font-size: 10px;
    line-height: 1.55;
}


.footer-newsletter form {
    margin-top: 13px;

    display: grid;

    grid-template-columns:
        1fr
        42px;

    overflow: hidden;

    border:
        1px solid
        #1b5c94;

    border-radius: 6px;
}


.footer-newsletter input {
    min-width: 0;

    padding: 11px;

    border: 0;
    outline: 0;

    color: white;
    background: #08233e;

    font-size: 10px;
}


.footer-newsletter button {
    border: 0;

    color: white;
    background: #1686ff;

    cursor: pointer;
}


.footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    color: #7190ad;

    font-size: 9px;
}


/* =========================================================
   DARK MODE
========================================================= */

html[data-theme="dark"]
.feature-strip,

html[data-theme="dark"]
.section {
    background: var(--surface);
}


html[data-theme="dark"]
.module-card,

html[data-theme="dark"]
.value-card {
    box-shadow:
        0
        12px
        30px
        rgba(
            0,
            0,
            0,
            0.11
        );
}


html[data-theme="dark"]
.module-message {
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(
                32,
                119,
                210,
                0.4
            ),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #0b2139,
            #0c355e
        );
}


html[data-theme="dark"]
.circle-link {
    background: #10243a;
}


html[data-theme="dark"]
.midnight {
    color: #b9d8f5;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .desktop-nav {
        display: none;
    }

    .nav-shell {
        grid-template-columns:
            1fr
            auto;
    }

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

    .hero-product-window {
        max-width: 850px;

        margin:
            20px
            auto
            0;

        transform: none;
    }

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

    .feature-strip-item:nth-child(3) {
        border-right: 0;
    }

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

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

    .control-grid {
        grid-template-columns:
            1fr
            2fr;
    }

    .control-stats {
        grid-column:
            1
            / -1;

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

}


@media (max-width: 760px) {

    .page-shell,
    .nav-shell {
        width:
            min(
                calc(100% - 34px),
                var(--page-width)
            );
    }

    .site-header .brand-word {
        font-size: 20px;
    }

    .signin-link,
    .nav-actions .button {
        display: none;
    }

    .hero {
        padding-top: 125px;
    }

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

    .hero-facts {
        grid-template-columns: 1fr;
    }

    .hero-facts > div,
    .hero-facts > div:not(:first-child) {
        padding:
            14px
            0;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                0.12
            );
    }

    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-sidebar {
        display: none;
    }

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

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

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

    .feature-strip-item {
        border-right: 0;

        border-bottom:
            1px solid
            var(--border);
    }

    .section-intro-row,
    .value-grid,
    .final-cta-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .control-window {
        grid-template-columns: 1fr;
    }

    .control-sidebar {
        display: none;
    }

    .control-stats {
        grid-column: auto;

        grid-template-columns: 1fr;
    }

    .customer-row {
        grid-template-columns:
            1.4fr
            1fr
            0.8fr;

        gap: 8px;
    }

    .customer-row span:nth-child(3),
    .customer-row span:nth-child(5) {
        display: none;
    }

    .final-actions {
        flex-wrap: wrap;
    }

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

    .footer-bottom {
        padding:
            20px
            0;

        flex-direction: column;
        align-items: flex-start;

        gap: 8px;
    }

}
