:root {
    --bg: #000000;
    --panel: #09111f;
    --panel-soft: rgba(10, 18, 33, 0.78);
    --line: rgba(109, 213, 237, 0.18);
    --line-strong: rgba(109, 213, 237, 0.32);
    --text: #f4f8ff;
    --muted: #a8b6cb;
    --brand: #6dd5ed;
    --brand-deep: #21446b;
    --accent: #ffc107;
    --accent-deep: #ff9d00;
    --shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "SF Pro Display", "Segoe UI", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(109, 213, 237, 0.18), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(255, 193, 7, 0.14), transparent 16%),
        linear-gradient(180deg, #02060d 0%, #000000 40%, #02060d 100%);
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(0, 0, 0, 0.72);
    border-bottom: 1px solid var(--line);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--brand);
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.logo span {
    display: inline-block;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    transition: color 0.2s ease, opacity 0.2s ease;
}

nav ul li a:hover,
nav ul li a:focus-visible {
    color: var(--brand);
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 24px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.eyebrow,
.feature-kicker {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent);
}

.hero h1,
.section-heading h2,
.download h2 {
    margin: 0;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.hero h1 {
    font-size: clamp(3.2rem, 8vw, 5.8rem);
    max-width: 10ch;
}

.hero-text,
.section-heading p,
.download p,
.feature-text p,
.feature-list li,
footer p {
    color: var(--muted);
}

.hero-text {
    max-width: 58ch;
    margin: 22px 0 0;
    font-size: 1.15rem;
}

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

.call-to-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.call-to-action {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #16130a;
    box-shadow: 0 18px 40px rgba(255, 193, 7, 0.22);
}

.secondary-action {
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
}

.call-to-action:hover,
.call-to-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible {
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.stat-pill {
    min-width: 170px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(13, 21, 37, 0.82), rgba(7, 12, 21, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    display: block;
    margin-top: 4px;
    font-size: 0.92rem;
    color: var(--muted);
}

.hero-visual {
    position: relative;
}

.hero-glow {
    position: absolute;
    inset: 10% 14% auto auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(109, 213, 237, 0.35), transparent 68%);
    filter: blur(16px);
    pointer-events: none;
}

.device-wall {
    position: relative;
    min-height: 680px;
}

.desktop-shot {
    position: absolute;
    right: 0;
    top: 40px;
    width: min(100%, 540px);
    padding: 16px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(9, 17, 31, 0.88), rgba(4, 8, 15, 0.92));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.desktop-shot img {
    width: 100%;
    border-radius: 20px;
}

.phone-stack {
    position: absolute;
    left: 0;
    top: 0;
    width: min(62%, 340px);
}

.phone-stack img {
    width: 100%;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.phone-back {
    position: absolute;
    left: 84px;
    top: 72px;
    width: 88%;
    opacity: 0.7;
    transform: rotate(9deg);
}

.phone-front {
    position: relative;
    z-index: 1;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-heading h2,
.download h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.section-heading p,
.download p {
    margin: 18px 0 0;
    font-size: 1.08rem;
}

.feature-container {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.feature-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
    gap: 38px;
    padding: 34px;
    border-radius: 34px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(9, 17, 31, 0.9), rgba(4, 8, 15, 0.92)),
        linear-gradient(135deg, rgba(109, 213, 237, 0.05), transparent 45%);
    box-shadow: var(--shadow);
}

.feature-item:nth-child(even) {
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
}

.feature-item:nth-child(even) .feature-text {
    order: 2;
}

.feature-item:nth-child(even) .feature-image {
    order: 1;
}

.feature-text h3 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.feature-text p {
    margin: 16px 0 0;
    font-size: 1.05rem;
}

.feature-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 14px rgba(109, 213, 237, 0.45);
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    width: 100%;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
}

.feature-image:not(.mac-feature):not(.feature-image-grid) img {
    max-width: 280px;
    border-radius: 42px;
}

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

.feature-image-grid img {
    max-width: none;
    border-radius: 32px;
}

.mac-feature img {
    max-width: 100%;
}

.download {
    padding-top: 36px;
}

.download-panel {
    padding: 48px;
    border-radius: 36px;
    text-align: center;
    border: 1px solid var(--line-strong);
    background:
        radial-gradient(circle at top center, rgba(109, 213, 237, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(12, 20, 36, 0.96), rgba(5, 8, 14, 0.98));
    box-shadow: var(--shadow);
}

.download-buttons {
    margin-top: 28px;
}

footer {
    padding: 0 24px 40px;
}

footer p {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 52px;
    }

    .device-wall {
        min-height: 760px;
    }

    .desktop-shot {
        position: relative;
        top: 180px;
        width: 100%;
    }

    .phone-stack {
        position: absolute;
        left: 0;
        top: 0;
        width: min(62%, 300px);
    }

    .feature-item,
    .feature-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .feature-item:nth-child(even) .feature-text,
    .feature-item:nth-child(even) .feature-image {
        order: initial;
    }

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

@media (max-width: 680px) {
    section {
        padding: 72px 18px;
    }

    nav {
        padding: 16px 18px;
    }

    nav ul {
        gap: 14px 18px;
    }

    .logo {
        font-size: 1.7rem;
    }

    .logo img {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
    }

    .hero-text,
    .section-heading p,
    .download p,
    .feature-text p,
    .feature-list li {
        font-size: 1rem;
    }

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

    .device-wall {
        min-height: 650px;
    }

    .phone-stack {
        width: min(72%, 280px);
    }

    .phone-back {
        left: 56px;
        top: 56px;
    }

    .desktop-shot {
        top: 156px;
        padding: 10px;
        border-radius: 24px;
    }

    .feature-item {
        padding: 24px;
        border-radius: 26px;
    }

    .feature-image-grid {
        grid-template-columns: 1fr;
    }

    .download-panel {
        padding: 34px 22px;
        border-radius: 28px;
    }

    .call-to-action,
    .secondary-action {
        width: 100%;
    }
}
