@font-face {
    font-family: "Satoshi";
    src: url("/Satoshi-Bold.otf") format("opentype");
    font-weight: 700;
    font-display: swap;
}

:root {
    --sky-blue: #8ecae6;
    --blue-green: #147f99;
    --deep-blue: #023047;
    --mauve: #c4b2bc;
    --amber: #ffb703;
    --orange: #fb8500;
    --orange-text: #a84d00;
    --white: #ffffff;
    --gray-50: #fafbfc;
    --gray-100: #f5f5f7;
    --gray-200: #e8e8ed;
    --gray-400: #73737a;
    --gray-600: #5d5d63;
    --gray-900: #1d1d1f;
    --shadow: 0 20px 60px rgba(2, 48, 71, 0.09);
    --serif: Georgia, "Times New Roman", serif;
    --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    min-width: 0;
    overflow-x: visible;
    color: var(--gray-900);
    background: var(--white);
    font-family: var(--sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--deep-blue);
    text-underline-offset: 0.18em;
    text-decoration-thickness: 0.08em;
}

a:hover {
    color: var(--orange-text);
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--deep-blue);
}

img,
svg {
    max-width: 100%;
}

.shell {
    width: min(1120px, calc(100% - 3rem));
    margin-inline: auto;
}

.narrow-shell {
    width: min(860px, calc(100% - 3rem));
    margin-inline: auto;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    padding: 0.7rem 1rem;
    border-radius: 0.65rem;
    color: var(--white);
    background: var(--deep-blue);
    transform: translateY(-180%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    color: var(--white);
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(2, 48, 71, 0.09);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
}

.site-header-inner {
    display: flex;
    min-height: 4.25rem;
    align-items: center;
    gap: 1.25rem;
}

.site-brand {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    flex: 0 0 auto;
    color: var(--orange-text);
    font-family: "Satoshi", var(--sans);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-decoration: none;
}

.site-brand:hover {
    color: var(--deep-blue);
}

.site-nav {
    position: static;
    display: flex;
    width: auto;
    height: auto;
    margin-left: auto;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.4rem 1.1rem;
}

.site-nav a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--deep-blue);
}

.language-control {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.45rem;
}

.language-control label {
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 600;
}

.language-control select {
    min-height: 2.75rem;
    padding: 0.35rem 1.8rem 0.35rem 0.65rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.55rem;
    color: var(--deep-blue);
    background: var(--gray-100);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 8.5rem) 0 clamp(4.5rem, 8vw, 7rem);
    text-align: center;
}

.hero::before {
    position: absolute;
    top: -22rem;
    left: 50%;
    width: 52rem;
    height: 52rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 202, 230, 0.24), rgba(255, 183, 3, 0.06) 44%, transparent 68%);
    content: "";
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
}

.eyebrow,
.section-kicker {
    margin: 0 0 0.85rem;
    color: var(--orange-text);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.hero h1,
.section-heading,
.legal-content h1,
.support-page h1 {
    margin: 0;
    color: var(--gray-900);
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: -0.045em;
}

.hero h1 {
    max-width: 820px;
    margin-inline: auto;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.98;
}

.accent-text {
    color: var(--orange-text);
}

.hero-copy {
    max-width: 680px;
    margin: 1.6rem auto 0;
    color: var(--gray-600);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.button-row {
    display: flex;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.button {
    display: inline-flex;
    min-height: 3rem;
    padding: 0.75rem 1.35rem;
    border: 2px solid var(--deep-blue);
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--deep-blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
    color: var(--deep-blue);
    background: var(--amber);
    transform: translateY(-2px);
}

.button-secondary {
    color: var(--deep-blue);
    background: var(--white);
}

.platform-row {
    display: flex;
    margin: 2rem auto 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.platform-row span,
.pill {
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    color: var(--gray-600);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 650;
}

.content-section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.content-section.alt {
    background: var(--gray-50);
}

.content-section.deep {
    color: var(--white);
    background: var(--deep-blue);
}

.content-section.deep .section-kicker {
    color: var(--amber);
}

.content-section.deep .section-heading,
.content-section.deep .section-copy,
.content-section.deep h3,
.content-section.deep p {
    color: var(--white);
}

.section-heading {
    max-width: 760px;
    font-size: clamp(2.15rem, 5vw, 3.7rem);
    line-height: 1.05;
}

.section-heading.center,
.section-copy.center {
    margin-inline: auto;
    text-align: center;
}

.section-copy {
    max-width: 680px;
    margin: 1rem 0 0;
    color: var(--gray-600);
    font-size: 1.05rem;
}

.feature-grid,
.three-grid,
.price-grid,
.support-grid {
    display: grid;
    margin-top: 2.5rem;
    gap: 1rem;
}

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

.three-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.small-card,
.price-card,
.support-card,
.info-panel {
    min-width: 0;
    border: 1px solid var(--gray-200);
    border-radius: 1.25rem;
    background: var(--white);
}

.feature-card {
    padding: clamp(1.5rem, 4vw, 2.25rem);
}

.feature-card.featured {
    border-color: rgba(251, 133, 0, 0.34);
    background: linear-gradient(145deg, #fff9f2, var(--white) 58%);
}

.feature-number {
    display: inline-grid;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 1rem;
    border-radius: 0.7rem;
    place-items: center;
    color: var(--deep-blue);
    background: rgba(142, 202, 230, 0.35);
    font-size: 0.78rem;
    font-weight: 800;
}

.feature-card h3,
.small-card h3,
.support-card h3,
.price-card h3,
.info-panel h3 {
    margin: 0 0 0.55rem;
    color: var(--gray-900);
    font-size: 1.08rem;
    line-height: 1.25;
}

.feature-card p,
.small-card p,
.support-card p,
.price-card p,
.info-panel p {
    margin: 0;
    color: var(--gray-600);
}

.feature-list,
.check-list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--gray-600);
}

.feature-list li,
.check-list li {
    margin: 0.45rem 0;
}

.small-card {
    padding: 1.5rem;
}

.content-section.deep .small-card h3 {
    color: var(--gray-900);
}

.content-section.deep .small-card p {
    color: var(--gray-600);
}

.source-list {
    display: flex;
    margin: 2rem 0 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.source-list .pill {
    color: var(--deep-blue);
    background: var(--white);
}

.note-box {
    max-width: 760px;
    margin: 2rem auto 0;
    padding: 1.2rem 1.35rem;
    border-left: 4px solid var(--amber);
    border-radius: 0 0.85rem 0.85rem 0;
    color: var(--deep-blue);
    background: rgba(142, 202, 230, 0.16);
}

.note-box strong {
    color: var(--deep-blue);
}

.content-section.deep .note-box,
.content-section.deep .note-box strong {
    color: var(--deep-blue);
}

.access-layout {
    display: grid;
    margin-top: 2.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
}

.info-panel {
    padding: 2rem;
}

.price-grid {
    max-width: 820px;
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
    position: relative;
    padding: 2rem;
}

.price-card.recommended {
    border: 2px solid var(--orange);
    box-shadow: var(--shadow);
}

.price-badge {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    color: var(--deep-blue);
    background: var(--amber);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.price {
    display: block;
    margin: 0.55rem 0;
    color: var(--deep-blue);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.3rem);
    font-weight: 700;
    line-height: 1;
}

.price small {
    color: var(--gray-600);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
}

.price-footnote {
    max-width: 780px;
    margin: 1.5rem auto 0;
    color: var(--gray-600);
    font-size: 0.85rem;
    text-align: center;
}

.final-cta {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    text-align: center;
}

.final-cta .section-heading,
.final-cta .section-copy {
    margin-inline: auto;
}

.site-footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-brand {
    margin: 0 0 0.3rem;
    color: var(--deep-blue);
    font-family: "Satoshi", var(--sans);
    font-weight: 700;
}

.footer-copy {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.78rem;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
}

.footer-links a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.78rem;
    font-weight: 600;
}

/* Legal documents */
.legal-content,
.support-page {
    width: min(900px, calc(100% - 3rem));
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    color: var(--gray-600);
    font-size: 0.96rem;
    line-height: 1.75;
}

.legal-content h1,
.support-page h1 {
    color: var(--gray-900);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.05;
}

.document-meta {
    display: flex;
    margin: 1rem 0 0;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    color: var(--gray-600);
    font-size: 0.84rem;
}

.document-meta p {
    margin: 0;
}

.legal-content h2,
.support-page h2 {
    margin: 3.2rem 0 0.85rem;
    color: var(--gray-900);
    font-family: var(--serif);
    font-size: clamp(1.55rem, 4vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.legal-content h3,
.support-page h3 {
    margin: 2.1rem 0 0.65rem;
    color: var(--gray-900);
    font-size: 1.08rem;
    line-height: 1.3;
}

.legal-content h4 {
    margin: 1.6rem 0 0.55rem;
    color: var(--deep-blue);
    font-size: 0.98rem;
}

.legal-content p,
.support-page p {
    margin: 0 0 1rem;
    color: var(--gray-600);
}

.legal-content strong,
.support-page strong {
    color: var(--gray-900);
}

.legal-content hr,
.support-page hr {
    margin: 2.8rem 0;
    border: 0;
    border-top: 1px solid var(--gray-200);
}

.legal-content ul,
.legal-content ol,
.support-page ul,
.support-page ol {
    margin: 0 0 1.2rem;
    padding-left: 1.35rem;
}

.legal-content li,
.support-page li {
    margin: 0.4rem 0;
}

.table-wrap {
    width: 100%;
    margin: 1rem 0 1.5rem;
    overflow-x: auto;
    border: 1px solid var(--gray-200);
    border-radius: 0.85rem;
    -webkit-overflow-scrolling: touch;
}

.legal-content table,
.support-page table {
    width: 100%;
    min-width: 620px;
    margin: 0;
    border-collapse: collapse;
    font-size: 0.84rem;
    line-height: 1.5;
}

.legal-content th,
.legal-content td,
.support-page th,
.support-page td {
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: top;
    text-align: left;
}

.legal-content th,
.support-page th {
    color: var(--deep-blue);
    background: var(--gray-50);
    font-weight: 750;
}

.legal-content tr:last-child td,
.support-page tr:last-child td {
    border-bottom: 0;
}

.legal-content em {
    color: var(--gray-600);
}

/* Support */
.support-intro {
    max-width: 680px;
    margin-top: 1rem !important;
    font-size: 1.08rem;
}

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

.support-card {
    padding: 1.5rem;
}

.support-card h3 {
    margin-top: 0;
    font-family: var(--sans);
    font-size: 1.08rem;
}

.support-card a {
    font-weight: 700;
}

.support-callout {
    margin: 2rem 0;
    padding: 1.4rem 1.5rem;
    border-radius: 1rem;
    color: var(--deep-blue);
    background: rgba(142, 202, 230, 0.2);
}

.support-callout p:last-child {
    margin-bottom: 0;
}

/* Content is visible without JavaScript. Animation is progressive enhancement. */
.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 880px) {
    .site-header-inner {
        padding: 0.75rem 0;
        flex-wrap: wrap;
    }

    .site-nav {
        order: 3;
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }

    .language-control {
        margin-left: auto;
    }

    .feature-grid,
    .access-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    html {
        scroll-padding-top: 1rem;
    }

    .shell,
    .narrow-shell,
    .legal-content,
    .support-page {
        width: min(100% - 2rem, 1120px);
    }

    .site-header {
        position: static;
    }

    .site-nav {
        gap: 0.35rem 0.85rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .site-nav a {
        flex: 0 0 auto;
        font-size: 0.82rem;
    }

    .language-control label {
        display: none;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 15vw, 4rem);
    }

    .three-grid,
    .price-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .button-row .button {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .legal-content table,
    .support-page table {
        min-width: 560px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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