:root {
    color-scheme: light;
    --bg-deep: #0d3d8e;
    --bg-mid: #4f7fe2;
    --bg-soft: #c4eef0;
    --bg-warm: #f8efe2;
    --ink: #10223f;
    --ink-muted: rgba(16, 34, 63, 0.72);
    --line: rgba(16, 34, 63, 0.1);
    --glass: rgba(255, 255, 255, 0.68);
    --glass-strong: rgba(255, 255, 255, 0.82);
    --shadow: 0 28px 70px rgba(12, 37, 88, 0.18);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --page-width: min(1180px, calc(100vw - 40px));
    --frame-toolbar-clearance: clamp(72px, 10svh, 112px);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: var(--bg-deep);
    background-image:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255, 212, 142, 0.34), transparent 28%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 32%, var(--bg-soft) 72%, var(--bg-warm) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
}

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100svh;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    padding: calc(24px + var(--frame-toolbar-clearance)) 0 0;
    position: relative;
    overflow-x: hidden;
    background: transparent;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: max(140px, env(safe-area-inset-top, 0px));
    background: var(--bg-deep);
    z-index: -2;
    pointer-events: none;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255, 212, 142, 0.34), transparent 28%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 32%, var(--bg-soft) 72%, var(--bg-warm) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    z-index: -1;
    pointer-events: none;
}

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

a {
    color: inherit;
}

.yearly-page {
    width: var(--page-width);
    margin: 0 auto;
    padding: 0 0 72px;
}

.topbar,
.section,
.hero__content {
    position: relative;
    z-index: 1;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fffaf4;
}

.brand__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.topbar__links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 18px;
}

.topbar__links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
}

.hero {
    padding: 12px 0 28px;
}

.hero__content {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 44px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.section-heading h2,
.feature-card h2,
.privacy-card h2 {
    font-family: "Fraunces", Georgia, serif;
    letter-spacing: -0.04em;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    line-height: 0.94;
    color: #fffaf4;
    text-wrap: balance;
}

.lede {
    max-width: 40rem;
    margin: 22px 0 0;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255, 250, 244, 0.88);
}

.hero__actions,
.privacy-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button--primary {
    background: #fff6eb;
    color: #0f2a56;
}

.button--secondary {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fffaf4;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.button--ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

.hero__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.hero__facts li {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    color: #fffaf4;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero__visual {
    position: relative;
    padding-top: 18px;
}

.icon-orb {
    position: absolute;
    top: -6px;
    right: 16px;
    width: min(15vw, 140px);
    aspect-ratio: 1;
    padding: 12px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.icon-orb__image {
    width: 100%;
    height: 100%;
    border-radius: 26px;
}

.hero__shot,
.video-shell,
.statement-card,
.feature-card,
.screen-card,
.privacy-card {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero__shot {
    border-radius: var(--radius-xl);
    transform: rotate(-2.4deg);
}

.section {
    margin-top: 34px;
}

.section--statement {
    margin-top: 52px;
}

.statement-card {
    padding: 26px 28px;
    border-radius: var(--radius-lg);
}

.statement-card p {
    margin: 0;
    font-size: clamp(1.22rem, 2vw, 1.6rem);
    line-height: 1.55;
    color: var(--ink);
    text-wrap: balance;
}

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

.feature-card {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.feature-card__label {
    margin: 0 0 12px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(16, 34, 63, 0.56);
}

.feature-card h2,
.privacy-card h2,
.section-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 0.98;
}

.feature-card p:last-child,
.privacy-card p:last-of-type {
    margin: 16px 0 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-muted);
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading .eyebrow {
    color: rgba(16, 34, 63, 0.55);
}

.video-shell {
    padding: 14px;
    border-radius: var(--radius-xl);
}

.video-shell video {
    width: 100%;
    border-radius: calc(var(--radius-xl) - 12px);
    background: rgba(255, 255, 255, 0.6);
}

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

.screen-card {
    margin: 0;
    padding: 14px;
    border-radius: var(--radius-lg);
}

.screen-card img {
    border-radius: 20px;
}

.screen-card figcaption {
    padding: 14px 4px 4px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--ink-muted);
}

.privacy-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--glass-strong);
}

.privacy-card .eyebrow {
    color: rgba(16, 34, 63, 0.55);
}

.privacy-card .button--secondary {
    background: #10223f;
    border-color: #10223f;
    color: #fffaf4;
}

@media (max-width: 980px) {
    .hero__content,
    .privacy-card,
    .feature-grid,
    .screens-grid {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        order: -1;
        max-width: 760px;
    }

    .hero__shot {
        transform: none;
    }

    .icon-orb {
        width: 112px;
        top: -12px;
        right: 12px;
    }
}

@media (max-width: 720px) {
    :root {
        --page-width: min(100vw - 24px, 1180px);
    }

    body {
        padding-top: 20px;
    }

    .yearly-page {
        padding: 18px 0 52px;
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 24px;
    }

    .topbar__links {
        gap: 14px;
    }

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

    .statement-card,
    .feature-card,
    .video-shell,
    .screen-card,
    .privacy-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .video-shell {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
