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

:root {
    --black: #000000;
    --dark: #1d1d1f;
    --mid: #3d3d3f;
    --subtle: #6e6e73;
    --border: #d2d2d7;
    --bg: #f5f5f7;
    --white: #ffffff;
    --blue: #3ebfdc;
    --purple: #5e6ab2;
    --pink: #ed949c;
    --green: #8cc4a6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--white);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.72);
    /* backdrop-filter: saturate(180%) blur(20px); */
    /* -webkit-backdrop-filter: saturate(180%) blur(20px); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-wordmark {
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.nav-wordmark strong {
    font-weight: 700;
}

.nav-divider {
    width: 1px;
    height: 14px;
    background: var(--border);
}

.nav-product {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.nav-pill {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--blue);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.glow-blue {
    width: 600px;
    height: 600px;
    background: rgba(62, 191, 220, 0.18);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.glow-purple {
    width: 400px;
    height: 400px;
    background: rgba(94, 106, 178, 0.15);
    bottom: 0;
    right: -100px;
}

.glow-pink {
    width: 300px;
    height: 300px;
    background: rgba(237, 148, 156, 0.12);
    bottom: 100px;
    left: -50px;
}

.hero-eyebrow {
    position: relative;
    z-index: 900;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 24px;
}

.spinning-logo {
    margin-bottom: 20px;
    width: 100px;
    pointer-events: none;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero h1 {
    position: relative;
    z-index: 900;
    font-size: clamp(64px, 12vw, 100px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 8px;
}

.hero h1 em {
    font-size: clamp(64px, 12vw, 120px);
    display: inline-block;
    font-style: normal;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 260px;
}

.hero-sub {
    position: relative;
    z-index: 900;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    letter-spacing: 0.01em;
}

.hero-desc {
    position: relative;
    z-index: 900;
    max-width: 760px;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2.4s ease-in-out infinite;
}

.hero-scroll svg {
    opacity: 0.4;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ── STATEMENT ── */
.statement {
    padding: 120px 24px;
    background: var(--white);
    text-align: center;
}

.statement-inner {
    max-width: 800px;
    margin: 0 auto;
}

.statement-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 28px;
}

.statement h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 28px;
}

.statement p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--subtle);
    margin-bottom: 20px;
}

.statement p:last-of-type {
    margin-bottom: 0;
}

/* ── METRICS ── */
.metrics {
    padding: 0 24px 120px;
    background: var(--white);
}

.metrics-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.metric {
    padding: 48px 32px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.metric:last-child {
    border-right: none;
}

.metric-num {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 10px;
}

.metric-num.blue {
    color: var(--blue);
}

.metric-num.purple {
    color: var(--purple);
}

.metric-num.pink {
    color: var(--pink);
}

.metric-num.green {
    color: var(--green);
}

.metric-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: var(--subtle);
    line-height: 1.4;
}

/* ── SCREENSHOTS ── */
.screenshots {
    background: var(--bg);
    padding: 120px 24px;
}

.screenshots-inner {
    max-width: 65%;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 64px;
    text-align: center;
}

.section-header .label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--dark);
    line-height: 1.1;
}

.section-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: var(--subtle);
    margin-top: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* featured (large) */
.shot-featured {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.06);
}

.shot-featured .shot-bar {
    padding: 14px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #febc2e;
}

.dot-green {
    background: #28c840;
}

.shot-featured .screen {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f4f8 50%, #f5f0ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: var(--border);
}

.shot-featured .screen svg {
    width: 48px;
    height: 48px;
}

.shot-featured .screen span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--border);
}

.shot-featured .shot-caption {
    padding: 28px 32px;
}

.shot-featured .shot-caption h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 8px;
}

.shot-featured .shot-caption p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--subtle);
    line-height: 1.6;
}

/* grid of smaller shots */
.shots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.shot-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(.25, .46, .45, .94),
        box-shadow 0.3s cubic-bezier(.25, .46, .45, .94);
}

.shot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.shot-card .shot-bar {
    padding: 12px 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 6px;
}

.shot-card .screen {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f4f8 50%, #f5f0ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.shot-card .screen svg {
    width: 36px;
    height: 36px;
    color: var(--border);
}

.shot-card .screen span {
    font-size: 13px;
    font-weight: 600;
    color: var(--border);
    letter-spacing: 0.04em;
}

.shot-card .shot-caption {
    padding: 20px 24px;
}

.shot-card .shot-caption h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 6px;
}

.shot-card .shot-caption p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--subtle);
    line-height: 1.5;
}

/* ── DARK CALLOUT ── */
.callout {
    background: var(--dark);
    padding: 120px 24px;
}

.callout-inner {
    max-width: 900px;
    margin: 0 auto;
}

.callout-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 28px;
}

.callout h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 40px;
}

.callout h2 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.callout-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.callout-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.callout-col p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.callout-col .col-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-icon.blue {
    background: rgba(62, 191, 220, 0.15);
    color: var(--blue);
}

.col-icon.purple {
    background: rgba(94, 106, 178, 0.15);
    color: var(--purple);
}

.col-icon.green {
    background: rgba(140, 196, 166, 0.15);
    color: var(--green);
}

.col-icon svg {
    width: 20px;
    height: 20px;
}

/* ── VALUES ── */
.values {
    background: var(--white);
    padding: 120px 24px;
    text-align: center;
}

.values-inner {
    max-width: 900px;
    margin: 0 auto;
}

.values h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 64px;
    line-height: 1.1;
}

.values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.value-item {
    background: var(--white);
    padding: 52px 40px;
}

.value-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--subtle);
    line-height: 1.6;
}

/* ── FOOTER ── */
footer {
    background: var(--bg);
    padding: 40px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-size: 14px;
    font-weight: 400;
    color: var(--subtle);
}

.footer-brand strong {
    font-weight: 700;
    color: var(--dark);
}

.footer-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: var(--subtle);
    font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }

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

    .metric:nth-child(2) {
        border-right: none;
    }

    .screenshots-inner {
        max-width: 65% !important;
    }

    .shots-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .callout-cols {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .values-row {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

.MFLGalaxy {
    width: 50%;
    display: block;
    position: absolute;
    top: 150px;
}

@media only screen and (max-height: 700px) {
    .MFLGalaxy {
    position: absolute;
    top: 150px;
}
}

@media only screen and (max-width: 1200px) {
    .MFLGalaxy {
        width: 70%;
        top: 50px;
    }
}


@media only screen and (max-width: 768px) {

    .MFLGalaxy {
        width: 100%;
        display: block;
        position: absolute;
        top: 65px;
    }

    .hero h1 em {
        font-size: clamp(64px, 12vw, 120px);
        display: inline-block;
        font-style: normal;
        background: linear-gradient(90deg, var(--blue), var(--purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        width: auto;
    }

    .screenshots-inner {
        max-width: 95% !important;
    }
}