:root {
    color-scheme: light;
    --ink: #10243d;
    --muted: #5f6f83;
    --line: #d8e3ef;
    --paper: #f6f9fd;
    --surface: #ffffff;
    --teal: #136fd6;
    --teal-dark: #0b4fa7;
    --coral: #24b7ee;
    --gold: #2f8ee8;
    --shadow: 0 22px 70px rgba(16, 36, 61, 0.14);
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 10;
    padding: 10px 14px;
    background: var(--ink);
    color: #ffffff;
    border-radius: 4px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(247, 250, 249, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(217, 226, 225, 0.75);
}

.nav-shell {
    max-width: var(--max);
    margin: 0 auto;
    min-height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(13, 30, 36, 0.14);
}

.brand-logo {
    width: 146px;
    max-width: 42vw;
    height: auto;
}

.brand-product-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(13, 30, 36, 0.16);
}

.brand-text {
    font-size: 1.02rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 0.94rem;
}

.nav-links a,
.site-footer a {
    text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
    color: var(--teal-dark);
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 72px));
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(247, 250, 249, 0.96) 0%, rgba(247, 250, 249, 0.88) 39%, rgba(247, 250, 249, 0.36) 72%, rgba(247, 250, 249, 0.12) 100%);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-content {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 82px 24px 116px;
}

.hero-content > * {
    max-width: 620px;
}

.hero-logo {
    width: min(430px, 76vw);
    margin-bottom: 24px;
    mix-blend-mode: multiply;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.12;
}

h1 {
    font-size: clamp(3.3rem, 9vw, 7rem);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
    font-size: 1.2rem;
}

p {
    margin: 0;
}

.lede {
    margin-top: 22px;
    color: #31465f;
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    max-width: 570px;
}

.hero-actions,
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 6px;
    border: 1px solid var(--ink);
    text-decoration: none;
    font-weight: 700;
}

.button.primary {
    background: var(--ink);
    color: #ffffff;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
}

.section {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 76px 24px;
}

.section-heading {
    max-width: 680px;
}

.section-heading p:not(.eyebrow),
.split-section p,
.legal-content p,
.legal-content li,
.support-list p {
    color: var(--muted);
}

.product-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.product-card {
    padding: 24px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(23, 32, 35, 0.06);
}

.product-card .text-link {
    grid-column: 2;
}

.product-label {
    margin-bottom: 6px;
    color: var(--teal-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.product-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(13, 30, 36, 0.16);
}

.product-placeholder {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #eef5f3;
    color: var(--teal-dark);
    border: 1px dashed #97bfe8;
    font-size: 2rem;
    font-weight: 700;
}

.future-product {
    box-shadow: none;
}

.text-link {
    color: var(--teal-dark);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

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

.feature-grid {
    margin-top: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.feature-card,
.support-card {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.info-card p,
.feature-card p,
.support-card p {
    margin-top: 10px;
    color: var(--muted);
}

.product-hero {
    min-height: auto;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.product-hero::after {
    display: none;
}

.product-hero .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
    gap: 42px;
    align-items: center;
    padding-top: 74px;
    padding-bottom: 74px;
}

.product-lockup {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.product-lockup img {
    width: 78px;
    height: 78px;
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(13, 30, 36, 0.18);
}

.device-panel {
    padding: 24px;
    background: #edf6ff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.device-panel img {
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center right;
}

.page-header {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 70px 24px 36px;
}

.page-header p {
    max-width: 720px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.08rem;
}

.legal-content,
.support-list {
    width: min(100%, 880px);
    margin: 0 auto;
    padding: 24px 24px 78px;
}

.legal-content section,
.support-card {
    margin-top: 26px;
}

.legal-content h2 {
    font-size: 1.42rem;
    margin-bottom: 10px;
}

.legal-content ul {
    margin: 10px 0 0;
    padding-left: 22px;
}

.notice {
    margin-top: 22px;
    padding: 18px;
    border-left: 4px solid var(--gold);
    background: #eef6ff;
    color: #27435f;
}

.site-footer {
    max-width: var(--max);
    margin: 0 auto;
    padding: 34px 24px 48px;
    display: flex;
    justify-content: space-between;
    gap: 28px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer strong {
    color: var(--ink);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 820px) {
    .nav-shell,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .hero {
        min-height: auto;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(247, 250, 249, 0.98) 0%, rgba(247, 250, 249, 0.88) 52%, rgba(247, 250, 249, 0.52) 100%);
    }

    .hero-content {
        padding-top: 62px;
        padding-bottom: 92px;
    }

    .hero-media img {
        object-position: 68% center;
    }

    .product-grid,
    .product-card,
    .split-section,
    .product-hero .hero-content,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        align-items: start;
    }

    .product-card .text-link {
        grid-column: 1;
    }

    .text-link {
        white-space: normal;
    }
}

@media (max-width: 560px) {
    .nav-shell {
        padding: 0 18px;
    }

    .nav-links {
        gap: 16px;
        font-size: 0.9rem;
    }

    .hero-content,
    .section,
    .page-header,
    .legal-content,
    .support-list,
    .site-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    h1 {
        font-size: 3.25rem;
    }

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

    .button {
        width: 100%;
    }

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