:root {
    --section-spacing-xs: clamp(3rem, 6vh, 4rem);
    --section-spacing-sm: clamp(4rem, 8vh, 6rem);
    --section-spacing-md: clamp(6rem, 12vh, 8rem);
    --section-spacing-lg: clamp(8rem, 14vh, 10rem);
    --section-spacing-xl: clamp(10rem, 18vh, 14rem);
    --font-size-subheading: 1rem;
    --font-weight-subheading: 400;
}

@media (min-width: 768px) {
    :root {
        --font-size-subheading: 1.25rem;
    }
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    height: 100%;
    background-color: var(--background-primary);
    color: var(--text-primary);
    color-scheme: light dark;
    overflow-x: hidden;
}

* {
    font-family: "Inter", sans-serif;
}

*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

#root {
    width: 100%;
    min-height: 100%;
}
:root {
    --background-primary: #000000;
    --background-secondary: #050505;
    --background-tertiary: #141414;
    --background-quaternary: #181818;
    --background-neutral: #242424;
    --background-highlight: rgba(255, 255, 255, 0.08);

    --text-primary: #ffffff;
    --text-secondary: #7b7b7b;
    --text-inverse: #0a0a0a;
    --text-inverse-rgb: 10, 10, 10;

    --border-primary: #1f1f1f;
    --border-secondary: #2a2a2a;
    --border-strong: #3a3a3a;

    --brand-primary: #f0f0f0;
    --brand-primary-dark: #d2d2d2;
    --brand-accent: #ffffff;

    --ink-rgb: 255, 255, 255;
    --white-rgb: 255, 255, 255;
    --brand-primary-rgb: 240, 240, 240;
    --brand-primary-dark-rgb: 210, 210, 210;
    --brand-accent-rgb: 255, 255, 255;
    --background-primary-rgb: 10, 10, 10;
    --background-secondary-rgb: 5, 5, 5;
    --background-tertiary-rgb: 20, 20, 20;
    --background-quaternary-rgb: 24, 24, 24;
    --background-neutral-rgb: 36, 36, 36;
    --shadow-base-rgb: 0, 0, 0;

    --hero-grid: rgba(var(--white-rgb), 0.04);
    --hero-grid-top: var(--background-primary);
    --transparent: transparent;

    --signup-radius: 40px;
    --signup-gradient-top: #c8f3ff;
    --signup-gradient-teal: #164750;
    --signup-gradient-deep: #0a1013;
    --signup-gradient-bottom: #2b2f31;
    --signup-light-blue: #00bbff;
    --signup-light-gray: #aeaeae;
    --signup-step-gray: rgba(69, 69, 69, 0.8);
    --signup-bg-step-active: #ffffff;
    --signup-bg-step-inactive: rgba(26, 26, 26, 0.8);
    --signup-text-step-subtitle: #aeaeae;
    --signup-text-step-active: #000000;
    --signup-text-step-inactive: rgba(255, 255, 255, 0.8);
    --signup-border-focus: #ffffff;
    --signup-error: #ef4444;
    --signup-success: #10b981;
    --signup-google-blue: #4285f4;
    --signup-microsoft-blue: #00a4ef;

    --traffic-light-red: rgba(255, 95, 87, 0.9);
    --traffic-light-yellow: rgba(255, 189, 46, 0.9);
    --traffic-light-green: rgba(39, 201, 63, 0.9);
    --traffic-light-red-hover: rgb(255, 95, 87);
    --traffic-light-yellow-hover: rgb(255, 189, 46);
    --traffic-light-green-hover: rgb(39, 201, 63);
}

/*
@media (prefers-color-scheme: light) {
    :root {
        --ink-rgb: 0, 0, 0;

        --background-primary: #ffffff;
        --background-secondary: #f8f8f8;
        --background-tertiary: #eaeaea;
        --background-quaternary: #e1e1e1;
        --background-neutral: #d6d6d6;
        --background-highlight: rgba(0, 0, 0, 0.04);

        --brand-primary: #232323;
        --brand-primary-dark: #171717;
        --brand-accent: #505050;
        --brand-primary-rgb: 35, 35, 35;
        --brand-primary-dark-rgb: 23, 23, 23;
        --brand-accent-rgb: 80, 80, 80;

        --text-primary: #32323c;
        --text-secondary: #9b9baa;
        --text-inverse: #ffffff;
        --text-inverse-rgb: 255, 255, 255;

        --border-primary: #e0e0e0;
        --border-secondary: #d0d0d0;
        --border-strong: #b8b8b8;

        --white-rgb: 255, 255, 255;
        --background-primary-rgb: 255, 255, 255;
        --background-secondary-rgb: 248, 248, 248;
        --background-tertiary-rgb: 234, 234, 234;
        --background-quaternary-rgb: 225, 225, 225;
        --background-neutral-rgb: 214, 214, 214;

        --hero-grid: rgba(0, 0, 0, 0.08);
        --hero-grid-top: var(--background-primary);
        --shadow-base-rgb: 0, 0, 0;
    }
}
*/@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-Thin-x49jpWDa.woff2') format('woff2'),
        url('/theme/assets/Inter-Thin-DpMKf5GN.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-Medium-DujICkbR.woff2') format('woff2'),
        url('/theme/assets/Inter-Medium-KcvYXub_.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-ThinItalic-CR6_zcMp.woff2') format('woff2'),
        url('/theme/assets/Inter-ThinItalic-Dn9gLGmn.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-LightItalic-go6DKMK5.woff2') format('woff2'),
        url('/theme/assets/Inter-LightItalic-BRuIADqx.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-ExtraLight-Bq77RpOb.woff2') format('woff2'),
        url('/theme/assets/Inter-ExtraLight-Cw6u_qyk.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-Light-CCPh_8tk.woff2') format('woff2'),
        url('/theme/assets/Inter-Light-CknK2kfJ.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-ExtraLightItalic-IqypksiF.woff2') format('woff2'),
        url('/theme/assets/Inter-ExtraLightItalic-D4hgySaC.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-SemiBoldItalic-D0SG6blB.woff2') format('woff2'),
        url('/theme/assets/Inter-SemiBoldItalic-yXgNHIkx.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-BoldItalic-D2O4hB_n.woff2') format('woff2'),
        url('/theme/assets/Inter-BoldItalic-OPKFSgzx.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-MediumItalic-DCCNGgRA.woff2') format('woff2'),
        url('/theme/assets/Inter-MediumItalic-BW4LfY3R.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-ExtraBold-Bm37CeKd.woff2') format('woff2'),
        url('/theme/assets/Inter-ExtraBold-D_sQJ-_m.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-SemiBold-BCK_SE1m.woff2') format('woff2'),
        url('/theme/assets/Inter-SemiBold-UhESQeC0.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-Bold-BUeBSnkC.woff2') format('woff2'),
        url('/theme/assets/Inter-Bold-Bx3_ylBH.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-Black-C24MoiKi.woff2') format('woff2'),
        url('/theme/assets/Inter-Black-C2WopIcb.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-Italic-BEHIp3Uq.woff2') format('woff2'),
        url('/theme/assets/Inter-Italic-C2FqZBrX.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-BlackItalic-DGjlON-d.woff2') format('woff2'),
        url('/theme/assets/Inter-BlackItalic-B2fxU1fy.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-ExtraBoldItalic-CTEgv6d7.woff2') format('woff2'),
        url('/theme/assets/Inter-ExtraBoldItalic-BedPsfWt.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}

@font-face {
    font-family: 'Inter';
    src: url('/theme/assets/Inter-Regular-B0z29yqi.woff2') format('woff2'),
        url('/theme/assets/Inter-Regular-REKzkn7C.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    line-gap-override: 0%;
    ascent-override: 85%;
    descent-override: 15%;
}._skip-link_1oyqf_1 {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--brand-primary);
    color: var(--text-inverse);
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 100;
    border-radius: 0 0 0.5rem 0;
}

._skip-link_1oyqf_1:focus {
    top: 0;
}

._content_1oyqf_18 {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
._header_q3cjk_1 {
    border-bottom: 1px solid var(--transparent);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

._header--scrolled_q3cjk_13 {
    border-bottom-color: var(--border-primary);
    background-color: rgba(var(--background-primary-rgb), 0.85);
    box-shadow: 0 1px 0 0 rgba(var(--ink-rgb), 0.05),
        0 4px 24px rgba(var(--shadow-base-rgb), 0.08),
        0 0 0 1px rgba(var(--ink-rgb), 0.03);
    backdrop-filter: saturate(180%) blur(32px);
    -webkit-backdrop-filter: saturate(180%) blur(32px);
}

._container_q3cjk_23 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

._nav_q3cjk_29 {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 72px;
}

._logo_q3cjk_36 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    justify-self: start;
    transition: opacity 0.2s ease;
}

._logo_q3cjk_36:hover {
    opacity: 0.7;
}

._logo-mark_q3cjk_50 {
    display: flex;
    align-items: center;
    height: 20px;
    padding: 1rem 0;
}

._logo-mark_q3cjk_50 svg {
    display: block;
    height: 100%;
    width: auto;
}

._nav-menu_q3cjk_63 {
    display: flex;
    align-items: center;
    justify-self: center;
    height: 100%;
}

._nav-link_q3cjk_70 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 1.125rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
    letter-spacing: -0.01em;
}

._nav-link_q3cjk_70::before {
    content: '';
    width: calc(100% - 0.25rem);
    height: calc(100% - 0.25rem);
    border-radius: 0.75rem;
    position: absolute;
    left: 0.125rem;
    top: 0.125rem;
    z-index: -1;
    transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

._hover_q3cjk_100 ._nav-link_q3cjk_70::before,
._nav-link_q3cjk_70:hover::before {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

._hover_q3cjk_100 ._nav-link_q3cjk_70,
._nav-link_q3cjk_70:hover {
    color: rgba(255, 255, 255, 1);
}

._nav-link_q3cjk_70._expandable_q3cjk_111 {
    padding-right: 2rem;
}

._expandable_q3cjk_111 ._nav-icon_q3cjk_115 {
    position: absolute;
    right: 0.5rem;
    top: 0;
    width: 1.5rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

._expandable_q3cjk_111 ._nav-icon_q3cjk_115 svg {
    width: 0.8rem;
    height: 0.8rem;
    stroke-width: 2.5;
    transform: rotateZ(90deg);
    transition: transform 0.1s ease;
}

._hover_q3cjk_100 ._nav-link_q3cjk_70._expandable_q3cjk_111 ._nav-icon_q3cjk_115 svg,
._nav-link_q3cjk_70._expandable_q3cjk_111:hover ._nav-icon_q3cjk_115 svg {
    transform: rotateZ(-90deg);
}

._nav-menu_q3cjk_63 ._nav-item_q3cjk_139 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

._dropdown-container_q3cjk_146 {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: -2px;
    padding-top: 0.5rem;
    cursor: initial;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

._dropdown-container_q3cjk_146._expanded_q3cjk_159 {
    opacity: 1;
    pointer-events: initial;
}

._dropdown_q3cjk_146 {
    background-color: rgba(var(--background-primary-rgb), 0.92);
    border: 1px solid rgba(var(--ink-rgb), 0.08);
    border-radius: 1.25rem;
    padding: 1.75rem 2rem;
    display: flex;
    gap: 3rem;
    box-shadow: 0 12px 40px rgba(var(--shadow-base-rgb), 0.24),
        0 4px 12px rgba(var(--shadow-base-rgb), 0.12),
        0 0 0 1px rgba(var(--ink-rgb), 0.06);
    backdrop-filter: saturate(180%) blur(32px);
    -webkit-backdrop-filter: saturate(180%) blur(32px);
}

._dropdown-section_q3cjk_178 {
    display: flex;
    flex-direction: column;
}

._dropdown-section-title_q3cjk_183 {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8125rem;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

._dropdown-section-items_q3cjk_192 {
    display: flex;
    flex-direction: column;
}

._dropdown-item_q3cjk_197 {
    display: flex;
    gap: 0.875rem;
    padding: 0.875rem 2.5rem 0.875rem 0.875rem;
    min-width: 16rem;
    position: relative;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

._dropdown-item_q3cjk_197 * {
    user-select: none;
}

._dropdown-item_q3cjk_197::before {
    content: '';
    position: absolute;
    left: -0.875rem;
    top: 50%;
    width: calc(100% + 1.25rem);
    height: calc(100% - 0.25rem);
    border-radius: 0.875rem;
    transform: translateY(-50%);
    background-color: transparent;
    transition: all 0.12s ease;
    z-index: 1;
    opacity: 0;
}

._dropdown-item_q3cjk_197:hover::before {
    background-color: rgba(var(--ink-rgb), 0.06);
    opacity: 1;
}

._dropdown-item_q3cjk_197:active::before {
    background-color: rgba(var(--ink-rgb), 0.08);
    opacity: 1;
}

._dropdown-item_q3cjk_197:focus-visible::before {
    background-color: rgba(var(--brand-primary-rgb), 0.1);
    opacity: 1;
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

._dropdown-icon-wrapper_q3cjk_244 {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

._dropdown-icon-container_q3cjk_251 {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    border: 1px solid var(--border-primary);
    background-color: rgba(var(--background-tertiary-rgb), 0.5);
    transition: all 0.15s ease;
}

._dropdown-item_q3cjk_197:hover ._dropdown-icon-container_q3cjk_251 {
    border-color: var(--border-secondary);
    background-color: var(--background-tertiary);
}

._dropdown-details_q3cjk_265 {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    z-index: 2;
}

._dropdown-item-title_q3cjk_272 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

._dropdown-item-description_q3cjk_279 {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.4;
}

._actions_q3cjk_286 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: end;
    max-width: 100%;
}

._actions_q3cjk_286>* {
    flex-shrink: 1;
    min-width: 0;
}

._mobile-menu-btn_q3cjk_299 {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--transparent);
    border: none;
    border-radius: 0.625rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

._mobile-menu-btn_q3cjk_299:hover {
    background-color: rgba(var(--ink-rgb), 0.06);
    color: var(--text-primary);
}

/* (Reverted) No special pointer-events overrides on header */


@media (max-width: 768px) {
    ._header_q3cjk_1 {
        backdrop-filter: saturate(180%) blur(28px);
        -webkit-backdrop-filter: saturate(180%) blur(28px);
    }

    ._container_q3cjk_23 {
        padding: 0 1.5rem;
    }

    ._nav_q3cjk_29 {
        display: flex;
        justify-content: space-between;
        height: 64px;
    }

    ._nav-menu_q3cjk_63,
    ._actions_q3cjk_286 {
        display: none;
    }

    ._mobile-menu-btn_q3cjk_299 {
        display: flex;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transition: all 0.2s ease;
    }

    ._mobile-menu-btn_q3cjk_299:active {
        transform: scale(0.94);
        background-color: rgba(var(--ink-rgb), 0.1);
    }

    ._burger-icon_q3cjk_358 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 22px;
        height: 18px;
        position: relative;
    }

    ._burger-line_q3cjk_368 {
        display: block;
        width: 22px;
        height: 2px;
        background-color: currentColor;
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    ._burger-line_q3cjk_368:nth-child(1) {
        top: 0;
    }

    ._burger-line_q3cjk_368:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    ._burger-line_q3cjk_368:nth-child(3) {
        bottom: 0;
    }

    ._mobile-menu-btn--open_q3cjk_392 ._burger-line_q3cjk_368:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    ._mobile-menu-btn--open_q3cjk_392 ._burger-line_q3cjk_368:nth-child(2) {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }

    ._mobile-menu-btn--open_q3cjk_392 ._burger-line_q3cjk_368:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    ._mobile-menu_q3cjk_299 {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100dvh - 64px);
        max-width: 100vw;
        background: rgba(var(--background-primary-rgb), 0.96);
        backdrop-filter: saturate(180%) blur(48px);
        -webkit-backdrop-filter: saturate(180%) blur(48px);
        z-index: 9998;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        animation: _mobileMenuSlideIn_q3cjk_1 0.3s ease;
    }


    @keyframes _mobileMenuSlideIn_q3cjk_1 {
        0% {
            opacity: 0;
            transform: translateY(-0.5rem);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    ._mobile-nav_q3cjk_444 {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 8px;
        margin: 0;
        flex: 1;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        max-width: 100%;
    }

    ._mobile-nav-link_q3cjk_458 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 56px;
        padding: 16px 20px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        text-decoration: none;
        background: var(--transparent);
        border: none;
        border-radius: 12px;
        transition: all 0.2s ease;
        letter-spacing: -0.015em;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        position: relative;
        cursor: pointer;
        text-align: left;
        max-width: 100%;
        box-sizing: border-box;
    }

    ._mobile-nav-link_q3cjk_458 span {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    ._mobile-nav-link_q3cjk_458:hover {
        background: rgba(var(--ink-rgb), 0.04);
        color: var(--text-primary);
    }

    ._mobile-nav-link_q3cjk_458:active {
        background: rgba(var(--ink-rgb), 0.06);
        transform: scale(0.98);
    }

    ._mobile-nav-expandable_q3cjk_500 {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: 100%;
        overflow: hidden;
    }

    ._mobile-nav-link--expandable_q3cjk_508 {
        font-weight: 500;
    }

    ._mobile-nav-link--expanded_q3cjk_512 {
        background: rgba(var(--ink-rgb), 0.04);
        color: var(--text-primary);
    }

    ._mobile-nav-chevron_q3cjk_517 {
        width: 20px;
        height: 20px;
        margin-left: 8px;
        flex-shrink: 0;
        opacity: 0.4;
        transition: all 0.25s ease;
    }

    ._mobile-nav-link--expanded_q3cjk_512 ._mobile-nav-chevron_q3cjk_517 {
        transform: rotate(90deg);
        opacity: 0.6;
    }

    ._mobile-nav-submenu_q3cjk_531 {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease, opacity 0.25s ease;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
    }

    ._mobile-nav-submenu--expanded_q3cjk_540 {
        grid-template-rows: 1fr;
        opacity: 1;
        pointer-events: auto;
    }

    ._mobile-nav-submenu_q3cjk_531>* {
        min-height: 0;
        overflow: hidden;
    }

    ._mobile-nav-submenu-wrapper_q3cjk_551 {
        overflow: hidden;
        max-width: 100%;
    }

    ._mobile-nav-submenu-section_q3cjk_556 {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 4px 0 12px 0;
        margin: 0 12px;
        border-bottom: 1px solid rgba(var(--ink-rgb), 0.06);
        max-width: calc(100% - 24px);
        overflow: hidden;
    }

    ._mobile-nav-submenu-section_q3cjk_556:first-child {
        padding-top: 8px;
    }

    ._mobile-nav-submenu-section_q3cjk_556:last-child {
        border-bottom: none;
        padding-bottom: 4px;
    }

    ._mobile-nav-submenu-title_q3cjk_576 {
        font-size: 0.6875rem;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 12px 12px 8px 12px;
        margin: 0;
    }

    ._mobile-nav-submenu-item_q3cjk_586 {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 12px;
        min-height: 64px;
        background: var(--transparent);
        border: none;
        border-radius: 10px;
        text-decoration: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transition: all 0.2s ease;
        text-align: left;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    ._mobile-nav-submenu-item_q3cjk_586:hover {
        background: rgba(var(--ink-rgb), 0.04);
    }

    ._mobile-nav-submenu-item_q3cjk_586:active {
        background: rgba(var(--ink-rgb), 0.06);
        transform: scale(0.98);
    }

    ._mobile-nav-submenu-item-label_q3cjk_616 {
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--text-primary);
        letter-spacing: -0.01em;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    ._mobile-nav-submenu-item-description_q3cjk_627 {
        font-size: 0.8125rem;
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.45;
        letter-spacing: -0.005em;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    ._mobile-actions_q3cjk_638 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
        margin: 0;
        border-top: 1px solid rgba(var(--ink-rgb), 0.08);
        background: rgba(var(--background-secondary-rgb), 0.6);
        backdrop-filter: saturate(180%) blur(24px);
        -webkit-backdrop-filter: saturate(180%) blur(24px);
        flex-shrink: 0;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    ._mobile-actions_q3cjk_638 a {
        width: 100%;
        box-sizing: border-box;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: -0.01em;
    }
}

@media (max-width: 480px) {
    ._container_q3cjk_23 {
        padding: 0 12px;
    }

    ._nav_q3cjk_29 {
        height: 60px;
    }

    ._logo-mark_q3cjk_50 {
        height: 18px;
    }

    ._mobile-menu_q3cjk_299 {
        top: 60px;
        height: calc(100dvh - 60px);
    }

    ._mobile-nav_q3cjk_444 {
        padding: 8px;
    }

    ._mobile-nav-link_q3cjk_458 {
        padding: 14px 16px;
        min-height: 52px;
        font-size: 0.9375rem;
    }

    ._mobile-nav-submenu-item_q3cjk_586 {
        padding: 10px;
        min-height: 60px;
    }

    ._mobile-actions_q3cjk_638 {
        padding: 12px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }

    ._mobile-actions_q3cjk_638 a {
        min-height: 44px;
    }
}

@media (max-width: 375px) {
    ._container_q3cjk_23 {
        padding: 0 12px;
    }


    ._mobile-nav-link_q3cjk_458 {
        font-size: 0.9375rem;
        padding: 12px 14px;
        min-height: 48px;
    }

    ._mobile-nav-submenu-item_q3cjk_586 {
        padding: 10px;
    }

    ._mobile-actions_q3cjk_638 {
        padding: 12px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {

    ._header_q3cjk_1,
    ._dropdown-container_q3cjk_146,
    ._dropdown_q3cjk_146,
    ._nav-link_q3cjk_70,
    ._nav-link_q3cjk_70::before,
    ._mobile-menu-btn_q3cjk_299,
    ._burger-line_q3cjk_368,
    ._mobile-menu_q3cjk_299,
    ._mobile-nav-chevron_q3cjk_517,
    ._mobile-nav-submenu_q3cjk_531,
    ._dropdown-item_q3cjk_197,
    ._dropdown-icon-container_q3cjk_251 {
        transition: none;
        animation: none;
    }

    ._mobile-menu_q3cjk_299 {
        animation: none;
    }

    @keyframes _mobileMenuSlideIn_q3cjk_1 {

        0%,
        100% {
            opacity: 1;
            transform: none;
        }
    }
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(
        135deg,
        var(--brand-primary) 0%,
        var(--brand-accent) 100%
    );
    border: 2px solid transparent;
    border-radius: 2rem;
    padding: 1rem 2rem;
    color: var(--text-inverse);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--brand-accent) 0%,
        var(--brand-primary) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.9),
        0 0 0 3px rgba(255, 255, 255, 1);
}

.btn-primary:hover::before {
    opacity: 0;
}

.btn-primary:active {
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.9),
        0 0 0 3px rgba(255, 255, 255, 1);
    transition: all 0.1s ease-out;
}

.btn-primary:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(var(--brand-primary-rgb), 0.3),
        0 10px 30px rgba(var(--brand-primary-rgb), 0.25),
        0 4px 12px rgba(var(--brand-primary-rgb), 0.15);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled:hover {
    border-color: transparent;
}

.btn-primary:disabled::before {
    opacity: 0;
}

.btn-primary svg {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover svg {
    transform: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    border: 2px solid var(--border-secondary);
    border-radius: 2rem;
    padding: 1rem 2rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(var(--shadow-base-rgb), 0.05);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--background-highlight);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-secondary > * {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    border-color: var(--brand-primary);
}

.btn-secondary:hover::before {
    opacity: 0;
}

.btn-secondary:active {
    transition: all 0.1s ease-out;
    border-color: var(--brand-primary);
}

.btn-secondary:focus-visible {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 
        0 0 0 3px rgba(var(--brand-primary-rgb), 0.2),
        0 1px 3px rgba(var(--shadow-base-rgb), 0.05);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    border-color: var(--border-secondary);
}

.btn-secondary:disabled:hover {
    border-color: var(--border-secondary);
}

.btn-secondary:disabled::before {
    opacity: 0;
}

.btn-secondary svg {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-secondary:hover svg {
    transform: none;
}

.btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--brand-primary);
    border: 1px solid transparent;
    border-radius: 0.75rem;
    padding: 0.5625rem 1.125rem;
    color: var(--text-inverse);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    letter-spacing: -0.01em;
    box-shadow:
        0 2px 4px rgba(var(--shadow-base-rgb), 0.12),
        0 1px 2px rgba(var(--shadow-base-rgb), 0.08);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-tertiary:hover {
    background: var(--brand-primary-dark);
    border-color: var(--brand-accent);
}

.btn-tertiary:active {
    border-color: var(--brand-accent);
    transition: all 0.1s ease-out;
}

.btn-tertiary:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(var(--brand-primary-rgb), 0.2),
        0 2px 4px rgba(var(--shadow-base-rgb), 0.12);
}

.btn-tertiary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-tertiary:disabled:hover {
    background: var(--brand-primary);
    border-color: transparent;
}

.btn-tertiary svg {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-tertiary:hover svg {
    transform: none;
}

.btn-quaternary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-secondary);
    border-radius: 0.75rem;
    padding: 0.5625rem 1.125rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-quaternary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--background-highlight);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 0;
}

.btn-quaternary > * {
    position: relative;
    z-index: 1;
}

.btn-quaternary:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.btn-quaternary:hover::before {
    opacity: 0;
}

.btn-quaternary:active {
    transition: all 0.1s ease-out;
}

.btn-quaternary:focus-visible {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 2px rgba(var(--brand-primary-rgb), 0.15);
}

.btn-quaternary.btn-quaternary-fullwidth {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-width: 2px;
}

.btn-quaternary-fullwidth:hover {
    border-color: var(--brand-primary);
}

.btn-quaternary-fullwidth:focus-visible {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 
        0 0 0 2px rgba(var(--brand-primary-rgb), 0.15),
        0 2px 8px rgba(var(--shadow-base-rgb), 0.08);
}

.btn-quaternary-fullwidth:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-quaternary-fullwidth:disabled:hover {
    border-color: var(--border-secondary);
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .btn-primary,
    .btn-secondary {
        padding: 0.8125rem 1.5rem;
        font-size: 0.9375rem;
        gap: 0.625rem;
        max-width: 100%;
    }

    .btn-tertiary,
    .btn-quaternary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        max-width: 100%;
    }

    .btn-quaternary-fullwidth {
        padding: 0.75rem 1.25rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
        max-width: 100%;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        border-color: var(--brand-primary);
    }

    .btn-tertiary,
    .btn-quaternary {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
        gap: 0.4375rem;
        max-width: 100%;
    }

    .btn-quaternary-fullwidth {
        padding: 0.6875rem 1rem;
        font-size: 0.875rem;
        width: 100%;
    }
}

@media (max-width: 540px) {
    .btn-primary,
    .btn-secondary {
        max-width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.8125rem;
        gap: 0.4rem;
        border-radius: 1.5rem;
    }

    .btn-primary {
        box-shadow:
            0 10px 22px rgba(var(--brand-primary-rgb), 0.18),
            0 4px 10px rgba(var(--brand-primary-rgb), 0.12),
            0 1px 3px rgba(var(--shadow-base-rgb), 0.08);
    }

    .btn-secondary {
        box-shadow: 0 4px 12px rgba(var(--shadow-base-rgb), 0.08);
        border-width: 2px;
    }

    .btn-tertiary,
    .btn-quaternary {
        max-width: 100%;
        padding: 0.5625rem 0.875rem;
        font-size: 0.75rem;
        gap: 0.375rem;
        border-radius: 0.625rem;
    }

    .btn-quaternary-fullwidth {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        border-radius: 0.75rem;
    }
}

@media (max-width: 390px) {
    .btn-primary,
    .btn-secondary {
        max-width: 100%;
        padding: 0.625rem 0.875rem;
        font-size: 0.75rem;
        gap: 0.35rem;
        border-radius: 1.25rem;
    }

    .btn-primary svg,
    .btn-secondary svg {
        width: 14px;
        height: 14px;
    }

    .btn-tertiary,
    .btn-quaternary {
        max-width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 0.6875rem;
        gap: 0.3rem;
        border-radius: 0.5rem;
    }

    .btn-quaternary-fullwidth {
        width: 100%;
        padding: 0.625rem 0.875rem;
        font-size: 0.75rem;
        border-radius: 0.625rem;
    }
}
._footer_78ojc_1 {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    border-top: 1px solid var(--border-primary);
    padding: 2rem 0 1.5rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}


._container_78ojc_11 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

._content_78ojc_19 {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

._brand_78ojc_25 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

._logo_78ojc_32 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

._logo-mark_78ojc_41 {
    display: block;
    width: 9rem;
    max-width: 100%;
    color: var(--text-primary);
}

._description_78ojc_48 {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 320px;
}

._social-links_78ojc_56 {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

._social-link_78ojc_56 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: var(--background-tertiary);
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

._social-link_78ojc_56:hover {
    color: var(--text-primary);
}

._section_78ojc_79 {
    display: flex;
    flex-direction: column;
}

._title_78ojc_84 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0.4rem 0 1.5rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

._title_78ojc_84::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 1px;
}

._links_78ojc_104 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

._link_78ojc_104 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.15rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

._link_78ojc_104:hover {
    color: var(--brand-primary);
}

._bottom_78ojc_126 {
    border-top: 1px solid var(--border-primary);
    padding-top: 1.25rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    position: relative;
}


._copyright_78ojc_137 {
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

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

._made-in_78ojc_147 {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.375rem;
}

._made-in_78ojc_147::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #000000 33%, #dd0000 33% 66%, #ffcc00 66%);
    border-radius: 1px;
}

._legal_78ojc_167 {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

._legal_78ojc_167 a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

._legal_78ojc_167 a:hover {
    color: var(--brand-primary);
}


@media (max-width: 768px) {
    ._footer_78ojc_1 {
        padding: clamp(3rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 2.5rem);
    }

    ._container_78ojc_11 {
        padding: 0 clamp(1.125rem, 5vw, 1.5rem);
    }

    ._content_78ojc_19 {
        grid-template-columns: 1fr 1fr;
        gap: clamp(1.75rem, 4vw, 2.25rem);
        margin-bottom: clamp(2.25rem, 5vw, 2.75rem);
    }

    ._brand_78ojc_25 {
        grid-column: 1 / 3;
        padding-right: 0;
        margin-bottom: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    ._description_78ojc_48 {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    ._social-links_78ojc_56 {
        justify-content: center;
    }

    ._title_78ojc_84 {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    ._link_78ojc_104 {
        font-size: 0.8125rem;
    }

    ._bottom_78ojc_126 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding-top: 1.75rem;
        text-align: center;
    }

    ._copyright_78ojc_137 {
        order: 1;
        font-size: 0.8125rem;
    }

    ._center_78ojc_142 {
        order: 3;
    }

    ._legal_78ojc_167 {
        order: 2;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        width: 100%;
    }

    ._legal_78ojc_167 a {
        font-size: 0.8125rem;
    }
}

@media (max-width: 540px) {
    ._footer_78ojc_1 {
        padding: clamp(2.5rem, 5.5vw, 3rem) 0 clamp(1.75rem, 4vw, 2rem);
    }

    ._container_78ojc_11 {
        padding: 0 clamp(1rem, 4.5vw, 1.25rem);
    }

    ._content_78ojc_19 {
        grid-template-columns: 1fr 1fr;
        gap: clamp(1.375rem, 4vw, 1.875rem);
        margin-bottom: clamp(2rem, 4.5vw, 2.5rem);
    }

    ._brand_78ojc_25 {
        grid-column: 1 / 3;
        margin-bottom: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    ._description_78ojc_48 {
        max-width: 100%;
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }

    ._social-links_78ojc_56 {
        justify-content: center;
    }

    ._title_78ojc_84 {
        font-size: 0.8125rem;
        margin-bottom: 0.875rem;
    }

    ._link_78ojc_104 {
        font-size: 0.75rem;
        gap: 0.375rem;
    }

    ._links_78ojc_104 {
        gap: 0.625rem;
    }

    ._bottom_78ojc_126 {
        gap: 1.25rem;
        padding-top: 1.5rem;
        align-items: center;
        text-align: center;
    }

    ._copyright_78ojc_137 {
        font-size: 0.75rem;
    }

    ._legal_78ojc_167 {
        gap: 1.25rem;
        justify-content: center;
        width: 100%;
    }

    ._legal_78ojc_167 a {
        font-size: 0.75rem;
    }

    ._made-in_78ojc_147 {
        font-size: 0.75rem;
    }
}

@media (max-width: 390px) {
    ._footer_78ojc_1 {
        padding: clamp(2.25rem, 5vw, 2.75rem) 0 clamp(1.5rem, 3.5vw, 1.75rem);
    }

    ._container_78ojc_11 {
        padding: 0 clamp(0.875rem, 4vw, 1.125rem);
    }

    ._content_78ojc_19 {
        grid-template-columns: 1fr 1fr;
        gap: clamp(1.25rem, 3.5vw, 1.625rem);
        margin-bottom: clamp(1.75rem, 4vw, 2rem);
    }

    ._brand_78ojc_25 {
        grid-column: 1 / 3;
        margin-bottom: 0.375rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    ._description_78ojc_48 {
        font-size: 0.75rem;
        margin-bottom: 0.875rem;
    }

    ._social-links_78ojc_56 {
        justify-content: center;
    }

    ._title_78ojc_84 {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    ._link_78ojc_104 {
        font-size: 0.6875rem;
    }

    ._links_78ojc_104 {
        gap: 0.5rem;
    }

    ._social-link_78ojc_56 {
        width: 32px;
        height: 32px;
    }

    ._bottom_78ojc_126 {
        gap: 1.125rem;
        padding-top: 1.375rem;
        align-items: center;
        text-align: center;
    }

    ._copyright_78ojc_137 {
        font-size: 0.6875rem;
    }

    ._legal_78ojc_167 {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    ._legal_78ojc_167 a {
        font-size: 0.6875rem;
    }

    ._made-in_78ojc_147 {
        font-size: 0.6875rem;
    }
}
._container_1tkt2_1 {
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

._heroWrapper_1tkt2_9 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

._heroBackground_1tkt2_18 {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

._headerWrapper_1tkt2_25 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

._heroSection_1tkt2_33 {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    width: 100%;
}

._titleLine_1tkt2_40 {
    display: block;
    line-height: 1.05;
    font-weight: 300;
}

._productPreviewSection_1tkt2_46 {
    position: relative;
    margin-top: clamp(3rem, 8vw, 6rem);
}

._logoLoopSection_1tkt2_51 {
    padding-bottom: 4rem;
}


@media (max-width: 768px) {
    ._container_1tkt2_1 {
        gap: clamp(3rem, 8vw, 4.5rem);
    }

    ._heroWrapper_1tkt2_9 {
        min-height: auto;
        padding: clamp(4rem, 12vw, 6rem) 0 clamp(3rem, 10vw, 5rem);
        align-items: flex-start;
    }

    ._heroSection_1tkt2_33 {
        margin-bottom: 0;
    }

    ._productPreviewSection_1tkt2_46 {
        margin-top: clamp(-6rem, -14vw, -2rem);
    }
}

@media (max-width: 480px) {
    ._heroWrapper_1tkt2_9 {
        padding: clamp(3rem, 16vw, 4.5rem) 0 clamp(2.5rem, 12vw, 4rem);
    }
}
.highlight {
    background: linear-gradient(135deg,
            var(--brand-primary) 0%,
            var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-underline {
    background: linear-gradient(135deg,
            var(--brand-primary) 0%,
            var(--brand-accent) 40%,
            var(--brand-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--brand-primary) 25%,
            var(--brand-accent) 75%,
            transparent 100%);
    border-radius: 2px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.05);
    }
}

.highlight-simple {
    background: linear-gradient(135deg,
            var(--brand-primary) 0%,
            var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-simple::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--brand-primary) 25%,
            var(--brand-accent) 75%,
            transparent 100%);
    border-radius: 2px;
}

.highlight-bold {
    font-weight: 500;
    font-style: italic;
}

.highlight-italic {
    font-weight: 500;
    font-style: italic;
}

.highlight-strong {
    font-weight: 700;
}

@media (max-width: 768px) {

    .highlight-underline::after,
    .highlight-simple::after {
        height: 2px;
    }
}

@media (max-width: 480px) {

    .highlight-underline::after,
    .highlight-simple::after {
        height: 2px;
    }
}._section_mtlk1_1 {
    --section-padding-top: 0;
    --section-padding-bottom: 0;
    --section-padding-inline: clamp(1.5rem, 4vw, 2.75rem);
    --transition-duration: 0.9s;
    --transition-timing: cubic-bezier(0.16, 1, 0.3, 1);

    padding: var(--section-padding-top) var(--section-padding-inline) var(--section-padding-bottom);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: transparent;
    min-height: 100vh;
}

._content_mtlk1_17 {
    --content-max-width: 52rem;

    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: var(--content-max-width);
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity var(--transition-duration) var(--transition-timing),
        transform var(--transition-duration) var(--transition-timing);
}

._section_mtlk1_1._visible_mtlk1_34 ._content_mtlk1_17 {
    opacity: 1;
    transform: translateY(0);
}

._section_mtlk1_1._align-left_mtlk1_39 ._content_mtlk1_17 {
    align-items: flex-start;
    text-align: left;
}

._section_mtlk1_1._align-center_mtlk1_44 ._content_mtlk1_17 {
    align-items: center;
    text-align: center;
}

._title_mtlk1_49 {
    --title-size: clamp(3.75rem, 9vw, 6.5rem);
    --title-line-height: 1.02;
    --title-letter-spacing: -0.03em;

    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    letter-spacing: var(--title-letter-spacing);
    margin: 0;
    color: var(--text-primary);
    text-wrap: balance;
}

._subtitle_mtlk1_63 {
    --subtitle-line-height: 1.55;
    --subtitle-letter-spacing: -0.01em;
    --subtitle-max-width: 42rem;
    --subtitle-margin-top: clamp(1.75rem, 3.5vw, 2.5rem);

    font-size: var(--font-size-subheading);
    font-weight: var(--font-weight-subheading);
    line-height: var(--subtitle-line-height);
    letter-spacing: var(--subtitle-letter-spacing);
    margin: var(--subtitle-margin-top) 0 0 0;
    color: rgba(var(--ink-rgb), 0.68);
    max-width: var(--subtitle-max-width);
    text-wrap: balance;
}

._section_mtlk1_1._align-left_mtlk1_39 ._subtitle_mtlk1_63 {
    max-width: var(--subtitle-max-width);
}

._ctaContainer_mtlk1_83 {
    --button-margin-top: clamp(2.5rem, 4.5vw, 3.5rem);

    display: flex;
    gap: 1.25rem;
    margin-top: var(--button-margin-top);
    flex-wrap: wrap;
}

._scrollIndicator_mtlk1_92 {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s;
}

._section_mtlk1_1._visible_mtlk1_34 ._scrollIndicator_mtlk1_92 {
    opacity: 0.5;
}

._scrollIndicator_mtlk1_92:hover {
    opacity: 0.8;
}

._scrollLine_mtlk1_112 {
    width: 2px;
    height: 70px;
    background: linear-gradient(
        to bottom, 
        rgba(var(--ink-rgb), 0) 0%, 
        rgba(var(--ink-rgb), 0.25) 50%, 
        rgba(var(--ink-rgb), 0) 100%
    );
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

._scrollLine_mtlk1_112::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--ink-rgb), 0.7);
    animation: _scrollDown_mtlk1_1 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes _scrollDown_mtlk1_1 {
    0% { 
        top: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% { 
        top: 200%;
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    ._section_mtlk1_1 {
        --section-padding-top: clamp(4rem, 7vw, 5rem);
        --section-padding-bottom: clamp(4.5rem, 8vw, 6rem);
        min-height: clamp(580px, 72vh, 750px);
    }

    ._title_mtlk1_49 {
        --title-size: clamp(3.25rem, 8vw, 5.5rem);
    }

}

@media (max-width: 768px) {
    ._section_mtlk1_1 {
        --section-padding-top: clamp(3.5rem, 6vw, 4.5rem);
        --section-padding-bottom: clamp(4rem, 7vw, 5rem);
        min-height: clamp(540px, 68vh, 680px);
    }

    ._content_mtlk1_17 {
        --content-max-width: 92%;
        align-items: center;
        text-align: center;
    }

    ._title_mtlk1_49 {
        --title-size: clamp(3rem, 7.5vw, 4.5rem);
        --title-line-height: 1.08;
    }

    ._subtitle_mtlk1_63 {
        max-width: 90%;
    }

    ._ctaContainer_mtlk1_83 {
        justify-content: center;
    }

    ._scrollIndicator_mtlk1_92 {
        bottom: 2rem;
    }
}

@media (max-width: 640px) {
    ._section_mtlk1_1 {
        --section-padding-top: clamp(3rem, 6vw, 4rem);
        --section-padding-bottom: clamp(3.5rem, 7vw, 4.5rem);
        min-height: clamp(500px, 65vh, 620px);
    }

    ._title_mtlk1_49 {
        --title-size: clamp(2.8rem, 8vw, 4rem);
        --title-line-height: 1.1;
    }

    ._subtitle_mtlk1_63 {
        --subtitle-line-height: 1.6;
        max-width: 95%;
    }

    ._ctaContainer_mtlk1_83 {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    ._section_mtlk1_1 {
        --section-padding-top: clamp(2.75rem, 6vw, 3.5rem);
        --section-padding-bottom: clamp(3.25rem, 7vw, 4rem);
        min-height: clamp(480px, 62vh, 580px);
    }

    ._title_mtlk1_49 {
        --title-size: clamp(2.5rem, 9vw, 3.5rem);
        --title-letter-spacing: -0.025em;
        --title-line-height: 1.12;
    }

    ._subtitle_mtlk1_63 {
        --subtitle-line-height: 1.65;
        --subtitle-margin-top: clamp(1.5rem, 4vw, 2rem);
    }

    ._ctaContainer_mtlk1_83 {
        --button-margin-top: clamp(2rem, 5vw, 2.5rem);
        gap: 1rem;
        max-width: 300px;
    }

    ._scrollIndicator_mtlk1_92 {
        bottom: 1.5rem;
    }

    ._scrollLine_mtlk1_112 {
        height: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    ._section_mtlk1_1,
    ._section_mtlk1_1::before,
    ._section_mtlk1_1::after,
    ._content_mtlk1_17,
    ._scrollIndicator_mtlk1_92,
    ._scrollLine_mtlk1_112::after,
    ._title_mtlk1_49::after {
        transition: none;
        animation: none;
    }

    ._section_mtlk1_1._visible_mtlk1_34 ._content_mtlk1_17,
    ._section_mtlk1_1._visible_mtlk1_34 ._title_mtlk1_49::after {
        opacity: 1;
        transform: none;
    }

    ._section_mtlk1_1._align-left_mtlk1_39._visible_mtlk1_34 ._title_mtlk1_49::after {
        transform: translateX(0) scaleX(1);
    }
}
._section_jlhjo_1 {
    --section-padding-bottom: clamp(120px, 18vh, 240px);
    --preview-overlap: clamp(-240px, -28vh, -180px);
    --transition-duration: 0.9s;
    --transition-timing: cubic-bezier(0.16, 1, 0.3, 1);

    padding-bottom: var(--section-padding-bottom);
    box-sizing: border-box;
    max-height: 100vh;
}

._previewCard_jlhjo_12 {
    --card-width: 82%;
    --card-aspect-ratio: 16 / 9;
    --card-border-radius: 1rem;

    width: var(--card-width);
    margin: var(--preview-overlap) auto 0 auto;
    aspect-ratio: auto;
    background-color: rgb(var(--background-neutral-rgb));
    border-radius: var(--card-border-radius);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 
        0 32px 80px rgba(var(--shadow-base-rgb), 0.28),
        0 16px 40px rgba(var(--shadow-base-rgb), 0.20),
        0 0 0 1px rgba(var(--ink-rgb), 0.08);
    transition:
        transform 0.6s var(--transition-timing),
        box-shadow 0.6s var(--transition-timing),
        opacity 0.6s var(--transition-timing);
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    border: 1px solid rgba(var(--ink-rgb), 0.12);
}

._section_jlhjo_1._visible_jlhjo_39 ._previewCard_jlhjo_12 {
    opacity: 1;
    transform: translateY(0) scale(1);
}

._previewCard_jlhjo_12:hover {
    transform: translateY(-6px);
    box-shadow:
        0 40px 96px rgba(var(--shadow-base-rgb), 0.32),
        0 20px 48px rgba(var(--shadow-base-rgb), 0.24),
        0 0 0 1px rgba(var(--ink-rgb), 0.12);
}

._browserChrome_jlhjo_52 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: rgba(var(--background-secondary-rgb), 0.95);
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.08);
    position: relative;
    z-index: 2;
}

._trafficLights_jlhjo_63 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

._trafficLight_jlhjo_63 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(var(--ink-rgb), 0.15);
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

._trafficLight_jlhjo_63[data-color="red"] {
    background-color: var(--traffic-light-red);
}

._trafficLight_jlhjo_63[data-color="yellow"] {
    background-color: var(--traffic-light-yellow);
}

._trafficLight_jlhjo_63[data-color="green"] {
    background-color: var(--traffic-light-green);
}

._previewCard_jlhjo_12:hover ._trafficLight_jlhjo_63[data-color="red"] {
    background-color: var(--traffic-light-red-hover);
    box-shadow: 0 0 8px rgba(255, 95, 87, 0.4);
}

._previewCard_jlhjo_12:hover ._trafficLight_jlhjo_63[data-color="yellow"] {
    background-color: var(--traffic-light-yellow-hover);
    box-shadow: 0 0 8px rgba(255, 189, 46, 0.4);
}

._previewCard_jlhjo_12:hover ._trafficLight_jlhjo_63[data-color="green"] {
    background-color: var(--traffic-light-green-hover);
    box-shadow: 0 0 8px rgba(39, 201, 63, 0.4);
}

._addressBar_jlhjo_104 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    background: rgba(var(--background-tertiary-rgb), 0.6);
    border: 1px solid rgba(var(--ink-rgb), 0.08);
    border-radius: 6px;
    padding: 0 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

._addressBarText_jlhjo_117 {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(var(--ink-rgb), 0.5);
    letter-spacing: -0.01em;
}

._previewCard_jlhjo_12:hover ._addressBar_jlhjo_104 {
    background: rgba(var(--background-tertiary-rgb), 0.8);
    border-color: rgba(var(--ink-rgb), 0.12);
}

._previewCard_jlhjo_12:hover ._addressBarText_jlhjo_117 {
    color: rgba(var(--ink-rgb), 0.65);
}

._chromeActions_jlhjo_133 {
    width: 80px;
}

._previewImageWrapper_jlhjo_137 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(var(--background-secondary-rgb), 0.5) 0%,
        rgba(var(--background-tertiary-rgb), 0.3) 100%
    );
}

._imagePlaceholder_jlhjo_151 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(var(--background-tertiary-rgb), 0.4) 8%,
        rgba(var(--background-quaternary-rgb), 0.6) 18%,
        rgba(var(--background-tertiary-rgb), 0.4) 33%
    );
    background-size: 200% 100%;
    animation: _shimmer_jlhjo_1 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 1;
}

@keyframes _shimmer_jlhjo_1 {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

._previewGif_jlhjo_174 {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: 
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

._previewGif_jlhjo_174._loaded_jlhjo_187 {
    opacity: 1;
}

._previewGif_jlhjo_174._loaded_jlhjo_187 ~ ._imagePlaceholder_jlhjo_151 {
    opacity: 0;
    pointer-events: none;
}

/* Remove image scale on hover */
._previewCard_jlhjo_12:hover ._previewGif_jlhjo_174._loaded_jlhjo_187 {
    transform: none;
}

._visionContent_jlhjo_201 {
    --vision-margin-top: 3rem;
    --vision-padding-inline: 2rem;

    text-align: center;
    margin-top: var(--vision-margin-top);
    padding: 0 var(--vision-padding-inline);
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s var(--transition-timing) 0.3s,
        transform 0.7s var(--transition-timing) 0.3s;
}

._section_jlhjo_1._visible_jlhjo_39 ._visionContent_jlhjo_201 {
    opacity: 1;
    transform: translateY(0);
}

._visionText_jlhjo_220 {
    --text-line-height: 1.65;
    --text-letter-spacing: -0.015em;
    --text-max-width: 840px;

    font-size: var(--font-size-subheading);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
    font-weight: var(--font-weight-subheading);
    color: rgba(var(--ink-rgb), 0.72);
    max-width: var(--text-max-width);
    margin: 0 auto;
    font-style: italic;
}

._visionCta_jlhjo_235 {
    margin-top: 2.5rem;
    display: inline-flex;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

._visionCta_jlhjo_235:hover {
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    ._previewCard_jlhjo_12 {
        --card-width: 84%;
    }

    ._visionText_jlhjo_220 {
        --text-max-width: 760px;
    }
}

@media (max-width: 1024px) {
    ._section_jlhjo_1 {
        --section-padding-bottom: clamp(100px, 14vh, 180px);
        --preview-overlap: clamp(-140px, -20vh, -100px);
    }

    ._previewCard_jlhjo_12 {
        --card-width: 86%;
    }

    ._visionText_jlhjo_220 {
        --text-max-width: 720px;
    }

    ._browserChrome_jlhjo_52 {
        padding: 0.75rem 1rem;
    }

    ._addressBar_jlhjo_104 {
        height: 26px;
    }

    ._addressBarText_jlhjo_117 {
        font-size: 0.75rem;
    }

    ._trafficLight_jlhjo_63 {
        width: 11px;
        height: 11px;
    }
}

@media (max-width: 768px) {
    ._section_jlhjo_1 {
        --section-padding-bottom: clamp(3.5rem, 12vw, 5rem);
        --preview-overlap: clamp(2.5rem, 8vw, 3.75rem);
        max-height: none;
    }

    ._previewCard_jlhjo_12 {
        --card-width: min(560px, 100%);
        --card-border-radius: 0.875rem;
        margin: 0 auto;
    }

    ._visionContent_jlhjo_201 {
        --vision-margin-top: 2.25rem;
        --vision-padding-inline: 1.75rem;
    }

    ._visionText_jlhjo_220 {
        --text-line-height: 1.6;
        --text-max-width: 92%;
    }

    ._browserChrome_jlhjo_52 {
        padding: 0.65rem 0.875rem;
    }

    ._trafficLight_jlhjo_63 {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 640px) {
    ._section_jlhjo_1 {
        --section-padding-bottom: clamp(3rem, 10vw, 4.5rem);
        --preview-overlap: clamp(1.75rem, 9vw, 2.75rem);
        max-height: none;
    }

    ._previewCard_jlhjo_12 {
        --card-width: min(520px, 100%);
        --card-border-radius: 0.75rem;
    }

    ._previewCard_jlhjo_12:hover {
        transform: translateY(-3px);
    }

    ._visionContent_jlhjo_201 {
        --vision-margin-top: 2rem;
        --vision-padding-inline: 1.25rem;
    }

    ._visionText_jlhjo_220 {
        --text-line-height: 1.65;
        --text-max-width: 96%;
    }

    ._browserChrome_jlhjo_52 {
        padding: 0.625rem 0.75rem;
        gap: 0.75rem;
    }

    ._addressBar_jlhjo_104 {
        height: 24px;
        padding: 0 0.75rem;
    }

    ._addressBarText_jlhjo_117 {
        font-size: 0.7rem;
    }

    ._trafficLight_jlhjo_63 {
        width: 9px;
        height: 9px;
    }

    ._trafficLights_jlhjo_63 {
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    ._section_jlhjo_1 {
        --section-padding-bottom: clamp(2.75rem, 10vw, 3.5rem);
        --preview-overlap: clamp(1.25rem, 12vw, 2.25rem);
        max-height: none;
    }

    ._previewCard_jlhjo_12 {
        --card-width: 92%;
        --card-border-radius: 0.625rem;
    }

    ._visionContent_jlhjo_201 {
        --vision-margin-top: 1.75rem;
    }

    ._visionText_jlhjo_220 {
        --text-line-height: 1.7;
    }

    ._browserChrome_jlhjo_52 {
        padding: 0.5rem 0.625rem;
    }

    ._trafficLight_jlhjo_63 {
        width: 8px;
        height: 8px;
    }

    ._addressBar_jlhjo_104 {
        height: 22px;
    }

    ._addressBarText_jlhjo_117 {
        font-size: 0.65rem;
    }
}

@media (max-width: 375px) {
    ._previewCard_jlhjo_12 {
        --card-width: 94%;
    }

    ._browserChrome_jlhjo_52 {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    ._chromeActions_jlhjo_133 {
        width: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    ._previewCard_jlhjo_12,
    ._previewCard_jlhjo_12::before,
    ._visionContent_jlhjo_201,
    ._section_jlhjo_1._visible_jlhjo_39 ._previewCard_jlhjo_12,
    ._section_jlhjo_1._visible_jlhjo_39 ._visionContent_jlhjo_201,
    ._previewGif_jlhjo_174,
    ._trafficLight_jlhjo_63,
    ._addressBar_jlhjo_104,
    ._imagePlaceholder_jlhjo_151,
    ._visionCta_jlhjo_235 {
        transition: none;
        animation: none;
        transform: none;
    }

    ._section_jlhjo_1._visible_jlhjo_39 ._previewCard_jlhjo_12,
    ._section_jlhjo_1._visible_jlhjo_39 ._visionContent_jlhjo_201,
    ._previewGif_jlhjo_174._loaded_jlhjo_187 {
        opacity: 1;
        transform: none;
    }

    ._previewCard_jlhjo_12:hover,
    ._previewCard_jlhjo_12:hover ._previewGif_jlhjo_174._loaded_jlhjo_187,
    ._visionCta_jlhjo_235:hover {
        transform: none;
    }

    @keyframes _shimmer_jlhjo_1 {
        0%, 100% {
            background-position: 0 0;
        }
    }
}
._logoloop_14goz_1 {
    position: relative;
    overflow-x: hidden;

    --logoloop-gap: 32px;
    --logoloop-logoHeight: 28px;
    --logoloop-fadeColorAuto: var(--background-primary);
  }

  ._logoloop--scale-hover_14goz_10 {
    padding-top: calc(var(--logoloop-logoHeight) * 0.1);
    padding-bottom: calc(var(--logoloop-logoHeight) * 0.1);
  }
  
  ._logoloop__track_14goz_15 {
    display: flex;
    width: max-content;
    will-change: transform;
    user-select: none;
  }
  
  ._logoloop__list_14goz_22 {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  ._logoloop__item_14goz_30 {
    flex: 0 0 auto;
    margin-right: var(--logoloop-gap);
    font-size: var(--logoloop-logoHeight);
    line-height: 1;
    list-style: none;
  }
  
  ._logoloop__item_14goz_30:last-child {
    margin-right: var(--logoloop-gap);
  }
  
  ._logoloop__node_14goz_42 {
    display: inline-flex;
    align-items: center;
  }
  
  ._logoloop__item_14goz_30 img {
    height: var(--logoloop-logoHeight);
    width: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    -webkit-user-drag: none;
    pointer-events: none;
    /* Links handle interaction */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  ._logoloop--scale-hover_14goz_10 ._logoloop__item_14goz_30 {
    overflow: visible;
  }
  
  ._logoloop--scale-hover_14goz_10 ._logoloop__item_14goz_30:hover img,
  ._logoloop--scale-hover_14goz_10 ._logoloop__item_14goz_30:hover ._logoloop__node_14goz_42 {
    transform: scale(1.2);
    transform-origin: center center;
  }
  
  ._logoloop--scale-hover_14goz_10 ._logoloop__node_14goz_42 {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  ._logoloop__link_14goz_73 {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.2s ease;
  }
  
  ._logoloop__link_14goz_73:hover {
    opacity: 0.8;
  }
  
  ._logoloop__link_14goz_73:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }
  
  ._logoloop--fade_14goz_90::before,
  ._logoloop--fade_14goz_90::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(24px, 8%, 120px);
    pointer-events: none;
    z-index: 1;
  }
  
  ._logoloop--fade_14goz_90::before {
    left: 0;
    background: linear-gradient(
      to right,
      var(--logoloop-fadeColor, var(--logoloop-fadeColorAuto)) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  
@media (max-width: 768px) {
  ._logoloop_14goz_1 {
    --logoloop-gap: clamp(18px, 5vw, 24px);
    --logoloop-logoHeight: clamp(20px, 6vw, 26px);
    padding: clamp(2.5rem, 8vw, 3.5rem) 0;
  }

  ._logoloop--scale-hover_14goz_10 {
    padding-top: clamp(0.75rem, 2vw, 1rem);
    padding-bottom: clamp(0.75rem, 2vw, 1rem);
  }

  ._logoloop--fade_14goz_90::before,
  ._logoloop--fade_14goz_90::after {
    width: clamp(18px, 10vw, 80px);
  }
}

@media (max-width: 480px) {
  ._logoloop_14goz_1 {
    --logoloop-gap: clamp(14px, 6vw, 18px);
    --logoloop-logoHeight: clamp(18px, 7vw, 22px);
  }

  ._logoloop--scale-hover_14goz_10 ._logoloop__item_14goz_30:hover img,
  ._logoloop--scale-hover_14goz_10 ._logoloop__item_14goz_30:hover ._logoloop__node_14goz_42 {
    transform: none;
  }

  ._logoloop--fade_14goz_90::before,
  ._logoloop--fade_14goz_90::after {
    width: clamp(12px, 12vw, 60px);
  }
}

._logoloop--fade_14goz_90::after {
    right: 0;
    background: linear-gradient(
      to left,
      var(--logoloop-fadeColor, var(--logoloop-fadeColorAuto)) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  
  @media (prefers-reduced-motion: reduce) {
    ._logoloop__track_14goz_15 {
      transform: translate3d(0, 0, 0) !important;
    }
  
    ._logoloop__item_14goz_30 img,
    ._logoloop__node_14goz_42 {
      transition: none !important;
    }
  }
  
._gridGallerySection_1af69_1 {
    padding: 16rem 0;
    background-color: #ffffff;
}

._gridGalleryHeader_1af69_6 {
    text-align: left;
    max-width: 960px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(1.875rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

._gridGallerySection_1af69_1._visible_1af69_16 ._gridGalleryHeader_1af69_6 {
    opacity: 1;
    transform: translateY(0);
}

._gridGalleryHeading_1af69_21 {
    margin: 0 0 1rem 0;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #000000;
}

._gridGallerySubheading_1af69_30 {
    margin: 0;
    font-size: var(--font-size-subheading);
    font-weight: var(--font-weight-subheading);
    color: #5a5a5a;
    line-height: 1.5;
    max-width: 42rem;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    ._gridGallerySection_1af69_1 {
        padding: var(--section-spacing-md) 0 var(--section-spacing-sm);
    }

    ._gridGalleryHeader_1af69_6 {
        margin: 0 auto clamp(2.5rem, 8vw, 3rem);
        padding: 0 1rem;
        text-align: center;
    }

    ._gridGalleryHeading_1af69_21 {
        font-size: clamp(2.25rem, 8vw, 3rem);
    }

    ._gridGallerySubheading_1af69_30 {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    ._gridGallery_1af69_1 {
        gap: 1rem;
        height: auto;
        padding: 0 1rem;
    }

    ._tile_1af69_67 {
        padding: 1.5rem;
        min-height: 200px;
    }
}

._gridGallery_1af69_1 {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 70vh;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas:
        "t1 t2 t2"
        "t3 t2 t2"
        "t3 t2 t2"
        "t3 t4 t4";
}

._tile_1af69_67 {
    background: rgb(var(--background-neutral-rgb));
    border-radius: 1.75rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transform: translateY(2.5rem);
    transition: transform 0.6s ease, opacity 0.6s ease;
    position: relative;
    overflow: hidden;
}

._tileImage_1af69_103 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

._gridGallerySection_1af69_1._visible_1af69_16 ._tile_1af69_67 {
    opacity: 1;
    transform: translateY(0);
}

._tileContent_1af69_117 {
    position: relative;
    z-index: 2;
    width: 100%;
}

._tileText_1af69_123 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

._tileTitle_1af69_129 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: color 0.3s ease, transform 0.3s ease;
}

._tileDescription_1af69_139 {
    margin: 0.5rem 0 0;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    transition: color 0.3s ease;
    max-width: 90%;
}

._tileHoverOverlay_1af69_149 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

._tileTextOverlay_1af69_159 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

._tile_1af69_67:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

._gridGallery_1af69_1 ._tile_1af69_67:nth-child(1) {
    grid-area: t1;
    transition-delay: 0.08s;
}

._gridGallery_1af69_1 ._tile_1af69_67:nth-child(2) {
    grid-area: t2;
    transition-delay: 0.16s;
}

/* Ensure the dashboard image anchors to the left edge */
._gridGallery_1af69_1 ._tile_1af69_67:nth-child(2) ._tileImage_1af69_103 {
    object-position: left center;
}

._gridGallery_1af69_1 ._tile_1af69_67:nth-child(3) {
    grid-area: t3;
    transition-delay: 0.24s;
}

._gridGallery_1af69_1 ._tile_1af69_67:nth-child(4) {
    grid-area: t4;
    transition-delay: 0.32s;
}

@media (max-width: 900px) {
    ._gridGallery_1af69_1 {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "t2"
            "t1"
            "t3"
            "t4";
        padding: 0 1rem;
    }

    ._tile_1af69_67 {
        min-height: 200px;
    }
}

@media (max-width: 600px) {
    ._gridGallery_1af69_1 {
        grid-template-columns: 1fr;
        grid-template-areas:
            "t2" "t1" "t3" "t4";
        padding: 0 1rem;
        gap: 1rem;
    }

    ._gridGallerySection_1af69_1 {
        padding: var(--section-spacing-sm) 0;
    }

    ._tile_1af69_67 {
        min-height: 180px;
        padding: 1.25rem;
    }

    ._tileTitle_1af69_129 {
        font-size: 1.25rem;
    }

    ._tileDescription_1af69_139 {
        font-size: 0.9375rem;
    }

    ._gridGalleryHeader_1af69_6 {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
}._section_hvzz7_1 {
    --transition-duration: 0.9s;
    --transition-timing: cubic-bezier(0.16, 1, 0.3, 1);

    padding: var(--section-spacing-lg) 0;
}

._content_hvzz7_8 {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

._headingGroup_hvzz7_14 {
    text-align: left;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity var(--transition-duration) var(--transition-timing),
        transform var(--transition-duration) var(--transition-timing);
}

._section_hvzz7_1._visible_hvzz7_24 ._headingGroup_hvzz7_14 {
    opacity: 1;
    transform: translateY(0);
}

._title_hvzz7_29 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 0.875rem 0;
}

._subtitle_hvzz7_37 {
    font-size: var(--font-size-subheading);
    font-weight: var(--font-weight-subheading);
    color: rgba(var(--ink-rgb), 0.55);
    line-height: 1.45;
    max-width: 36rem;
    margin: 0;
}

._comparisonWrapper_hvzz7_46 {
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity var(--transition-duration) var(--transition-timing) 0.15s,
        transform var(--transition-duration) var(--transition-timing) 0.15s;
}

._section_hvzz7_1._visible_hvzz7_24 ._comparisonWrapper_hvzz7_46 {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    ._headingGroup_hvzz7_14 {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    ._section_hvzz7_1 {
        padding: var(--section-spacing-md) 0;
    }

    ._content_hvzz7_8 {
        padding: 0 1rem;
    }

    ._headingGroup_hvzz7_14 {
        margin-bottom: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    ._subtitle_hvzz7_37 {
        max-width: 100%;
    }

    ._title_hvzz7_29 {
        font-size: clamp(2.25rem, 8vw, 3rem);
    }
}

@media (max-width: 540px) {
    ._headingGroup_hvzz7_14 {
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }

    ._section_hvzz7_1 {
        padding: var(--section-spacing-sm) 0;
    }

    ._content_hvzz7_8 {
        padding: 0 1rem;
    }

    ._subtitle_hvzz7_37 {
        line-height: 1.5;
    }
}
._comparisonGrid_uc2kp_1 {
    margin: 0;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
}

._card_uc2kp_8 {
    position: relative;
    background: rgba(var(--background-neutral-rgb), 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--ink-rgb), 0.08);
    border-radius: 1.5rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    transition: 
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

._card_uc2kp_8::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(var(--brand-primary-rgb), 0.08) 0%,
        rgba(var(--brand-accent-rgb), 0.04) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

._card_uc2kp_8:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--ink-rgb), 0.15);
    box-shadow: 
        0 16px 32px rgba(var(--shadow-base-rgb), 0.12),
        0 6px 12px rgba(var(--shadow-base-rgb), 0.08);
}

._card_uc2kp_8:hover::before {
    opacity: 1;
}

._label_uc2kp_56 {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(var(--ink-rgb), 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

._timer_uc2kp_64 {
    font-feature-settings: "tnum" 1, "lnum" 1;
    font-variant-numeric: tabular-nums;
    color: rgba(var(--ink-rgb), 0.85);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: right;
    letter-spacing: -0.01em;
}

@media (max-width: 640px) {
    ._comparisonGrid_uc2kp_1 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    ._card_uc2kp_8 {
        padding: 1.5rem;
    }

    ._timer_uc2kp_64 {
        font-size: 1.125rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    ._card_uc2kp_8 {
        padding: 1.25rem;
        border-radius: 1.25rem;
    }

    ._label_uc2kp_56 {
        font-size: 0.8125rem;
    }

    ._timer_uc2kp_64 {
        font-size: 1.0625rem;
    }
}
._viewport_1n1kb_1 {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    background: var(--background-secondary);
    border: 1px solid rgba(var(--white-rgb), 0.06);
}

._viewportLoading_1n1kb_11 ._skeleton_1n1kb_11 {
    height: 100%;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: 1.2fr auto auto 1fr;
    gap: 0.75rem;
}

._skeletonBarLarge_1n1kb_21,
._skeletonBar_1n1kb_21,
._skeletonGrid_1n1kb_23 > div {
    position: relative;
    overflow: hidden;
    background: rgba(var(--white-rgb), 0.06);
    border-radius: 0.5rem;
}

._skeletonBarLarge_1n1kb_21 {
    height: 36%;
}

._skeletonBar_1n1kb_21 {
    height: 12%;
}

._skeletonGrid_1n1kb_23 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

._skeletonGrid_1n1kb_23 > div {
    height: 100%;
}

._skeletonBarLarge_1n1kb_21::after,
._skeletonBar_1n1kb_21::after,
._skeletonGrid_1n1kb_23 > div::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        var(--transparent),
        rgba(var(--white-rgb), 0.15),
        var(--transparent)
    );
    animation: _shimmer_1n1kb_1 1.5s infinite;
}

._viewportLoaded_1n1kb_64 ._pageSnapshot_1n1kb_64 {
    height: 100%;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: 1.2fr auto auto 1fr;
    gap: 0.75rem;
}

._snapshotHero_1n1kb_74 {
    background: rgba(var(--white-rgb), 0.08);
    border-radius: 0.5rem;
}

._snapshotRow_1n1kb_79 {
    height: 12%;
    background: rgba(var(--white-rgb), 0.08);
    border-radius: 0.5rem;
}

._snapshotGrid_1n1kb_85 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

._snapshotGrid_1n1kb_85 > div {
    height: 100%;
    background: rgba(var(--white-rgb), 0.08);
    border-radius: 0.5rem;
}

@keyframes _shimmer_1n1kb_1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
._summary_zw41l_1 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 500;
    color: rgba(var(--ink-rgb), 0.6);
    line-height: 1.7;
    margin-top: 2.5rem;
    max-width: 38rem;
}

@media (max-width: 640px) {
    ._summary_zw41l_1 {
        margin-top: 2rem;
        line-height: 1.65;
    }
}
._section_11lab_1 {
    padding: var(--section-spacing-lg) 0;
}

._content_11lab_5 {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

._container_11lab_11 {
    background: #ffffff;
    border-radius: 1.5rem;
    position: relative;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

._section_11lab_1._visible_11lab_26 ._container_11lab_11 {
    opacity: 1;
    transform: translateY(0);
}



._iconWrapper_11lab_33 svg {
    position: absolute;
    width: 85%;
    top: 50%;
    right: -20rem;
    transform: translateY(-60%);
    color: #000000;
    aspect-ratio: 1 / 1;
}

._details_11lab_43 {
    display: flex;
    flex-direction: column;
    padding: 4rem;
    box-sizing: border-box;
    max-width: 60%;
    gap: 1.25rem;
    z-index: 1;
}

._title_11lab_53 {
    color: #000000;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

._subtitle_11lab_62 {
    color: #000000;
    font-size: var(--font-size-subheading);
    font-weight: var(--font-weight-subheading);
    line-height: 1.5;
    margin: 0;
    max-width: 32rem;
}

._learnMoreButton_11lab_71 {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
    background-color: #000000;
    color: #ffffff;
    width: fit-content;
    border-radius: 0.75rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

._learnMoreButton_11lab_71:hover {
    border-color: #ffffff;
}

._learnMoreButton_11lab_71:active {
    border-color: #ffffff;
}

._learnMoreButton_11lab_71:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    ._container_11lab_11 {
        aspect-ratio: 16 / 8;
    }

    ._iconWrapper_11lab_33 svg {
        width: 90%;
        right: -16rem;
    }

    ._details_11lab_43 {
        padding: 2.5rem;
        max-width: 65%;
        gap: 1rem;
    }

    ._learnMoreButton_11lab_71 {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    ._content_11lab_5 {
        padding: 0 1rem;
    }

    ._container_11lab_11 {
        aspect-ratio: 1 / 1;
        flex-direction: column;
        justify-content: center;
        border-radius: 1rem;
    }

    ._iconWrapper_11lab_33 {
        position: relative;
        width: 100%;
        height: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ._iconWrapper_11lab_33 svg {
        position: relative;
        width: 60%;
        top: auto;
        right: auto;
        transform: none;
    }

    ._details_11lab_43 {
        padding: 1.5rem;
        max-width: 100%;
        gap: 0.75rem;
        text-align: center;
        align-items: center;
    }

    ._learnMoreButton_11lab_71 {
        font-size: 0.8rem;
        padding: 0.65rem 1.25rem;
        border-radius: 0.625rem;
    }
}
._faq_ia489_1 {
    padding: var(--section-spacing-lg) 2rem;
}

._container_ia489_5 {
    max-width: 1000px;
    margin: 0 auto;
}

._header_ia489_10 {
    text-align: center;
    margin-bottom: 4rem;
}

._badgeWrapper_ia489_15 {
    margin-bottom: 1.5rem;
}

._title_ia489_19 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

._subtitle_ia489_28 {
    font-size: var(--font-size-subheading);
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 auto;
    max-width: 600px;
    font-weight: var(--font-weight-subheading);
}

._faqList_ia489_37 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

._faqItem_ia489_44 {
    background: var(--background-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

._faqItem_ia489_44:hover {
    border-color: var(--border-secondary);
    box-shadow: 0 8px 32px rgba(var(--shadow-base-rgb), 0.08);
}

._faqItem_ia489_44._open_ia489_58 {
    border-color: var(--brand-primary);
    box-shadow: 0 12px 40px rgba(var(--brand-primary-rgb), 0.15);
}

._question_ia489_63 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

._question_ia489_63:hover {
    padding-left: 2.5rem;
}

._questionText_ia489_86 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

._icon_ia489_95 {
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--brand-primary);
    transition: all 0.3s ease;
    background: var(--background-tertiary);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-primary);
}

._faqItem_ia489_44._open_ia489_58 ._icon_ia489_95 {
    transform: rotate(45deg);
    background: var(--brand-primary);
    color: var(--text-inverse);
    border-color: var(--brand-primary);
}

._answerWrapper_ia489_117 {
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0;
    opacity: 0;
}

._faqItem_ia489_44._open_ia489_58 ._answerWrapper_ia489_117 {
    max-height: 31.25rem;
    opacity: 1;
}

._answer_ia489_117 {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

._answer_ia489_117 p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

._contact_ia489_143 {
    background: var(--background-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
}

._contactTitle_ia489_151 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

._contactText_ia489_159 {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0 0 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 768px) {
    ._faq_ia489_1 {
        padding: var(--section-spacing-md) clamp(1rem, 5vw, 1.5rem);
    }

    ._container_ia489_5 {
        max-width: 100%;
    }

    ._header_ia489_10 {
        margin-bottom: clamp(2.5rem, 6vw, 3rem);
    }

    ._title_ia489_19 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }

    ._subtitle_ia489_28 {
        line-height: 1.6;
        max-width: min(32rem, 90%);
        margin-left: auto;
        margin-right: auto;
    }

    ._faqList_ia489_37 {
        gap: 0.875rem;
        margin-bottom: clamp(2.5rem, 6vw, 3rem);
    }

    ._faqItem_ia489_44 {
        border-radius: 1rem;
    }

    ._question_ia489_63 {
        padding: clamp(1.1rem, 5vw, 1.35rem);
        gap: clamp(0.75rem, 4vw, 1rem);
    }

    ._questionText_ia489_86 {
        font-size: 1rem;
        line-height: 1.4;
    }

    ._icon_ia489_95 {
        margin-left: 0;
        width: 2rem;
        height: 2rem;
    }

    ._answer_ia489_117 {
        padding: 0 1.25rem 1.25rem;
    }

    ._answer_ia489_117 p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    ._contact_ia489_143 {
        padding: 2rem 1.25rem;
        border-radius: 1.25rem;
    }

    ._contactTitle_ia489_151 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    ._contactText_ia489_159 {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    ._faq_ia489_1 {
        padding: var(--section-spacing-sm) clamp(0.75rem, 6vw, 1rem);
    }

    ._title_ia489_19 {
        font-size: clamp(1.25rem, 4vw, 1.625rem);
    }

    ._subtitle_ia489_28 {
        font-size: 0.875rem;
    }

    ._question_ia489_63 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: clamp(1rem, 5vw, 1.25rem);
    }

    ._questionText_ia489_86 {
        font-size: 0.9375rem;
    }

    ._icon_ia489_95 {
        align-self: flex-end;
        width: 2rem;
        height: 2rem;
    }

    ._answer_ia489_117 {
        padding: 0 clamp(0.75rem, 6vw, 1.25rem) clamp(1rem, 7vw, 1.25rem);
    }

    ._answer_ia489_117 p {
        font-size: 0.875rem;
    }

    ._contact_ia489_143 {
        padding: clamp(1.75rem, 10vw, 2rem) clamp(0.75rem, 6vw, 1.25rem);
        border-radius: 1rem;
    }

    ._contactTitle_ia489_151 {
        font-size: 1rem;
    }

    ._contactText_ia489_159 {
        font-size: 0.8125rem;
    }
}
.badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        rgba(var(--brand-primary-rgb), 0.1) 0%,
        rgba(var(--brand-accent-rgb), 0.05) 100%
    );
    border: 1px solid var(--border-primary);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(var(--brand-primary-rgb), 0.1);
}

.badge-secondary {
    display: inline-flex;
    align-items: center;
    background-color: var(--background-highlight);
    color: var(--brand-primary-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-plan {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: 0.35rem;
    background: rgba(var(--brand-accent-rgb), 0.2);
    color: rgba(var(--white-rgb), 0.9);
    border: 1px solid rgba(var(--brand-accent-rgb), 0.35);
}

@media (max-width: 768px) {
    .badge {
        font-size: 0.8125rem;
        padding: 0.375rem 0.875rem;
    }
}

@media (max-width: 480px) {
    .badge {
        font-size: 0.8125rem;
        padding: 0.375rem 0.875rem;
    }
}._cta_1dn1n_1 {
    position: relative;
    margin: var(--section-spacing-lg) auto var(--section-spacing-md);
    max-width: 1200px;
    border-radius: 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-primary) 100%);
    border: 1px solid var(--border-primary);
    box-shadow: 0 20px 40px rgba(var(--shadow-base-rgb), 0.1), 0 8px 16px rgba(var(--shadow-base-rgb), 0.05);
}

._ctaBackground_1dn1n_12 {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    z-index: 0;
    overflow: hidden;
}

._ctaContent_1dn1n_20 {
    position: relative;
    z-index: 2;
    padding: 6rem 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

._ctaHeader_1dn1n_31 {
    max-width: 800px;
}

._ctaTitle_1dn1n_35 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

._ctaSubtitle_1dn1n_44 {
    font-size: var(--font-size-subheading);
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 auto;
    font-weight: var(--font-weight-subheading);
    max-width: 600px;
}

._ctaActions_1dn1n_53 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

._socialLinks_1dn1n_61 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

._socialLabel_1dn1n_68 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

._socialIcons_1dn1n_76 {
    display: flex;
    gap: 1rem;
}

._socialLink_1dn1n_61 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--background-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

._socialLink_1dn1n_61:hover {
    background: var(--brand-primary);
    color: var(--text-inverse);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--brand-primary-rgb), 0.25);
}

._socialLink_1dn1n_61 svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 768px) {
    ._cta_1dn1n_1 {
        margin: var(--section-spacing-md) 1rem var(--section-spacing-sm);
        border-radius: 1.5rem;
    }

    ._ctaContent_1dn1n_20 {
        padding: clamp(2.5rem, 10vw, 3rem) clamp(1.5rem, 6vw, 2rem);
        gap: clamp(1.5rem, 6vw, 2rem);
    }

    ._ctaTitle_1dn1n_35 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }

    ._ctaSubtitle_1dn1n_44 {
        font-size: var(--font-size-subheading);
        max-width: min(32rem, 90%);
    }

    ._ctaActions_1dn1n_53 {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    ._socialLinks_1dn1n_61 {
        width: 100%;
        gap: clamp(1.25rem, 5vw, 1.75rem);
    }

    ._socialIcons_1dn1n_76 {
        gap: 0.75rem;
    }

    ._socialLink_1dn1n_61 {
        width: 2.75rem;
        height: 2.75rem;
    }
}

@media (max-width: 480px) {
    ._ctaContent_1dn1n_20 {
        padding: clamp(2rem, 12vw, 2.5rem) clamp(1rem, 8vw, 1.5rem);
        gap: clamp(1.25rem, 7vw, 1.75rem);
    }

    ._ctaTitle_1dn1n_35 {
        letter-spacing: -0.01em;
    }

    ._ctaActions_1dn1n_53 {
        align-items: stretch;
    }
}
.darkveil-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
._page_u8x1y_1 {
    width: 100%;
    background: var(--background-primary);
}

._heroWrapper_u8x1y_6 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 4vw, 1.9rem);
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 4.5rem) clamp(1.5rem, 5vw, 2.75rem) clamp(2.5rem, 7vw, 3.5rem);
    max-width: 900px;
}

._backLink_u8x1y_15 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.8);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
}

._title_u8x1y_26 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(2.5rem, 5.3vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

._subtitle_u8x1y_36 {
    margin: 0;
    max-width: 62ch;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.6;
}

._metaRow_u8x1y_44 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.85);
    font-size: 0.95rem;
}

._metaRowDot_u8x1y_53 {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.5;
}

._bodyWrapper_u8x1y_61 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(2rem, 6vw, 3.5rem);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 2.75rem) clamp(4rem, 8vw, 5rem);
    width: 100%;
    max-width: 1100px;
}

._contentColumn_u8x1y_72 {
    display: flex;
    flex: 0 1 clamp(620px, 55vw, 780px);
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3rem);
}

._content_u8x1y_72 {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.72;
}

._content_u8x1y_72 h1,
._content_u8x1y_72 h2,
._content_u8x1y_72 h3,
._content_u8x1y_72 h4,
._content_u8x1y_72 h5,
._content_u8x1y_72 h6 {
    margin: clamp(2.2rem, 6vw, 2.8rem) 0 clamp(0.75rem, 2vw, 1rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

._content_u8x1y_72 h1 { font-size: 2.4rem; }
._content_u8x1y_72 h2 { font-size: 2rem; }
._content_u8x1y_72 h3 { font-size: 1.6rem; }
._content_u8x1y_72 h4 { font-size: 1.35rem; }

._content_u8x1y_72 p,
._content_u8x1y_72 blockquote,
._content_u8x1y_72 ul,
._content_u8x1y_72 ol {
    margin: clamp(1.2rem, 3vw, 1.8rem) 0;
}

._content_u8x1y_72 blockquote {
    padding: 0.5rem 0 0.5rem 1.25rem;
    border-left: 3px solid var(--border-primary);
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.95);
    font-style: italic;
}

._content_u8x1y_72 a {
    border-bottom: 1px solid transparent;
    color: var(--brand-primary);
    text-decoration: none;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

._content_u8x1y_72 a:hover {
    border-bottom-color: var(--brand-primary);
}

._content_u8x1y_72 pre {
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--background-tertiary);
    overflow-x: auto;
}

._articleFooter_u8x1y_134 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 6vw, 3.5rem);
    padding-top: clamp(2rem, 6vw, 3rem);
    border-top: 1px solid var(--border-primary);
}

._shareBar_u8x1y_143 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

._shareLabel_u8x1y_150 {
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.75);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

._shareButton_u8x1y_157 {
    padding: 0.55rem 1.1rem;
    border: 1px solid var(--border-primary);
    border-radius: 999px;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

._shareButton_u8x1y_157:hover,
._shareButton_u8x1y_157:focus-visible {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

._sideRail_u8x1y_174 {
    position: sticky;
    top: clamp(4rem, 8vw, 5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

._toc_u8x1y_182 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

._tocHeading_u8x1y_188 {
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.82);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

._tocList_u8x1y_195 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

._tocList_u8x1y_195 li {
    display: flex;
}

._tocLink_u8x1y_208 {
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.9);
    font-size: 0.92rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

._tocLink_u8x1y_208[data-level='3'] {
    padding-left: 1.2rem;
    font-size: 0.88rem;
}

._tocLink_u8x1y_208:hover,
._tocLink_u8x1y_208:focus-visible {
    color: var(--text-primary);
}

._sideCard_u8x1y_226 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    background: rgba(12, 12, 12, 0.4);
}

._sideCard_u8x1y_226 a {
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.92);
    text-decoration: none;
}

._sideCard_u8x1y_226 a:hover {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    ._bodyWrapper_u8x1y_61 {
        flex-direction: column;
        gap: clamp(2rem, 6vw, 2.8rem);
        padding: 0 clamp(1.25rem, 6vw, 2rem) clamp(3.5rem, 7vw, 4.5rem);
    }

    ._contentColumn_u8x1y_72 {
        flex: 1 1 auto;
    }

    ._sideRail_u8x1y_174 {
        position: static;
        flex: none;
        gap: clamp(1.5rem, 4vw, 2.5rem);
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    ._heroWrapper_u8x1y_6 {
        padding: clamp(2.75rem, 9vw, 3.5rem) clamp(1.25rem, 7vw, 1.7rem) clamp(2rem, 7vw, 3rem);
    }

    ._bodyWrapper_u8x1y_61 {
        padding: 0 clamp(1.2rem, 7vw, 1.7rem) clamp(3.5rem, 8vw, 4.5rem);
    }

    ._content_u8x1y_72 {
        font-size: 1rem;
    }

    ._sideRail_u8x1y_174 {
        flex-direction: column-reverse;
    }
}
._hero_1lixv_1 {
    background: var(--background-primary);
    border-bottom: 1px solid var(--border-primary);
    padding: calc(72px + clamp(2rem, 6vw, 3.5rem)) 0 clamp(3rem, 8vw, 4.5rem);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

._backgroundElements_1lixv_11 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

._headerWrapper_1lixv_19 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

._inner_1lixv_27 {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 2.75rem);
    display: flex;
    gap: clamp(2.5rem, 6vw, 4.5rem);
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

._mainColumn_1lixv_40 {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 4vw, 2.6rem);
}

._badge_1lixv_47 {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.72);
}

._headline_1lixv_57 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.3rem, 3vw, 1.9rem);
    max-width: 64ch;
}

._title_1lixv_64 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    text-wrap: balance;
}

._subtitle_1lixv_74 {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.9);
    max-width: 58ch;
}

._actions_1lixv_82 {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.85rem, 2vw, 1.2rem);
    margin-top: clamp(0.6rem, 2vw, 1.1rem);
    max-width: 100%;
}

._actions_1lixv_82 ._btn-primary_1lixv_90,
._actions_1lixv_82 ._btn-secondary_1lixv_91 {
    padding: 0.875rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    flex-shrink: 1;
    min-width: 0;
}

._actions_1lixv_82 ._btn-secondary_1lixv_91 {
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.9);
}

._actions_1lixv_82 ._btn-secondary_1lixv_91:hover,
._actions_1lixv_82 ._btn-secondary_1lixv_91:focus-visible {
    color: var(--text-primary);
}

._stats_1lixv_108 {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.35rem, 3.5vw, 2.4rem);
    padding-top: clamp(1.35rem, 3.5vw, 1.9rem);
    margin-top: clamp(1.2rem, 3vw, 1.6rem);
    border-top: 1px solid var(--border-primary);
}

._stat_1lixv_108 {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 160px;
}

._statLabel_1lixv_124 {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.82);
}

._statValue_1lixv_132 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 600;
    color: var(--text-primary);
}

._sideColumn_1lixv_139 {
    flex: 0 0 clamp(240px, 30vw, 360px);
    display: flex;
    flex-direction: column;
    gap: clamp(1.6rem, 4vw, 2.4rem);
}

._sideIllustration_1lixv_146 {
    display: flex;
    align-items: center;
    justify-content: center;
}

._sideIllustration_1lixv_146 > * {
    max-width: min(100%, 360px);
    height: auto;
}

@media (max-width: 1024px) {
    ._hero_1lixv_1 {
        padding: calc(72px + clamp(1.5rem, 5vw, 2.5rem)) 0 clamp(2.6rem, 8vw, 3.6rem);
    }

    ._inner_1lixv_27 {
        flex-direction: column;
        gap: clamp(2rem, 6vw, 2.75rem);
        align-items: stretch;
    }

    ._mainColumn_1lixv_40 {
        width: 100%;
    }

    ._sideColumn_1lixv_139 {
        flex: none;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    ._hero_1lixv_1 {
        padding: calc(72px + clamp(1.2rem, 4vw, 2rem)) 0 clamp(2.2rem, 7vw, 2.9rem);
    }

    ._inner_1lixv_27 {
        padding: 0 clamp(1.25rem, 6vw, 1.75rem);
        gap: clamp(1.6rem, 5vw, 2.25rem);
    }

    ._mainColumn_1lixv_40 {
        align-items: center;
        text-align: center;
        gap: clamp(1.35rem, 4.5vw, 1.95rem);
    }

    ._badge_1lixv_47 {
        align-self: center;
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    ._headline_1lixv_57 {
        align-items: center;
    }

    ._subtitle_1lixv_74 {
        max-width: 48ch;
        font-size: clamp(1rem, 3vw, 1.12rem);
    }

    ._actions_1lixv_82 {
        width: min(100%, 28rem);
        margin-inline: auto;
        justify-content: center;
        gap: clamp(0.9rem, 4vw, 1.2rem);
    }

    ._stats_1lixv_108 {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: clamp(1.1rem, 4vw, 1.6rem);
        text-align: center;
    }

    ._stat_1lixv_108 {
        align-items: center;
        min-width: 0;
    }

    ._sideColumn_1lixv_139 {
        align-items: center;
        gap: clamp(1.2rem, 4vw, 1.8rem);
    }

    ._sideIllustration_1lixv_146 {
        display: none;
    }
}

@media (max-width: 640px) {
    ._inner_1lixv_27 {
        padding: 0 clamp(1.05rem, 6vw, 1.4rem);
    }

    ._headline_1lixv_57 {
        gap: clamp(1.05rem, 5vw, 1.4rem);
    }

    ._title_1lixv_64 {
        font-size: clamp(2.05rem, 8vw, 2.6rem);
        line-height: 1.12;
    }

    ._actions_1lixv_82 {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 26rem);
        margin-inline: auto;
    }

    ._actions_1lixv_82 ._btn-primary_1lixv_90,
    ._actions_1lixv_82 ._btn-secondary_1lixv_91 {
        width: 100%;
        justify-content: center;
    }

    ._stats_1lixv_108 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: clamp(1.05rem, 4.8vw, 1.4rem);
    }

    ._stat_1lixv_108 {
        align-items: center;
    }
}
@media (max-width: 540px) {
    ._hero_1lixv_1 {
        padding: calc(72px + clamp(1rem, 4vw, 1.5rem)) 0 clamp(1.9rem, 8vw, 2.35rem);
    }

    ._mainColumn_1lixv_40 {
        gap: clamp(1.2rem, 6vw, 1.6rem);
    }

    ._badge_1lixv_47 {
        font-size: 0.65rem;
        letter-spacing: 0.11em;
    }

    ._title_1lixv_64 {
        font-size: clamp(1.9rem, 7.5vw, 2.35rem);
    }

    ._subtitle_1lixv_74 {
        font-size: clamp(0.95rem, 4.5vw, 1.05rem);
    }

    ._actions_1lixv_82 {
        gap: clamp(0.85rem, 5vw, 1rem);
        max-width: 22rem;
        margin-inline: auto;
    }

    ._statValue_1lixv_132 {
        font-size: clamp(1.3rem, 7vw, 1.6rem);
    }
}
@media (max-width: 420px) {
    ._inner_1lixv_27 {
        padding: 0 clamp(0.85rem, 7vw, 1.05rem);
    }

    ._actions_1lixv_82 ._btn-primary_1lixv_90,
    ._actions_1lixv_82 ._btn-secondary_1lixv_91 {
        padding: 0.95rem 1.35rem;
    }
}
.aurora-container {
  width: 100%;
  height: 100%;
}
._card_4fklu_1 {
    display: flex;
    flex-direction: column;
    background: var(--background-primary);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

._card_4fklu_1:hover {
    border-color: rgba(var(--brand-primary-rgb), 0.32);
    transform: translateY(-2px);
}

._cover_4fklu_21 {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    background: var(--background-secondary);
    overflow: hidden;
}

._coverImage_4fklu_29 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

._card_4fklu_1:hover ._coverImage_4fklu_29 {
    transform: scale(1.02);
}

._coverGradient_4fklu_40,
._gradient0_4fklu_41,
._gradient1_4fklu_42,
._gradient2_4fklu_43 {
    width: 100%;
    height: 100%;
}

._gradient0_4fklu_41 {
    background: linear-gradient(
        140deg,
        rgba(var(--brand-primary-rgb), 0.18) 0%,
        rgba(var(--brand-accent-rgb), 0.08) 100%
    );
}

._gradient1_4fklu_42 {
    background: linear-gradient(
        140deg,
        rgba(var(--brand-primary-rgb), 0.16) 0%,
        rgba(var(--brand-accent-rgb), 0.06) 100%
    );
}

._gradient2_4fklu_43 {
    background: linear-gradient(
        140deg,
        rgba(var(--brand-primary-rgb), 0.14) 0%,
        rgba(var(--brand-accent-rgb), 0.05) 100%
    );
}

._content_4fklu_72 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 1.6rem 1.75rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

._meta_4fklu_83 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.78);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

._title_4fklu_94 {
    margin: 0;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.32;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

._excerpt_4fklu_106 {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

._large_4fklu_121 {
    grid-column: span 2;
}

._large_4fklu_121 ._cover_4fklu_21 {
    aspect-ratio: 16 / 9;
}

._large_4fklu_121 ._content_4fklu_72 {
    padding: 1.9rem 2rem 2.1rem;
    gap: 0.95rem;
}

._large_4fklu_121 ._title_4fklu_94 {
    font-size: 1.65rem;
}

._large_4fklu_121 ._excerpt_4fklu_106 {
    font-size: 0.98rem;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

._wide_4fklu_144 {
    flex-direction: row;
    align-items: stretch;
}

._wide_4fklu_144 ._cover_4fklu_21 {
    width: 42%;
    aspect-ratio: unset;
    min-height: 100%;
    flex-shrink: 0;
}

._wide_4fklu_144 ._content_4fklu_72 {
    width: 58%;
    padding: 1.4rem 1.6rem 1.6rem;
    gap: 0.7rem;
    min-width: 0;
}

._latest_4fklu_163 {
    padding: 1.75rem;
    gap: 0.75rem;
    height: auto;
}

._latest_4fklu_163 ._content_4fklu_72 {
    padding: 0;
    gap: 0.75rem;
}

._latest_4fklu_163 ._meta_4fklu_83 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    letter-spacing: 0.12em;
}

._latest_4fklu_163 ._title_4fklu_94 {
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.35;
}

._latest_4fklu_163 ._excerpt_4fklu_106 {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: unset;
    font-size: 0.92rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    ._large_4fklu_121 {
        grid-column: span 1;
    }

    ._large_4fklu_121 ._title_4fklu_94 {
        font-size: 1.45rem;
    }

    ._wide_4fklu_144 {
        flex-direction: column;
    }

    ._wide_4fklu_144 ._cover_4fklu_21 {
        width: 100%;
        aspect-ratio: 3 / 2;
    }

    ._wide_4fklu_144 ._content_4fklu_72 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    ._card_4fklu_1 {
        border-radius: 0.875rem;
    }

    ._content_4fklu_72 {
        padding: 1.375rem 1.5rem 1.5rem;
        gap: 0.75rem;
    }

    ._meta_4fklu_83 {
        font-size: 0.75rem;
    }

    ._title_4fklu_94 {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    ._excerpt_4fklu_106 {
        font-size: 0.875rem;
        line-height: 1.6;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    ._latest_4fklu_163 {
        padding: 1.5rem;
        gap: 0.75rem;
    }

    ._latest_4fklu_163 ._title_4fklu_94 {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    ._latest_4fklu_163 ._excerpt_4fklu_106 {
        font-size: 0.9375rem;
    }

    ._large_4fklu_121 ._content_4fklu_72 {
        padding: 1.625rem 1.75rem 1.875rem;
        gap: 0.9375rem;
    }

    ._large_4fklu_121 ._title_4fklu_94 {
        font-size: 1.375rem;
    }

    ._large_4fklu_121 ._excerpt_4fklu_106 {
        font-size: 0.9375rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

@media (max-width: 540px) {
    ._content_4fklu_72 {
        padding: 1.25rem 1.375rem 1.375rem;
        gap: 0.6875rem;
    }

    ._title_4fklu_94 {
        font-size: 1.0625rem;
    }

    ._excerpt_4fklu_106 {
        font-size: 0.8125rem;
    }

    ._latest_4fklu_163 {
        padding: 1.375rem;
        gap: 0.6875rem;
    }

    ._latest_4fklu_163 ._title_4fklu_94 {
        font-size: 1.0625rem;
    }

    ._latest_4fklu_163 ._excerpt_4fklu_106 {
        font-size: 0.875rem;
    }

    ._large_4fklu_121 ._content_4fklu_72 {
        padding: 1.5rem 1.625rem 1.75rem;
    }

    ._large_4fklu_121 ._title_4fklu_94 {
        font-size: 1.25rem;
    }

    ._large_4fklu_121 ._excerpt_4fklu_106 {
        font-size: 0.875rem;
    }
}

@media (max-width: 390px) {
    ._content_4fklu_72 {
        padding: 1.125rem 1.25rem 1.25rem;
    }

    ._title_4fklu_94 {
        font-size: 1rem;
    }

    ._excerpt_4fklu_106 {
        font-size: 0.75rem;
    }

    ._latest_4fklu_163 {
        padding: 1.25rem;
    }

    ._latest_4fklu_163 ._title_4fklu_94 {
        font-size: 1rem;
    }

    ._latest_4fklu_163 ._excerpt_4fklu_106 {
        font-size: 0.8125rem;
    }

    ._large_4fklu_121 ._content_4fklu_72 {
        padding: 1.375rem 1.5rem 1.625rem;
    }

    ._large_4fklu_121 ._title_4fklu_94 {
        font-size: 1.1875rem;
    }
}
._item_18z1l_1 {
    display: grid;
    grid-template-columns: minmax(0, 180px) minmax(0, 1fr) auto;
    gap: 2rem;
    padding: 1.35rem 0;
    border-top: 1px solid var(--border-primary);
    color: inherit;
    text-decoration: none;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

._item_18z1l_1:first-child {
    border-top: none;
    padding-top: 0;
}

._meta_18z1l_17 {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(123, 123, 123, 0.75);
}

._date_18z1l_27 {
    white-space: nowrap;
}

._read_18z1l_31 {
    white-space: nowrap;
}

._body_18z1l_35 {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

._title_18z1l_41 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

._excerpt_18z1l_50 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

._chevron_18z1l_57 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 240, 240, 0.35);
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

._item_18z1l_1:hover ._title_18z1l_41 {
    color: rgba(240, 240, 240, 0.92);
}

._item_18z1l_1:hover ._chevron_18z1l_57,
._item_18z1l_1:focus-visible ._chevron_18z1l_57 {
    color: rgba(240, 240, 240, 0.72);
    transform: translateX(2px);
}

._item_18z1l_1:focus-visible {
    outline: none;
}

@media (max-width: 960px) {
    ._item_18z1l_1 {
        grid-template-columns: minmax(0, 150px) minmax(0, 1fr) auto;
        gap: 1.5rem;
    }

    ._title_18z1l_41 {
        font-size: 1.18rem;
    }
}

@media (max-width: 768px) {
    ._item_18z1l_1 {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    ._meta_18z1l_17 {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }

    ._body_18z1l_35 {
        gap: 0.625rem;
    }

    ._title_18z1l_41 {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    ._excerpt_18z1l_50 {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    ._chevron_18z1l_57 {
        display: none;
    }
}

@media (max-width: 540px) {
    ._item_18z1l_1 {
        padding: 1.375rem 0;
        gap: 0.875rem;
    }

    ._title_18z1l_41 {
        font-size: 1.0625rem;
    }

    ._excerpt_18z1l_50 {
        font-size: 0.875rem;
    }
}

@media (max-width: 390px) {
    ._item_18z1l_1 {
        padding: 1.25rem 0;
    }

    ._meta_18z1l_17 {
        font-size: 0.6875rem;
        gap: 0.625rem;
    }

    ._title_18z1l_41 {
        font-size: 1rem;
    }

    ._excerpt_18z1l_50 {
        font-size: 0.8125rem;
    }
}
._section_1crpw_1 {
    position: relative;
    display: block;
    width: 100%;
    max-width: 880px;
    min-height: 280px;
    border-radius: 1.25rem;
    background:
        linear-gradient(140deg, rgba(var(--brand-primary-rgb), 0.16) 0%, rgba(var(--brand-primary-rgb), 0.05) 55%),
        var(--background-secondary);
    border: 1px solid rgba(var(--brand-primary-rgb), 0.32);
    color: var(--text-primary);
    text-decoration: none;
    overflow: hidden;
}

._inner_1crpw_17 {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.6rem 3rem;
}

._heading_1crpw_26 {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-width: 62%;
}

._title_1crpw_33 {
    margin: 0;
    font-size: clamp(1.7rem, 1.6vw + 1.25rem, 2.05rem);
    font-weight: 700;
    letter-spacing: -0.018em;
    color: rgba(255, 255, 255, 0.96);
}

._secondary_1crpw_41 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(240, 244, 255, 0.72);
}

._illustration_1crpw_48 {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 0.5rem;
}

._illustration_1crpw_48 svg {
    width: 78%;
    height: 78%;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 720px) {
    ._inner_1crpw_17 {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.6rem;
        padding: 2.2rem 2.2rem;
    }

    ._heading_1crpw_26 {
        max-width: 100%;
    }

    ._illustration_1crpw_48 {
        width: 108px;
        height: 108px;
    }
}
._container_sxfdl_1 {
    width: 100%;
    min-height: 100vh;
    background: var(--background-primary);
}

._main_sxfdl_7 {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 3.5rem);
    margin: 0 auto;
    padding: clamp(4rem, 6vw, 5rem) clamp(1.5rem, 5vw, 2.75rem) clamp(5rem, 6vw, 6rem);
    max-width: 1120px;
}

._loadingPlaceholder_sxfdl_16 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 4vw, 2.5rem);
}

._skeletonLead_sxfdl_22 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

._skeletonBadge_sxfdl_28,
._skeletonTitle_sxfdl_29,
._skeletonSubtitle_sxfdl_30,
._skeletonBar_sxfdl_31,
._skeletonBarShort_sxfdl_32 {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(100deg, rgba(240, 240, 240, 0.14), rgba(240, 240, 240, 0.05), rgba(240, 240, 240, 0.14));
    background-size: 200% 100%;
    animation: _pulse_sxfdl_1 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

._skeletonBadge_sxfdl_28 {
    width: 120px;
}

._skeletonTitle_sxfdl_29 {
    width: 280px;
    height: 18px;
}

._skeletonSubtitle_sxfdl_30 {
    width: 340px;
    height: 14px;
}

._skeletonList_sxfdl_55 {
    display: flex;
    flex-direction: column;
}

._skeletonRow_sxfdl_60 {
    display: grid;
    grid-template-columns: minmax(0, 180px) 1fr;
    gap: clamp(1.25rem, 4vw, 1.75rem);
    padding: 1.2rem 0;
    border-top: 1px solid var(--border-primary);
}

._skeletonRow_sxfdl_60:first-child {
    padding-top: 0;
    border-top: none;
}

._skeletonMeta_sxfdl_73 {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

._skeletonBody_sxfdl_79 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

._skeletonBody_sxfdl_79 ._skeletonBar_sxfdl_31 {
    width: 70%;
    height: 14px;
}

._skeletonBody_sxfdl_79 ._skeletonBarShort_sxfdl_32 {
    width: 55%;
    height: 12px;
}

@keyframes _pulse_sxfdl_1 {
    0% {
        background-position: 200% 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

._leadSection_sxfdl_107 {
    --lead-offset: clamp(1.75rem, 3vw, 2.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 3rem);
}

._leadPrimary_sxfdl_115 {
    position: sticky;
    top: var(--lead-offset);
    display: flex;
    flex-direction: column;
    align-self: start;
    gap: clamp(0.75rem, 2vw, 1rem);
}

._leadCaption_sxfdl_124 {
    margin: 0;
    padding-left: 1rem;
    border-left: 1px solid var(--border-primary);
    color: rgba(123, 123, 123, 0.85);
    font-size: 0.92rem;
    line-height: 1.55;
}

._leadDigest_sxfdl_133 {
    display: flex;
    flex-direction: column;
}

._digestList_sxfdl_138 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 4vw, 2rem);
    perspective: 1200px;
}

._digestItem_sxfdl_145 {
    padding: 0.5rem 0;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

._digestItem_sxfdl_145:first-child {
    padding-top: 0;
}

._digestItem_sxfdl_145:last-child {
    padding-bottom: 0;
}

._wideCardSlot_sxfdl_159 {
    padding-top: clamp(2.25rem, 6vw, 3rem);
}

._latestSection_sxfdl_163 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    padding-top: clamp(2rem, 5vw, 2.75rem);
    border-top: 1px solid var(--border-primary);
}

._latestHeader_sxfdl_171 {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

._latestTitle_sxfdl_177 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.6rem, 3vw, 1.9rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

._latestSubtitle_sxfdl_185 {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
}

._latestGrid_sxfdl_191 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.75rem, 5vw, 2.5rem);
}

._filtersSection_sxfdl_197 {
    padding: clamp(1.5rem, 4vw, 2rem) 0 clamp(0.75rem, 2vw, 1rem);
    border-top: 1px solid var(--border-primary);
}

._topicList_sxfdl_202 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

._topicButton_sxfdl_211 {
    padding: 0;
    border: none;
    background: none;
    color: rgba(123, 123, 123, 0.92);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

._topicButton_sxfdl_211:hover,
._topicButton_sxfdl_211:focus-visible {
    color: var(--text-primary);
    outline: none;
    text-decoration: underline;
}

._library_sxfdl_229 {
    display: flex;
    flex-direction: column;
    gap: 0;
}

._libraryGroup_sxfdl_235 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.75rem, 4vw, 2.25rem) 0 0;
    border-top: 1px solid var(--border-primary);
}

._libraryGroup_sxfdl_235:first-child {
    padding-top: 0;
    border-top: none;
}

._libraryHeading_sxfdl_248 {
    margin: 0;
    color: rgba(123, 123, 123, 0.82);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

._libraryItems_sxfdl_257 {
    display: flex;
    flex-direction: column;
}

._loadMoreRow_sxfdl_262 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: clamp(1.5rem, 4vw, 2rem);
}

._loadMoreButton_sxfdl_270 {
    padding: 0;
    border: none;
    background: none;
    color: var(--brand-primary);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

._loadMoreButton_sxfdl_270[disabled] {
    opacity: 0.6;
    cursor: default;
}

._loadMoreButton_sxfdl_270:hover:not([disabled]),
._loadMoreButton_sxfdl_270:focus-visible:not([disabled]) {
    color: rgba(var(--brand-primary-rgb), 0.8);
    outline: none;
}

._loadMoreSpinner_sxfdl_294 {
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin-right: 0.5rem;
    border: 2px solid rgba(240, 240, 240, 0.25);
    border-top-color: rgba(240, 240, 240, 0.7);
    border-radius: 50%;
    animation: _rotate_sxfdl_1 0.7s linear infinite;
}

._loadMoreError_sxfdl_306 {
    color: rgba(255, 136, 136, 0.85);
    font-size: 0.82rem;
}

._loading_sxfdl_16,
._empty_sxfdl_312,
._error_sxfdl_313 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 3.75rem) clamp(1.6rem, 4vw, 2rem);
    max-width: 480px;
    border: 1px solid var(--border-primary);
    border-radius: 1.1rem;
    background: var(--background-primary);
    text-align: center;
}

._spinner_sxfdl_328 {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(240, 240, 240, 0.18);
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: _rotate_sxfdl_1 0.85s linear infinite;
}

@keyframes _rotate_sxfdl_1 {
    to {
        transform: rotate(360deg);
    }
}

._loadingText_sxfdl_343 {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

._emptyIcon_sxfdl_349 {
    color: var(--text-secondary);
    opacity: 0.55;
}

._errorIcon_sxfdl_354 {
    color: rgba(255, 136, 136, 0.9);
}

._emptyTitle_sxfdl_358,
._errorTitle_sxfdl_359 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.42rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

._emptyText_sxfdl_367,
._errorText_sxfdl_368 {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

._retryButton_sxfdl_375 {
    padding: 0.65rem 1.4rem;
    border: none;
    border-radius: 999px;
    background: var(--brand-primary);
    color: var(--background-primary);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

._retryButton_sxfdl_375:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

._retryButton_sxfdl_375:active {
    transform: translateY(0);
}

._heroIllustration_sxfdl_396 {
    width: min(100%, 360px);
    height: auto;
}

@media (max-width: 1024px) {
    ._leadSection_sxfdl_107 {
        grid-template-columns: 1fr;
        gap: clamp(1.75rem, 5vw, 2.25rem);
    }

    ._leadPrimary_sxfdl_115 {
        position: static;
        top: auto;
    }

    ._digestItem_sxfdl_145 {
        padding: 0.25rem 0;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    ._main_sxfdl_7 {
        gap: clamp(2rem, 5vw, 2.5rem);
        padding: clamp(2.5rem, 7vw, 3rem) clamp(1.125rem, 5vw, 1.375rem) clamp(3.5rem, 7vw, 4rem);
    }

    ._skeletonRow_sxfdl_60 {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        padding: 1rem 0;
    }

    ._leadSection_sxfdl_107 {
        gap: clamp(1.5rem, 4.5vw, 2rem);
    }

    ._leadCaption_sxfdl_124 {
        padding-left: 0.875rem;
        font-size: 0.875rem;
    }

    ._digestList_sxfdl_138 {
        gap: clamp(1rem, 3.5vw, 1.5rem);
    }

    ._latestGrid_sxfdl_191 {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 4vw, 1.75rem);
    }

    ._latestSection_sxfdl_163 {
        gap: clamp(1rem, 3vw, 1.375rem);
        padding-top: clamp(1.75rem, 4.5vw, 2.25rem);
    }

    ._latestTitle_sxfdl_177 {
        font-size: clamp(1.375rem, 4.5vw, 1.625rem);
    }

    ._latestSubtitle_sxfdl_185 {
        font-size: 0.875rem;
    }

    ._wideCardSlot_sxfdl_159 {
        padding-top: clamp(1.75rem, 5vw, 2.25rem);
    }

    ._filtersSection_sxfdl_197 {
        padding: clamp(1.25rem, 3.5vw, 1.75rem) 0 clamp(0.625rem, 2vw, 0.875rem);
    }

    ._topicList_sxfdl_202 {
        gap: 0.75rem;
    }

    ._topicButton_sxfdl_211 {
        display: flex;
        align-items: center;
        padding: 0.375rem 0;
        min-height: 44px;
        font-size: 0.875rem;
    }

    ._libraryGroup_sxfdl_235 {
        gap: 0.875rem;
        padding: clamp(1.5rem, 4vw, 2rem) 0 0;
    }

    ._libraryHeading_sxfdl_248 {
        font-size: 0.75rem;
    }

    ._loadMoreRow_sxfdl_262 {
        padding-top: clamp(1.25rem, 3.5vw, 1.75rem);
    }

    ._loadMoreButton_sxfdl_270 {
        padding: 0.625rem 0;
        min-height: 44px;
        font-size: 0.875rem;
    }

    ._loading_sxfdl_16,
    ._empty_sxfdl_312,
    ._error_sxfdl_313 {
        gap: 1.125rem;
        padding: clamp(2.5rem, 7vw, 3rem) clamp(1.125rem, 5vw, 1.375rem);
        border-radius: 0.875rem;
    }

    ._emptyTitle_sxfdl_358,
    ._errorTitle_sxfdl_359 {
        font-size: 1.25rem;
    }

    ._emptyText_sxfdl_367,
    ._errorText_sxfdl_368 {
        font-size: 0.875rem;
    }

    ._retryButton_sxfdl_375 {
        padding: 0.75rem 1.5rem;
        min-height: 44px;
        font-size: 0.875rem;
    }
}

@media (max-width: 540px) {
    ._main_sxfdl_7 {
        gap: clamp(1.75rem, 4.5vw, 2.25rem);
        padding: clamp(2rem, 6vw, 2.5rem) clamp(1rem, 4.5vw, 1.25rem) clamp(3rem, 6vw, 3.5rem);
    }

    ._leadSection_sxfdl_107 {
        gap: clamp(1.25rem, 4vw, 1.75rem);
    }

    ._leadCaption_sxfdl_124 {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    ._digestList_sxfdl_138 {
        gap: clamp(0.875rem, 3vw, 1.25rem);
    }

    ._latestGrid_sxfdl_191 {
        gap: clamp(1.125rem, 3.5vw, 1.5rem);
    }

    ._latestSection_sxfdl_163 {
        padding-top: clamp(1.5rem, 4vw, 2rem);
    }

    ._latestTitle_sxfdl_177 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
    }

    ._latestSubtitle_sxfdl_185 {
        font-size: 0.8125rem;
    }

    ._wideCardSlot_sxfdl_159 {
        padding-top: clamp(1.5rem, 4.5vw, 2rem);
    }

    ._topicButton_sxfdl_211 {
        font-size: 0.8125rem;
    }

    ._loadMoreButton_sxfdl_270 {
        font-size: 0.8125rem;
    }
}

@media (max-width: 390px) {
    ._main_sxfdl_7 {
        gap: clamp(1.5rem, 4vw, 2rem);
        padding: clamp(1.75rem, 5.5vw, 2.25rem) clamp(0.875rem, 4vw, 1.125rem) clamp(2.75rem, 5.5vw, 3.25rem);
    }

    ._latestTitle_sxfdl_177 {
        font-size: clamp(1.125rem, 3.5vw, 1.375rem);
    }

    ._topicButton_sxfdl_211,
    ._loadMoreButton_sxfdl_270 {
        font-size: 0.75rem;
    }
}
._section_11yf7_1 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.6rem, 5vw, 2.4rem);
    padding: clamp(1.8rem, 6vw, 2.6rem);
    border: 1px solid rgba(var(--white-rgb), 0.08);
    border-radius: 1.6rem;
    background: linear-gradient(135deg, rgba(var(--white-rgb), 0.05), rgba(var(--white-rgb), 0.02));
    box-shadow:
        0 20px 45px rgba(var(--shadow-base-rgb), 0.28),
        inset 0 0 0 1px rgba(var(--white-rgb), 0.03);
}

._header_11yf7_14 {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

._kicker_11yf7_20 {
    color: rgba(var(--white-rgb), 0.6);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

._title_11yf7_27 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.45rem, 3.8vw, 2rem);
    font-weight: 600;
}

._grid_11yf7_34 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1.2rem, 5vw, 2rem);
}

._card_11yf7_40 {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: clamp(1.2rem, 4vw, 1.7rem);
    border: 1px solid rgba(var(--white-rgb), 0.08);
    border-radius: 1.1rem;
    background: rgba(var(--white-rgb), 0.04);
}

._cardTitle_11yf7_50 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.1rem, 3.2vw, 1.4rem);
    font-weight: 600;
}

._cardDescription_11yf7_57 {
    margin: 0;
    color: rgba(var(--white-rgb), 0.72);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 640px) {
    ._section_11yf7_1 {
        padding: clamp(1.4rem, 8vw, 2rem);
    }

    ._grid_11yf7_34 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
._section_1ue66_1 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.8rem, 5vw, 2.6rem);
}

._card_1ue66_7 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 4vw, 1.8rem);
    padding: clamp(1.8rem, 5vw, 2.6rem);
    border: 1px solid rgba(var(--white-rgb), 0.08);
    border-radius: 1.4rem;
    background: linear-gradient(145deg, rgba(var(--white-rgb), 0.08), rgba(var(--white-rgb), 0.02));
    box-shadow: 0 20px 40px rgba(var(--shadow-base-rgb), 0.28);
}

._title_1ue66_18 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.5rem, 3.2vw, 1.9rem);
    font-weight: 600;
}

._subtitle_1ue66_25 {
    margin: 0;
    color: rgba(var(--white-rgb), 0.78);
    font-size: 1rem;
    line-height: 1.65;
}

._highlight_1ue66_32 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.1rem;
    border: 1px solid rgba(var(--white-rgb), 0.1);
    border-radius: 999px;
    background: rgba(var(--white-rgb), 0.06);
    color: var(--text-primary);
    font-weight: 600;
}

._highlight_1ue66_32 span {
    color: rgba(var(--white-rgb), 0.7);
    font-size: 0.9rem;
}

._list_1ue66_49 {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

._listItem_1ue66_57 {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(var(--white-rgb), 0.78);
    line-height: 1.6;
}

._listItem_1ue66_57::before {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.55rem;
    border-radius: 999px;
    background: rgba(var(--white-rgb), 0.45);
    content: '';
}

@media (max-width: 960px) {
    ._section_1ue66_1 {
        grid-template-columns: minmax(0, 1fr);
    }

    ._highlight_1ue66_32 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    ._card_1ue66_7 {
        padding: clamp(1.4rem, 8vw, 2rem);
    }
}

@media (max-width: 420px) {
    ._highlight_1ue66_32 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}
._section_lx5jq_1 {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(1.8rem, 5vw, 2.6rem);
}

._heading_lx5jq_8 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

._title_lx5jq_14 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 600;
}

._subtitle_lx5jq_21 {
    margin: 0;
    color: rgba(var(--white-rgb), 0.72);
    line-height: 1.6;
}

._list_lx5jq_27 {
    display: grid;
    gap: clamp(1.2rem, 4vw, 1.8rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

._step_lx5jq_35 {
    display: grid;
    gap: 0.5rem;
    padding: clamp(1.1rem, 4vw, 1.6rem);
    border: 1px solid rgba(var(--white-rgb), 0.08);
    border-radius: 1.2rem;
    background: rgba(var(--white-rgb), 0.04);
}

._stepTitle_lx5jq_44 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
}

._stepBody_lx5jq_51 {
    margin: 0;
    color: rgba(var(--white-rgb), 0.75);
    line-height: 1.6;
}

@media (max-width: 960px) {
    ._section_lx5jq_1 {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    ._section_lx5jq_1 {
        gap: clamp(1.4rem, 6vw, 1.9rem);
    }
}
._section_10gbf_1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.4rem, 4vw, 2rem);
}

._card_10gbf_7 {
    display: grid;
    gap: 0.65rem;
    padding: clamp(1.4rem, 4.5vw, 1.9rem);
    border: 1px solid rgba(var(--white-rgb), 0.08);
    border-radius: 1.1rem;
    background: rgba(var(--white-rgb), 0.05);
}

._title_10gbf_16 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
}

._description_10gbf_23 {
    margin: 0;
    color: rgba(var(--white-rgb), 0.74);
    line-height: 1.6;
}

._link_10gbf_29 {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
}

._link_10gbf_29 svg {
    width: 16px;
    height: 16px;
}
._section_81fba_1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(1.2rem, 4vw, 1.8rem);
    padding: clamp(2rem, 6vw, 2.8rem);
    border: 1px solid rgba(var(--white-rgb), 0.1);
    border-radius: 1.6rem;
    background:
        linear-gradient(155deg, rgba(var(--brand-primary-rgb), 0.14), rgba(var(--white-rgb), 0.02)),
        rgba(var(--background-neutral-rgb), 0.24);
}

._title_81fba_14 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.55rem, 3.4vw, 1.95rem);
    font-weight: 600;
}

._description_81fba_21 {
    margin: 0;
    color: rgba(var(--white-rgb), 0.78);
    font-size: 1rem;
    line-height: 1.65;
}

._actions_81fba_28 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    max-width: 100%;
}

._actions_81fba_28 > * {
    flex-shrink: 1;
    min-width: 0;
}

@media (max-width: 640px) {
    ._section_81fba_1 {
        align-items: stretch;
    }

    ._actions_81fba_28 {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    ._actions_81fba_28 > * {
        width: 100%;
        max-width: 100%;
    }
}
._page_u3ovd_1 {
    width: 100%;
    min-height: 100vh;
    background: var(--background-primary);
}

._body_u3ovd_7 {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 7vw, 4.75rem);
    margin: 0 auto;
    padding: clamp(4rem, 6vw, 5rem) clamp(1.5rem, 5vw, 2.75rem) clamp(5rem, 6vw, 6rem);
    max-width: 1120px;
}

._heroIllustration_u3ovd_16 {
    width: min(32vw, 220px);
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(var(--shadow-base-rgb), 0.35));
}

@media (max-width: 768px) {
    ._body_u3ovd_7 {
        gap: clamp(2.4rem, 8vw, 3.25rem);
        padding: clamp(3rem, 8vw, 3.5rem) clamp(1.1rem, 6vw, 1.75rem) clamp(4rem, 10vw, 5rem);
    }

    ._heroIllustration_u3ovd_16 {
        width: min(48vw, 200px);
    }
}

@media (max-width: 480px) {
    ._heroIllustration_u3ovd_16 {
        width: min(64vw, 180px);
    }
}
._section_oyk64_1 {
    padding: var(--section-spacing-lg) 0;
}

._content_oyk64_5 {
    max-width: 960px;
    margin: 0 auto;
}

._title_oyk64_10 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

._subtitle_oyk64_18 {
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

._grid_oyk64_26 {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
}

._card_oyk64_33 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding: 1.25rem;
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    background: rgba(var(--background-tertiary-rgb), 0.3);
    text-align: left;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

._card_oyk64_33:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(var(--shadow-base-rgb), 0.25);
    border-color: var(--brand-primary);
    background: rgba(var(--background-tertiary-rgb), 0.5);
}

._card_oyk64_33:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

._cardSelected_oyk64_59 {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-primary);
    border-color: var(--brand-primary);
}

._badge_oyk64_65 {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-accent);
    color: var(--background-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

._name_oyk64_81 {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.2rem;
}

._priceRow_oyk64_87 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    min-height: 3.5rem;
}
._price_oyk64_87 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

._priceBlur_oyk64_101 {
    filter: blur(12px);
    user-select: none;
    pointer-events: none;
}

._period_oyk64_107 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

._features_oyk64_113 {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    display: grid;
    gap: 0.5rem;
}

._features_oyk64_113 li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5rem;
}

._cta_oyk64_127 {
    margin-top: auto;
    padding: 0.85rem 1rem;
    border-radius: 0.6rem;
    background: var(--brand-primary);
    color: var(--text-inverse);
    font-weight: 700;
    text-align: center;
    transition: opacity 0.2s ease;
}

._cta_oyk64_127:hover {
    opacity: 0.9;
}


@media (max-width: 768px) {
    ._grid_oyk64_26 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    ._grid_oyk64_26 {
        grid-template-columns: 1fr;
    }

    ._content_oyk64_5 {
        padding: 0 1rem;
    }
}



._page_1gf9k_1 {
    width: 100%;
    min-height: 100vh;
    background: var(--background-primary);
    display: flex;
    flex-direction: column;
}

._main_1gf9k_9 {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 4.5rem);
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 4.5rem) clamp(1.5rem, 5vw, 2.75rem) clamp(5rem, 7vw, 6rem);
    width: 100%;
    max-width: 1120px;
}

._pricingSection_1gf9k_19 {
    margin-top: clamp(1rem, 3vw, 1.5rem);
}

._supportingSection_1gf9k_23 {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
}

@media (max-width: 768px) {
    ._main_1gf9k_9 {
        padding: clamp(2.5rem, 9vw, 3.5rem) clamp(1.1rem, 6vw, 1.75rem) clamp(4rem, 10vw, 5.5rem);
        gap: clamp(2.4rem, 8vw, 3.25rem);
    }
}
._page_1ping_1 {
    width: 100%;
    min-height: 100vh;
    background: var(--background-primary);
    display: flex;
    flex-direction: column;
}

._hero_1ping_9 {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-primary);
    padding: calc(72px + clamp(3rem, 8vw, 5rem)) 0 clamp(4rem, 9vw, 6rem);
}

._heroBackground_1ping_16 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    filter: blur(80px);
    mix-blend-mode: screen;
}

._heroInner_1ping_25 {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
}

._badge_1ping_37 {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.8);
    background: rgba(var(--background-neutral-rgb, 36, 36, 36), 0.5);
    border: 1px solid rgba(var(--border-secondary-rgb, 42, 42, 42), 0.7);
    border-radius: 999px;
    backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

._title_1ping_55 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-primary);
    text-wrap: balance;
}

._subtitle_1ping_65 {
    margin: 0;
    font-size: clamp(1.0625rem, 2.4vw, 1.375rem);
    line-height: 1.7;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.92);
    max-width: 64ch;
    font-weight: 400;
}

._meta_1ping_74 {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.75);
    font-weight: 500;
    letter-spacing: 0.01em;
}

._body_1ping_82 {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 6rem) clamp(1.5rem, 5vw, 2.5rem) clamp(6rem, 12vw, 8rem);
    box-sizing: border-box;
}

._document_1ping_90 {
    position: relative;
    background: var(--background-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 2rem;
    padding: clamp(3rem, 7vw, 5rem) clamp(2.5rem, 6vw, 4rem);
    box-shadow:
        0 1px 2px rgba(var(--shadow-base-rgb), 0.04),
        0 8px 16px rgba(var(--shadow-base-rgb), 0.08),
        0 32px 64px rgba(var(--shadow-base-rgb), 0.12);
    min-height: clamp(24rem, 50vh, 36rem);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

._document_1ping_90::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    padding: 1px;
    background: linear-gradient(
        165deg,
        rgba(var(--brand-primary-rgb), 0.1),
        rgba(var(--background-quaternary-rgb, 24, 24, 24), 0.4),
        rgba(var(--background-secondary-rgb, 5, 5, 5), 0.95)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

._document_1ping_90::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 240px;
    background: radial-gradient(
        ellipse at center top,
        rgba(var(--brand-primary-rgb), 0.08),
        transparent 70%
    );
    pointer-events: none;
    opacity: 0.6;
}

._content_1ping_143 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-primary);
}

._content_1ping_143 section {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    border-bottom: 1px solid rgba(var(--border-primary-rgb, 31, 31, 31), 0.5);
    animation: _fadeInUp_1ping_1 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

._content_1ping_143 section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@keyframes _fadeInUp_1ping_1 {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

._content_1ping_143 section:nth-child(1) { animation-delay: 0.05s; }
._content_1ping_143 section:nth-child(2) { animation-delay: 0.1s; }
._content_1ping_143 section:nth-child(3) { animation-delay: 0.15s; }
._content_1ping_143 section:nth-child(4) { animation-delay: 0.2s; }
._content_1ping_143 section:nth-child(5) { animation-delay: 0.25s; }
._content_1ping_143 section:nth-child(6) { animation-delay: 0.3s; }
._content_1ping_143 section:nth-child(7) { animation-delay: 0.35s; }
._content_1ping_143 section:nth-child(8) { animation-delay: 0.4s; }

._content_1ping_143 h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
    scroll-margin-top: 100px;
}

._content_1ping_143 h3 {
    margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
    color: var(--text-primary);
    scroll-margin-top: 100px;
}

._content_1ping_143 p,
._content_1ping_143 li {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.95);
    font-weight: 400;
    letter-spacing: 0.002em;
}

._content_1ping_143 p + p {
    margin-top: 1rem;
}

._content_1ping_143 strong {
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.005em;
}

._content_1ping_143 ul,
._content_1ping_143 ol {
    margin: clamp(0.75rem, 2vw, 1rem) 0;
    padding-left: clamp(1.5rem, 4vw, 2rem);
    display: grid;
    gap: clamp(0.75rem, 2vw, 1rem);
}

._content_1ping_143 li {
    padding-left: 0.5rem;
}

._content_1ping_143 li::marker {
    color: rgba(var(--brand-primary-rgb), 0.6);
    font-weight: 600;
}

._content_1ping_143 a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

._content_1ping_143 a:hover,
._content_1ping_143 a:focus-visible {
    border-bottom-color: var(--brand-primary);
    color: var(--text-primary);
}

._content_1ping_143 code {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 0.9em;
    padding: 0.2em 0.4em;
    background: rgba(var(--background-neutral-rgb, 36, 36, 36), 0.6);
    border: 1px solid var(--border-secondary);
    border-radius: 0.375rem;
    color: rgba(var(--text-primary-rgb, 255, 255, 255), 0.9);
}

._placeholder_1ping_268 {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: clamp(20rem, 45vh, 32rem);
    background: repeating-linear-gradient(
        135deg,
        rgba(var(--border-secondary-rgb, 42, 42, 42), 0.25) 0px,
        rgba(var(--border-secondary-rgb, 42, 42, 42), 0.25) 1px,
        rgba(var(--background-secondary-rgb, 5, 5, 5), 0.95) 1px,
        rgba(var(--background-secondary-rgb, 5, 5, 5), 0.95) 24px
    );
    border-radius: calc(2rem - 2rem);
    opacity: 0.35;
}

._backLink_1ping_285 {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    padding: 0.625rem 1rem 0.625rem 0.875rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--brand-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
    background: rgba(var(--background-neutral-rgb, 36, 36, 36), 0.4);
    border: 1px solid var(--border-primary);
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

._backLink_1ping_285::before {
    content: '←';
    font-size: 1.125rem;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

._backLink_1ping_285:hover,
._backLink_1ping_285:focus-visible {
    background: rgba(var(--background-neutral-rgb, 36, 36, 36), 0.7);
    border-color: var(--border-secondary);
    transform: translateX(-2px);
}

._backLink_1ping_285:hover::before {
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    ._hero_1ping_9 {
        padding: calc(72px + clamp(2.25rem, 9vw, 3rem)) 0 clamp(3rem, 9vw, 4rem);
    }

    ._heroInner_1ping_25 {
        gap: clamp(1.25rem, 5vw, 1.75rem);
    }

    ._badge_1ping_37 {
        align-self: stretch;
        justify-content: center;
        font-size: 0.6875rem;
    }

    ._title_1ping_55 {
        font-size: clamp(2.25rem, 8vw, 3rem);
        text-align: center;
    }

    ._subtitle_1ping_65 {
        text-align: center;
        margin-inline: auto;
        font-size: clamp(1rem, 2.5vw, 1.25rem);
    }

    ._meta_1ping_74 {
        text-align: center;
        font-size: 0.8125rem;
    }

    ._body_1ping_82 {
        padding: clamp(3rem, 10vw, 4.5rem) clamp(1.25rem, 7vw, 1.75rem) clamp(4.5rem, 13vw, 6rem);
    }

    ._document_1ping_90 {
        border-radius: 1.75rem;
        padding: clamp(2.5rem, 8vw, 3.5rem) clamp(1.75rem, 7vw, 2.5rem);
    }

    ._document_1ping_90::before {
        border-radius: 1.75rem;
    }

    ._content_1ping_143 {
        gap: clamp(2rem, 6vw, 3rem);
    }

    ._content_1ping_143 section {
        gap: clamp(1rem, 3vw, 1.5rem);
        padding-bottom: clamp(1.25rem, 4vw, 2rem);
    }

    ._content_1ping_143 h2 {
        font-size: clamp(1.375rem, 4vw, 1.75rem);
    }

    ._content_1ping_143 h3 {
        font-size: clamp(1.0625rem, 3vw, 1.3125rem);
        margin: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(0.625rem, 2vw, 0.875rem);
    }

    ._content_1ping_143 p,
    ._content_1ping_143 li {
        font-size: 1rem;
        line-height: 1.75;
    }

    ._placeholder_1ping_268 {
        border-radius: calc(1.75rem - 1.75rem);
    }

    ._backLink_1ping_285 {
        padding: 0.5625rem 0.875rem 0.5625rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    ._hero_1ping_9 {
        padding: calc(72px + clamp(1.75rem, 10vw, 2.5rem)) 0 clamp(2.5rem, 10vw, 3.5rem);
    }

    ._title_1ping_55 {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    ._subtitle_1ping_65 {
        font-size: clamp(0.9375rem, 2.75vw, 1.125rem);
    }

    ._document_1ping_90 {
        border-radius: 1.5rem;
        padding: clamp(2rem, 10vw, 2.75rem) clamp(1.5rem, 8vw, 2rem);
    }

    ._document_1ping_90::before {
        border-radius: 1.5rem;
    }

    ._content_1ping_143 {
        gap: clamp(1.75rem, 7vw, 2.5rem);
    }

    ._content_1ping_143 section {
        padding-bottom: clamp(1rem, 5vw, 1.75rem);
    }

    ._content_1ping_143 h2 {
        font-size: clamp(1.25rem, 5vw, 1.625rem);
    }

    ._content_1ping_143 p,
    ._content_1ping_143 li {
        font-size: 0.9375rem;
    }

    ._placeholder_1ping_268 {
        border-radius: calc(1.5rem - 1.5rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    ._content_1ping_143 section {
        animation: none;
    }

    ._document_1ping_90,
    ._backLink_1ping_285,
    ._badge_1ping_37,
    ._content_1ping_143 a {
        transition: none;
    }
}
._page_1vy0y_1 {
    min-height: 100vh;
    background: var(--background-primary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 12vw, 6rem) clamp(1.5rem, 6vw, 2.5rem);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

._backdrop_1vy0y_14 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.85;
}

._container_1vy0y_21 {
    max-width: 520px;
    width: 100%;
    text-align: center;
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    position: relative;
    z-index: 1;
}

._code_1vy0y_31 {
    font-size: clamp(4.5rem, 14vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    background: linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.8), rgba(var(--text-secondary-rgb, 140, 144, 154), 0.35));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

._title_1vy0y_41 {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    letter-spacing: -0.025em;
    font-weight: 600;
}

._subtitle_1vy0y_48 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.88);
    max-width: 46ch;
    justify-self: center;
}

._actions_1vy0y_57 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.8rem, 3vw, 1.2rem);
}

._links_1vy0y_64 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.9);
}

._links_1vy0y_64 a {
    color: var(--brand-primary);
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    gap: 0.4rem;
}

._links_1vy0y_64 a::after {
    content: '→';
    font-size: 0.85em;
}

._links_1vy0y_64 a:hover,
._links_1vy0y_64 a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 600px) {
    ._actions_1vy0y_57 {
        flex-direction: column;
        align-items: stretch;
    }

    ._actions_1vy0y_57 > * {
        width: 100%;
    }
}
._page_92546_1 {
    position: relative;
    min-height: 100vh;
    background: var(--background-primary);
    color: var(--text-primary);
}

._background_92546_8 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.9;
}

._wrapper_92546_16 {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: clamp(6rem, 12vw, 8rem) clamp(1.5rem, 5vw, 3rem);
    box-sizing: border-box;
    display: grid;
    align-items: center;
    justify-items: center;
    min-height: 100svh;
}

._inner_92546_29 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap: clamp(2.75rem, 6vw, 4rem);
    width: 100%;
    margin: 0 auto;
    align-items: center;
    box-sizing: border-box;
}

._copy_92546_39 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.4rem, 3vw, 2rem);
    box-sizing: border-box;
}

._copy_92546_39 > * {
    max-width: 60ch;
}


._title_92546_51 {
    margin: 0;
    font-size: clamp(2.6rem, 5.5vw, 3.8rem);
    letter-spacing: -0.03em;
    font-weight: 600;
    text-wrap: balance;
}

._subtitle_92546_59 {
    margin: 0;
    font-size: clamp(1.05rem, 2.3vw, 1.3rem);
    line-height: 1.65;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.92);
}

._meta_92546_66 {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    align-items: center;
    font-size: 0.92rem;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.85);
}

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

._meta_92546_66 a:hover,
._meta_92546_66 a:focus-visible {
    text-decoration: underline;
}

._formCard_92546_85 {
    background: rgba(var(--background-secondary-rgb, 5, 5, 5), 0.88);
    border: 1px solid rgba(var(--border-primary-rgb, 31, 31, 31), 0.85);
    border-radius: 1.75rem;
    padding: clamp(2.4rem, 5vw, 3.2rem);
    box-shadow: 0 28px 64px rgba(var(--shadow-base-rgb), 0.25);
    width: min(100%, 420px);
    box-sizing: border-box;
}

._form_92546_85 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 4vw, 1.8rem);
}

._fieldGroup_92546_101 {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

._fieldGroup_92546_101 label {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.9);
}

._fieldGroup_92546_101 input {
    background: rgba(var(--background-neutral-rgb, 36, 36, 36), 0.85);
    border: 1px solid rgba(var(--border-primary-rgb, 31, 31, 31), 0.9);
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

._fieldGroup_92546_101 input:focus-visible {
    border-color: rgba(var(--brand-primary-rgb), 0.8);
    box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.2);
    outline: none;
}

._submitButton_92546_129 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 1.7rem;
    border-radius: 1rem;
    border: none;
    background: var(--brand-primary);
    color: var(--text-inverse);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

._submitButton_92546_129:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(var(--brand-primary-rgb), 0.3);
}

._submitButton_92546_129:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

._disclaimer_92546_156 {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(var(--text-secondary-rgb, 140, 144, 154), 0.78);
}

._feedbackSuccess_92546_163,
._feedbackError_92546_164 {
    border-radius: 0.9rem;
    padding: 0.95rem 1.05rem;
    font-size: 0.95rem;
    line-height: 1.45;
}

._feedbackSuccess_92546_163 {
    background: rgba(16, 185, 129, 0.17);
    color: #34d399;
}

._feedbackError_92546_164 {
    background: rgba(239, 68, 68, 0.18);
    color: #f87171;
}

@media (max-width: 960px) {
    ._wrapper_92546_16 {
        align-items: start;
        justify-items: center;
        min-height: auto;
    }

    ._inner_92546_29 {
        width: min(100%, 540px);
        grid-template-columns: minmax(0, 1fr);
        gap: clamp(2rem, 8vw, 3rem);
    }

    ._copy_92546_39 {
        align-items: center;
        text-align: center;
        padding-top: clamp(2rem, 10vw, 3.5rem);
    }

    ._copy_92546_39 > * {
        max-width: 48ch;
    }

    ._formCard_92546_85 {
        max-width: 520px;
        margin-inline: auto;
    }
}

@media (max-width: 600px) {
    ._wrapper_92546_16 {
        padding: clamp(4.25rem, 16vw, 5.5rem) clamp(1rem, 7vw, 1.6rem);
        justify-items: stretch;
    }

    ._inner_92546_29 {
        gap: clamp(1.8rem, 10vw, 2.6rem);
        width: min(100%, 480px);
    }

    ._title_92546_51 {
        font-size: clamp(2.05rem, 9vw, 2.6rem);
        padding-top: clamp(0.6rem, 6vw, 1.4rem);
    }

    ._subtitle_92546_59 {
        font-size: clamp(0.95rem, 4.5vw, 1.1rem);
    }

    ._formCard_92546_85 {
        border-radius: 1.4rem;
        padding: clamp(1.9rem, 9vw, 2.4rem);
        width: 100%;
    }

    ._fieldGroup_92546_101 input {
        padding: 0.85rem 0.95rem;
        font-size: 0.95rem;
    }

    ._submitButton_92546_129 {
        width: 100%;
        padding: 0.9rem 1.2rem;
    }

    ._meta_92546_66 {
        justify-content: center;
    }

    ._disclaimer_92546_156 {
        text-align: center;
    }
}
._container_1rmgw_1 {
    display: flex;
    gap: 1rem;
    box-sizing: border-box;
    padding: 1rem;
    width: 100%;
    height: 100vh;
    min-height: 100%;
    background: var(--background-primary);
}

._leftPanel_1rmgw_12 {
    position: relative;
    overflow: clip;
    width: 45%;
    height: 100%;
    border-radius: 50px;
    background: var(--background-primary);
}

._backgroundSvg_1rmgw_21 {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

._content_1rmgw_31 {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.75rem 3.125rem;
    color: var(--text-primary);
    text-align: center;
}

._brand_1rmgw_44 {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.875rem;
    opacity: 0.9;
}

._brand_1rmgw_44 svg {
    height: 1.5rem;
}

._title_1rmgw_55 {
    margin: 0 0 1rem 0;
    color: inherit;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

._subtitle_1rmgw_64 {
    margin-bottom: 2.5rem;
    color: var(--signup-text-step-subtitle);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

._rightPanel_1rmgw_73 {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 2.5rem;
    width: 55%;
    height: 100%;
    border-radius: var(--signup-radius);
    background: var(--background-primary);
}

._formContainer_1rmgw_85 {
    width: 60%;
}

._formTitle_1rmgw_89 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
}

._formSubtitle_1rmgw_96 {
    margin-bottom: 2rem;
    color: var(--text-quaternary);
    font-size: 0.875rem;
    line-height: 1.4;
}

._socialButtons_1rmgw_103 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

._socialButton_1rmgw_103 {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-primary);
    border-radius: 0.5rem;
    background: var(--background-tertiary);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

._socialButton_1rmgw_103:hover {
    border-color: var(--border-secondary);
    background: var(--background-quaternary);
}

._socialIcon_1rmgw_132 {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
}

._divider_1rmgw_138 {
    position: relative;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-align: center;
}

._divider_1rmgw_138::before {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: 1;
    height: 1px;
    background: var(--border-primary);
    content: "";
}

._divider_1rmgw_138 span {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    background: var(--background-primary);
}

._form_1rmgw_85 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

._formRow_1rmgw_170 {
    display: flex;
    gap: 0.75rem;
}

._formField_1rmgw_175 {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.375rem;
}

._label_1rmgw_182 {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

._input_1rmgw_188 {
    box-sizing: border-box;
    min-height: 1.25rem;
    padding: 0.75rem 1rem;
    width: 100%;
    border: 1px solid var(--border-primary);
    border-radius: 0.5rem;
    background: var(--background-tertiary);
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

._input_1rmgw_188:focus {
    border-color: var(--signup-border-focus);
    outline: none;
}

._input_1rmgw_188::placeholder {
    color: var(--text-secondary);
}

._inputError_1rmgw_210 {
    border-color: var(--signup-error);
}

._passwordHint_1rmgw_214 {
    margin-top: 0.125rem;
    color: var(--text-muted);
    font-size: 0.75rem;
}

._errorText_1rmgw_220 {
    color: var(--signup-error);
    font-size: 0.75rem;
}

._authLink_1rmgw_225 {
    margin-top: 1.5rem;
    color: var(--text-quaternary);
    font-size: 0.875rem;
    text-align: center;
}

._authLink_1rmgw_225 a {
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
}

._authLink_1rmgw_225 a:hover {
    text-decoration: underline;
}

._inputWrapper_1rmgw_242 {
    position: relative;
}

._inputWithToggle_1rmgw_246 {
    padding-right: 2.5rem !important;
}

._passwordToggle_1rmgw_250 {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
    border: none;
    border-radius: 0.25rem;
    background: none;
    color: var(--text-secondary);
    line-height: 1;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-50%);
}

._passwordToggle_1rmgw_250:hover {
    background: var(--background-highlight);
    color: var(--text-primary);
}

._passwordToggle_1rmgw_250:focus {
    outline: 2px solid var(--signup-border-focus);
    outline-offset: 0.125rem;
    background: var(--background-highlight);
}

._passwordToggle_1rmgw_250 svg {
    width: 1rem;
    height: 1rem;
    pointer-events: none;
}

._forgotLink_1rmgw_286 {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

._forgotLink_1rmgw_286:hover {
    text-decoration: underline;
}

._signupSteps_1rmgw_298 {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    width: 100%;
    max-width: 23.875rem;
}

._signupStep_1rmgw_298 {
    display: flex;
    align-items: center;
    gap: 1rem;
    box-sizing: border-box;
    min-height: 4.125rem;
    padding: 1.3125rem 1.0625rem;
    border-radius: 0.9375rem;
}

._stepActive_1rmgw_316 {
    background: var(--signup-bg-step-active);
}

._stepInactive_1rmgw_320 {
    background: var(--signup-bg-step-inactive);
}

._stepNumber_1rmgw_324 {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 500;
}

._stepNumberActive_1rmgw_336 {
    background: var(--background-primary);
    color: var(--text-primary);
}

._stepNumberInactive_1rmgw_341 {
    background: var(--signup-step-gray);
    color: var(--signup-text-step-inactive);
}

._stepText_1rmgw_346 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

._stepTextActive_1rmgw_352 {
    color: var(--signup-text-step-active);
}

._stepTextInactive_1rmgw_356 {
    color: var(--signup-text-step-inactive);
}

._message_1rmgw_360 {
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

._messageSuccess_1rmgw_367 {
    border: 1px solid var(--signup-success);
    background: rgba(16, 185, 129, 0.1);
    color: var(--signup-success);
}

._messageError_1rmgw_373 {
    border: 1px solid var(--signup-error);
    background: rgba(239, 68, 68, 0.1);
    color: var(--signup-error);
}

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

@media (max-width: 1024px) {
    ._container_1rmgw_1 {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    ._leftPanel_1rmgw_12,
    ._rightPanel_1rmgw_73 {
        width: 100%;
    }

    ._leftPanel_1rmgw_12 {
        height: 18.75rem;
    }

    ._rightPanel_1rmgw_73 {
        flex: 1;
        min-height: 25rem;
    }

    ._content_1rmgw_31 {
        padding: 2.5rem;
    }

    ._title_1rmgw_55 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    ._container_1rmgw_1 {
        padding: 0.5rem;
    }

    ._rightPanel_1rmgw_73 {
        padding: 1.5rem;
    }

    ._socialButtons_1rmgw_103 {
        flex-direction: column;
    }

    ._formRow_1rmgw_170 {
        flex-direction: column;
        gap: 1rem;
    }

    ._content_1rmgw_31 {
        padding: 2rem 1.5rem;
    }

    ._title_1rmgw_55 {
        font-size: 1.75rem;
    }

    ._formContainer_1rmgw_85 {
        width: 90%;
    }
}

@media (min-width: 900px) {
    ._leftPanel_1rmgw_12 {
        border-radius: 50px;
    }
}
