/* Custom styles for SpaceAtlas Labs */

:root {
    --page_background_color: #121e33;
    --page_background_color_alt: #1a2d4a;
    --surface_color: #1e3150;
    --surface_color_alt: #24395e;
    --surface_color_deep: #152540;
    --surface_color_glass: rgba(19, 32, 54, 0.78);
    --surface_soft_color: rgba(30, 49, 80, 0.86);
    --border_color: #36527d;
    --soft_border_color: rgba(158, 188, 233, 0.24);
    --primary_text_color: #f5f9ff;
    --secondary_text_color: #d6e3f6;
    --muted_text_color: #aac0df;
    --accent_color: #4f66e5;
    --accent_hover_color: #4157cc;
    --highlight_color_start: #8ec9ff;
    --highlight_color_end: #f5fbff;
    --highlight_color_soft_start: #adcfff;
    --highlight_color_soft_end: #d9e7ff;
    --highlight_shadow_color: rgba(115, 177, 255, 0.24);
    --link_text_color: #8ec9ff;
    --link_hover_text_color: #c8e6ff;
    --hero_glow_color: rgba(79, 102, 229, 0.2);
    --proof_chip_background_color: rgba(61, 107, 182, 0.17);
    --proof_chip_border_color: rgba(155, 199, 255, 0.22);
    --proof_chip_text_color: #dcecff;
    --forum_button_background_color: #1f7a48;
    --forum_button_border_color: rgba(171, 240, 199, 0.34);
    --forum_button_hover_background_color: #256f48;
    --forum_button_shadow_color: rgba(19, 77, 45, 0.32);
    --section_spacing_large: 5.5rem;
    --section_spacing_medium: 4rem;
    --pricing_feature_panel_flex_growth: 1;
    --pricing_feature_panel_flex_shrink: 1;
    --pricing_feature_panel_flex_basis: auto;
    --shared_carousel_max_width: 62rem;
    --shared_carousel_border_radius: 0.95rem;
    --shared_carousel_slide_padding: 0.65rem;
    --shared_carousel_control_gap: 0.75rem;
    --shared_carousel_dot_size: 0.72rem;
    --shared_carousel_image_aspect_ratio: 16 / 10;
    --shared_carousel_min_height: 16rem;
    --shared_carousel_frame_background_color: rgba(16, 28, 48, 0.74);
    --shared_carousel_arrow_button_size: 3.05rem;
    --shared_carousel_arrow_button_horizontal_offset: 0.72rem;
    --shared_carousel_arrow_icon_size: 0.86rem;
    --shared_carousel_arrow_icon_stroke_width: 0.16rem;
    --shared_carousel_arrow_background_color: rgba(13, 24, 43, 0.72);
    --shared_carousel_arrow_background_hover_color: rgba(26, 43, 72, 0.9);
}

html,
body {
    min-height: 100vh;
}

body.site_body {
    background:
        radial-gradient(circle at 14% 7%, var(--hero_glow_color), transparent 42%),
        linear-gradient(180deg, var(--page_background_color_alt) 0%, var(--page_background_color) 58%);
    color: var(--primary_text_color);
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    position: relative;
}

.site_main_content {
    overflow: clip;
}

a {
    color: var(--link_text_color);
}

a:hover {
    color: var(--link_hover_text_color);
}

.box {
    background-color: var(--surface_soft_color);
    border: 1px solid var(--border_color);
    box-shadow: 0 16px 36px rgba(6, 10, 18, 0.28);
}

.button.is-primary {
    background-color: var(--accent_color);
    border: 1px solid rgba(172, 198, 255, 0.18);
    box-shadow:
        0 14px 26px rgba(28, 55, 115, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    color: var(--primary_text_color);
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.button.is-primary:hover {
    background-color: var(--accent_hover_color);
    box-shadow:
        0 18px 32px rgba(28, 55, 115, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    color: var(--primary_text_color);
    transform: translateY(-0.0625rem);
}

.button.is-primary:focus-visible,
.button.is-outlined.is-light:focus-visible {
    box-shadow: 0 0 0 0.125rem rgba(142, 201, 255, 0.3);
    outline: 0;
}

.button.is-outlined.is-light {
    background-color: rgba(18, 31, 54, 0.48);
    border-color: var(--soft_border_color);
    color: var(--primary_text_color);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.button.is-outlined.is-light:hover {
    background-color: rgba(31, 49, 83, 0.7);
    border-color: rgba(188, 214, 255, 0.36);
    color: var(--primary_text_color);
    transform: translateY(-0.0625rem);
}

.button.is-outlined.is-light.contact_forum_button {
    background-color: var(--forum_button_background_color);
    border-color: var(--forum_button_border_color);
    box-shadow: 0 14px 26px var(--forum_button_shadow_color);
    color: var(--primary_text_color);
}

.button.is-outlined.is-light.contact_forum_button:hover,
.button.is-outlined.is-light.contact_forum_button:focus-visible,
.button.is-outlined.is-light.contact_forum_button:active {
    background-color: var(--forum_button_hover_background_color);
    border-color: var(--forum_button_border_color);
    color: var(--primary_text_color);
}

.footer {
    padding: 2rem 1.5rem;
    margin-top: auto;
    background-color: transparent;
    border-top: 1px solid var(--border_color);
}

.hero.is-medium .hero-body {
    padding: 6rem 1.5rem;
}

.section.has-background-dark {
    background-color: var(--surface_color_alt) !important;
}

.navbar.is-dark {
    background-color: transparent;
    border-bottom: 1px solid var(--border_color);
}

.site_navbar_shell {
    backdrop-filter: blur(14px);
    background-color: rgba(13, 22, 38, 0.62);
    border-bottom-color: var(--soft_border_color);
    position: sticky;
    top: 0;
    z-index: 30;
}

.site_navbar_inner {
    min-height: 4.5rem;
}

.navbar-brand .navbar-item,
.navbar-item,
.navbar-link {
    color: var(--primary_text_color);
}

.navbar-item:hover,
.navbar-link:hover {
    background-color: var(--surface_color_alt);
    color: var(--primary_text_color);
}

.navbar-burger {
    color: var(--primary_text_color);
}

.site_brand_link {
    align-items: center;
    display: flex;
    gap: 0.55rem;
}

.site_brand_name_text {
    letter-spacing: 0.02em;
}

.site_brand_logo {
    display: block;
    height: 1.85rem;
    max-width: 9.5rem;
    width: auto;
}

.site_navbar_actions {
    align-items: center;
    gap: 0.35rem;
}

.site_nav_cta_button {
    background: linear-gradient(135deg, rgba(86, 110, 231, 0.98), rgba(69, 145, 225, 0.94));
    border: 1px solid rgba(198, 220, 255, 0.18);
    border-radius: 999rem;
    box-shadow:
        0 14px 24px rgba(25, 43, 85, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    margin-left: 0.6rem;
    min-height: 2.75rem;
    padding-inline: 1.05rem;
}

.navbar-item.site_nav_cta_button:hover {
    background: linear-gradient(135deg, rgba(73, 96, 214, 1), rgba(57, 132, 214, 0.98));
    color: var(--primary_text_color);
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: rgba(22, 37, 64, 0.96);
        border: 1px solid var(--soft_border_color);
        border-top: 0;
        margin-top: 0.2rem;
    }

    .site_navbar_actions {
        align-items: stretch;
        gap: 0;
    }

    .site_nav_cta_button {
        border-radius: 0.85rem;
        margin: 0.2rem 0;
    }
}

.title,
.subtitle,
.content h1,
.content h2,
.content h3,
.content h4 {
    color: var(--primary_text_color);
}

.has-text-grey-light {
    color: var(--secondary_text_color) !important;
}

.has-text-grey {
    color: var(--muted_text_color) !important;
}

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

.section_eyebrow {
    align-items: center;
    color: var(--link_text_color);
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 700;
    gap: 0.65rem;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section_eyebrow::before {
    background: linear-gradient(135deg, var(--highlight_color_start), transparent);
    border-radius: 999rem;
    content: "";
    display: block;
    height: 0.125rem;
    width: 2.75rem;
}

.accent_text {
    background: linear-gradient(135deg, var(--highlight_color_start), var(--highlight_color_end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 1.4rem var(--highlight_shadow_color);
}

.accent_text_soft {
    background: linear-gradient(135deg, var(--highlight_color_soft_start), var(--highlight_color_soft_end));
    -webkit-background-clip: text;
    background-clip: text;
}

.section_lead {
    margin: 0 auto;
    max-width: 42rem;
}

.layered_panel {
    background:
        linear-gradient(180deg, rgba(39, 63, 103, 0.34) 0%, rgba(17, 29, 49, 0.82) 100%),
        rgba(18, 31, 52, 0.8);
    border: 1px solid var(--soft_border_color);
    box-shadow:
        0 24px 48px rgba(6, 10, 18, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.proof_chip {
    align-items: center;
    background-color: var(--proof_chip_background_color);
    border: 1px solid var(--proof_chip_border_color);
    border-radius: 999rem;
    color: var(--proof_chip_text_color);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 2.4rem;
    padding: 0.5rem 0.9rem;
}

.proof_chip_compact {
    font-size: 0.78rem;
    min-height: 2rem;
    padding: 0.38rem 0.72rem;
}

.preview_panel {
    padding: 1.5rem;
}

.home_hero_section {
    overflow: hidden;
    position: relative;
}

.home_hero_section::before {
    background: radial-gradient(circle, rgba(104, 157, 233, 0.16) 0%, rgba(104, 157, 233, 0) 72%);
    content: "";
    height: 30rem;
    position: absolute;
    right: -8rem;
    top: -4rem;
    width: 30rem;
}

.home_hero_title {
    font-size: clamp(3rem, 5vw, 4.85rem);
    letter-spacing: -0.03em;
    line-height: 1.02;
    max-width: 11ch;
    text-wrap: balance;
}

.home_hero_subtitle {
    line-height: 1.55;
    max-width: 38rem;
}

.hero_action_row {
    align-items: center;
    gap: 1rem;
}

.hero_stat_row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero_preview_panel {
    overflow: hidden;
    position: relative;
}

.hero_preview_panel::after {
    background: linear-gradient(135deg, rgba(142, 201, 255, 0.14), transparent 58%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.preview_caption {
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.preview_header {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.preview_overline {
    color: var(--muted_text_color);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    margin-top: 0.32rem;
    text-transform: uppercase;
}

.preview_tag {
    background-color: rgba(142, 201, 255, 0.1);
    border: 1px solid rgba(142, 201, 255, 0.18);
    border-radius: 999rem;
    color: var(--primary_text_color);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
}

.hero_preview_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.space_grid_preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
}

.space_grid_cell {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(145, 172, 218, 0.18);
    border-radius: 0.65rem;
    color: var(--secondary_text_color);
    display: flex;
    font-size: 0.86rem;
    font-weight: 600;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.45rem;
    text-align: center;
}

.space_grid_cell.is_active {
    background: linear-gradient(180deg, rgba(89, 120, 235, 0.3) 0%, rgba(55, 85, 188, 0.18) 100%);
    border-color: rgba(165, 198, 255, 0.48);
    box-shadow:
        0 10px 22px rgba(41, 64, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: var(--primary_text_color);
}

.preview_panel_note {
    max-width: 28rem;
}

.home_feature_section,
.home_workflow_section,
.home_cta_section {
    padding-block: var(--section_spacing_medium);
    position: relative;
}

.home_feature_section {
    padding-top: 2.5rem;
}

/* Video demo section */
[x-cloak] { display: none !important; }

.home_video_section {
    padding-bottom: 1rem;
}

.video_thumbnail_wrap {
    cursor: pointer;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: block;
}

.video_thumbnail_img {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 0.2s ease;
}

.video_thumbnail_wrap:hover .video_thumbnail_img {
    filter: brightness(0.75);
}

.video_play_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.video_play_btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.video_thumbnail_wrap:hover .video_play_btn {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}

/* Modal */
.video_modal_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1.5rem;
}

.video_modal_inner {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.video_modal_close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.video_modal_close:hover {
    color: #fff;
}

.video_modal_frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 10px;
    overflow: hidden;
}

.video_modal_frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home_workflow_section {
    background:
        radial-gradient(circle at 15% 18%, rgba(84, 119, 208, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(22, 37, 64, 0.48) 0%, rgba(17, 29, 50, 0) 100%);
}

.home_cta_section {
    padding-bottom: var(--section_spacing_large);
}

.section_heading {
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.section_intro {
    margin: 0 auto 2.5rem;
    max-width: 48rem;
}

.feature_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.feature_card:hover {
    border-color: rgba(190, 216, 255, 0.26);
    box-shadow:
        0 28px 52px rgba(6, 10, 18, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-0.18rem);
}

.feature_card_kicker {
    color: var(--link_text_color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.feature_card_title {
    margin-bottom: 1rem !important;
}

.workflow_panel {
    padding: 1.25rem;
}

.workflow_step_list {
    display: grid;
    gap: 0.35rem;
}

.workflow_step_item {
    border-top: 1px solid rgba(173, 198, 237, 0.12);
    padding: 1.1rem 0;
}

.workflow_step_item:first-child {
    border-top: 0;
    padding-top: 0.3rem;
}

.workflow_step_item:last-child {
    padding-bottom: 0.2rem;
}

.workflow_step_title {
    color: var(--primary_text_color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.workflow_step_copy {
    color: var(--secondary_text_color);
    margin: 0;
}

.home_cta_card {
    margin: 0 auto;
    max-width: 52rem;
    padding: 2.8rem 2rem;
}

.home_cta_actions {
    gap: 1rem;
    justify-content: center;
}

.site_footer_shell {
    background:
        linear-gradient(180deg, rgba(16, 28, 48, 0) 0%, rgba(16, 28, 48, 0.72) 100%),
        transparent;
    border-top-color: var(--soft_border_color);
    padding-block: 2.4rem;
}

.site_footer_brand {
    color: var(--primary_text_color);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.site_footer_copy {
    margin: 0;
}

.site_footer_label {
    color: var(--muted_text_color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.site_footer_links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.35rem;
    justify-content: flex-start;
}

.site_footer_links a {
    color: var(--secondary_text_color);
}

.site_footer_links a:hover {
    color: var(--primary_text_color);
}

.inner_page_section {
    padding-block: var(--section_spacing_large);
    position: relative;
}

.inner_page_intro {
    margin: 0 auto 3rem;
    max-width: 54rem;
}

.inner_page_secondary_intro {
    margin-top: 3.25rem;
    max-width: 36rem;
}

.inner_page_title {
    font-size: clamp(2.65rem, 4.6vw, 4.2rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1rem !important;
    text-wrap: balance;
}

.inner_page_copy {
    margin: 0 auto;
    max-width: 44rem;
    line-height: 1.65;
}

.inner_page_chip_row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.inner_page_content_block {
    margin-top: 2rem;
}

.inner_page_panel {
    height: 100%;
    padding: 1.6rem;
}

.release_notes_entry_panel {
    height: auto;
}

.inner_page_subheading {
    margin-bottom: 0.9rem !important;
}

.inner_page_list {
    display: grid;
    gap: 0.8rem;
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
}

.inner_page_list li {
    background-color: rgba(16, 28, 48, 0.45);
    border: 1px solid rgba(166, 198, 237, 0.14);
    border-radius: 0.85rem;
    color: var(--secondary_text_color);
    padding: 0.85rem 1rem;
}

.download_card_panel,
.pricing_plan_card,
.renewals_panel,
.documentation_card,
.faq_card,
.account_panel,
.contact_support_panel,
.account_overview_panel,
.system_requirements_box {
    box-shadow:
        0 24px 48px rgba(6, 10, 18, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.download_card_panel {
    padding: 1.75rem 1.5rem;
}

.download_meta_row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin: 1rem 0 1.4rem;
}

.download_release_link {
    margin-top: 1rem;
}

.pricing_plan_card {
    padding: 1.75rem 1.5rem;
}

.pricing_plan_subtext {
    min-height: 1.5rem;
}

.checkout_provider_tabs .tabs ul {
    border-bottom: 0;
    justify-content: center;
}

.checkout_provider_tabs .tabs.is-toggle li a {
    background-color: rgba(16, 28, 48, 0.54);
    border-color: rgba(155, 188, 238, 0.2);
    color: var(--secondary_text_color);
}

.checkout_provider_tabs .tabs.is-toggle li.is-active a {
    background-color: rgba(79, 102, 229, 0.28);
    border-color: rgba(163, 196, 255, 0.24);
    color: var(--primary_text_color);
}

.checkout_selection_panel {
    background-color: rgba(16, 28, 48, 0.45);
    border: 1px solid rgba(155, 188, 238, 0.16);
    border-radius: 0.95rem;
    padding: 1rem;
}

.renewals_panel {
    padding: 1.9rem;
}

.system_requirements_box {
    margin-top: 3rem !important;
    padding: 1.5rem;
}

.faq_answer_copy {
    margin-bottom: 0;
}

.contact_link_row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.account_page_intro {
    margin: 0 auto 2.5rem;
    max-width: 46rem;
}

.account_page_copy {
    max-width: 42rem;
}

.account_page_chip_row {
    justify-content: flex-start;
}

.account_overview_panel {
    padding: 1.5rem 1.6rem;
}

.account_message_box {
    background-color: rgba(16, 28, 48, 0.64);
    border: 1px solid rgba(155, 188, 238, 0.22);
    color: var(--primary_text_color);
}

#account_entitlements_list_box {
    display: grid;
    gap: 1rem;
}

.entitlement_item_box {
    background:
        linear-gradient(180deg, rgba(39, 63, 103, 0.34) 0%, rgba(17, 29, 49, 0.82) 100%),
        rgba(18, 31, 52, 0.8);
    border: 1px solid var(--soft_border_color);
    box-shadow:
        0 24px 48px rgba(6, 10, 18, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.entitlement_item_box .tag {
    border-radius: 999rem;
    font-weight: 700;
}

.entitlement_item_box .box {
    background-color: rgba(16, 28, 48, 0.54);
    border: 1px solid rgba(166, 198, 237, 0.14);
    box-shadow: none;
}

.entitlement_item_box .button.is-link.is-light {
    background-color: rgba(16, 28, 48, 0.58);
    border: 1px solid rgba(166, 198, 237, 0.18);
    color: var(--primary_text_color);
}

.entitlement_item_box .button.is-link.is-light:hover {
    background-color: rgba(28, 43, 72, 0.82);
}

.entitlement_item_box .button.is-danger.is-light:hover {
    color: var(--primary_text_color);
}

.shared_carousel {
    margin: 0 auto;
    max-width: var(--shared_carousel_max_width);
}

.shared_carousel_frame {
    background-color: var(--shared_carousel_frame_background_color);
    border: 1px solid var(--border_color);
    border-radius: var(--shared_carousel_border_radius);
    padding: var(--shared_carousel_slide_padding);
    position: relative;
}

.shared_carousel_viewport {
    border-radius: calc(var(--shared_carousel_border_radius) - 0.2rem);
    outline: 0;
}

.shared_carousel_viewport:focus-visible {
    box-shadow: 0 0 0 0.125rem rgba(79, 102, 229, 0.36);
}

.shared_carousel_slide {
    display: none;
    margin: 0;
}

.shared_carousel_slide.is_active {
    display: block;
}

.shared_carousel_image {
    aspect-ratio: var(--shared_carousel_image_aspect_ratio);
    background-color: rgba(11, 19, 34, 0.78);
    border-radius: calc(var(--shared_carousel_border_radius) - 0.3rem);
    display: block;
    min-height: var(--shared_carousel_min_height);
    object-fit: cover;
    width: 100%;
}

.shared_carousel_side_button {
    align-items: center;
    backdrop-filter: blur(6px);
    background: linear-gradient(
        180deg,
        rgba(68, 93, 142, 0.52) 0%,
        var(--shared_carousel_arrow_background_color) 100%
    );
    border: 1px solid rgba(118, 150, 206, 0.62);
    border-radius: 999rem;
    box-shadow:
        0 12px 24px rgba(6, 10, 18, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    color: var(--primary_text_color);
    cursor: pointer;
    display: flex;
    height: var(--shared_carousel_arrow_button_size);
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50%;
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
    transform: translateY(-50%);
    width: var(--shared_carousel_arrow_button_size);
    z-index: 2;
}

.shared_carousel_side_button:hover {
    background: linear-gradient(
        180deg,
        rgba(82, 112, 168, 0.62) 0%,
        var(--shared_carousel_arrow_background_hover_color) 100%
    );
    box-shadow:
        0 16px 28px rgba(6, 10, 18, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.shared_carousel_side_button:active {
    transform: translateY(-50%) scale(0.97);
}

.shared_carousel_side_button:focus-visible {
    box-shadow: 0 0 0 0.125rem rgba(79, 102, 229, 0.45);
    outline: 0;
}

.shared_carousel_previous_button {
    left: var(--shared_carousel_arrow_button_horizontal_offset);
}

.shared_carousel_next_button {
    right: var(--shared_carousel_arrow_button_horizontal_offset);
}

.shared_carousel_arrow_icon {
    border-right: var(--shared_carousel_arrow_icon_stroke_width) solid currentColor;
    border-top: var(--shared_carousel_arrow_icon_stroke_width) solid currentColor;
    display: block;
    height: var(--shared_carousel_arrow_icon_size);
    width: var(--shared_carousel_arrow_icon_size);
}

.shared_carousel_arrow_icon_previous {
    transform: rotate(-135deg);
}

.shared_carousel_arrow_icon_next {
    transform: rotate(45deg);
}

.shared_carousel_pagination {
    align-items: center;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 0.85rem;
}

.shared_carousel_dot {
    background-color: rgba(166, 185, 214, 0.28);
    border: 1px solid var(--border_color);
    border-radius: 999rem;
    cursor: pointer;
    height: var(--shared_carousel_dot_size);
    padding: 0;
    width: var(--shared_carousel_dot_size);
}

.shared_carousel_dot.is_active {
    background-color: var(--accent_color);
    border-color: var(--accent_color);
}

.shared_carousel_dot:focus-visible {
    box-shadow: 0 0 0 0.1rem rgba(79, 102, 229, 0.45);
    outline: 0;
}

.shared_carousel.is_single_slide .shared_carousel_side_button,
.shared_carousel.is_single_slide .shared_carousel_pagination {
    display: none;
}

@media screen and (max-width: 768px) {
    .hero.is-medium .hero-body {
        padding: 4.75rem 1.5rem;
    }

    .inner_page_title {
        font-size: clamp(2.3rem, 10vw, 3.25rem);
    }

    .inner_page_section {
        padding-block: 3.75rem;
    }

    .inner_page_panel,
    .download_card_panel,
    .pricing_plan_card,
    .renewals_panel,
    .account_panel,
    .account_overview_panel,
    .system_requirements_box {
        padding: 1.3rem;
    }

    .account_page_chip_row {
        justify-content: flex-start;
    }

    .home_hero_title {
        font-size: clamp(2.45rem, 10vw, 3.4rem);
        max-width: none;
    }

    .preview_header {
        align-items: flex-start;
        flex-direction: column;
    }

    .home_feature_section,
    .home_workflow_section,
    .home_cta_section {
        padding-block: 3.5rem;
    }

    .home_cta_card {
        padding: 2.2rem 1.3rem;
    }

    .site_footer_shell {
        text-align: left;
    }

    .shared_carousel_side_button {
        height: 2.6rem;
        width: 2.6rem;
    }

    .shared_carousel_previous_button {
        left: 0.55rem;
    }

    .shared_carousel_next_button {
        right: 0.55rem;
    }

    .shared_carousel_arrow_icon {
        height: 0.72rem;
        width: 0.72rem;
    }
}

.pricing_currency_filter_tabs_wrapper {
    display: flex;
    justify-content: center;
}

.checkout_currency_filter_tabs ul {
    background-color: rgba(16, 28, 48, 0.72);
    border: 1px solid var(--border_color);
    border-radius: 0.85rem;
    overflow: hidden;
}

.checkout_currency_filter_tabs li a {
    color: var(--primary_text_color);
    font-size: 1rem;
    font-weight: 700;
    min-width: 8.75rem;
    padding: 0.78rem 1.55rem;
}

.checkout_currency_filter_tabs li.is-active a {
    background-color: var(--accent_color);
    border-color: var(--accent_color);
}

.checkout_currency_filter_tabs li:not(.is-active) a {
    color: var(--muted_text_color);
}

.checkout_currency_filter_tabs li a:hover {
    color: var(--primary_text_color);
}

.pricing_feature_panel {
    background-color: rgba(16, 28, 48, 0.42);
    border: 1px solid var(--border_color);
    border-radius: 0.75rem;
    display: flex;
    flex-basis: var(--pricing_feature_panel_flex_basis);
    flex-grow: var(--pricing_feature_panel_flex_growth);
    flex-shrink: var(--pricing_feature_panel_flex_shrink);
    margin: 0 auto 1.25rem;
    max-width: 29rem;
    padding: 0.9rem 1.1rem;
}

.pricing_feature_panel .pricing_feature_list {
    width: 100%;
}

.pricing_feature_list {
    list-style-position: outside;
    list-style-type: disc;
    margin: 0;
    padding-left: 1.3rem;
    text-align: left;
}

.pricing_feature_list li {
    margin-bottom: 0.45rem;
}

.pricing_feature_list li:last-child {
    margin-bottom: 0;
}

.checkout_feedback_box {
    margin: 0 auto 1.25rem;
    max-width: 42rem;
}

.checkout_email_modal .modal-background {
    background-color: rgba(6, 10, 18, 0.76);
}

.checkout_email_modal_card {
    border: 1px solid var(--border_color);
    box-shadow: 0 24px 50px rgba(6, 10, 18, 0.44);
    border-radius: 0.95rem;
    overflow: hidden;
}

.checkout_email_modal_head,
.checkout_email_modal_foot {
    background-color: rgba(16, 28, 48, 0.97);
    border-color: var(--border_color);
}

.checkout_email_modal_foot {
    display: flex;
    width: 100%;
}

.checkout_email_cancel_button {
    margin-left: auto;
}

.checkout_email_modal_body {
    background-color: rgba(28, 44, 72, 0.95);
}

.checkout_email_input {
    background-color: rgba(13, 22, 37, 0.95);
    border-color: var(--border_color);
    color: var(--primary_text_color);
}

.checkout_email_input::placeholder {
    color: var(--muted_text_color);
}

.checkout_email_input:focus {
    border-color: var(--accent_color);
    box-shadow: 0 0 0 0.125em rgba(79, 102, 229, 0.26);
}

.checkout_email_validation_text {
    color: #ffb8b8;
}

#checkout_success_modal .modal-background {
    background-color: rgba(6, 10, 18, 0.76);
}

.checkout_success_modal_card {
    border: 1px solid var(--border_color);
    border-radius: 0.95rem;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(6, 10, 18, 0.44);
}

.checkout_success_modal_head,
.checkout_success_modal_foot {
    background-color: rgba(16, 28, 48, 0.97);
    border-color: var(--border_color);
}

.checkout_success_modal_body {
    background-color: rgba(28, 44, 72, 0.95);
}

.auth_card {
    backdrop-filter: blur(8px);
}

.auth_card .input {
    background-color: rgba(16, 28, 48, 0.86);
    border-color: var(--border_color);
    color: var(--primary_text_color);
}

.auth_card .input::placeholder {
    color: var(--muted_text_color);
}

.auth_card .input:focus {
    border-color: var(--accent_color);
    box-shadow: 0 0 0 0.125em rgba(79, 102, 229, 0.26);
}

.entitlement_item_box {
    margin-bottom: 1rem;
    border-color: rgba(79, 102, 229, 0.28);
}

.entitlement_item_box:last-child {
    margin-bottom: 0;
}

.system_requirements_box {
    border-color: rgba(142, 201, 255, 0.32);
}
