:root {
    --black: #090a0b;
    --white: #ffffff;
    --ink: #111216;
    --grey: #b8bdc3;
    --muted: #666b72;
    --line: rgba(255, 255, 255, .12);
    --red: #e31b23;
    --red-dark: #bd1218;
    --focus: #0057d9;
    --soft: #f5f6f7;
    --max: 1240px;
    --head: 76px;
    --radius: 28px;
    --ease: cubic-bezier(.2, .7, .2, 1);
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--black);
}

body {
    background: var(--black);
    color: var(--white);
    font: 16px/1.55 var(--font);
    letter-spacing: 0;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

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

.skip-link {
    background: var(--white);
    border-radius: 999px;
    color: var(--ink);
    left: 18px;
    padding: 12px 16px;
    position: fixed;
    top: -72px;
    transition: top 160ms ease;
    z-index: 999;
}

.skip-link:focus {
    top: 18px;
}

.site-header {
    inset: 0 0 auto;
    position: fixed;
    transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
    z-index: 100;
}

.site-header.is-scrolled {
    background: rgba(9, 10, 11, .75);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav {
    align-items: center;
    display: grid;
    gap: 30px;
    grid-template-columns: auto 1fr auto;
    min-height: var(--head);
}

.brand,
.nav-actions,
.hero-actions,
.eyebrow,
.button,
.text-link {
    align-items: center;
    display: inline-flex;
}

.brand {
    font-weight: 800;
    gap: 11px;
    white-space: nowrap;
}

.brand-logo {
    display: block;
    height: 32px;
    object-fit: cover;
    object-position: top center;
    width: 32px;
}

.nav-links {
    display: flex;
    font-size: .9rem;
    font-weight: 650;
    gap: 34px;
    justify-self: center;
}

.nav-links a {
    color: rgba(255, 255, 255, .72);
    transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--white);
}

.nav-actions {
    font-size: .9rem;
    font-weight: 750;
    gap: 20px;
}

.button {
    background: var(--red);
    border-radius: 999px;
    color: var(--white);
    font-weight: 800;
    gap: 11px;
    justify-content: center;
    min-height: 48px;
    padding: 0 21px;
    transition: background 200ms var(--ease), transform 200ms var(--ease);
}

.button::after,
.text-link::after {
    content: ">";
    transition: transform 200ms var(--ease);
}

.button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.button:hover::after,
.text-link:hover::after {
    transform: translateX(4px);
}

.text-link {
    font-weight: 760;
}

.eyebrow {
    font-size: .74rem;
    font-weight: 820;
    gap: 12px;
    letter-spacing: .17em;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.eyebrow::before {
    background: var(--red);
    content: "";
    height: 2px;
    width: 28px;
}

.hero {
    align-items: end;
    display: grid;
    isolation: isolate;
    min-height: 100svh;
    overflow: hidden;
    position: relative;
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(6, 7, 8, .88), rgba(6, 7, 8, .6) 36%, rgba(6, 7, 8, .14) 68%, rgba(6, 7, 8, .22)),
        linear-gradient(180deg, rgba(6, 7, 8, .06), rgba(6, 7, 8, .1) 50%, rgba(6, 7, 8, .72));
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
}

.hero-image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.hero-image {
    object-position: center;
    transform: scale(1.02);
}

.hero-inner {
    padding-bottom: clamp(60px, 8vh, 96px);
    padding-top: calc(var(--head) + 80px);
    position: relative;
    z-index: 1;
}

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

.hero h1 {
    font-size: clamp(3.45rem, 6vw, 6.15rem);
    font-weight: 560;
    letter-spacing: 0;
    line-height: .98;
    margin: 0;
    max-width: 640px;
}

.accent {
    color: var(--red);
}

.intro {
    color: rgba(255, 255, 255, .76);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.7;
    margin: 28px 0 0;
    max-width: 570px;
}

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

.hero-note {
    color: rgba(255, 255, 255, .56);
    display: flex;
    font-size: .82rem;
    gap: 15px;
    line-height: 1.6;
    margin: 60px 0 0;
    max-width: 500px;
}

.hero-note::before {
    background: rgba(255, 255, 255, .35);
    content: "";
    flex: 0 0 36px;
    height: 1px;
    margin-top: .7em;
}

.section {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    min-height: min(820px, 100svh);
    padding: 90px 0;
}

.reality {
    background: var(--black);
}

.two-column,
.platform-grid,
.why-grid {
    align-items: center;
    display: grid;
    gap: clamp(60px, 9vw, 130px);
    grid-template-columns: 1fr 1fr;
}

h2 {
    font-size: clamp(2.6rem, 4.4vw, 4.9rem);
    font-weight: 520;
    letter-spacing: 0;
    line-height: 1.02;
    margin-bottom: 0;
    max-width: 590px;
}

.copy {
    color: var(--grey);
    font-size: clamp(1.08rem, 1.55vw, 1.34rem);
    line-height: 1.72;
    max-width: 590px;
}

.copy p {
    margin-bottom: 0;
}

.copy strong {
    color: var(--white);
    display: block;
    margin-top: 22px;
}

.platform {
    background:
        radial-gradient(circle at 78% 50%, rgba(227, 27, 35, .08), transparent 28%),
        #0a0c0e;
}

.platform-grid {
    grid-template-columns: .72fr 1.28fr;
}

.platform-copy p {
    color: var(--grey);
    font-size: 1.06rem;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 430px;
}

.screen {
    background: linear-gradient(145deg, #15181c, #090a0c);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
    min-height: 560px;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
}

.screen-top {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #9aa1a8;
    display: flex;
    font-size: .78rem;
    height: 58px;
    justify-content: space-between;
    padding: 0 22px;
}

.screen-body {
    display: grid;
    grid-template-columns: 174px 1fr;
    min-height: 502px;
}

.screen-side {
    background: rgba(0, 0, 0, .22);
    border-right: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    gap: 8px;
    padding: 24px 16px;
}

.screen-side strong {
    margin-bottom: 16px;
}

.screen-side span {
    border-radius: 8px;
    color: #8f969d;
    font-size: .78rem;
    padding: 10px 12px;
}

.screen-side span:first-of-type {
    background: rgba(227, 27, 35, .18);
    color: var(--white);
}

.screen-main {
    padding: 26px;
}

.screen-label {
    color: #8e959d;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.screen-main h3 {
    font-size: clamp(1.45rem, 2.2vw, 2.2rem);
    font-weight: 650;
    line-height: 1.15;
    margin: 0;
    max-width: 570px;
}

.screen-layout {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
}

.screen-layout span {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .018) 0 16px, rgba(255, 255, 255, .045) 16px 32px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 13px;
    min-height: 116px;
}

.screen-layout span:first-child {
    grid-column: 1 / -1;
    min-height: 180px;
}

.why-grid {
    grid-template-columns: .9fr 1.1fr;
}

.why-list {
    border-top: 1px solid var(--line);
}

.why-list p {
    border-bottom: 1px solid var(--line);
    color: #d9dde1;
    font-size: clamp(1.12rem, 1.7vw, 1.45rem);
    line-height: 1.45;
    margin: 0;
    padding: 26px 0;
}

.cta-wrap {
    background: var(--white);
    color: var(--ink);
    padding: 112px 0 40px;
}

.cta {
    align-items: center;
    background: var(--white);
    border-top: 1px solid rgba(17, 18, 22, .12);
    color: var(--ink);
    display: grid;
    isolation: isolate;
    min-height: 360px;
    overflow: visible;
    position: relative;
}

.cta-inner {
    align-items: center;
    display: grid;
    gap: 60px;
    grid-template-columns: 1.15fr .85fr;
    padding: clamp(52px, 7vw, 92px) 0;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    font-weight: 540;
    letter-spacing: 0;
    line-height: .98;
    max-width: 640px;
}

.cta-copy {
    max-width: 420px;
}

.cta-copy p {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.site-footer {
    background: var(--white);
    color: #6f747a;
    font-size: .84rem;
    padding: 30px 0 42px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (max-width: 980px) {
    .nav {
        grid-template-columns: auto auto;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        justify-self: end;
    }

    .two-column,
    .platform-grid,
    .why-grid,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .screen {
        transform: none;
    }
}

@media (max-width: 680px) {
    :root {
        --head: 68px;
    }

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

    .signin {
        display: none;
    }

    .brand-logo {
        height: 30px;
        width: 30px;
    }

    .nav-actions .button {
        font-size: .78rem;
        min-height: 42px;
        padding: 0 15px;
    }

    .hero-image {
        object-position: 62% center;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(6, 7, 8, .18), rgba(6, 7, 8, .42) 38%, rgba(6, 7, 8, .94) 80%);
    }

    .hero-inner {
        padding-bottom: 42px;
        padding-top: 150px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.6rem);
    }

    .section {
        min-height: auto;
        padding: 82px 0;
    }

    h2 {
        font-size: clamp(2.25rem, 10vw, 3.8rem);
    }

    .screen-body {
        grid-template-columns: 1fr;
    }

    .screen-side {
        display: none;
    }

    .screen-main {
        padding: 18px;
    }

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

    .screen-layout span:first-child {
        grid-column: 1 / -1;
    }

    .screen-layout span:last-child {
        display: none;
    }

    .cta-wrap {
        padding-top: 26px;
    }

    .cta {
        min-height: 360px;
    }

    .cta-inner {
        padding: 42px 0;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

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