:root {
    --bg-color: #0b0f19;
    --bg-color-alt: #131b2c;
    --text-color: #ffffff;
    --text-color-muted: #94a3b8;
    --primary-color: #8b5cf6;
    /* Violet */
    --primary-hover: #7c3aed;
    --accent-color: #f59e0b;
    /* Gold */
    --border-color: #1e293b;
    --card-bg: #0f172a;
    --faq-section-bg:
        radial-gradient(140% 120% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 45%),
        linear-gradient(180deg, #101318 0%, #0d1117 55%, #0a0e14 100%);

    --font-family-display-en: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-family-reading-en: 'SF Pro Text', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-family-ko: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    --font-family-display: var(--font-family-display-en);
    --font-family-reading: var(--font-family-reading-en);
    --font-family: var(--font-family-display);
    --container-width: 1200px;
    --page-inline-gutter: clamp(1.15rem, 2.8vw, 1.5rem);
    --nav-scroll-offset: 2rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-scroll-offset);
}

html[lang="ko"] {
    --font-family-display: var(--font-family-ko);
    --font-family-reading: var(--font-family-ko);
    --font-family: var(--font-family-ko);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

:lang(ko) {
    font-family: var(--font-family-ko);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea,
option {
    font-family: inherit;
}

:where(p,
    li,
    h3,
    h4,
    button,
    input,
    select,
    textarea,
    option,
    .btn,
    .badge,
    .feature-badge,
    .popular-badge,
    .text-sm,
    .nav-links a:not(.btn),
    .footer-links a,
    .page-language-shell,
    .page-language-panel,
    .page-language-option,
    .multilingual-showcase,
    .plan-feature-popover,
    .boost-option__copy) {
    font-family: var(--font-family-reading);
}

:where(h1,
    h2,
    .logo-wordmark,
    .hero-subtext,
    .hero-subtext *,
    .conclusion-text,
    .conclusion-highlight,
    .poster-line,
    .plan-price,
    .plan-price *) {
    font-family: var(--font-family-display);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--page-inline-gutter);
}

section[id] {
    scroll-margin-top: var(--nav-scroll-offset);
}

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

.text-gray {
    color: var(--text-color-muted);
}

.text-sm {
    font-size: 0.875rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-auto {
    margin-top: auto;
}

/* Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.trial-cta-btn.btn-large {
    padding: 0.72rem 1.48rem;
    font-size: 1rem;
    line-height: 1.2;
}

.btn-nav-login {
    min-width: 120px;
    padding-inline: 0.82rem;
    font-size: 0.96rem;
}

.btn-download-cta {
    --download-cta-icon-gap: 0.34rem;
    --download-cta-hover-shift: 60%;
    isolation: isolate;
}

.btn-download-cta.is-open,
.btn-download-cta.is-arming,
.btn-download-cta.is-pinned {
    z-index: 229;
}

.btn-download-cta__text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--download-cta-icon-gap);
    min-width: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.btn-download-cta__text--default {
    opacity: 1;
    transform: translateY(0);
}

.btn-download-cta__text--hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(var(--download-cta-hover-shift));
    padding-inline: 0.95rem;
    letter-spacing: -0.01em;
    pointer-events: none;
}

.btn-download-cta__label {
    white-space: nowrap;
}

.btn-download-cta__hover-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    flex-shrink: 0;
}

.download-cta-trigger__system,
.download-cta-trigger__chevrons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-cta-trigger__system-svg,
.download-cta-option__system-svg,
.download-cta-modal-submit-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.download-cta-modal-submit-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-cta-trigger__system-computer {
    background: url('/assets/plan_icon_computer.png') center / contain no-repeat;
    opacity: 0.92;
    transform: scale(1.18);
    transform-origin: center;
}

.download-cta-trigger__chevrons-svg,
.download-cta-modal-submit-icon svg {
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.download-submit-spinner {
    animation: download-submit-spin 0.82s linear infinite;
    transform-origin: center;
}

.download-submit-spinner circle {
    opacity: 0.24;
}

@keyframes download-submit-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-download-cta:hover .btn-download-cta__text--default,
.btn-download-cta:focus-visible .btn-download-cta__text--default,
.btn-download-cta.is-open .btn-download-cta__text--default,
.btn-download-cta.is-arming .btn-download-cta__text--default,
.btn-download-cta.is-pinned .btn-download-cta__text--default {
    opacity: 0;
    transform: translateY(calc(var(--download-cta-hover-shift) * -1));
}

.btn-download-cta:hover .btn-download-cta__text--hover,
.btn-download-cta:focus-visible .btn-download-cta__text--hover,
.btn-download-cta.is-open .btn-download-cta__text--hover,
.btn-download-cta.is-arming .btn-download-cta__text--hover,
.btn-download-cta.is-pinned .btn-download-cta__text--hover {
    opacity: 1;
    transform: translateY(0);
}

.btn-download-cta.is-mobile-static .btn-download-cta__text--default,
.btn-download-cta.is-mobile-static:hover .btn-download-cta__text--default,
.btn-download-cta.is-mobile-static:focus-visible .btn-download-cta__text--default,
.btn-download-cta.is-mobile-static.is-open .btn-download-cta__text--default,
.btn-download-cta.is-mobile-static.is-arming .btn-download-cta__text--default,
.btn-download-cta.is-mobile-static.is-pinned .btn-download-cta__text--default {
    opacity: 1;
    transform: translateY(0);
}

.btn-download-cta.is-mobile-static .btn-download-cta__text--hover,
.btn-download-cta.is-mobile-static:hover .btn-download-cta__text--hover,
.btn-download-cta.is-mobile-static:focus-visible .btn-download-cta__text--hover,
.btn-download-cta.is-mobile-static.is-open .btn-download-cta__text--hover,
.btn-download-cta.is-mobile-static.is-arming .btn-download-cta__text--hover,
.btn-download-cta.is-mobile-static.is-pinned .btn-download-cta__text--hover {
    opacity: 0;
    transform: translateY(var(--download-cta-hover-shift));
}

.btn-download-cta.is-arming .download-cta-trigger__chevrons {
    animation: download-cta-stab 0.58s ease-in-out 1;
}

.trial-cta-btn.btn-large.btn-download-cta {
    min-width: 120px;
    padding-inline: 1.08rem;
}

.download-cta-shell {
    position: relative;
}

.download-cta-overlay {
    position: fixed;
    inset: 0;
    z-index: 211;
    background: rgba(5, 10, 19, 0.22);
    backdrop-filter: blur(14px) saturate(85%);
    -webkit-backdrop-filter: blur(14px) saturate(85%);
    opacity: 0;
    transition: opacity 180ms ease;
}

.download-cta-overlay[hidden],
.download-cta-panel[hidden],
.download-cta-modal[hidden],
.download-cta-modal-card[hidden] {
    display: none !important;
}

.download-cta-shell.is-open .download-cta-overlay,
.download-cta-shell.is-closing .download-cta-overlay,
.download-cta-shell.is-modal-open .download-cta-overlay,
.download-cta-shell.is-modal-closing .download-cta-overlay {
    opacity: 1;
}

.download-cta-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 230;
    width: min(252px, calc(100vw - 32px));
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.download-cta-shell.is-open .download-cta-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.download-cta-shell.is-closing .download-cta-panel {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    pointer-events: none;
}

.download-cta-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.download-cta-option {
    width: 100%;
    padding: 0.98rem 1.08rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.15);
    color: #f3f7ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    text-align: left;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.download-cta-option__label {
    flex: 1 1 auto;
    min-width: 0;
}

.download-cta-option__version {
    flex: 0 0 auto;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #8f4452;
}

.download-cta-option__trailing-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.82);
}

.download-cta-option:hover,
.download-cta-option:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(199, 210, 255, 0.22);
    background: rgba(130, 157, 255, 0.4);
    color: #ffffff;
    outline: none;
}

.download-cta-option:hover .download-cta-option__version,
.download-cta-option:focus-visible .download-cta-option__version {
    color: #a65061;
}

.download-cta-option:hover .download-cta-option__trailing-icon,
.download-cta-option:focus-visible .download-cta-option__trailing-icon {
    color: #ffffff;
}

.download-cta-modal {
    position: fixed;
    inset: 0;
    z-index: 231;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.download-cta-shell.is-modal-open .download-cta-modal {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.download-cta-shell.is-modal-closing .download-cta-modal {
    opacity: 0;
    transform: translateY(12px) scale(0.975);
    pointer-events: none;
}

body.download-cta-is-open .navbar {
    z-index: 228;
}

.download-cta-active-scope {
    position: relative;
    z-index: 228;
}

.btn-download-cta.download-cta-is-portaled {
    position: fixed;
    margin: 0 !important;
    z-index: 229;
}

.download-cta-trigger-placeholder {
    pointer-events: none;
    visibility: hidden;
}

.download-cta-modal-card {
    padding: clamp(1.35rem, 3vw, 1.9rem);
    border-radius: 26px;
    border: 1px solid rgba(184, 198, 239, 0.18);
    background: linear-gradient(180deg, rgba(15, 22, 37, 0.15), rgba(9, 14, 27, 0.15));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
    display: flex;
    flex-direction: column;
}

.download-cta-modal-card--email {
    width: min(420px, 100%);
    align-items: center;
    text-align: center;
}

.download-cta-modal-card--guide {
    position: relative;
    width: min(1020px, 100%);
    padding: clamp(1.2rem, 2.4vw, 1.65rem);
    align-items: stretch;
    text-align: left;
}

.download-guide-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 999px;
    background: rgba(16, 25, 41, 0.45);
    color: rgba(220, 234, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.download-guide-modal-close:hover,
.download-guide-modal-close:focus-visible {
    border-color: rgba(139, 92, 246, 0.52);
    background: rgba(32, 43, 68, 0.72);
    color: #ffffff;
    outline: none;
}

.download-guide-modal-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    margin-bottom: 0.95rem;
    padding-right: 2rem;
}

.download-guide-modal-downloaded {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #34d399;
}

.download-guide-modal-downloaded-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
}

.download-guide-status-spinner {
    width: 1rem;
    height: 1rem;
}

.download-guide-status-check {
    width: 1rem;
    height: 1rem;
}

.download-guide-status-check circle,
.download-guide-status-check path {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.download-guide-modal-title {
    margin: 0;
    font-size: clamp(1.45rem, 2.2vw, 2.2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #f8fbff;
}

.download-guide-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.download-guide-step {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background:
        radial-gradient(120% 140% at 50% 0%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 44%),
        linear-gradient(180deg, rgba(14, 20, 33, 0.82), rgba(9, 14, 24, 0.84));
    padding: 0.65rem;
    display: grid;
    gap: 0.62rem;
    align-content: start;
}

.download-guide-step-index {
    position: absolute;
    left: 0.55rem;
    top: 0.55rem;
    min-width: 1.55rem;
    height: 1.55rem;
    padding-inline: 0.3rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(106, 176, 255, 0.95), rgba(88, 147, 255, 0.95));
    color: #061125;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.download-guide-step-media-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 6, 14, 0.4);
}

.download-guide-step-media {
    width: 100%;
    display: block;
}

.download-guide-step-copy {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #dbe8ff;
}

.download-guide-step-copy--with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.46rem;
    text-align: center;
}

.download-guide-step-copy-icon {
    width: 1.05rem;
    height: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #8dc2ff;
}

.download-guide-step-copy-icon-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.download-guide-modal-help-row {
    margin: 0.95rem 0 0;
    text-align: center;
    color: rgba(206, 219, 243, 0.84);
    font-size: 0.94rem;
    line-height: 1.45;
}

.download-guide-modal-help-link {
    color: #8cb4ff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
    transition: color 140ms ease;
}

.download-guide-modal-help-link:hover,
.download-guide-modal-help-link:focus-visible {
    color: #c9dbff;
    outline: none;
}

.download-guide-modal-again-row {
    margin: 0.95rem 0 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: #b8c3db;
    font-size: 0.95rem;
}

.download-guide-modal-again-link {
    color: #8cb4ff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
    transition: color 140ms ease;
}

.download-guide-modal-again-link:hover,
.download-guide-modal-again-link:focus-visible {
    color: #c9dbff;
    outline: none;
}

.download-guide-modal-again-link.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.download-cta-modal-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.95rem, 4vw, 2.7rem);
    line-height: 1.04;
    font-weight: 700;
}

.download-cta-modal-copy {
    margin: 0 0 1.4rem;
    color: var(--text-color-muted);
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    line-height: 1.55;
}

.download-cta-modal-form {
    width: min(340px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.download-cta-modal-input {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(124, 232, 249, 0.24);
    background: rgba(10, 18, 30, 0.4);
    color: #eef6ff;
    font: inherit;
    font-size: 0.98rem;
    text-align: left;
    caret-color: #eef6ff;
}

.download-cta-modal-input::placeholder {
    color: rgba(191, 204, 234, 0.6);
}

.download-cta-modal-input:focus-visible {
    outline: 2px solid rgba(189, 214, 255, 0.9);
    outline-offset: 1px;
}

.download-cta-modal-submit {
    width: auto;
    min-height: 46px;
    padding: 0 20px 0 18px;
    border-radius: 15px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    background:
        radial-gradient(120% 140% at 50% 0%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, rgba(190, 165, 255, 0.98) 0%, rgba(139, 92, 246, 0.98) 34%, rgba(104, 55, 220, 0.99) 100%);
    color: #fff8ea;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.52rem;
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 14px 28px rgba(91, 45, 194, 0.38),
        0 0 18px rgba(245, 158, 11, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -2px 0 rgba(52, 20, 126, 0.34);
    transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease, border-color 140ms ease;
}

.download-cta-modal-submit::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 44%);
    pointer-events: none;
    z-index: 0;
}

.download-cta-modal-submit>* {
    position: relative;
    z-index: 1;
}

.download-cta-modal-submit:hover,
.download-cta-modal-submit:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.04);
    border-color: rgba(245, 158, 11, 0.38);
    box-shadow:
        0 18px 34px rgba(101, 50, 206, 0.44),
        0 0 24px rgba(245, 158, 11, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -2px 0 rgba(52, 20, 126, 0.34);
    outline: none;
}

.download-cta-modal-submit:disabled {
    cursor: wait;
    filter: saturate(0.94);
    box-shadow:
        0 10px 20px rgba(91, 45, 194, 0.26),
        0 0 12px rgba(245, 158, 11, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.download-cta-modal-submit:disabled:hover,
.download-cta-modal-submit:disabled:focus-visible {
    transform: none;
}

.download-cta-modal-submit .download-cta-modal-submit-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(11, 15, 25, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.download-cta-modal-submit .download-cta-modal-submit-icon svg {
    width: 14px;
    height: 14px;
}

.download-cta-modal-status {
    width: min(340px, 100%);
    margin-top: 0.95rem;
    padding: 0;
    border: none;
    background: none;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.45;
    text-align: center;
    color: #ffd667;
    text-shadow:
        0 0 10px rgba(245, 158, 11, 0.38),
        0 0 22px rgba(245, 158, 11, 0.14);
    animation: download-cta-status-blink 0.96s ease-in-out infinite alternate;
}

.download-cta-modal-status.is-success,
.download-cta-modal-status.is-error {
    color: #ffd667;
}

@keyframes download-cta-status-blink {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.34;
    }
}

@keyframes download-cta-stab {
    0%,
    100% {
        transform: translateY(0);
    }

    18% {
        transform: translateY(5px);
    }

    32% {
        transform: translateY(-1px);
    }

    52% {
        transform: translateY(6px);
    }

    68% {
        transform: translateY(-1px);
    }

    86% {
        transform: translateY(4px);
    }
}

.btn-block {
    width: 100%;
    display: flex;
}

.coming-soon-btn {
    overflow: visible;
    isolation: isolate;
    cursor: not-allowed;
}

.coming-soon-btn__label {
    position: relative;
    z-index: 1;
}

.coming-soon-btn__bandage {
    position: absolute;
    left: -12%;
    top: 50%;
    width: 124%;
    height: clamp(16px, 1.8vw, 21px);
    transform: translateY(-50%) rotate(-12deg);
    border-radius: 999px;
    background: linear-gradient(180deg, #f7e4b5 0%, #ebcc8e 54%, #d8aa67 100%);
    box-shadow: 0 8px 18px rgba(33, 20, 6, 0.24), inset 0 1px 0 rgba(255, 249, 231, 0.7);
    z-index: 3;
    pointer-events: none;
}

.coming-soon-btn__bandage::before {
    content: "";
    position: absolute;
    left: 34%;
    top: 18%;
    width: 32%;
    height: 64%;
    border-radius: 999px;
    background:
        repeating-linear-gradient(90deg,
            rgba(208, 164, 101, 0.12) 0,
            rgba(208, 164, 101, 0.12) 6px,
            rgba(244, 226, 188, 0.04) 6px,
            rgba(244, 226, 188, 0.04) 12px),
        linear-gradient(180deg, #f2d8a5 0%, #e7c486 100%);
    box-shadow: inset 0 0 0 1px rgba(175, 125, 61, 0.16);
}

.coming-soon-btn__bandage::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image:
        radial-gradient(circle at 18% 50%, rgba(164, 122, 62, 0.26) 0 1.1px, transparent 1.2px),
        radial-gradient(circle at 82% 50%, rgba(164, 122, 62, 0.26) 0 1.1px, transparent 1.2px);
    background-size: 18px 100%;
    background-repeat: repeat-x;
    opacity: 0.45;
}

.coming-soon-btn__note {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(34%, -110%) rotate(-6deg);
    z-index: 4;
    pointer-events: none;
    font-family: 'Caveat', cursive;
    font-size: clamp(1rem, 1.9vw, 1.55rem);
    line-height: 1;
    color: #fff2c7;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.34);
    white-space: nowrap;
}

.coming-soon-btn__note::after {
    content: none;
}

.nav-links .coming-soon-btn__note {
    transform: translate(18%, -108%) rotate(-7deg);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(180deg, #a78cff 0%, var(--primary-color) 30%, var(--primary-hover) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: white;
    box-shadow: 0 12px 20px rgba(124, 58, 237, 0.35), inset 0 -3px 0 rgba(255, 255, 255, 0.12);
    transform: translateY(0);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #b28eff 0%, var(--primary-hover) 100%);
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(124, 58, 237, 0.4), inset 0 -4px 0 rgba(255, 255, 255, 0.16);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 8px 12px rgba(124, 58, 237, 0.3), inset 0 2px 0 rgba(0, 0, 0, 0.15);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.62) 50%, transparent 65%);
    transform: skewX(-20deg) translateX(-180%);
    opacity: 0;
    pointer-events: none;
    animation: btn-shimmer 3.4s infinite;
}

@keyframes btn-shimmer {
    0% {
        transform: skewX(-20deg) translateX(-180%);
        opacity: 0;
    }

    8% {
        opacity: 0.8;
    }

    40% {
        transform: skewX(-20deg) translateX(280%);
        opacity: 0;
    }

    100% {
        transform: skewX(-20deg) translateX(280%);
        opacity: 0;
    }
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background-color: rgba(139, 92, 246, 0.05);
}

/* Typography */
h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3.25rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--text-color-muted);
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(11, 15, 25, 0.72);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    padding: 0.78rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-wordmark {
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.nav-links .btn {
    padding: 0.42rem 0.95rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0 2.25rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(160% 90% at 50% 2%, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0) 48%),
        linear-gradient(180deg, rgba(10, 15, 29, 0.98) 0%, #0b0f19 52%, #090d14 100%);
}

.hero h1 {
    white-space: nowrap;
    width: 100%;
    margin: 0 auto 1.5rem;
    text-align: center;
    padding: 0;
    text-indent: 0;
}

.hero-title-mirror {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    white-space: nowrap !important;
    text-align: center !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.hero-title {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    white-space: nowrap !important;
    text-align: center !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.hero-title-wrap {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-title-wrap:last-child {
    margin-bottom: 0;
}

.hero-title-wrap:last-child {
    margin-bottom: 0;
}

.hero-title-wrap .hero-title {
    margin: 0;
}

.hero-title-wrap .hero-title-mirror {
    margin: 0;
}

.hero-title-break {
    display: none;
}

/* Subtle background glow effect */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    width: min(100%, 768px);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-icon-float-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-float-icon {
    position: absolute;
    width: clamp(4.4rem, 7vw, 6.2rem);
    height: clamp(4.4rem, 7vw, 6.2rem);
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.26)) drop-shadow(0 0 16px rgba(139, 92, 246, 0.38));
    transition: opacity 0.2s ease;
    animation: hero-icon-glow-pulse 2.2s ease-in-out infinite;
    will-change: transform;
}

.hero-float-icon.is-ready {
    opacity: 0.98;
}

.hero-float-icon:nth-child(2) {
    animation-delay: 0.22s;
}

.hero-float-icon:nth-child(3) {
    animation-delay: 0.44s;
}

.hero-float-icon:nth-child(4) {
    animation-delay: 0.66s;
}

.hero-float-icon:nth-child(5) {
    animation-delay: 0.88s;
}

.hero-float-icon:nth-child(6) {
    animation-delay: 1.1s;
}

@keyframes hero-icon-glow-pulse {
    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.26)) drop-shadow(0 0 16px rgba(139, 92, 246, 0.38));
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(192, 132, 252, 0.48)) drop-shadow(0 0 30px rgba(139, 92, 246, 0.64));
    }
}

.hero-text .badge,
.hero-text .hero-title-wrap,
.hero-text .hero-subtext,
.hero-text .hero-desc,
.hero-text .hero-cta-group,
.hero-text .hero-note {
    position: relative;
    z-index: 1;
}

.hero-visual {
    width: min(100%, 960px);
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.2rem;
    line-height: 1.28;
    letter-spacing: -0.02em;
    width: 100%;
    max-width: 100%;
    padding: 0;
    padding-bottom: 0.12em;
}

.hero-subtext-slider {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    min-height: 1.55em;
}

.hero-subtext-slide {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    animation: hero-subtext-slide 9s linear infinite;
    color: #ffffff;
    white-space: nowrap;
    font-size: clamp(1.4rem, 5.8vw, 3rem);
    line-height: 1.2;
}

.hero-subtext-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-subtext-slide:nth-child(2) {
    animation-delay: 3s;
}

.hero-subtext-slide:nth-child(3) {
    animation-delay: 6s;
}

@keyframes hero-subtext-slide {

    0%,
    4%,
    33.333%,
    100% {
        opacity: 0;
        transform: translateY(40%);
    }

    8%,
    28% {
        opacity: 1;
        transform: translateY(0);
    }

    31% {
        opacity: 0;
        transform: translateY(-40%);
    }
}

.hero-desc {
    font-size: 1.02rem;
    line-height: 1.2;
    margin-bottom: 1.75rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-desc-break {
    display: none;
}

.hero-desc-inline-space {
    display: inline;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    justify-content: center;
}

.hero-note {
    margin-top: -0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-color-muted);
    font-weight: 500;
}

.hero-note.cta-note-cycle {
    width: min(100%, 34rem);
    min-height: 2.7em;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: color 200ms ease, opacity 200ms ease, text-shadow 200ms ease, transform 200ms ease;
}

.hero-note.cta-note-cycle[data-cta-note="stats"] {
    color: #f6d08f;
    text-shadow: 0 0 20px rgba(246, 208, 143, 0.28);
}

.hero-note.cta-note-cycle.is-cta-note-flashing {
    animation: cta-note-flash 640ms ease;
}

@keyframes cta-note-flash {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    26% {
        opacity: 0.18;
        transform: translateY(-2px) scale(0.98);
    }

    56% {
        opacity: 1;
        transform: translateY(0) scale(1.02);
    }

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

.hero-perfect-for {
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 42px rgba(139, 92, 246, 0.28), 0 0 96px rgba(139, 92, 246, 0.18);
}

.video-placeholder__media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
    background: #050816;
}

.video-placeholder__loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    opacity: 1;
    transition: opacity 220ms ease;
}

.video-placeholder__loader.is-hidden {
    opacity: 0;
}

.video-placeholder__loader-logo {
    width: 68px;
    height: auto;
    opacity: 0.92;
}

.video-placeholder__fallback {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    margin: 0;
    padding: 0.75rem 0.9rem;
    border-radius: 999px;
    background: rgba(7, 11, 21, 0.78);
    border: 1px solid rgba(226, 232, 240, 0.18);
    color: #d8e2f1;
    font-size: 0.82rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.video-placeholder::after {
    content: '';
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(139, 92, 246, 0.18), rgba(139, 92, 246, 0.55), rgba(245, 158, 11, 0.26), rgba(139, 92, 246, 0.34));
    opacity: 0.82;
    mix-blend-mode: screen;
    filter: blur(1.4px);
    pointer-events: none;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 10px;
    background: radial-gradient(circle at center, rgba(11, 15, 25, 0.55) 18%, rgba(15, 23, 42, 0.82) 55%, rgba(11, 15, 25, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

.placeholder-content {
    position: relative;
    z-index: 2;
}

.video-placeholder.sm {
    aspect-ratio: 4/3;
}

.video-placeholder--hero {
    min-height: 320px;
}

.video-placeholder--hero::before {
    opacity: 0;
}

.video-placeholder--hero::after {
    z-index: 0;
    opacity: 0.42;
}

.video-placeholder--feature::before {
    opacity: 0;
}

.video-placeholder--feature::after {
    z-index: 0;
    opacity: 0.28;
}

.placeholder-content {
    text-align: center;
    color: var(--text-color-muted);
}

.placeholder-content svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Problem Section */
.problem-section {
    padding: 2.5rem 0;
    background: var(--faq-section-bg);
}

.section-lead {
    max-width: 768px;
    margin: 0 auto 2rem;
    font-size: 1.02rem;
    line-height: 1.2;
}

.problem-title {
    white-space: normal;
    line-height: 1.15;
    font-size: clamp(1.3rem, 5.8vw, 3.25rem);
}

.problem-title-break {
    display: block;
}

.boost-title-break {
    display: none;
}

.pricing-title-break {
    display: none;
}

.solution-footer-break {
    display: none;
}

.solution-mobile-break {
    display: none;
}

.gap-cards {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.33rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.45rem;
    scrollbar-width: none;
}

.gap-cards::-webkit-scrollbar {
    display: none;
}

.gap-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 270px;
    scroll-snap-align: start;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.gap-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-left: 0.83rem;
    padding-right: 0.83rem;
}

.gap-card .icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(22rem, 100%);
    height: min(22rem, 100%);
    transform: translate(-50%, -50%);
    margin: 0;
    background: none;
    border: 0;
    border-radius: 0;
    color: rgba(139, 92, 246, 0.19);
    pointer-events: none;
}

.gap-card .icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.gap-card p {
    font-size: 1.02rem;
    line-height: 1.2;
}

.gap-card h3 {
    margin-bottom: 0.375rem;
}

.gap-card h3,
.gap-card p {
    position: relative;
    z-index: 1;
}

.carousel-pagination {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    margin-top: 0.7rem;
}

.carousel-pagination__dot {
    appearance: none;
    border: none;
    width: 0.4rem;
    height: 0.4rem;
    padding: 0;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.26);
    box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.14);
    cursor: pointer;
    transition:
        width 0.22s ease,
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        opacity 0.22s ease;
    opacity: 0.92;
}

.carousel-pagination__dot:hover {
    background: rgba(139, 92, 246, 0.42);
    transform: translateY(-1px);
}

.carousel-pagination__dot:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(139, 92, 246, 0.22),
        inset 0 0 0 1px rgba(139, 92, 246, 0.18);
}

.carousel-pagination__dot.is-active {
    width: 1.06rem;
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.98), rgba(124, 58, 237, 0.96));
    box-shadow:
        0 8px 16px rgba(124, 58, 237, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.icon-wrapper.center {
    margin: 0 auto 1.5rem;
}

.security-lock {
    width: 144px;
    height: 144px;
    background: none;
    border: none;
    box-shadow: none;
    color: var(--primary-color);
    margin: 0 auto 1.33rem;
}

.security-lock svg {
    width: 100%;
    height: 100%;
    opacity: 0.16;
    animation: security-lock-glow 3.2s ease-in-out infinite;
}

.problem-conclusion {
    padding: 2rem 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 16px;
}

.conclusion-text {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.conclusion-highlight {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.conclusion-highlight .text-gradient {
    padding: 0 0.05em 0.1em;
}

/* Solution Banner */
.solution-section {
    padding: 2.5rem 0;
    background:
        radial-gradient(160% 90% at 50% 2%, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0) 48%),
        linear-gradient(180deg, rgba(10, 15, 29, 0.98) 0%, #0b0f19 52%, #090d14 100%);
}

.solution-section .badge {
    margin-bottom: 1rem;
}

section {
    position: relative;
}

section+section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    pointer-events: none;
}

.pricing-section .badge {
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.features-section .badge {
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.faq-section .badge {
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    pointer-events: none;
}

.solution-banner {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0.1rem 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-title {
    margin-top: 0;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.solution-title-logo {
    width: 3.45rem;
    height: 3.45rem;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
    transform-origin: center;
    will-change: transform;
    animation: koala-trigger-vibrate 3s infinite;
}

/* Subtle top glow */
.solution-banner::before {
    content: none;
}

.solution-lead {
    font-size: 1.12rem;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.solution-desc {
    margin-bottom: 0.5rem;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    width: min(34rem, 100%);
    margin: 0 auto 1rem;
    transform: translateX(70px);
}

.solution-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-color);
}

.solution-list .check-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
}

.solution-footer {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.solution-footer-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Features Rows */
.features-section {
    padding: 2.5rem 0 4rem;
    z-index: 3;
    overflow: visible;
    isolation: isolate;
    background:
        radial-gradient(160% 90% at 50% 2%, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0) 48%),
        linear-gradient(180deg, rgba(10, 15, 29, 0.98) 0%, #0b0f19 52%, #090d14 100%);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-row.reverse .feature-text {
    order: 2;
}

.feature-row.reverse .feature-visual {
    order: 1;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.feature-text p {
    margin-bottom: 1.5rem;
}

.feature-text p:first-of-type {
    line-height: 1.35;
}

.features-section .feature-text h2 {
    margin-bottom: 0.5rem;
}

.features-section .feature-text p {
    margin-bottom: 0.75rem;
}

.highlight-p {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    border-left: 2px solid var(--primary-color);
    color: var(--text-color) !important;
}

.feature-row--multilingual {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-top: 1rem;
}

.feature-text--multilingual {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.feature-subline {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 700;
    color: #c9d6f6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.security-lead {
    font-size: 1.02rem;
    line-height: 1.2;
}

.security-lead-break {
    display: none;
}

.feature-visual--multilingual {
    width: 100%;
}

.multilingual-showcase {
    position: relative;
    display: block;
    border: 0;
    background: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    isolation: isolate;
}

.multilingual-flag-cloud {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.multilingual-floating-flag {
    position: absolute;
    left: var(--flag-left);
    top: var(--flag-top);
    font-size: var(--flag-size);
    line-height: 1;
    opacity: 0.22;
    filter: saturate(0.8) brightness(0.52);
    text-shadow: 0 10px 22px rgba(2, 6, 23, 0.52);
    transform: translate3d(0, 0, 0) rotate(var(--flag-tilt));
    will-change: transform, opacity;
    user-select: none;
    animation: multilingual-flag-drift var(--flag-duration) ease-in-out var(--flag-delay) infinite;
}

.multilingual-control {
    min-width: 0;
    width: min(220px, 32%);
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.multilingual-control--meeting {
    top: -2.7rem;
    left: 0;
    overflow: visible;
}

.multilingual-control--translate {
    right: 0;
    bottom: -2.7rem;
}

.multilingual-control--translate .multilingual-label {
    order: 2;
    margin: 0.55rem 0 0;
    text-align: right;
}

.multilingual-control--translate .multilingual-dropdown {
    order: 1;
}

.multilingual-control--translate .multilingual-options {
    left: auto;
    right: 0;
}

.multilingual-label {
    margin: 0 0 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #b9c7ef;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.multilingual-label-note {
    font-family: 'Caveat', 'Bradley Hand', 'Segoe Print', cursive;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(213, 194, 255, 0.88);
    transform: rotate(-4deg) translateY(-0.08rem);
    animation: multilingual-label-note-blink 2.7s ease-in-out infinite;
}

.multilingual-label-note--aside {
    position: absolute;
    top: calc(100% - 1.42rem);
    left: calc(100% + 0.72rem);
    display: inline-block;
    white-space: nowrap;
    pointer-events: none;
}

.multilingual-dropdown {
    position: relative;
}

.multilingual-select {
    width: 100%;
    border: 1px solid rgba(176, 196, 255, 0.3);
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(18, 26, 46, 0.95), rgba(17, 25, 43, 0.92));
    color: #f8fbff;
    padding: 0.66rem 0.72rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(8, 14, 28, 0.4);
    transition: border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.multilingual-select:hover {
    border-color: rgba(184, 164, 255, 0.75);
    transform: translateY(-1px);
}

.multilingual-select:active {
    transform: translateY(1px);
}

.multilingual-select:focus-visible {
    outline: 2px solid rgba(139, 92, 246, 0.8);
    outline-offset: 2px;
}

.multilingual-select-value {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.multilingual-caret {
    font-size: 0.95rem;
    color: #cdd9ff;
    opacity: 0.92;
    transform: translateY(-1px);
}

.multilingual-options {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0.34rem;
    max-height: 244px;
    overflow-y: auto;
    border-radius: 12px;
    border: 1px solid rgba(169, 183, 231, 0.34);
    background: rgba(10, 16, 31, 0.98);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.6);
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.82) rgba(20, 27, 45, 0.94);
    z-index: 40;
}

.multilingual-options::-webkit-scrollbar {
    width: 10px;
}

.multilingual-options::-webkit-scrollbar-track {
    background: rgba(20, 27, 45, 0.94);
    border-radius: 999px;
}

.multilingual-options::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.94), rgba(124, 58, 237, 0.9));
    border: 2px solid rgba(20, 27, 45, 0.94);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(236, 233, 254, 0.12);
}

.multilingual-options::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.98), rgba(139, 92, 246, 0.96));
}

.multilingual-option {
    width: 100%;
    border: 0;
    background: transparent;
    color: #dce6ff;
    padding: 0.48rem 0.52rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-align: left;
    font-size: 0.94rem;
    cursor: pointer;
    transition: background-color 120ms ease, color 120ms ease;
}

.multilingual-option:hover {
    background: rgba(100, 136, 255, 0.2);
    color: #ffffff;
}

.multilingual-option.is-selected {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.38), rgba(59, 130, 246, 0.38));
    color: #ffffff;
}

.multilingual-option:focus-visible {
    outline: 2px solid rgba(139, 92, 246, 0.82);
    outline-offset: 1px;
}

.multilingual-chat-stage {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.multilingual-bubble-wrap {
    position: relative;
    width: min(100%, 760px);
    padding: 2.45rem 0 2.35rem;
    min-height: 238px;
    z-index: 2;
}

.multilingual-bubble-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.58rem;
    justify-items: stretch;
    margin: 0 auto;
}

.multilingual-bubble {
    position: relative;
    width: 100%;
    min-width: 0;
    border-radius: 24px;
    border: 1px solid rgba(197, 214, 246, 0.2);
    background:
        linear-gradient(180deg,
            rgba(44, 53, 76, 0.74) 0%,
            rgba(24, 30, 46, 0.78) 54%,
            rgba(13, 18, 29, 0.88) 100%);
    padding: 1.22rem 1.34rem;
    display: grid;
    gap: 0.68rem;
    box-shadow: 0 16px 34px rgba(4, 8, 18, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    isolation: isolate;
    overflow: hidden;
}

.multilingual-bubble::before,
.multilingual-bubble::after {
    content: "";
    pointer-events: none;
    position: absolute;
    border-radius: inherit;
    left: 1px;
    right: 1px;
}

.multilingual-bubble::before {
    top: 1px;
    height: 52%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.24) 0%,
            rgba(255, 255, 255, 0.1) 36%,
            rgba(255, 255, 255, 0.02) 58%,
            rgba(255, 255, 255, 0) 100%);
    opacity: 0.82;
}

.multilingual-bubble::after {
    bottom: 0;
    height: 64%;
    background: radial-gradient(120% 90% at 50% 112%,
            rgba(7, 10, 18, 0.68) 0%,
            rgba(7, 10, 18, 0.28) 34%,
            rgba(7, 10, 18, 0) 72%);
    opacity: 0.88;
}

.multilingual-bubble-status {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.46rem;
    margin: 0;
    padding-right: 0.72rem;
    justify-self: end;
    color: rgba(255, 212, 212, 0.92);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: multilingual-rec-blink 2.15s ease-in-out infinite;
}

.multilingual-rec-dot {
    width: 0.54rem;
    height: 0.54rem;
    border-radius: 999px;
    background: #ff4d5e;
    box-shadow: 0 0 0 0 rgba(255, 77, 94, 0.45), 0 0 18px rgba(255, 77, 94, 0.35);
    flex-shrink: 0;
}

.multilingual-rec-label {
    color: rgba(255, 226, 226, 0.92);
}

.multilingual-original {
    margin: 0;
    color: #f4f7ff;
    line-height: 1.42;
    font-size: 1.08rem;
    min-height: 3.05em;
}

.multilingual-original-text,
.multilingual-translation {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
}

.multilingual-translation {
    margin: 0;
    padding-top: 0.78rem;
    border-top: 1px solid rgba(207, 219, 244, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: #bec7df;
    line-height: 1.38;
    font-size: 0.95rem;
    min-height: 2.8em;
}

.multilingual-bubble-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin: 0;
    padding-left: 0.72rem;
    justify-self: start;
    color: rgba(183, 195, 227, 0.76);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.multilingual-meta-time {
    color: rgba(214, 222, 246, 0.92);
}

.multilingual-meta-separator {
    color: rgba(154, 109, 255, 0.74);
}

.multilingual-meta-speaker {
    color: rgba(186, 198, 230, 0.84);
}

.multilingual-bubble.is-flashing {
    animation: multilingual-bubble-flash 300ms cubic-bezier(0.2, 0.92, 0.24, 1) 1;
}

.fade-in-translation {
    animation: fade-in-trans 300ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fade-out-translation {
    animation: fade-out-trans 180ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes multilingual-rec-blink {

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

    50% {
        opacity: 1;
        transform: translateY(-0.5px);
    }
}

@keyframes multilingual-label-note-blink {

    0%,
    100% {
        opacity: 0.36;
    }

    50% {
        opacity: 0.92;
    }
}

@keyframes multilingual-flag-drift {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(var(--flag-tilt));
        opacity: 0.2;
    }

    45% {
        transform: translate3d(var(--flag-sway), var(--flag-rise), 0) rotate(calc(var(--flag-tilt) + 1.4deg));
        opacity: 0.28;
    }

    75% {
        transform: translate3d(var(--flag-sway-back), var(--flag-rise-back), 0) rotate(calc(var(--flag-tilt) - 1.1deg));
        opacity: 0.22;
    }
}

@keyframes multilingual-bubble-flash {
    0% {
        filter: brightness(1);
        transform: translateY(0) scale(1);
    }

    30% {
        filter: brightness(1.24);
        transform: translateY(-1px) scale(1.01);
    }

    65% {
        filter: brightness(1.08);
        transform: translateY(1px) scale(0.996);
    }

    100% {
        filter: brightness(1);
        transform: translateY(0) scale(1);
    }
}

@keyframes fade-in-trans {
    from {
        opacity: 0;
        transform: translateY(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-out-trans {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-2px);
    }
}

/* Additional Capabilities */
.capabilities-section {
    padding: 3rem 0;
    background-color: var(--bg-color-alt);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cap-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

/* Security Section */
.security-section {
    padding: 2rem 0;
    background: var(--faq-section-bg);
    z-index: 1;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.security-item {
    position: relative;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.security-item svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    margin: 0;
    width: 144px;
    height: 144px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.security-item p {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 24ch;
    line-height: 1.35;
    font-weight: 500;
    color: var(--text-color);
}

@keyframes security-icon-glow-pulse {

    0%,
    100% {
        opacity: 0.16;
        filter: drop-shadow(0 0 0 rgba(139, 92, 246, 0));
    }

    50% {
        opacity: 0.38;
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.42));
    }
}

@keyframes security-lock-glow {
    0%,
    100% {
        opacity: 0.16;
        filter:
            drop-shadow(0 0 0 rgba(139, 92, 246, 0))
            drop-shadow(0 0 0 rgba(245, 158, 11, 0));
    }

    50% {
        opacity: 0.6;
        filter:
            drop-shadow(0 0 16px rgba(139, 92, 246, 0.8))
            drop-shadow(0 0 30px rgba(245, 158, 11, 0.45));
    }
}

/* Pricing Section */
.pricing-section {
    padding: 1.5rem 0;
    background:
        radial-gradient(160% 90% at 50% 2%, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0) 48%),
        linear-gradient(180deg, rgba(10, 15, 29, 0.98) 0%, #0b0f19 52%, #090d14 100%);
}

.pricing-section .container {
    overflow-x: clip;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.85rem 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: transform, box-shadow;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
    transform: translateY(-10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.18);
}

.pricing-card.is-selected {
    border-color: var(--primary-color);
    box-shadow: 0 12px 42px rgba(139, 92, 246, 0.2);
    transform: translateY(-10px);
}

.pricing-card.is-springing {
    animation: pricing-card-spring 620ms cubic-bezier(0.22, 1.18, 0.32, 1);
}

@keyframes pricing-card-spring {
    0% {
        transform: translateY(8px) scale(0.975);
    }

    42% {
        transform: translateY(-15px) scale(1.016);
    }

    68% {
        transform: translateY(-6px) scale(0.996);
    }

    100% {
        transform: translateY(-10px) scale(1);
    }
}

.pricing-card.popular:not(.is-selected) {
    transform: none;
    border-color: var(--border-color);
    box-shadow: none;
}

.pricing-card.popular:not(.is-selected) .popular-badge {
    display: none;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.plan-header {
    position: relative;
    padding-right: 5.25rem;
}

.plan-title-row {
    display: block;
    margin-bottom: 0.25rem;
}

.plan-title-row h3 {
    margin: 0;
    line-height: 1.1;
}

.plan-icon {
    width: 62px;
    height: 62px;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: -1.35rem;
    transform: translateY(-5px);
    margin: 0;
}

.plan-header p {
    font-size: 0.95rem;
    min-height: 0;
    margin: 0;
    line-height: 1.3;
}

.plan-price {
    margin: 1rem 0 1.25rem;
    display: flex;
    align-items: flex-start;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 0.25rem;
}

.amount {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 800;
    color: var(--text-color);
}

.period {
    align-self: flex-end;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.plan-feature-item {
    display: block;
    margin-bottom: 1rem;
}

.plan-feature-btn {
    appearance: none;
    border: none;
    background: transparent;
    font: inherit;
    font-size: inherit;
    color: inherit;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    padding: 0;
    cursor: pointer;
}

.plan-feature-btn:hover,
.plan-feature-btn:focus-visible {
    outline: none;
}

.plan-feature-btn:focus-visible {
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.35);
    border-radius: 10px;
    padding: 0.2rem 0.35rem;
    margin: -0.2rem -0.35rem;
}

.plan-feature-btn .nowrap-text {
    white-space: normal;
}

.plan-feature-btn[aria-expanded="true"] .plan-tail-icon {
    transform: rotate(180deg);
}

.plan-features li svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.plan-feature-popover {
    position: fixed;
    z-index: 80;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    padding: 0.9rem 1rem;
    max-width: min(420px, calc(100vw - 28px));
    width: 320px;
    color: var(--text-color);
    backdrop-filter: blur(8px);
}

.plan-feature-popover__title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    padding-right: 1.5rem;
}

.plan-feature-popover__content {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    max-height: 280px;
    overflow: auto;
}

.plan-feature-popover__body {
    margin: 0;
}

.plan-feature-popover__language-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 260px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(148, 163, 184, 0.2);
}

.plan-feature-popover__language-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.plan-feature-popover__language-list li:last-child {
    border-bottom: none;
}

.plan-feature-popover__language-list li.is-disabled {
    opacity: 0.45;
    filter: grayscale(1);
}

.plan-feature-popover__language-list li.is-disabled .plan-feature-popover__language-flag {
    opacity: 0.6;
}

.plan-feature-popover__language-flag {
    width: 1.1rem;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.plan-feature-popover__content::-webkit-scrollbar,
.plan-feature-popover__language-list::-webkit-scrollbar {
    width: 6px;
}

.plan-feature-popover__content::-webkit-scrollbar-track,
.plan-feature-popover__language-list::-webkit-scrollbar-track {
    background: rgba(148, 163, 184, 0.2);
    border-radius: 999px;
}

.plan-feature-popover__content::-webkit-scrollbar-thumb,
.plan-feature-popover__language-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-hover));
    border-radius: 999px;
}

.plan-feature-popover__content::-webkit-scrollbar-thumb:hover,
.plan-feature-popover__language-list::-webkit-scrollbar-thumb:hover {
    filter: brightness(1.12);
}

.plan-feature-popover-close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    color: var(--text-color-muted);
    background: rgba(148, 163, 184, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}

.plan-feature-popover-close:hover {
    color: var(--text-color);
    background: rgba(148, 163, 184, 0.3);
}

.plan-feature-popover-close:focus-visible {
    outline: 1px solid var(--primary-color);
}

.pricing-grid.is-carousel {
    display: flex;
    gap: 0.85rem;
    align-items: stretch;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(0.35rem, 2.6vw, 0.6rem);
    padding: 1.45rem clamp(0.35rem, 2.6vw, 0.6rem) 1.1rem;
    scrollbar-width: none;
    touch-action: pan-x pinch-zoom;
}

.pricing-grid.is-carousel::-webkit-scrollbar {
    display: none;
}

.pricing-grid.is-carousel .pricing-card {
    flex: 0 0 clamp(238px, 69vw, 300px);
    min-height: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.page-language-modal-open {
    overflow: hidden;
}

.page-language-shell {
    position: relative;
    display: inline-flex;
    justify-content: center;
    z-index: 170;
    pointer-events: none;
    margin-bottom: 0.225rem;
}

.page-language-overlay {
    position: fixed;
    inset: 0;
    z-index: 172;
    background: rgba(6, 10, 18, 0.28);
    backdrop-filter: blur(14px) saturate(110%);
    -webkit-backdrop-filter: blur(14px) saturate(110%);
    pointer-events: auto;
}

.page-language-overlay[hidden],
.page-language-panel[hidden] {
    display: none !important;
}

.page-language-trigger,
.page-language-panel {
    pointer-events: auto;
}

.page-language-floating-trigger[hidden] {
    display: none !important;
}

.page-language-trigger {
    position: relative;
    z-index: 171;
    min-height: 44px;
    padding: 0.4rem 0.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.72rem;
    cursor: pointer;
    transition: color 140ms ease, opacity 140ms ease;
}

.page-language-floating-trigger {
    position: fixed;
    left: max(1rem, calc(env(safe-area-inset-left) + 0.8rem));
    bottom: max(1rem, calc(env(safe-area-inset-bottom) + 0.85rem));
    z-index: 174;
    width: auto;
    min-width: 4.2rem;
    height: 4.2rem;
    padding: 0 0.72rem 0 0.62rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.96);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition:
        opacity 220ms ease,
        transform 240ms ease,
        color 140ms ease;
}

.page-language-floating-trigger:hover {
    animation: page-language-hover-gold 0.92s ease-in-out infinite alternate;
}

.page-language-floating-trigger:active {
    transform: scale(0.9);
}

.page-language-floating-trigger:focus-visible {
    outline: none;
    color: #f6d17e;
}

.page-language-floating-trigger[aria-expanded="true"] {
    color: #f6d17e;
    transform: scale(1.03);
    animation: page-language-floating-open 240ms cubic-bezier(0.22, 0.9, 0.26, 1);
}

.page-language-floating-trigger .page-language-trigger__globe,
.page-language-floating-trigger .page-language-trigger__globe-svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.page-language-floating-trigger__label {
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.96);
    margin-left: 0.55rem;
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1px);
    pointer-events: none;
    transition:
        max-width 230ms ease,
        opacity 220ms ease,
        transform 220ms ease,
        color 140ms ease;
}

.page-language-floating-trigger.is-floating-intro .page-language-trigger__globe-svg,
.page-language-floating-trigger.is-floating-intro {
    animation: page-language-hover-gold 0.92s ease-in-out infinite alternate;
}

.page-language-floating-trigger__label.is-floating-label-visible,
.page-language-floating-trigger.is-floating-intro .page-language-floating-trigger__label {
    visibility: visible;
    opacity: 1;
    max-width: 10rem;
    transform: translateY(0);
}

.page-language-floating-trigger__label.is-floating-label-fadeout {
    opacity: 0;
    max-width: 0;
    visibility: hidden;
    transform: translateY(0);
}

.page-language-shell.is-floating-hidden .page-language-floating-trigger {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.92);
    pointer-events: none;
}

.page-language-shell.is-floating-hidden .page-language-floating-trigger[aria-expanded="true"] {
    opacity: 1;
    transform: scale(1.03);
    pointer-events: auto;
}

.page-language-trigger:hover {
    animation: page-language-hover-gold 0.92s ease-in-out infinite alternate;
}

.page-language-trigger[aria-expanded="true"] {
    color: #ffffff;
}

.page-language-trigger:focus-visible {
    outline: none;
    color: #f6d17e;
    text-shadow: 0 0 18px rgba(244, 188, 71, 0.22);
}

.page-language-trigger__globe,
.page-language-trigger__globe-svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}

.page-language-trigger__globe-svg {
    stroke: currentColor;
    stroke-width: 4.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.page-language-trigger__label {
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.96);
}

.page-language-trigger__caret,
.page-language-trigger__caret svg {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.page-language-trigger__caret svg {
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: rgba(255, 255, 255, 0.78);
}

.page-language-panel {
    position: fixed;
    left: 50%;
    top: 1rem;
    transform: translateX(-50%);
    width: min(338px, calc(100vw - 2rem));
    max-height: min(68vh, 560px);
    z-index: 173;
    border: 1px solid rgba(184, 198, 239, 0.18);
    border-radius: 22px;
    padding: 0.9rem;
    background:
        linear-gradient(180deg, rgba(15, 22, 37, 0.96), rgba(9, 14, 27, 0.97));
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.72rem;
    overflow: hidden;
}

.page-language-panel:focus-visible {
    outline: 2px solid rgba(185, 214, 255, 0.9);
    outline-offset: 2px;
}

.page-language-panel__head {
    display: grid;
    gap: 0.18rem;
    padding: 0.08rem 0.14rem 0;
}

.page-language-panel__title {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f4f7ff;
}

.page-language-panel__note {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.3;
    color: rgba(191, 204, 234, 0.8);
}

.page-language-list {
    list-style: none;
    margin: 0;
    padding: 0.12rem;
    display: grid;
    gap: 0.18rem;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 255, 0.9) rgba(18, 25, 43, 0.94);
}

.page-language-list::-webkit-scrollbar {
    width: 6px;
}

.page-language-list::-webkit-scrollbar-track {
    background: rgba(18, 25, 43, 0.94);
    border-radius: 999px;
}

.page-language-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(184, 198, 255, 0.95), rgba(132, 150, 255, 0.88));
    border-radius: 999px;
    border: 2px solid rgba(18, 25, 43, 0.94);
}

.page-language-option {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #eef3ff;
    padding: 0.76rem 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.72rem;
    text-align: left;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.page-language-option:hover {
    transform: translateX(2px);
    border-color: rgba(188, 206, 255, 0.24);
    background: rgba(137, 165, 255, 0.12);
    color: #ffffff;
}

.page-language-option:focus-visible {
    outline: 2px solid rgba(189, 214, 255, 0.9);
    outline-offset: 1px;
}

.page-language-option.is-current,
.page-language-option[disabled] {
    cursor: default;
    opacity: 0.5;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(191, 205, 242, 0.14);
    color: rgba(228, 235, 255, 0.72);
    filter: saturate(0.46);
    transform: none;
}

.page-language-option__flag {
    width: 1.2rem;
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
}

.page-language-option__copy {
    min-width: 0;
    flex: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 0.34rem;
    flex-wrap: wrap;
}

.page-language-option__native {
    color: #eef3ff;
}

.page-language-option__english {
    font-size: 0.8rem;
    color: rgba(191, 204, 234, 0.74);
}

.page-language-option__status {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(195, 208, 255, 0.76);
}

@keyframes page-language-hover-gold {

    0%,
    100% {
        color: rgba(255, 255, 255, 0.94);
        opacity: 0.7;
        text-shadow: none;
    }

    50% {
        color: #f6d17e;
        opacity: 1;
        text-shadow: 0 0 18px rgba(246, 209, 126, 0.32);
    }
}

@keyframes page-language-floating-open {

    0% {
        transform: scale(0.86);
        opacity: 0.88;
    }

    58% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1.03);
        opacity: 1;
    }
}

.plan-features .check-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    stroke: var(--text-color-muted);
    opacity: 0.55;
}

.plan-features .nowrap-text {
    white-space: nowrap;
}

.plan-tail-icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-left: -0.08rem;
    color: var(--text-color-muted);
    opacity: 0.65;
    align-self: flex-start;
    margin-top: 0.15rem;
}

.plan-tail-icon svg {
    width: 0.95rem;
    height: 0.95rem;
    display: block;
}

.pricing-card.is-selected .plan-features .check-icon,
.pricing-card.popular.is-selected .plan-features .check-icon {
    stroke: var(--primary-color);
    opacity: 1;
}

.pricing-card:not(.is-selected) .plan-features .check-icon {
    stroke: var(--text-color-muted);
    opacity: 0.55;
}

.plan-action-btn {
    position: relative;
    overflow: hidden;
}

.plan-action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.62) 50%, transparent 65%);
    transform: skewX(-20deg) translateX(-180%);
    opacity: 0;
    pointer-events: none;
}

.plan-action-btn.btn-outline {
    box-shadow: none;
}

.pricing-card:not(.is-selected) .plan-action-btn::after {
    animation: none;
    opacity: 0;
}

.pricing-card:not(.is-selected) .plan-action-btn.btn-primary {
    background: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
    box-shadow: none;
}

.pricing-card:not(.is-selected) .plan-action-btn.btn-primary::after,
.pricing-card:not(.is-selected) .plan-action-btn.btn-outline::after {
    opacity: 0;
    animation: none;
}

.pricing-card:not(.is-selected) .plan-action-btn.btn-primary:hover {
    transform: translateY(0);
    box-shadow: none;
    background: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
}

.pricing-card:not(.is-selected) .plan-action-btn.btn-outline {
    box-shadow: none;
    background: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
}

.pricing-card:not(.is-selected) .plan-action-btn.btn-outline:hover {
    transform: translateY(0);
    box-shadow: none;
    background: transparent;
    border-color: var(--border-color);
}

.pricing-card.is-selected .plan-action-btn::after {
    animation: btn-shimmer 3.4s infinite;
}

.pricing-card.is-selected .plan-action-btn {
    background: linear-gradient(180deg, #a78cff 0%, var(--primary-color) 30%, var(--primary-hover) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: white;
    box-shadow: 0 12px 20px rgba(124, 58, 237, 0.35), inset 0 -3px 0 rgba(255, 255, 255, 0.12);
}

.pricing-card.is-selected .plan-action-btn.btn-primary {
    box-shadow: 0 12px 20px rgba(124, 58, 237, 0.35), inset 0 -3px 0 rgba(255, 255, 255, 0.12);
}

.pricing-card.is-selected .plan-action-btn.btn-outline {
    box-shadow: 0 12px 20px rgba(124, 58, 237, 0.24);
}

.flag-row {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    text-align: center;
}

.flag-row.multi {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    text-align: left;
}

.flag-row.multi span {
    /* flags are emojis, scaling up a bit */
    font-size: 1.25rem;
}


/* Boost Card */
.boost-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    border: 1px dashed var(--border-color);
    padding: 1rem 3rem;
    border-radius: 16px;
}

.boost-content p {
    font-size: 0.95rem;
    line-height: 1.2;
    margin-top: 0.25rem;
}

.boost-content h3 {
    margin-bottom: 0.35rem;
}

.boost-content p {
    margin-bottom: 0.4rem;
}

.boost-actions {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.boost-option {
    appearance: none;
    min-width: 224px;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    text-align: left;
    font: inherit;
    color: inherit;
    text-decoration: none;
    padding: 0.65rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(139, 92, 246, 0.28);
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.96) 0%, rgba(10, 15, 30, 0.92) 100%);
    box-shadow: 0 18px 42px rgba(6, 10, 24, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.boost-option:hover {
    transform: translateY(-3px);
    border-color: rgba(192, 132, 252, 0.68);
    box-shadow: 0 22px 52px rgba(91, 33, 182, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.boost-option--romance {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.16) 0%, rgba(11, 15, 25, 0.94) 100%);
}

.boost-option--global {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.14) 0%, rgba(11, 15, 25, 0.94) 100%);
}

.boost-option__icon-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.boost-option__icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transform: translateY(-3px);
}

.boost-option__plus {
    position: absolute;
    right: -1px;
    bottom: 2px;
    width: 21px;
    height: 21px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 18px rgba(139, 92, 246, 0.3);
}

.boost-option__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.1rem;
    text-align: left;
}

.boost-option__copy strong {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.15;
}

.boost-option__copy span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    line-height: 1.2;
}

.boost-title-inline-space {
    display: inline;
}

/* FAQ Section */
.faq-section {
    padding: 2.3rem 0;
    background: var(--faq-section-bg);
}

.faq-container {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.faq-title {
    margin-bottom: 2.4rem;
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.faq-item {
    width: min(60%, 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.015) 52%, rgba(255, 255, 255, 0.03) 100%),
        #14181f;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 1.22rem 1.7rem 1.12rem;
}

.faq-question {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    flex: 1 1 auto;
}

.faq-question-break {
    display: none;
}

.faq-question-inline-space {
    display: inline;
}

.faq-answer {
    margin: 0 1.7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    line-height: 1.2;
    height: 0;
    overflow: hidden;
    transition:
        height 0.44s cubic-bezier(0.22, 1, 0.36, 1),
        margin-bottom 0.44s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: height;
}

.faq-item.is-open .faq-answer {
    margin-bottom: 1.2rem;
}

.faq-answer__inner {
    padding: 1.05rem 0 0.08rem;
    opacity: 0;
    transform: translateY(-12px);
    transition:
        opacity 0.22s ease,
        transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.faq-item.is-open .faq-answer__inner {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    margin: 0;
    font-size: inherit;
}

.faq-answer p+p {
    margin-top: 0.55rem;
}

.faq-answer a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.46);
    text-underline-offset: 2px;
}

.faq-toggle {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.74);
    cursor: pointer;
    transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-toggle:hover {
    color: rgba(255, 255, 255, 0.95);
}

.faq-toggle:focus-visible {
    outline: none;
    color: rgba(255, 255, 255, 0.98);
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.22s ease;
}

.faq-item.is-open .faq-toggle-icon svg {
    transform: rotate(180deg);
}

@media (hover: hover) {
    .faq-toggle {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-1px);
    }

    .faq-item:hover .faq-toggle,
    .faq-item:focus-within .faq-toggle,
    .faq-item.is-open .faq-toggle {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.faq-list {
    padding-left: 1.5rem;
    color: var(--text-color-muted);
}

.faq-list li {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 2rem 0;
    background:
        radial-gradient(160% 90% at 50% 2%, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0) 48%),
        linear-gradient(180deg, rgba(10, 15, 29, 0.98) 0%, #0b0f19 52%, #090d14 100%);
    position: relative;
}

.cta-poster {
    background-color: var(--bg-color);
}

.cta-poster .container {
    position: relative;
    z-index: 1;
}

.poster-stack {
    width: min(100%, 560px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.poster-logo {
    width: clamp(94px, 14.4vw, 154px);
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
    transform-origin: center;
    will-change: transform;
    animation: koala-trigger-vibrate 3s infinite;
}

.poster-line {
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: 0.045em;
    font-weight: 800;
}

.poster-line-xl {
    font-size: clamp(3rem, 9.4vw, 6.8rem);
}

.poster-line-context {
    font-size: clamp(2.4rem, 7.8vw, 5.4rem);
}

.poster-line-md {
    font-size: clamp(1.8rem, 5.2vw, 3.2rem);
    margin: 0.35rem 0;
}

.poster-line-sm {
    font-size: clamp(1.8rem, 5.0vw, 2.8rem);
    margin: 0.15rem 0;
}

@keyframes koala-trigger-vibrate {

    0%,
    68%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    70% {
        transform: translate3d(-2px, 1px, 0) rotate(-1.2deg);
    }

    72% {
        transform: translate3d(2px, -1px, 0) rotate(1.2deg);
    }

    74% {
        transform: translate3d(-2px, -1px, 0) rotate(-1deg);
    }

    76% {
        transform: translate3d(2px, 1px, 0) rotate(1deg);
    }

    78% {
        transform: translate3d(-1px, 1px, 0) rotate(-0.8deg);
    }

    80% {
        transform: translate3d(1px, -1px, 0) rotate(0.8deg);
    }

    82% {
        transform: translate3d(-1px, 0, 0) rotate(-0.5deg);
    }

    84% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

.cta-poster .btn {
    margin-top: 2.6rem;
}

.cta-poster-cta-group {
    position: relative;
    display: flex;
    justify-content: center;
}

.cta-poster .cta-note {
    margin-top: 0.45rem;
    margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hero-note.cta-note-cycle {
        transition: none;
    }

    .hero-note.cta-note-cycle.is-cta-note-flashing {
        animation: none;
    }
}

/* Footer */
.footer {
    background-color: #05080e;
    padding: 1rem 0 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.footer-brand {
    display: block;
    text-align: center;
    margin-bottom: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-color-muted);
    font-size: 0.875rem;
}

.footer-link-guide-group {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-link-guide-separator {
    color: var(--text-color-muted);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-business {
    width: 100%;
    max-width: 960px;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: rgba(148, 163, 184, 0.72);
}

.footer-business-name {
    font-size: 0.76rem;
    line-height: 1.4;
    letter-spacing: 0.06em;
    font-weight: 500;
    color: rgba(226, 232, 240, 0.8);
}

.footer-business-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    font-size: 0.7rem;
    line-height: 1.55;
    letter-spacing: 0.01em;
}

.footer-business-line + .footer-business-line {
    margin-top: 0.2rem;
}

.footer-business-name + .footer-business-line {
    margin-top: 0.42rem;
}

.footer-business-item {
    white-space: normal;
}

.footer-business-separator {
    opacity: 0.34;
}

.footer-business-link {
    color: inherit;
    transition: color 0.2s ease;
}

.footer-business-link:hover,
.footer-business-link:focus-visible {
    color: #ffffff;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-social-link {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-muted);
    background: transparent;
    border: 0;
    transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.footer-social-link:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-1px);
}

.footer-social-link:focus-visible {
    outline: none;
    color: #ffffff;
    opacity: 1;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
}

/* Legal Pages */
body.legal-page {
    min-height: 100vh;
    background:
        radial-gradient(120% 120% at 50% 0%, rgba(139, 92, 246, 0.14) 0%, rgba(139, 92, 246, 0) 42%),
        linear-gradient(180deg, #0f1420 0%, #0b0f19 35%, #070b12 100%);
    color: #f4f7ff;
}

.legal-shell {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

.legal-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    padding: 1.5rem 0 2rem;
}

.legal-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 1 1 auto;
}

.legal-brand img {
    width: 1.8rem;
    height: 1.8rem;
    flex-shrink: 0;
}

.legal-toplinks {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
    justify-content: flex-end;
}

.legal-toplink {
    color: var(--text-color-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-toplink:hover,
.legal-toplink:focus-visible {
    color: #ffffff;
}

.legal-toplink--icon {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.08);
    color: rgba(244, 247, 255, 0.8);
}

.legal-toplink--icon:hover,
.legal-toplink--icon:focus-visible {
    background: rgba(139, 92, 246, 0.16);
    color: #ffffff;
}

.legal-topicon {
    width: 1.15rem;
    height: 1.15rem;
}

.legal-document {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.legal-title {
    font-size: clamp(1.875rem, 2.2vw, 2.125rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 0.55rem;
}

.legal-updated {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-color-muted);
    margin-bottom: 1.35rem;
}

.legal-intro-card {
    margin-bottom: 1.65rem;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.legal-section + .legal-section {
    margin-top: 1.65rem;
}

.legal-page .legal-document section + section::before {
    content: none;
}

.legal-section h2 {
    font-size: 1.25rem;
    line-height: 1.28;
    font-weight: 600;
    margin-bottom: 0.55rem;
    color: #ffffff;
}

.legal-page :where(.legal-intro-card p, .legal-section p, .legal-section li) {
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(244, 247, 255, 0.88);
}

.legal-page :where(.legal-intro-card p + p, .legal-section p + p) {
    margin-top: 0.5rem;
}

.legal-section ul {
    margin: 0.55rem 0 0;
    padding-left: 1.25rem;
}

.legal-section li + li {
    margin-top: 0.24rem;
}

.legal-page .legal-section a,
.legal-page .legal-intro-card a,
.legal-page .legal-contact a {
    color: #d4b6ff;
}

.legal-page .legal-section a:hover,
.legal-page .legal-intro-card a:hover,
.legal-page .legal-contact a:hover {
    color: #f2dbff;
}

.legal-contact {
    margin-top: 0.75rem;
}

.legal-footer {
    border-top: 0;
    padding-top: 0;
}

/* Responsive Setup */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-desc {
        margin: 0 auto 1.75rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .gap-card {
        flex-basis: calc((100% - 1.5rem) / 2);
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row.reverse .feature-text {
        order: 1;
    }

    .feature-row.reverse .feature-visual {
        order: 2;
    }

    .multilingual-control {
        width: min(200px, 34%);
    }

    .multilingual-bubble-wrap {
        padding: 2.32rem 0 2.2rem;
        min-height: 226px;
    }

    .capabilities-grid,
    .security-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        max-width: 100%;
        margin: 0;
        padding-inline: 0;
    }

    .carousel-pagination.is-visible {
        display: flex;
    }

    .download-cta-modal-card--guide {
        width: min(840px, 100%);
    }

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

    .download-guide-step:last-child {
        grid-column: 1 / -1;
        max-width: 360px;
        width: 100%;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    :root {
        --page-inline-gutter: clamp(0.8rem, 4vw, 1rem);
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: flex;
        gap: 1rem;
    }

    .nav-links .nav-link-item {
        display: none;
    }

    .solution-banner {
        padding: 0.1rem var(--page-inline-gutter) 2.2rem;
    }

    .solution-title {
        display: flex;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        align-items: center;
        gap: 0.35rem;
        white-space: normal;
        flex-wrap: wrap;
        font-size: clamp(1.55rem, 8vw, 2.05rem);
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .solution-title-logo {
        width: clamp(2.2rem, 11vw, 2.85rem);
        height: clamp(2.2rem, 11vw, 2.85rem);
    }

    .solution-list {
        width: min(100%, 27rem);
        margin: 0 auto 2rem;
        transform: none;
    }

    .solution-list li {
        width: 100%;
        justify-content: flex-start;
    }

    .capabilities-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .download-cta-modal {
        padding: 16px 10px;
    }

    .download-cta-modal-card--guide {
        width: min(560px, 100%);
        padding: 1rem 0.9rem;
        border-radius: 22px;
    }

    .download-guide-modal-top {
        padding-right: 1.7rem;
    }

    .download-guide-steps {
        grid-template-columns: 1fr;
        gap: 0.72rem;
    }

    .download-guide-step:last-child {
        grid-column: auto;
        max-width: none;
    }

    .download-guide-step-copy {
        font-size: 0.89rem;
    }

    .security-grid {
        display: flex;
        gap: 0.9rem;
        margin-top: 2.2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0 0 0.45rem;
        scrollbar-width: none;
    }

    .security-grid::-webkit-scrollbar {
        display: none;
    }

    .security-item {
        flex: 0 0 min(84vw, 320px);
        min-height: 132px;
        padding: 0.85rem 0.7rem;
        border: 0;
        background: transparent;
        box-shadow: none;
        scroll-snap-align: start;
        overflow: visible;
    }

    .security-item svg {
        width: 128px;
        height: 128px;
        opacity: 0.18;
        animation: security-icon-glow-pulse 2.5s ease-in-out infinite;
    }

    .security-item:nth-child(2) svg {
        animation-delay: 0.35s;
    }

    .security-item:nth-child(3) svg {
        animation-delay: 0.7s;
    }

    .security-item:nth-child(4) svg {
        animation-delay: 1.05s;
    }

    .security-item:nth-child(5) svg {
        animation-delay: 1.4s;
    }

    .boost-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .boost-card.mt-5 {
        margin-top: 1.65rem;
    }

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

    .boost-option {
        width: min(100%, 320px);
    }

    .faq-section {
        padding: 1.8rem 0;
    }

    .faq-title {
        margin-bottom: 1.9rem;
        font-size: clamp(1.55rem, 7.2vw, 2.2rem);
    }

    .faq-item {
        width: 100%;
        border-radius: 22px;
    }

    .faq-head {
        padding: 1rem 1.1rem 0.95rem;
        gap: 0.7rem;
    }

    .faq-question {
        font-size: clamp(0.92rem, 4.2vw, 1.1rem);
    }

    .faq-question-break {
        display: block;
    }

    .faq-question-inline-space {
        display: none;
    }

    .faq-answer {
        margin: 0 1.1rem 0;
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .faq-item.is-open .faq-answer {
        margin-bottom: 1rem;
    }

    .faq-answer__inner {
        padding: 0.9rem 0 0.05rem;
    }

    .faq-toggle-icon {
        width: 20px;
        height: 20px;
    }

    .faq-toggle-icon svg {
        width: 100%;
        height: 100%;
    }

    .footer-content {
        gap: 0;
    }

    .footer-business {
        margin-top: 0.7rem;
        padding-top: 0.85rem;
    }

    .footer-business-name {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
    }

    .footer-business-line {
        gap: 0.3rem;
        font-size: 0.66rem;
    }

    .footer-business-separator {
        display: none;
    }

    .gap-card {
        flex-basis: min(88%, 360px);
    }

    .pricing-section .mb-5 {
        margin-bottom: 1.5rem;
    }

    .pricing-grid.is-carousel .pricing-card {
        padding: 1.72rem 1.88rem 1.4rem;
    }

    .pricing-grid.is-carousel .plan-header {
        padding-right: 3.95rem;
    }

    .pricing-grid.is-carousel .plan-icon {
        width: 56px;
        height: 56px;
        right: -1rem;
    }

    .pricing-grid.is-carousel .plan-title-row h3 {
        font-size: 1.22rem;
        line-height: 1.05;
        letter-spacing: -0.03em;
        white-space: nowrap;
    }

    .feature-row--multilingual {
        gap: 0.95rem;
        margin-top: 0.28rem;
    }

    .feature-text--multilingual {
        max-width: 100%;
    }

    .hero-title-break,
    .problem-title-break {
        display: block;
    }

    .hero-desc-break {
        display: block;
    }

    .hero-desc-inline-space {
        display: none;
    }

    .hero-title .hero-title-break:first-of-type {
        display: none;
    }

    .hero-title .hero-title-break:last-of-type {
        display: block;
    }

    .hero-icon-float-layer {
        inset: 0;
    }

    .hero-float-icon {
        width: clamp(3.4rem, 11vw, 4.8rem);
        height: clamp(3.4rem, 11vw, 4.8rem);
    }

    .hero-float-icon.is-ready {
        opacity: 0.94;
    }

    .boost-title-break {
        display: block;
    }

    .boost-title-inline-space {
        display: none;
    }

    .boost-content h3 {
        margin-bottom: 0.18rem;
        line-height: 1.2;
    }

    .boost-content p {
        margin-top: 0.18rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }

    .pricing-title-break {
        display: block;
    }

    .solution-footer-break {
        display: block;
    }

    .solution-mobile-break {
        display: block;
    }

    .hero h1,
    .hero-title,
    .hero-title-mirror {
        display: block !important;
        width: 100% !important;
        left: auto !important;
        transform: none !important;
        text-align: center !important;
        white-space: normal !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .problem-title {
        white-space: normal;
    }

    .conclusion-highlight strong {
        display: block;
        white-space: nowrap;
    }

    .conclusion-text strong {
        display: block;
        white-space: nowrap;
    }

    .multilingual-chat-stage {
        display: block;
    }

    .multilingual-floating-flag {
        opacity: 0.13;
        filter: saturate(0.72) brightness(0.46);
    }

    .multilingual-floating-flag:nth-child(odd) {
        display: none;
    }

    .multilingual-bubble-wrap {
        display: grid;
        gap: 0.9rem;
        padding: 0;
        min-height: 0;
    }

    .multilingual-control {
        position: static;
        width: 100%;
    }

    .multilingual-control--meeting {
        order: 1;
    }

    .multilingual-bubble-row {
        width: 100%;
        order: 2;
        gap: 0.48rem;
    }

    .multilingual-control--translate {
        order: 3;
    }

    .multilingual-control--translate .multilingual-label {
        text-align: left;
    }

    .multilingual-control--translate .multilingual-options {
        left: 0;
        right: 0;
    }

    .multilingual-label {
        font-size: 0.72rem;
    }

    .multilingual-label-note {
        font-size: 0.64rem;
    }

    .multilingual-label-note--aside {
        position: static;
        margin-top: 0.2rem;
        transform: rotate(-4deg);
    }

    .multilingual-select {
        padding: 0.58rem 0.62rem;
        border-radius: 10px;
    }

    .multilingual-select-value {
        gap: 0.44rem;
    }

    .multilingual-name {
        font-size: 0.9rem;
    }

    .multilingual-bubble {
        border-radius: 16px;
        padding: 0.9rem;
        gap: 0.52rem;
    }

    .security-lock {
        width: 96px;
        height: 96px;
    }

    .security-lead-break {
        display: inline;
    }

    .problem-section {
        padding: 1.75rem 0;
    }

    .solution-section {
        padding: 1.75rem 0;
    }

    .solution-desc {
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .multilingual-bubble-status {
        font-size: 0.64rem;
        gap: 0.36rem;
        padding-right: 0.5rem;
    }

    .multilingual-rec-dot {
        width: 0.46rem;
        height: 0.46rem;
    }

    .multilingual-original {
        font-size: 0.97rem;
    }

    .multilingual-translation {
        padding-top: 0.68rem;
        font-size: 0.87rem;
    }

    .multilingual-bubble-meta {
        font-size: 0.66rem;
        gap: 0.34rem;
        padding-left: 0.5rem;
    }

    .page-language-shell {
        margin-bottom: 0.195rem;
    }

    .page-language-floating-trigger {
        left: max(0.8rem, calc(env(safe-area-inset-left) + 0.6rem));
        bottom: max(0.9rem, calc(env(safe-area-inset-bottom) + 0.72rem));
        min-width: 3.7rem;
        width: auto;
        height: 3.7rem;
        padding: 0 0.6rem 0 0.55rem;
    }

    .page-language-floating-trigger .page-language-trigger__globe,
    .page-language-floating-trigger .page-language-trigger__globe-svg {
        width: 40px;
        height: 40px;
    }

    .page-language-floating-trigger__label {
        margin-left: 0.47rem;
        font-size: 0.9rem;
    }

    .page-language-trigger {
        min-height: 40px;
        padding: 0.34rem 0.18rem;
        gap: 0.62rem;
    }

    .page-language-trigger__label {
        font-size: 0.91rem;
    }

    .page-language-panel {
        width: min(320px, calc(100vw - 1.5rem));
        max-height: min(62vh, 520px);
        padding: 0.8rem;
        border-radius: 20px;
    }

    .page-language-option {
        padding: 0.72rem 0.78rem;
        font-size: 0.91rem;
    }

    .legal-shell {
        padding-inline: var(--page-inline-gutter);
        padding-bottom: 4rem;
    }

    .legal-topbar {
        gap: 0.75rem;
        padding-top: 1.25rem;
        padding-bottom: 1.5rem;
    }

    .legal-toplinks {
        gap: 0.55rem;
    }

    .legal-brand {
        gap: 0.65rem;
    }

    .legal-brand .logo-wordmark {
        font-size: 1.45rem;
    }

    .legal-toplink--icon {
        width: 2.2rem;
        height: 2.2rem;
    }

    .legal-title {
        font-size: 1.875rem;
    }

    .legal-intro-card {
        padding: 0;
        border-radius: 0;
    }

    .legal-section + .legal-section {
        margin-top: 1.35rem;
    }
}

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

    .solution-title-logo,
    .poster-logo,
    .multilingual-floating-flag,
    .multilingual-label-note,
    .multilingual-bubble-status,
    .multilingual-bubble.is-flashing,
    .fade-in-translation {
        animation: none !important;
    }

    .multilingual-select,
    .multilingual-option,
    .page-language-trigger,
    .page-language-floating-trigger,
    .page-language-option {
        transition: none !important;
    }

    .page-language-floating-trigger,
    .page-language-floating-trigger__label {
        animation: none !important;
    }
}
