:root {
    color-scheme: light;
    --ink: #0e1726;
    --muted: #536174;
    --soft: #eef4f7;
    --panel: #ffffff;
    --panel-strong: #f7fafc;
    --line: #dce6ed;
    --brand: #123c7c;
    --brand-2: #0f766e;
    --accent: #c8f2e8;
    --warning: #fff4d8;
    --shadow: 0 24px 70px rgba(18, 60, 124, 0.14);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f8fbfd;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    color: var(--brand-2);
}

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

.is-hidden {
    display: none !important;
}

.site-shell {
    min-height: 100vh;
    overflow: hidden;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(220, 230, 237, 0.84);
    background: rgba(248, 251, 253, 0.88);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(18, 60, 124, 0.18);
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #dff7f1);
    box-shadow: 0 14px 32px rgba(15, 118, 110, 0.12);
    color: var(--brand);
    font-weight: 900;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(18, 60, 124, 0.18);
    box-shadow: 0 14px 32px rgba(15, 118, 110, 0.12);
}

.brand-icon.is-hidden {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.94rem;
    font-weight: 700;
}

.nav-links a {
    color: #334155;
}

.nav-links a:hover {
    color: var(--brand);
}

.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(18, 60, 124, 0.22);
}

.button:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 22px 46px rgba(18, 60, 124, 0.28);
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.button-secondary:hover {
    color: var(--ink);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: calc(100svh - 72px);
    padding: 72px 0 92px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(248, 251, 253, 0.96) 0%, rgba(248, 251, 253, 0.78) 46%, rgba(200, 242, 232, 0.56) 100%),
        linear-gradient(180deg, #f8fbfd 0%, #eef7f8 100%);
    z-index: -3;
}

.hero::after {
    content: "";
    position: absolute;
    right: -10vw;
    bottom: -12vw;
    width: 55vw;
    height: 55vw;
    background: linear-gradient(135deg, rgba(18, 60, 124, 0.14), rgba(15, 118, 110, 0.11));
    border-radius: 48% 52% 0 0;
    transform: rotate(-10deg);
    z-index: -2;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
    gap: 48px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--brand-2);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 840px;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 660px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
    max-width: 720px;
}

.hero-point {
    min-height: 96px;
    padding: 18px;
    border: 1px solid rgba(220, 230, 237, 0.94);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
}

.hero-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
}

.hero-point span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.product-stage {
    position: relative;
    min-height: 620px;
}

.phone-frame {
    position: absolute;
    width: min(245px, 46vw);
    padding: 10px;
    border: 1px solid rgba(14, 23, 38, 0.12);
    border-radius: 36px;
    background: #101827;
    box-shadow: var(--shadow);
}

.phone-frame.primary {
    top: 18px;
    right: 28px;
    z-index: 3;
}

.phone-frame.secondary {
    top: 148px;
    left: 0;
    z-index: 2;
    transform: rotate(-5deg);
}

.phone-frame.tertiary {
    right: 0;
    bottom: 12px;
    z-index: 1;
    transform: rotate(5deg);
}

.phone-screen {
    position: relative;
    min-height: 456px;
    overflow: hidden;
    border-radius: 27px;
    background: linear-gradient(180deg, #f7fbfd, #e9f5f5);
}

.screen-img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 456px;
    object-fit: cover;
}

.screen-img.is-hidden {
    display: none;
}

.screen-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fallback-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--brand);
    font-weight: 900;
}

.fallback-pill {
    width: 42px;
    height: 12px;
    border-radius: 999px;
    background: rgba(18, 60, 124, 0.12);
}

.fallback-shield {
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    margin: 18px auto 6px;
    border-radius: 34px;
    background: var(--accent);
    color: var(--brand);
    font-size: 3rem;
    font-weight: 900;
}

.fallback-card {
    padding: 14px;
    border: 1px solid rgba(18, 60, 124, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
}

.fallback-card strong {
    display: block;
    line-height: 1.25;
}

.fallback-card span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.35;
}

.section {
    padding: 92px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: 32px;
}

.section-header h2 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.section-header p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
}

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

.feature-card,
.trust-panel,
.legal-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
    box-shadow: 0 18px 50px rgba(14, 23, 38, 0.06);
}

.feature-card {
    padding: 26px;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: var(--accent);
    color: var(--brand);
    font-weight: 900;
}

.feature-card h3,
.trust-panel h2,
.legal-card h2 {
    margin: 0;
    line-height: 1.18;
    letter-spacing: 0;
}

.feature-card p {
    margin: 12px 0 0;
    color: var(--muted);
}

.showcase {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 24px;
    align-items: center;
}

.trust-panel {
    padding: 34px;
}

.trust-panel p {
    color: var(--muted);
}

.trust-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.check {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-2);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
}

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

.screenshot-shell {
    min-height: 420px;
    padding: 9px;
    border-radius: 32px;
    background: #101827;
    box-shadow: var(--shadow);
}

.screenshot-shell:nth-child(2) {
    transform: translateY(28px);
}

.screenshot-shell .phone-screen,
.screenshot-shell .screen-img {
    min-height: 402px;
}

.cta-band {
    margin: 28px 0 90px;
    padding: 44px;
    border-radius: 30px;
    background: #0e1726;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.cta-band h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.cta-band p {
    max-width: 660px;
    margin: 18px 0 0;
    color: #cbd5e1;
}

.cta-band .button {
    margin-top: 28px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: none;
}

.page-hero {
    padding: 76px 0 34px;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 26px 0 86px;
}

.legal-card {
    padding: clamp(24px, 4vw, 42px);
}

.legal-card h2 {
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-card p,
.legal-card li {
    color: var(--muted);
}

.legal-card p:last-child,
.legal-card ul:last-child {
    margin-bottom: 0;
}

.legal-card ul {
    padding-left: 1.2rem;
}

.legal-card a {
    font-weight: 750;
}

.support-card {
    display: grid;
    gap: 22px;
    max-width: 760px;
}

.support-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: fit-content;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--brand);
    color: #ffffff;
    font-weight: 850;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 18px 40px rgba(18, 60, 124, 0.22);
}

.support-email:hover {
    color: #ffffff;
    background: #0f3268;
}

.support-note {
    padding: 18px;
    border: 1px solid rgba(18, 60, 124, 0.12);
    border-radius: 18px;
    background: var(--panel-strong);
    color: var(--muted);
}

.effective-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    background: #ffffff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-links {
    display: flex;
    gap: 16px;
}

@media (max-width: 920px) {
    .hero {
        min-height: auto;
        padding-top: 54px;
    }

    .hero-grid,
    .showcase {
        grid-template-columns: 1fr;
    }

    .product-stage {
        min-height: 530px;
        max-width: 560px;
    }

    .hero-point,
    .feature-card,
    .trust-panel,
    .legal-card,
    .cta-band {
        border-radius: 18px;
    }

    .hero-points,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        display: block;
    }

    .section-header p {
        margin-top: 14px;
    }

    .screenshot-strip {
        grid-template-columns: 1fr;
    }

    .screenshot-shell:nth-child(2) {
        transform: none;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .nav {
        min-height: 66px;
    }

    .nav-links {
        gap: 12px;
        font-size: 0.84rem;
    }

    .nav-links .button-secondary {
        display: none;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.65rem;
    }

    .hero-actions {
        display: grid;
    }

    .product-stage {
        min-height: 470px;
    }

    .phone-frame {
        width: 210px;
    }

    .phone-frame.primary {
        right: 0;
    }

    .phone-frame.secondary {
        left: -8px;
        top: 126px;
    }

    .phone-frame.tertiary {
        display: none;
    }

    .phone-screen,
    .screen-img {
        min-height: 388px;
    }

    .section {
        padding: 62px 0;
    }

    .cta-band {
        margin-bottom: 60px;
        padding: 28px;
    }

    .support-email {
        width: 100%;
        padding: 0 16px;
        font-size: 0.82rem;
    }

    .footer-inner {
        display: grid;
    }
}
