:root {
    --site-blue: #49a8ff;
    --site-text: #404040;
    --site-muted: #7a8290;
    --site-border: #e8e8e8;
    --site-surface: #ffffff;
    --site-bg: #fafafa;
    --site-shadow: 0 12px 30px rgba(43, 50, 66, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--site-bg);
}

.site-desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 250, 255, 0.98) 50%, rgba(235, 246, 255, 0.98) 100%);
    border-bottom: 1px solid rgba(73, 168, 255, 0.12);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-mobile-shell {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 250, 255, 0.98) 50%, rgba(235, 246, 255, 0.98) 100%);
    border-bottom: 1px solid rgba(73, 168, 255, 0.12);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

body.site-scrolled .site-desktop-nav,
body.site-scrolled .site-mobile-shell {
    box-shadow: 0 10px 24px rgba(43, 50, 66, 0.08);
}



.site-nav-link,
.site-mobile-link {
    position: relative;
}

.site-nav-link.is-active,
.site-mobile-link.is-active {
    color: var(--site-blue) !important;
}

.site-nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 14px;
    height: 2px;
    background: var(--site-blue);
    border-radius: 999px;
}

.site-mobile-link.is-active {
    font-weight: 600;
}

.site-footer-panel {
    border-top: 1px solid var(--site-border);
    background: #fff;
}

.site-footer-panel .am-container {
    max-width: 1000px;
    padding: 48px 15px 36px;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
}

.site-footer-title {
    margin: 0 0 14px;
    color: var(--site-text);
    font-size: 18px;
    font-weight: 600;
}

.site-footer-copy {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.9;
}

.site-footer-column h4 {
    margin: 0 0 14px;
    color: var(--site-text);
    font-size: 15px;
    font-weight: 600;
}

.site-footer-column a,
.site-footer-column span {
    display: block;
    margin-bottom: 10px;
    color: var(--site-muted);
    line-height: 1.7;
}

.am-menu-nav span,
.m-nav span {
    display: block;
    padding: 0 2rem;
    color: rgb(64, 64, 64);
}

.am-menu-nav li > span {
    color: #666;
    background-color: #fff;
    border-bottom: 1px solid rgb(232, 232, 232);
    margin: 0 10px;
}

.down li > span {
    display: inline-block;
}

.site-footer-column a:hover {
    color: var(--site-blue);
}

.site-legal {
    border-top: 1px solid var(--site-border);
}

.site-legal .am-container {
    max-width: 1000px;
    padding: 24px 15px 48px;
    text-align: center;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 2;
}

.site-legal a {
    color: var(--site-muted);
}

.site-legal a:hover {
    color: var(--site-blue);
}

.site-legal-row {
    margin-bottom: 8px;
}

.site-back-top {
    cursor: pointer;
}

.site-anchor-offset {
    scroll-margin-top: 96px;
}

@media only screen and (max-width: 1024px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 640px) {
    .site-footer-panel .am-container,
    .site-legal .am-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.site-page-hero {
    padding: 72px 0 28px;
    background: linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(239, 247, 255, 1) 100%);
    border-bottom: 1px solid var(--site-border);
}

.site-page-hero .am-container,
.site-page-shell {
    max-width: 1000px;
}

.site-page-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(73, 168, 255, 0.12);
    color: var(--site-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.site-page-title {
    margin: 0 0 12px;
    color: var(--site-text);
    font-size: 40px;
    line-height: 1.25;
    font-weight: 600;
}

.site-page-lead {
    max-width: 680px;
    margin: 0;
    color: var(--site-muted);
    font-size: 17px;
    line-height: 1.9;
}

.site-page-shell {
    margin: 0 auto;
    padding: 42px 15px 0;
}

.site-section-card {
    margin-bottom: 28px;
    padding: 34px;
    background: var(--site-surface);
    border: 1px solid rgba(73, 168, 255, 0.08);
    border-radius: 24px;
    box-shadow: var(--site-shadow);
}

.site-section-card:last-child {
    margin-bottom: 0;
}

.site-card-title {
    margin: 0 0 16px;
    color: var(--site-text);
    font-size: 26px;
    line-height: 1.4;
    font-weight: 600;
}

.site-card-copy,
.site-legal-copy {
    color: var(--site-muted);
    font-size: 16px;
    line-height: 1.9;
}

.site-card-copy p,
.site-legal-copy p {
    margin: 0 0 14px;
}

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

.site-quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.site-link-card {
    display: block;
    padding: 26px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 250, 255, 1) 100%);
    border: 1px solid rgba(73, 168, 255, 0.12);
    box-shadow: 0 10px 24px rgba(43, 50, 66, 0.06);
    color: inherit;
}

.site-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(43, 50, 66, 0.1);
    color: inherit;
}

.site-link-card h3 {
    margin: 0 0 8px;
    color: var(--site-text);
    font-size: 20px;
    font-weight: 600;
}

.site-link-card p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.8;
}

.site-detail-grid,
.site-download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.site-detail-box,
.site-download-card,
.site-legal-card {
    padding: 26px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(73, 168, 255, 0.12);
}

.site-detail-box h3,
.site-download-card h3,
.site-legal-card h3 {
    margin: 0 0 10px;
    color: var(--site-text);
    font-size: 20px;
    font-weight: 600;
}

.site-detail-box p,
.site-download-card p,
.site-legal-card p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.85;
}

.site-download-grid {
    margin-top: 18px;
}

.site-download-card img {
    display: block;
    max-width: 88px;
    height: auto;
    margin-bottom: 18px;
}

.site-download-card--qr img {
    max-width: 136px;
}

.site-download-note {
    margin-top: 14px;
    color: var(--site-muted);
    font-size: 14px;
}

.site-button-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--site-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(73, 168, 255, 0.24);
}

.site-button:hover {
    color: #fff;
    transform: translateY(-1px);
}

.site-button-secondary {
    background: #fff;
    color: var(--site-blue);
    border: 1px solid rgba(73, 168, 255, 0.22);
    box-shadow: none;
}

.site-button-secondary:hover {
    color: var(--site-blue);
}

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

.site-inline-link {
    color: var(--site-blue);
}

.site-inline-link:hover {
    color: var(--site-blue);
}

.site-footer-column .site-inline-link,
.site-legal .site-inline-link {
    color: var(--site-muted);
}

.site-footer-column .site-inline-link:hover,
.site-legal .site-inline-link:hover {
    color: var(--site-blue);
}

.m-nav .site-cta-link,
.am-menu-nav .site-cta-link {
    color: var(--site-blue);
    font-weight: 600;
}

@media only screen and (max-width: 1024px) {
    .site-quick-links,
    .site-detail-grid,
    .site-download-grid,
    .site-legal-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 640px) {
    .site-page-hero {
        padding-top: 52px;
    }

    .site-page-title {
        font-size: 30px;
    }

    .site-page-lead,
    .site-card-copy,
    .site-legal-copy {
        font-size: 15px;
    }

    .site-page-shell {
        padding-top: 28px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-section-card {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .site-card-title {
        font-size: 22px;
    }

    .site-button-row {
        flex-direction: column;
        align-items: stretch;
    }

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