:root {
    --color-primary: #087983;
    --color-primary-dark: #063F46;
    --color-text: #073B42;
    --color-muted: #667085;
    --color-bg: #EEF7F8;
    --color-card: #FFFFFF;
    --color-border: #DCEBEE;
    --color-blue: #2E7DE1;
    --color-soft-blue: #EAF3FF;
    --shadow-soft: 0 16px 48px rgba(6, 63, 70, 0.10);
    --shadow-card: 0 12px 30px rgba(6, 63, 70, 0.08);
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

.modern_site {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(15, 138, 148, 0.10), transparent 320px),
        linear-gradient(180deg, #F7FCFD 0%, var(--color-bg) 58%, #F8FBFC 100%);
    color: var(--color-text);
    overflow-x: hidden;
}

.modern_site *,
.modern_site *::before,
.modern_site *::after {
    box-sizing: border-box;
    letter-spacing: 0;
}

.modern_site main,
.hero_copy,
.hero_visual,
.preview_copy,
.support_card,
.legal_card,
.cta_card,
.mini_note {
    min-width: 0;
}

.site_container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.site_container.narrow {
    width: min(780px, calc(100% - 48px));
}

.site_header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 0;
    background: rgba(247, 252, 253, 0.90);
    border-bottom: 1px solid rgba(220, 235, 238, 0.85);
    backdrop-filter: blur(16px);
}

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

.brand_link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary-dark);
    font-weight: 800;
}

.brand_link:hover {
    color: var(--color-primary-dark);
}

.brand_link img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.nav_links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav_links a {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 700;
}

.nav_links a:hover,
.footer_column a:hover,
.legal_card a:hover {
    color: var(--color-primary);
}

.nav_cta,
.button_primary,
.button_secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
    transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;
}

.nav_cta,
.button_primary {
    color: #FFFFFF;
    background: var(--color-primary);
    box-shadow: 0 10px 24px rgba(15, 138, 148, 0.24);
}

.nav_cta:hover,
.button_primary:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 138, 148, 0.28);
}

.button_secondary {
    color: var(--color-primary-dark);
    background: #FFFFFF;
    border-color: var(--color-border);
}

.button_secondary:hover {
    color: var(--color-primary);
    border-color: rgba(15, 138, 148, 0.35);
}

.modern_site a:focus-visible,
.modern_site button:focus-visible,
.modern_site input:focus-visible,
.modern_site textarea:focus-visible,
.modern_site summary:focus-visible {
    outline: 3px solid rgba(15, 138, 148, 0.30);
    outline-offset: 3px;
}

.hero_section {
    padding: 78px 0 52px;
}

.hero_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 64px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin: 0 0 16px;
    padding: 4px 10px;
    border: 1px solid rgba(15, 138, 148, 0.24);
    border-radius: 999px;
    color: var(--color-primary);
    background: rgba(15, 138, 148, 0.08);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow.light {
    color: #DFFBFF;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero_copy h1,
.page_hero h1 {
    margin: 0;
    color: var(--color-primary-dark);
    font-size: 56px;
    line-height: 1.04;
    font-weight: 900;
    overflow-wrap: break-word;
}

.hero_lede,
.section_heading p,
.preview_copy p,
.download_band p,
.support_cta_section p,
.page_hero p,
.footer_brand p,
.mini_note p,
.legal_card p,
.legal_card li {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.7;
}

.hero_lede {
    max-width: 600px;
    margin: 22px 0 26px;
}

.store_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.store_buttons img {
    display: block;
    width: 170px;
    height: auto;
}

.trust_line {
    margin-top: 18px;
    color: var(--color-muted);
    font-weight: 700;
}

.hero_visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
}

.visual_disc {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 138, 148, 0.94), rgba(6, 63, 70, 0.88));
    z-index: 0;
}

.phone_shell {
    position: relative;
    z-index: 1;
    width: min(304px, 100%);
    padding: 10px;
    border-radius: 34px;
    background: #101820;
    box-shadow: var(--shadow-soft);
}

.phone_shell img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.hero_phone {
    transform: rotate(-2deg);
}

.section_block {
    padding: 64px 0;
}

.section_heading {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.section_heading.compact {
    margin-bottom: 24px;
}

.section_heading h2,
.preview_copy h2,
.download_band h2,
.cta_card h2,
.page_hero h1,
.legal_card h2,
.support_card h2 {
    color: var(--color-primary-dark);
}

.section_heading h2,
.preview_copy h2,
.download_band h2,
.cta_card h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 900;
}

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

.feature_card,
.step_card,
.cta_card,
.mini_note,
.support_card,
.legal_card,
.faq_item,
.faq_support_card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.feature_card {
    min-height: 224px;
    padding: 24px;
}

.feature_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: var(--color-primary);
    background: rgba(15, 138, 148, 0.10);
    font-size: 13px;
    font-weight: 900;
}

.feature_icon_blue {
    color: var(--color-blue);
    background: var(--color-soft-blue);
}

.feature_card h3,
.action_slide h3,
.step_card h3,
.mini_note h3,
.footer_column h3,
.business_hours h3,
.contact_item span,
.form_intro h2 {
    margin: 0 0 10px;
    color: var(--color-primary-dark);
    font-size: 18px;
    font-weight: 900;
}

.feature_card p,
.action_slide p,
.step_card p,
.contact_item p,
.contact_item a,
.business_hours p,
.support_form span,
.faq_item p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.65;
}

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

.step_card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 16px;
    padding: 22px;
}

.step_card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #FFFFFF;
    background: var(--color-primary);
    font-weight: 900;
}

.step_card h3,
.step_card p {
    grid-column: 2;
}

.app_action_section {
    background:
        linear-gradient(180deg, rgba(233, 247, 249, 0.58), rgba(247, 252, 253, 0.18)),
        radial-gradient(circle at 15% 20%, rgba(15, 138, 148, 0.10), transparent 260px);
}

.app_action_section .section_heading {
    margin-bottom: 22px;
}

.app_action_slider {
    position: relative;
    padding: 28px 72px 38px;
    border: 1px solid rgba(211, 229, 233, 0.86);
    border-radius: 8px;
    background: rgba(238, 248, 250, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

.app_action_slider .owl-stage {
    display: flex;
}

.app_action_slider .owl-item {
    display: flex;
}

.action_slide {
    display: grid;
    align-content: start;
    justify-items: center;
    width: 100%;
    min-height: 246px;
    padding: 0 10px;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.action_phone {
    width: min(128px, 72%);
    height: 154px;
    overflow: hidden;
    padding: 6px;
    border-radius: 24px 24px 10px 10px;
    background: #101820;
    box-shadow: 0 14px 28px rgba(6, 31, 36, 0.14);
}

.action_phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.action_slide h3 {
    margin: 14px 0 5px;
    color: var(--color-primary-dark);
    font-size: 18px;
    font-weight: 900;
}

.action_slide p {
    max-width: 250px;
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
}

.app_action_slider .owl-nav {
    position: absolute;
    top: 42%;
    left: 18px;
    right: 18px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.app_action_slider .owl-nav button.owl-prev,
.app_action_slider .owl-nav button.owl-next {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(15, 138, 148, 0.18) !important;
    border-radius: 50% !important;
    color: var(--color-primary-dark) !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 12px 26px rgba(6, 63, 70, 0.10);
    pointer-events: auto;
}

.app_action_slider .owl-nav button.disabled {
    opacity: 0.36;
    cursor: default;
}

.app_action_slider .owl-nav button span {
    display: block;
    margin-top: -2px;
    font-size: 30px;
    line-height: 1;
}

.app_action_slider .owl-dots {
    margin-top: 18px !important;
}

.app_action_slider .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 4px;
    background: #B9D0D4;
}

.app_action_slider .owl-dots .owl-dot.active span,
.app_action_slider .owl-dots .owl-dot:hover span {
    background: var(--color-primary);
}

.preview_section {
    overflow: hidden;
}

.preview_grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}

.preview_copy {
    max-width: 520px;
}

.check_list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
}

.check_list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-text);
    font-weight: 700;
}

.check_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
}

.preview_phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.phone_shell_offset {
    margin-top: 70px;
}

.download_band {
    margin: 36px 0 18px;
    padding: 58px 0;
    color: #FFFFFF;
    background: linear-gradient(135deg, #086873 0%, #0F8A94 58%, #063F46 100%);
}

.download_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.download_band h2,
.download_band p {
    color: #FFFFFF;
}

.download_band p {
    max-width: 640px;
    margin-bottom: 0;
}

.support_cta_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: stretch;
}

.cta_card,
.mini_note {
    padding: 28px;
}

.inline_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.page_hero {
    padding: 78px 0 32px;
    text-align: center;
}

.page_hero h1 {
    font-size: 42px;
    line-height: 1.12;
}

.page_hero p {
    margin: 14px auto 0;
    max-width: 620px;
}

.faq_modern_section,
.support_section,
.legal_section {
    padding: 28px 0 72px;
}

.faq_layout {
    width: min(760px, calc(100% - 48px));
}

.faq_tools {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.faq_search,
.support_form input,
.support_form textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--color-text);
    font-weight: 700;
}

.faq_search {
    height: 48px;
    padding: 0 16px;
}

.chip_group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.chip {
    min-height: 36px;
    padding: 0 16px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text);
    background: #FFFFFF;
    font-weight: 800;
}

.chip.active,
.chip:hover {
    color: #FFFFFF;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.faq_list {
    display: grid;
    gap: 12px;
}

.faq_item {
    padding: 0;
}

.faq_item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 58px;
    padding: 0 20px;
    cursor: pointer;
    color: var(--color-primary-dark);
    font-weight: 900;
    list-style: none;
}

.faq_item summary::-webkit-details-marker {
    display: none;
}

.faq_item summary::after {
    content: "+";
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 900;
}

.faq_item[open] summary::after {
    content: "-";
}

.faq_item p {
    margin: 0;
    padding: 0 20px 20px;
}

.faq_empty {
    margin-top: 18px;
    padding: 18px;
    border-radius: 8px;
    text-align: center;
    color: var(--color-muted);
    background: #FFFFFF;
    border: 1px solid var(--color-border);
}

.faq_support_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding: 22px;
}

.faq_support_card h2 {
    margin: 0 0 6px;
    color: var(--color-primary-dark);
    font-size: 20px;
}

.faq_support_card p {
    margin: 0;
    color: var(--color-muted);
}

.support_grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: start;
}

.support_card {
    padding: 28px;
}

.contact_details {
    display: grid;
    gap: 20px;
}

.contact_item {
    display: grid;
    gap: 4px;
}

.contact_item a {
    color: var(--color-text);
    font-weight: 800;
}

.business_hours {
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #F8FCFC;
}

.business_hours p {
    margin: 0;
}

.support_form_card {
    min-height: 100%;
}

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

.support_form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.support_form label {
    display: grid;
    gap: 8px;
}

.support_form span {
    font-weight: 800;
}

.support_form input {
    min-height: 48px;
    padding: 0 14px;
}

.support_form textarea {
    min-height: 144px;
    padding: 14px;
    resize: vertical;
}

.checkbox_row {
    display: flex !important;
    grid-template-columns: none;
    align-items: flex-start;
    gap: 10px !important;
}

.checkbox_row input {
    width: 18px;
    min-height: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--color-primary);
}

.checkbox_row span {
    font-weight: 700;
}

.legal_card {
    width: min(860px, calc(100% - 48px));
    padding: 34px;
}

.legal_card section + section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.legal_card h2 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 900;
}

.legal_card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
}

.legal_card a {
    color: var(--color-primary);
    font-weight: 800;
}

.legal_meta {
    margin: 0 0 24px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 800;
}

.not_found_path {
    color: var(--color-muted);
    word-break: break-word;
}

.not_found_path span {
    color: var(--color-primary);
    font-weight: 800;
}

.site_footer {
    padding: 46px 0 22px;
    background: #FFFFFF;
    border-top: 1px solid var(--color-border);
}

.footer_grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.3fr) repeat(4, minmax(130px, 1fr));
    gap: 28px;
}

.footer_brand p {
    margin: 16px 0 0;
    max-width: 320px;
    font-size: 14px;
}

.footer_column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer_column h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.footer_column a,
.footer_column span {
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 700;
}

.footer_apps img {
    width: 134px;
    height: auto;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
}

.footer_bottom p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
}

.mobile_download_bar {
    display: none;
}

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

.form_honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media screen and (max-width: 1100px) {
    .hero_grid,
    .preview_grid,
    .support_grid,
    .download_grid,
    .support_cta_grid {
        grid-template-columns: 1fr;
    }

    .hero_visual {
        min-height: 470px;
    }

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

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

@media screen and (max-width: 767px) {
    .site_container,
    .site_container.narrow,
    .faq_layout,
    .legal_card {
        width: 100%;
        max-width: 640px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .site_header {
        padding: 8px 0;
        overflow: hidden;
    }

    .site_nav {
        width: 100%;
        max-width: 100%;
        min-height: 52px;
        gap: 10px;
    }

    .brand_link {
        flex: 1 1 auto;
        min-width: 0;
    }

    .brand_link span {
        max-width: 145px;
        font-size: 14px;
        line-height: 1.15;
        white-space: normal;
    }

    .brand_link img {
        flex: 0 0 auto;
        width: 36px;
        height: 36px;
    }

    .nav_links {
        display: none;
    }

    .nav_cta {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }

    .hero_section {
        padding: 34px 0 42px;
    }

    .hero_grid {
        gap: 30px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        text-align: center;
    }

    .hero_copy h1 {
        max-width: 100%;
        font-size: clamp(30px, 8.4vw, 36px);
        line-height: 1.08;
        text-wrap: balance;
    }

    .hero_lede,
    .section_heading p,
    .preview_copy p,
    .download_band p,
    .support_cta_section p,
    .page_hero p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.62;
        overflow-wrap: break-word;
    }

    .store_buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }

    .store_buttons a,
    .store_buttons img {
        width: 100%;
    }

    .hero_visual {
        min-height: auto;
        padding: 10px 0;
    }

    .visual_disc {
        width: 230px;
        height: 230px;
    }

    .phone_shell {
        width: min(245px, 76vw);
    }

    .section_block {
        padding: 48px 0;
    }

    .section_heading {
        margin-bottom: 24px;
        text-align: left;
    }

    .section_heading h2,
    .preview_copy h2,
    .download_band h2,
    .cta_card h2 {
        font-size: 28px;
        line-height: 1.16;
    }

    .feature_grid,
    .steps_grid {
        grid-template-columns: 1fr;
    }

    .app_action_slider {
        padding: 22px 48px 34px;
    }

    .app_action_slider .owl-nav {
        top: 42%;
        left: 8px;
        right: 8px;
    }

    .app_action_slider .owl-nav button.owl-prev,
    .app_action_slider .owl-nav button.owl-next {
        width: 34px;
        height: 34px;
    }

    .action_slide {
        min-height: 238px;
        padding: 0;
    }

    .action_phone {
        width: min(126px, 76%);
        height: 150px;
    }

    .feature_card {
        min-height: auto;
        padding: 20px;
    }

    .step_card {
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 18px;
    }

    .preview_grid {
        gap: 26px;
        overflow: hidden;
    }

    .preview_phones {
        align-items: flex-start;
        gap: 12px;
        overflow: hidden;
    }

    .preview_phones .phone_shell {
        width: 48%;
        min-width: 0;
        padding: 6px;
        border-radius: 24px;
    }

    .preview_phones .phone_shell img {
        border-radius: 18px;
    }

    .phone_shell_offset {
        margin-top: 36px;
    }

    .download_band {
        margin: 20px 0 0;
        padding: 42px 0;
    }

    .faq_modern_section,
    .support_section,
    .legal_section {
        padding: 18px 0 54px;
    }

    .page_hero {
        padding: 46px 0 22px;
        text-align: left;
    }

    .page_hero h1 {
        max-width: 100%;
        font-size: clamp(30px, 8.2vw, 34px);
        overflow-wrap: break-word;
    }

    .chip_group {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .chip {
        white-space: nowrap;
    }

    .faq_support_card {
        display: grid;
    }

    .support_card,
    .legal_card,
    .cta_card,
    .mini_note {
        padding: 22px;
    }

    .support_card h2,
    .contact_details h2 {
        max-width: 100%;
        font-size: 26px;
        line-height: 1.15;
        overflow-wrap: break-word;
    }

    .footer_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer_bottom {
        display: grid;
        padding-bottom: 62px;
    }

    .mobile_download_bar {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 14px;
        z-index: 60;
        display: block;
    }

    .mobile_download_bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 999px;
        color: #FFFFFF;
        background: var(--color-primary);
        box-shadow: 0 14px 34px rgba(6, 63, 70, 0.26);
        font-weight: 900;
    }
}

@media screen and (max-width: 420px) {
    .site_container,
    .site_container.narrow,
    .faq_layout,
    .legal_card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero_copy h1 {
        font-size: clamp(29px, 8.2vw, 32px);
    }

    .nav_cta {
        min-width: 88px;
        padding: 0 10px;
        font-size: 0;
    }

    .nav_cta::after {
        content: "Download";
        font-size: 13px;
    }

    .brand_link span {
        max-width: 118px;
    }

    .support_card h2,
    .contact_details h2 {
        font-size: 24px;
    }
}

/* Mockup alignment pass */
body {
    background: #F5FAFB;
}

.page_wrapper.modern_site {
    width: min(1500px, calc(100% - 44px));
    margin: 20px auto;
    border: 1px solid rgba(195, 215, 220, 0.78);
    border-radius: 8px;
    background:
        radial-gradient(circle at 82% 17%, rgba(15, 138, 148, 0.08), transparent 210px),
        linear-gradient(180deg, #F8FDFE 0%, #EEF8FA 56%, #FFFFFF 100%);
    box-shadow: 0 18px 46px rgba(18, 52, 58, 0.11);
}

.site_container {
    width: min(1210px, calc(100% - 110px));
}

.site_container.narrow {
    width: min(690px, calc(100% - 110px));
}

.site_header {
    position: relative;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.74);
    border-radius: 8px 8px 0 0;
}

.site_nav {
    min-height: 46px;
    gap: 22px;
}

.brand_link {
    gap: 9px;
    font-size: 15px;
}

.brand_link img {
    width: 38px;
    height: 38px;
}

.nav_links {
    gap: 36px;
}

.nav_links a {
    font-size: 12px;
}

.nav_cta,
.button_primary,
.button_secondary {
    min-height: 40px;
    padding: 0 24px;
    font-size: 13px;
}

.menu_toggle {
    display: none;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
}

.menu_toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--color-primary-dark);
}

.hero_section {
    padding: 34px 0 4px;
}

.hero_grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 54px;
    min-height: 418px;
}

.eyebrow {
    min-height: 24px;
    margin-bottom: 12px;
    padding: 3px 10px;
    font-size: 10px;
}

.hero_copy h1 {
    max-width: 580px;
    font-size: 44px;
    line-height: 1.02;
}

.hero_lede {
    max-width: 520px;
    margin: 16px 0 18px;
    font-size: 13px;
    line-height: 1.62;
}

.store_buttons {
    gap: 12px;
}

.store_buttons img {
    width: 146px;
}

.trust_line {
    display: none;
}

.hero_social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.avatar_stack {
    display: flex;
    align-items: center;
}

.avatar_stack img {
    width: 34px;
    height: 34px;
    margin-left: -8px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(6, 63, 70, 0.11);
}

.avatar_stack img:first-child {
    margin-left: 0;
}

.hero_social p {
    max-width: 190px;
    margin: 0;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.35;
}

.hero_visual {
    min-height: 410px;
}

.hero_visual::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 94px;
    width: 150px;
    height: 126px;
    opacity: 0.42;
    background-image: radial-gradient(rgba(15, 138, 148, 0.55) 1px, transparent 1px);
    background-size: 10px 10px;
}

.visual_disc {
    width: 304px;
    height: 304px;
}

.phone_shell {
    width: min(268px, 100%);
    padding: 8px;
    border-radius: 32px;
}

.phone_shell img {
    border-radius: 23px;
}

.hero_phone {
    transform: rotate(0deg);
}

.section_block {
    padding: 42px 0;
}

.feature_section {
    padding: 0 0 26px;
}

.feature_section .section_heading {
    display: none;
}

.feature_grid {
    gap: 14px;
}

.feature_card {
    position: relative;
    min-height: 142px;
    padding: 20px 20px 24px;
}

.feature_icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
}

.mini_icon {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
}

.mini_icon::before,
.mini_icon::after {
    content: "";
    position: absolute;
    border: 2px solid currentColor;
    border-radius: 4px;
}

.mini_icon_share::before {
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
}

.mini_icon_share::after {
    right: 1px;
    bottom: 1px;
    width: 12px;
    height: 12px;
    background: rgba(15, 138, 148, 0.08);
}

.mini_icon_predictions::before {
    left: 1px;
    bottom: 2px;
    width: 18px;
    height: 12px;
}

.mini_icon_predictions::after {
    left: 5px;
    top: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(46, 125, 225, 0.10);
}

.mini_icon_converter::before {
    left: 1px;
    top: 4px;
    width: 18px;
    height: 12px;
}

.mini_icon_converter::after {
    right: -2px;
    top: 1px;
    width: 8px;
    height: 8px;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
}

.mini_icon_comments::before {
    left: 1px;
    top: 3px;
    width: 17px;
    height: 12px;
    border-radius: 5px;
}

.mini_icon_comments::after {
    left: 6px;
    bottom: 1px;
    width: 7px;
    height: 7px;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}

.feature_card h3 {
    margin-bottom: 8px;
    font-size: 15px;
}

.feature_card p {
    max-width: 210px;
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}

.feature_arrow {
    position: absolute;
    right: 16px;
    bottom: 14px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--color-primary);
    background: rgba(15, 138, 148, 0.13);
    font-size: 15px;
    font-weight: 900;
}

.how_section {
    padding: 2px 0 12px;
}

.section_heading.compact {
    margin-bottom: 12px;
}

.section_heading.compact h2 {
    font-size: 22px;
}

.steps_grid {
    position: relative;
    gap: 0;
    padding: 15px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 12px 28px rgba(6, 63, 70, 0.05);
}

.step_card {
    position: relative;
    min-height: 52px;
    padding: 0 30px 0 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 14px;
}

.step_card:not(:last-child)::after {
    content: ">";
    position: absolute;
    top: 15px;
    right: 18px;
    color: #8AA1A8;
    font-size: 23px;
    font-weight: 400;
}

.step_card h3 {
    margin-bottom: 2px;
    font-size: 13px;
}

.step_card p {
    margin: 0;
    font-size: 11px;
    line-height: 1.35;
}

.step_card span {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.preview_section {
    display: none;
}

.download_band {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 96px;
    min-height: 152px;
    margin: 0;
    padding: 0;
}

.download_band::after {
    content: "";
    position: absolute;
    left: 224px;
    top: 50px;
    width: 140px;
    height: 92px;
    opacity: 0.34;
    background-image: radial-gradient(rgba(255, 255, 255, 0.76) 1px, transparent 1px);
    background-size: 9px 9px;
}

.download_grid {
    position: relative;
    min-height: 152px;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 34px;
}

.download_phone_art {
    position: relative;
    align-self: end;
    height: 152px;
}

.download_phone_art img {
    position: absolute;
    left: 124px;
    bottom: -108px;
    width: 184px;
    transform: rotate(-13deg);
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}

.download_content {
    position: relative;
    z-index: 1;
}

.download_band .eyebrow {
    margin-bottom: 7px;
}

.download_band h2 {
    margin: 0 0 6px;
    font-size: 30px;
}

.download_band p {
    max-width: 580px;
    font-size: 13px;
    line-height: 1.5;
}

.download_band .store_buttons {
    margin-top: 12px;
}

.download_band .store_buttons img {
    width: 132px;
}

.support_cta_section {
    padding: 28px 0 38px;
}

.page_hero {
    padding: 44px 0 18px;
}

.page_hero h1 {
    font-size: 34px;
}

.page_hero p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.55;
}

.faq_modern_section,
.support_section,
.legal_section {
    padding: 10px 0 34px;
}

.faq_layout {
    width: min(680px, calc(100% - 110px));
}

.faq_tools {
    gap: 12px;
    margin-bottom: 12px;
}

.faq_search {
    height: 42px;
    font-size: 12px;
}

.chip_group {
    gap: 8px;
}

.chip {
    min-height: 30px;
    padding: 0 15px;
    font-size: 11px;
}

.faq_list {
    gap: 10px;
}

.faq_item summary {
    min-height: 50px;
    padding: 0 18px;
    font-size: 12px;
}

.faq_item p {
    padding: 0 18px 16px;
    font-size: 11px;
}

.faq_support_card {
    margin-top: 18px;
    padding: 16px;
}

.faq_support_card h2 {
    font-size: 15px;
}

.faq_support_card p {
    font-size: 12px;
}

.support_grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 20px;
}

.support_card {
    padding: 22px 24px;
}

.contact_details {
    gap: 16px;
}

.support_card h2,
.contact_details h2 {
    font-size: 24px;
    line-height: 1.12;
}

.contact_item {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.contact_item img {
    width: 22px;
    height: 22px;
}

.contact_item span {
    margin-bottom: 2px;
    font-size: 13px;
}

.contact_item a,
.contact_item p,
.business_hours p {
    margin: 0;
    font-size: 12px;
}

.business_hours {
    padding: 14px 16px;
}

.business_hours h3 {
    font-size: 14px;
}

.form_intro h2 {
    font-size: 16px;
}

.form_intro p {
    margin-bottom: 0;
    font-size: 12px;
}

.support_form {
    gap: 11px;
    margin-top: 15px;
}

.support_form label {
    gap: 5px;
}

.support_form span {
    font-size: 11px;
}

.support_form input {
    min-height: 40px;
}

.support_form textarea {
    min-height: 122px;
}

.checkbox_row span {
    font-size: 10px;
    line-height: 1.45;
}

.support_form .button_primary {
    width: 126px;
    min-height: 36px;
    font-size: 11px;
}

.site_footer {
    padding: 24px 0 12px;
}

.footer_grid {
    grid-template-columns: minmax(230px, 1.5fr) repeat(4, minmax(120px, 1fr));
    gap: 24px;
}

.footer_brand p,
.footer_column a,
.footer_column span {
    font-size: 11px;
}

.footer_column h3 {
    font-size: 12px;
}

.footer_apps img {
    width: 112px;
}

.footer_bottom {
    margin-top: 18px;
    padding-top: 12px;
}

.footer_bottom p {
    font-size: 10px;
}

.mobile_download_bar {
    display: none !important;
}

@media screen and (max-width: 1100px) {
    .page_wrapper.modern_site {
        width: min(100% - 28px, 980px);
    }

    .site_container,
    .site_container.narrow,
    .faq_layout {
        width: min(100% - 56px, 860px);
    }

    .hero_grid {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .hero_copy h1,
    .hero_lede {
        margin-left: auto;
        margin-right: auto;
    }

    .store_buttons,
    .hero_social {
        justify-content: center;
    }

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

    .download_grid {
        grid-template-columns: 280px 1fr;
    }

    .download_phone_art img {
        left: 40px;
    }
}

@media screen and (max-width: 767px) {
    body {
        background: #F5FAFB;
    }

    .page_wrapper.modern_site {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .site_container,
    .site_container.narrow,
    .faq_layout,
    .legal_card {
        width: 100%;
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }

    .site_header {
        position: relative;
        padding: 10px 0;
        border-radius: 0;
    }

    .site_nav {
        min-height: 42px;
    }

    .brand_link img {
        width: 34px;
        height: 34px;
    }

    .brand_link span {
        max-width: none;
        font-size: 13px;
    }

    .nav_links,
    .nav_cta {
        display: none;
    }

    .menu_toggle {
        display: block;
    }

    .hero_section {
        padding: 30px 0 12px;
    }

    .hero_grid {
        min-height: 0;
        gap: 18px;
        overflow: visible;
    }

    .hero_copy h1 {
        font-size: clamp(28px, 8.4vw, 34px);
    }

    .hero_lede {
        margin-top: 14px;
        font-size: 12px;
        line-height: 1.52;
    }

    .store_buttons {
        grid-template-columns: 1fr;
        max-width: 188px;
    }

    .hero_social {
        align-items: center;
        justify-content: center;
        margin-top: 14px;
    }

    .hero_social p {
        max-width: 145px;
        text-align: left;
        font-size: 10px;
    }

    .avatar_stack img {
        width: 28px;
        height: 28px;
        margin-left: -7px;
    }

    .hero_visual {
        min-height: 230px;
        padding: 0;
    }

    .hero_visual::after {
        display: none;
    }

    .visual_disc {
        width: 210px;
        height: 210px;
    }

    .phone_shell {
        width: min(205px, 65vw);
        padding: 7px;
    }

    .feature_section {
        padding: 28px 0 20px;
    }

    .feature_section .section_heading {
        display: block;
        margin-bottom: 12px;
        text-align: left;
    }

    .feature_section .section_heading p:not(.eyebrow) {
        display: none;
    }

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

    .feature_card {
        min-height: 124px;
        padding: 18px;
    }

    .how_section {
        padding: 12px 0 20px;
    }

    .section_heading.compact {
        text-align: center;
    }

    .steps_grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .step_card {
        min-height: 72px;
        padding: 18px;
        border: 1px solid var(--color-border);
        background: #FFFFFF;
        box-shadow: var(--shadow-card);
    }

    .step_card:not(:last-child)::after {
        display: none;
    }

    .download_band {
        min-height: auto;
        margin-top: 8px;
        padding: 28px 0;
    }

    .download_grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .download_phone_art {
        display: none;
    }

    .download_band h2 {
        font-size: 24px;
    }

    .download_band .store_buttons {
        margin-left: auto;
        margin-right: auto;
    }

    .page_hero {
        padding: 34px 0 16px;
        text-align: center;
    }

    .page_hero h1 {
        font-size: clamp(28px, 8vw, 32px);
    }

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

    .support_card,
    .legal_card,
    .cta_card,
    .mini_note {
        padding: 20px;
    }

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

    .footer_bottom {
        display: grid;
        padding-bottom: 0;
    }
}

.hero_copy h1 {
    max-width: 540px;
    font-size: 42px;
}

.contact_item span,
.contact_item a,
.contact_item p {
    display: block;
}

.contact_item span {
    margin-bottom: 4px;
}

.support_form .button_primary {
    width: 144px;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .hero_copy h1 {
        max-width: 100%;
        font-size: clamp(28px, 8.4vw, 34px);
    }

    .store_buttons {
        max-width: 162px;
    }

    .hero_visual {
        min-height: 190px;
    }

    .phone_shell {
        width: min(162px, 52vw);
    }

    .visual_disc {
        width: 170px;
        height: 170px;
    }
}

/* Fullscreen shell and original-site typography scale */
body {
    background: var(--color-bg);
}

.page_wrapper.modern_site {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    border: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at top left, rgba(15, 138, 148, 0.10), transparent 320px),
        linear-gradient(180deg, #F7FCFD 0%, var(--color-bg) 58%, #F8FBFC 100%);
    box-shadow: none;
}

.site_container,
.site_container.narrow,
.faq_layout,
.legal_card {
    width: min(1160px, calc(100% - 48px));
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.site_container.narrow {
    width: min(780px, calc(100% - 48px));
}

.faq_layout {
    width: min(760px, calc(100% - 48px));
}

.legal_card {
    width: min(860px, calc(100% - 48px));
}

.site_header {
    position: sticky;
    top: 0;
    padding: 14px 0;
    border-radius: 0;
    background: rgba(247, 252, 253, 0.90);
    border-bottom: 1px solid rgba(220, 235, 238, 0.85);
    backdrop-filter: blur(16px);
}

.site_nav {
    min-height: 58px;
    gap: 24px;
}

.brand_link {
    gap: 10px;
    font-size: 16px;
}

.brand_link img {
    width: 42px;
    height: 42px;
}

.nav_links {
    gap: 30px;
}

.nav_links a {
    font-size: 16px;
}

.nav_cta,
.button_primary,
.button_secondary {
    min-height: 48px;
    padding: 0 26px;
    font-size: 16px;
}

.hero_section {
    padding: 72px 0 42px;
}

.hero_grid {
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 64px;
    min-height: 500px;
}

.eyebrow {
    min-height: 28px;
    margin-bottom: 16px;
    padding: 4px 10px;
    font-size: 13px;
}

.hero_copy h1 {
    max-width: 690px;
    color: var(--color-primary-dark);
    font-size: 55px;
    line-height: 1.08;
    font-weight: 700;
}

.page_hero h1 {
    color: var(--color-primary-dark);
    font-size: 55px;
    line-height: 1.1;
    font-weight: 700;
}

.hero_lede,
.section_heading p,
.preview_copy p,
.download_band p,
.support_cta_section p,
.page_hero p {
    font-size: 24px;
    line-height: 1.55;
}

.hero_lede {
    max-width: 620px;
    margin: 22px 0 26px;
}

.store_buttons img {
    width: 170px;
}

.hero_social {
    margin-top: 18px;
}

.hero_social p {
    max-width: 220px;
    font-size: 15px;
}

.avatar_stack img {
    width: 34px;
    height: 34px;
}

.hero_visual {
    min-height: 500px;
}

.visual_disc {
    width: 330px;
    height: 330px;
}

.phone_shell {
    width: min(304px, 100%);
    padding: 10px;
}

.feature_section {
    padding: 48px 0;
}

.feature_card {
    min-height: 214px;
    padding: 24px;
}

.feature_icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
}

.feature_card h3,
.step_card h3,
.mini_note h3,
.footer_column h3,
.business_hours h3,
.contact_item span,
.form_intro h2 {
    font-size: 20px;
}

.feature_card p,
.step_card p,
.contact_item p,
.contact_item a,
.business_hours p,
.support_form span,
.faq_item p {
    font-size: 16px;
    line-height: 1.65;
}

.section_heading.compact h2,
.section_heading h2,
.preview_copy h2,
.download_band h2,
.cta_card h2 {
    font-size: 40px;
    line-height: 1.12;
}

.steps_grid {
    padding: 20px 22px;
}

.step_card {
    min-height: 70px;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 16px;
}

.step_card span {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.download_band {
    min-height: 214px;
}

.download_grid {
    min-height: 214px;
    grid-template-columns: 420px minmax(0, 1fr);
}

.download_phone_art {
    height: 214px;
}

.download_phone_art img {
    left: 116px;
    bottom: -120px;
    width: 230px;
}

.download_band h2 {
    font-size: 40px;
}

.download_band .store_buttons img {
    width: 150px;
}

.page_hero {
    padding: 72px 0 28px;
}

.faq_modern_section,
.support_section,
.legal_section {
    padding: 28px 0 72px;
}

.faq_search {
    height: 48px;
    font-size: 16px;
}

.chip {
    min-height: 36px;
    font-size: 15px;
}

.faq_item summary {
    min-height: 58px;
    font-size: 20px;
}

.faq_support_card h2 {
    font-size: 24px;
}

.support_card {
    padding: 28px;
}

.support_card h2,
.contact_details h2 {
    font-size: 40px;
}

.contact_item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
}

.contact_item img {
    width: 26px;
    height: 26px;
}

.form_intro h2 {
    font-size: 24px;
}

.form_intro p {
    font-size: 20px;
}

.support_form {
    gap: 16px;
    margin-top: 22px;
}

.support_form input {
    min-height: 48px;
}

.support_form textarea {
    min-height: 144px;
}

.checkbox_row span {
    font-size: 13px;
}

.support_form .button_primary {
    width: auto;
    min-height: 48px;
    padding: 0 26px;
    font-size: 16px;
}

.site_footer {
    padding: 46px 0 22px;
}

.footer_grid {
    grid-template-columns: minmax(220px, 1.3fr) repeat(4, minmax(130px, 1fr));
}

.footer_brand p,
.footer_column a,
.footer_column span {
    font-size: 16px;
}

.footer_column a,
.footer_column span {
    overflow-wrap: anywhere;
}

.footer_column h3 {
    font-size: 16px;
}

.footer_apps img {
    width: 142px;
}

.footer_bottom p {
    font-size: 14px;
}

@media screen and (max-width: 1100px) {
    .site_container,
    .site_container.narrow,
    .faq_layout,
    .legal_card {
        width: min(100% - 56px, 860px);
    }

    .hero_grid,
    .download_grid,
    .support_grid {
        grid-template-columns: 1fr;
    }

    .hero_copy h1 {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero_lede,
    .hero_social {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    .site_container,
    .site_container.narrow,
    .faq_layout,
    .legal_card {
        width: 100%;
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }

    .site_header {
        position: relative;
        padding: 10px 0;
    }

    .brand_link img {
        width: 34px;
        height: 34px;
    }

    .brand_link span {
        font-size: 15px;
    }

    .nav_links,
    .nav_cta {
        display: none;
    }

    .menu_toggle {
        display: block;
    }

    .hero_section {
        padding: 34px 0 18px;
    }

    .hero_grid {
        min-height: 0;
        gap: 20px;
    }

    .hero_copy h1 {
        max-width: 100%;
        font-size: 36px;
        line-height: 1.08;
    }

    .page_hero h1 {
        font-size: 36px;
    }

    .hero_lede,
    .section_heading p,
    .preview_copy p,
    .download_band p,
    .support_cta_section p,
    .page_hero p {
        font-size: 18px;
        line-height: 1.58;
    }

    .store_buttons {
        max-width: 188px;
    }

    .hero_social p {
        max-width: 180px;
        font-size: 15px;
    }

    .avatar_stack img {
        width: 30px;
        height: 30px;
    }

    .hero_visual {
        min-height: 220px;
    }

    .phone_shell {
        width: min(190px, 58vw);
    }

    .visual_disc {
        width: 200px;
        height: 200px;
    }

    .feature_section {
        padding: 36px 0 24px;
    }

    .feature_card {
        min-height: auto;
        padding: 20px;
    }

    .section_heading.compact h2,
    .section_heading h2,
    .preview_copy h2,
    .download_band h2,
    .cta_card h2 {
        font-size: 30px;
    }

    .steps_grid {
        padding: 0;
    }

    .download_band {
        min-height: auto;
        padding: 42px 0;
    }

    .download_grid {
        min-height: 0;
        text-align: center;
    }

    .download_phone_art {
        display: none;
    }

    .support_card h2,
    .contact_details h2 {
        font-size: 30px;
    }

    .support_form .button_primary {
        width: 150px;
    }

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

@media screen and (max-width: 767px) {
    .mobile_download_bar {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 14px;
        z-index: 60;
        display: block !important;
    }

    .mobile_download_bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 999px;
        color: #FFFFFF;
        background: var(--color-primary);
        box-shadow: 0 14px 34px rgba(6, 63, 70, 0.26);
        font-weight: 900;
    }

    .site_footer {
        padding-bottom: 94px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
    .hero_section {
        padding: 44px 0 24px;
    }

    .hero_grid {
        gap: 22px;
        min-height: 0;
    }

    .hero_visual {
        min-height: 330px;
    }

    .hero_visual .phone_shell {
        width: min(210px, 40vw);
    }

    .visual_disc {
        width: 230px;
        height: 230px;
    }
}

@media screen and (max-width: 767px) {
    .hero_section {
        padding: 24px 0 8px;
    }

    .hero_grid {
        gap: 14px;
    }

    .hero_visual {
        min-height: 174px;
    }

    .hero_visual .phone_shell {
        width: min(154px, 48vw);
    }

    .visual_disc {
        width: 158px;
        height: 158px;
    }
}
