/* ═══════════════════════════════════════════════════════════════
   ApprovePost — Public Website Stylesheet
   Design tokens aligned with the product dashboard.
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS (dark default) ── */
:root {
    --w-bg:            #0B0B0F;
    --w-bg-alt:        #08080C;
    --w-surface:       #111116;
    --w-surface-2:     #17171E;
    --w-surface-3:     #1E1E28;
    --w-border:        rgba(255,255,255,0.07);
    --w-border-2:      rgba(255,255,255,0.11);
    --w-primary:       #5B6EFF;
    --w-primary-dim:   rgba(91,110,255,0.15);
    --w-primary-hover: #4A5CE8;
    --w-primary-text:  #fff;
    --w-success:       #22D3A0;
    --w-success-dim:   rgba(34,211,160,0.12);
    --w-warning:       #FBBF24;
    --w-danger:        #F25C5C;
    --w-danger-dim:    rgba(242,92,92,0.12);
    --w-text:          #F9FAFB;
    --w-text-2:        #E5E7EB;
    --w-text-3:        #D1D5DB;
    --w-text-4:        #9CA3AF;

    --w-header-bg:     rgba(11,11,15,0.92);
    --w-header-border: rgba(255,255,255,0.06);
    --w-card-shadow:   0 1px 2px rgba(0,0,0,0.32), 0 12px 24px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.03);
    --w-card-shadow-lg:0 2px 6px rgba(0,0,0,0.34), 0 24px 60px rgba(0,0,0,0.36), 0 0 0 1px rgba(255,255,255,0.04);
    --w-glow:          0 0 60px rgba(91,110,255,0.12);
    --w-scrollbar:     #2a2a38;
    --w-contrast-bg:   #0B0F1E;
    --w-contrast-border: rgba(255,255,255,0.08);
    --w-contrast-text: #F5F7FF;
    --w-contrast-text-2:#C9D2EA;

    --w-gradient:
        radial-gradient(ellipse 900px 600px at 20% -10%, rgba(91,110,255,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 700px 500px at 80% 110%, rgba(34,211,160,0.06) 0%, transparent 55%);

    --w-max-w:         1200px;
    --w-header-h:      64px;
    --w-radius:        12px;
    --w-radius-lg:     16px;
    --w-radius-xl:     24px;
    --w-font:          'DM Sans', system-ui, -apple-system, sans-serif;
    --w-font-mono:     'DM Mono', ui-monospace, monospace;
    --w-transition:    0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --w-placeholder:   rgba(148,163,184,0.72);
}
@media (max-width: 768px) {
    :root {
        --w-header-h: 56px;
    }
}

/* ── LIGHT THEME ── */
html.theme-light {
    --w-bg:            #F6F7FB;
    --w-bg-alt:        #EEF1F7;
    --w-surface:       #FFFFFF;
    --w-surface-2:     #F7F8FD;
    --w-surface-3:     #EEF1F7;
    --w-border:        rgba(15,23,42,0.08);
    --w-border-2:      rgba(15,23,42,0.16);
    --w-primary:       #2F44D0;
    --w-primary-dim:   rgba(51,71,200,0.10);
    --w-primary-hover: #2435AE;
    --w-primary-text:  #fff;
    --w-success:       #0F7A58;
    --w-success-dim:   rgba(15,122,88,0.10);
    --w-warning:       #8A5700;
    --w-danger:        #B4232C;
    --w-danger-dim:    rgba(180,35,44,0.10);
    --w-text:          #111827; /* Deep blue-gray */
    --w-text-2:        #374151;
    --w-text-3:        #4B5563;
    --w-text-4:        #6B7280; /* >= 4.5:1 on --w-bg (#F6F7FB) for WCAG AA */

    --w-header-bg:     rgba(246,247,251,0.92);
    --w-header-border: rgba(15,23,42,0.08);
    --w-card-shadow:   0 1px 2px rgba(15,23,42,0.08), 0 12px 24px rgba(15,23,42,0.08), 0 0 0 1px rgba(15,23,42,0.03);
    --w-card-shadow-lg:0 2px 8px rgba(15,23,42,0.12), 0 24px 60px rgba(15,23,42,0.16), 0 0 0 1px rgba(15,23,42,0.05);
    --w-glow:          0 0 80px rgba(51,71,200,0.10);
    --w-scrollbar:     #C8CAD6;
    --w-contrast-bg:   #0B0F1E;
    --w-contrast-border: rgba(255,255,255,0.12);
    --w-contrast-text: #F8FAFF;
    --w-contrast-text-2:#C9D3EA;
    --w-placeholder:   rgba(107,114,128,0.7);

    --w-gradient:
        radial-gradient(ellipse 900px 600px at 20% -10%, rgba(51,71,200,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 700px 500px at 80% 110%, rgba(15,122,88,0.03) 0%, transparent 55%);
}

/* ── AUTO THEME (system preference) ── */
@media (prefers-color-scheme: light) {
    html.theme-auto {
        --w-bg:            #F6F7FB;
        --w-bg-alt:        #EEF1F7;
        --w-surface:       #FFFFFF;
        --w-surface-2:     #F7F8FD;
        --w-surface-3:     #EEF1F7;
        --w-border:        rgba(15,23,42,0.08);
        --w-border-2:      rgba(15,23,42,0.16);
        --w-primary:       #2F44D0;
        --w-primary-dim:   rgba(51,71,200,0.10);
        --w-primary-hover: #2435AE;
        --w-primary-text:  #fff;
        --w-success:       #0F7A58;
        --w-success-dim:   rgba(15,122,88,0.10);
        --w-warning:       #8A5700;
        --w-danger:        #B4232C;
        --w-danger-dim:    rgba(180,35,44,0.10);
        --w-text:          #0F172A;
        --w-text-2:        #1F2937;
        --w-text-3:        #4B5565;
        --w-text-4:        #6B7280;

        --w-header-bg:     rgba(246,247,251,0.92);
        --w-header-border: rgba(15,23,42,0.08);
        --w-card-shadow:   0 1px 2px rgba(15,23,42,0.08), 0 12px 24px rgba(15,23,42,0.08), 0 0 0 1px rgba(15,23,42,0.03);
        --w-card-shadow-lg:0 2px 8px rgba(15,23,42,0.12), 0 24px 60px rgba(15,23,42,0.16), 0 0 0 1px rgba(15,23,42,0.05);
        --w-glow:          0 0 80px rgba(51,71,200,0.10);
        --w-scrollbar:     #C8CAD6;
        --w-contrast-bg:   #0B0F1E;
        --w-contrast-border: rgba(255,255,255,0.12);
        --w-contrast-text: #F8FAFF;
        --w-contrast-text-2:#C9D3EA;
        --w-placeholder:   rgba(107,114,128,0.7);

        --w-gradient:
            radial-gradient(ellipse 900px 600px at 20% -10%, rgba(51,71,200,0.05) 0%, transparent 60%),
            radial-gradient(ellipse 700px 500px at 80% 110%, rgba(15,122,88,0.03) 0%, transparent 55%);
    }
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
[x-cloak] { display: none !important; }

body.w-body {
    font-family: var(--w-font);
    font-size: 18px;
    line-height: 1.6;
    background-color: var(--w-bg);
    background-image: var(--w-gradient);
    background-attachment: fixed;
    color: var(--w-text);
    min-height: 100vh;
    overflow-x: hidden;
    text-wrap: pretty;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--w-primary); text-decoration: none; transition: color var(--w-transition); }
a:hover { color: var(--w-primary-hover); }
a:focus-visible { outline: 2px solid var(--w-primary); outline-offset: 2px; border-radius: 4px; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
.w-h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--w-text);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
.w-h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.025em; color: var(--w-text); }
.w-h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; letter-spacing: -0.02em; color: var(--w-text); }
.w-h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; color: var(--w-text); }
.w-lead { font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.6; color: var(--w-text-2); }
.w-small { font-size: 1rem; line-height: 1.6; color: var(--w-text-3); }
.w-mono { font-family: var(--w-font-mono); }
@media (max-width: 768px) {
    .w-h1 {
        font-size: 28px;
        line-height: 32px;
    }
}
.w-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--w-primary); padding: 4px 0;
}
.w-label::before {
    content: ''; width: 20px; height: 2px;
    background: var(--w-primary); border-radius: 1px;
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.w-container { max-width: var(--w-max-w); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .w-container { padding: 0 16px; } }

.w-section {
    padding: 80px 0;
    position: relative;
}
.w-section--lg { padding: 100px 0; }
.w-section--tint {
    background: var(--w-surface-2);
}
.w-section--band {
    background: var(--w-bg-alt);
    color: var(--w-text);
    overflow: hidden;
}
.w-section--band::before {
    content: '';
    position: absolute;
    inset: -200px 0 auto;
    height: 320px;
    background: radial-gradient(circle at 50% 30%, rgba(91,110,255,0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.w-section--band > .w-container {
    position: relative;
    z-index: 1;
}
.w-section--band .w-label,
.w-section--band .w-h2,
.w-section--band .w-h3,
.w-section--band .w-lead {
    color: var(--w-text);
}
.w-section--band .w-lead {
    color: var(--w-text-2);
}
@media (max-width: 768px) {
    .w-section { padding: 56px 0; }
    .w-section--lg { padding: 72px 0; }
}

.w-grid {
    display: grid;
    gap: 24px;
}
.w-grid--2 { grid-template-columns: repeat(2, 1fr); }
.w-grid--3 { grid-template-columns: repeat(3, 1fr); }
.w-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
    .w-grid--3, .w-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .w-grid--2, .w-grid--3, .w-grid--4 { grid-template-columns: 1fr; }
}

.w-text-center { text-align: center; }
.w-mx-auto { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */
.w-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--w-header-h);
    background: var(--w-header-bg);
    border-bottom: 1px solid var(--w-header-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background var(--w-transition), border-color var(--w-transition);
}
.w-header__inner {
    position: relative;
    max-width: var(--w-max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}
@media (max-width: 640px) { .w-header__inner { padding: 0 16px; } }

/* Logo */
.w-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
    padding: 4px 6px 4px 2px; margin-left: -2px;
    border-radius: 8px;
    transition: opacity 0.15s;
}
.w-logo:hover { opacity: 0.82; color: var(--w-text); }
.w-logo__icon {
    width: 30px; height: 30px;
    background: var(--w-primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--w-primary-dim);
}
.w-logo__text {
    font-size: 17px; font-weight: 700;
    color: var(--w-text); letter-spacing: -0.01em;
}

/* Nav */
.w-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 4px;
}
.w-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.w-nav__link {
    font-size: 14px; font-weight: 500;
    color: var(--w-text-3);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--w-transition), background var(--w-transition);
    white-space: nowrap;
}
.w-nav__link:hover { color: var(--w-text); background: var(--w-surface-2); }
.w-nav__link:focus-visible { outline: 2px solid var(--w-primary); outline-offset: -2px; }
.w-nav__link--active { color: var(--w-text); background: var(--w-surface-2); }

.w-nav__actions { display: flex; align-items: center; gap: 8px; margin-left: 8px; }

/* Mobile hamburger */
.w-hamburger {
    display: none;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: none; background: transparent;
    color: var(--w-text);
    cursor: pointer; border-radius: 8px;
    transition: background var(--w-transition);
    margin-left: auto;
}
.w-hamburger:hover { background: var(--w-surface-2); }

/* Mobile drawer */
.w-mobile-nav {
    position: fixed; inset: 0; z-index: 200;
    display: flex; flex-direction: column;
    background: var(--w-bg);
    padding: 0 24px 24px;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .32s ease, visibility .32s;
}
.w-mobile-nav.is-open { visibility: visible; pointer-events: auto; transform: translateX(0); }
.w-mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--w-header-h);
    margin: 0 -8px 8px;
    flex-shrink: 0;
}
.w-mobile-nav__close {
    width: 48px; height: 48px;
    border: none; background: var(--w-surface-2);
    color: var(--w-text); border-radius: 10px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.w-mobile-nav__link {
    display: block;
    font-size: 16px; font-weight: 500;
    color: var(--w-text-2);
    padding: 14px 0;
    border-bottom: 1px solid var(--w-border);
    transition: color var(--w-transition);
}
.w-mobile-nav__link:hover { color: var(--w-text); }
.w-mobile-nav__actions {
    margin-top: 24px;
    display: flex; flex-direction: column; gap: 12px;
}

@media (max-width: 768px) {
    .w-nav { display: none; }
    .w-hamburger { display: flex; }
}

/* Theme switcher (compact, in header) */
.w-theme-sw {
    display: flex; align-items: center; gap: 1px;
    background: var(--w-surface-2);
    border: 1px solid var(--w-border-2);
    border-radius: 10px; padding: 3px;
    flex-shrink: 0;
}
.w-theme-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 5px 8px; border: none; border-radius: 7px;
    background: transparent; color: var(--w-text-3);
    font-family: inherit; font-size: 0; cursor: pointer;
    user-select: none; transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.w-theme-btn:hover { color: var(--w-text-2); }
.w-theme-btn.is-active {
    background: var(--w-surface);
    color: var(--w-text);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 0 0 1px var(--w-border-2);
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.w-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--w-font);
    font-size: 15px; font-weight: 500;
    padding: 11px 24px;
    border: none; border-radius: 10px;
    cursor: pointer; user-select: none;
    white-space: nowrap;
    transition: background var(--w-transition), box-shadow var(--w-transition), transform 0.1s;
    text-decoration: none;
    line-height: 1.4;
}
.w-btn:active { transform: scale(0.98); }
.w-btn:focus-visible { outline: 2px solid var(--w-primary); outline-offset: 2px; }

.w-btn--primary {
    background: var(--w-primary);
    color: var(--w-primary-text);
}
.w-btn--primary:hover {
    background: var(--w-primary-hover);
    box-shadow: 0 0 0 3px var(--w-primary-dim);
    color: var(--w-primary-text);
}

/* Dark mode AA contrast for primary buttons. */
html.theme-dark .w-btn--primary,
html.theme-auto .w-btn--primary {
    background: #4A5CE8;
    color: #fff;
}
html.theme-dark .w-btn--primary:hover,
html.theme-auto .w-btn--primary:hover {
    background: #3F52DB;
    color: #fff;
}
@media (prefers-color-scheme: light) {
    html.theme-auto .w-btn--primary {
        background: var(--w-primary);
        color: var(--w-primary-text);
    }
    html.theme-auto .w-btn--primary:hover {
        background: var(--w-primary-hover);
        color: var(--w-primary-text);
    }
}

.w-btn--outline {
    background: rgba(91,110,255,0.08);
    color: var(--w-text);
    border: 1px solid rgba(91,110,255,0.28);
}
.w-btn--outline:hover {
    background: rgba(91,110,255,0.16);
    color: var(--w-text);
    border-color: rgba(91,110,255,0.4);
    box-shadow: 0 0 0 3px rgba(91,110,255,0.12);
}

.w-btn--ghost {
    background: transparent;
    color: var(--w-text-2);
    padding: 11px 16px;
}
.w-btn--ghost:hover {
    background: var(--w-surface-2);
    color: var(--w-text);
}

.w-btn--sm { font-size: 13.5px; padding: 8px 16px; border-radius: 8px; }
.w-btn--lg { font-size: 16px; padding: 14px 32px; border-radius: 12px; }
.w-btn--block { width: 100%; }

/* Modern, Polished Button Styles */
.w-btn {
    transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
    padding: 10px 18px;
    height: 42px; /* Consistent height */
    border-radius: 8px;
    gap: 8px;
}

/* Dark mode AA contrast for small primary buttons (e.g. header CTA). */
html.theme-dark .w-btn--primary.w-btn--sm,
html.theme-auto .w-btn--primary.w-btn--sm {
    background: #4A5CE8;
    color: #fff;
}
html.theme-dark .w-btn--primary.w-btn--sm:hover,
html.theme-auto .w-btn--primary.w-btn--sm:hover {
    background: #3F52DB;
    color: #fff;
}
html.theme-light .w-btn--primary.w-btn--sm {
    background: var(--w-primary);
    color: var(--w-primary-text);
}
html.theme-light .w-btn--primary.w-btn--sm:hover {
    background: var(--w-primary-hover);
    color: var(--w-primary-text);
}
@media (prefers-color-scheme: light) {
    html.theme-auto .w-btn--primary.w-btn--sm {
        background: var(--w-primary);
        color: var(--w-primary-text);
    }
    html.theme-auto .w-btn--primary.w-btn--sm:hover {
        background: var(--w-primary-hover);
        color: var(--w-primary-text);
    }
}

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */
.w-card {
    background: var(--w-surface);
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius-lg);
    padding: 28px;
    box-shadow: var(--w-card-shadow);
    transition: border-color var(--w-transition), box-shadow var(--w-transition), transform var(--w-transition);
}
.w-card:hover {
    border-color: var(--w-border-2);
}
.w-card--lift:hover {
    transform: translateY(-2px);
    box-shadow: var(--w-card-shadow-lg);
}
.w-card--highlight {
    border-color: var(--w-primary);
    box-shadow: var(--w-card-shadow), 0 0 0 1px var(--w-primary);
    position: relative;
}
.w-card--muted {
    background: var(--w-surface-2);
    border-color: var(--w-border);
    box-shadow: none;
}

/* ── COMPARE LIST ── */
.w-compare-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.w-compare-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--w-text-3);
}
.w-compare-list li::before {
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1rem;
    line-height: 1.5;
}
.w-compare-list--negative li::before {
    content: "\2717";
    color: var(--w-danger);
}
.w-compare-list--positive li::before {
    content: "\2713";
    color: var(--w-success);
}
.w-compare-list--positive li {
    color: var(--w-text-2);
}

/* ── BEFORE / AFTER ── */
.w-before-after__slider {
    --ba-pos: 50;
    --ba-max-w: min(720px, 100%);
    position: relative;
    padding: 20px;
    background: linear-gradient(140deg, rgba(91,110,255,0.12), rgba(34,211,160,0.08));
    display: flex;
    flex-direction: column;
    align-items: center;
}
.w-before-after__labels {
    position: absolute;
    top: 24px;
    left: 50%;
    right: auto;
    width: 100%;
    max-width: var(--ba-max-w);
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 3;
    pointer-events: none;
}
.w-before-after__tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    color: var(--w-danger);
    background: var(--w-danger-dim);
}
.w-before-after__tag--after {
    color: var(--w-success);
    background: var(--w-success-dim);
}
.w-before-after__media {
    position: relative;
    border-radius: var(--w-radius-lg);
    overflow: hidden;
    border: 1px solid var(--w-border);
    background: var(--w-surface-2);
    aspect-ratio: 1 / 1;
    box-shadow: var(--w-card-shadow);
    width: 100%;
    max-width: var(--ba-max-w);
}
.w-before-after__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.w-before-after__image--after {
    clip-path: inset(0 0 0 calc(var(--ba-pos) * 1%));
}
.w-before-after__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--ba-pos) * 1%);
    width: 3px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 0 1px var(--w-border-2);
    transform: translateX(-1.5px);
    z-index: 2;
    cursor: ew-resize;
}
.w-before-after__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    box-shadow: 0 8px 18px rgba(0,0,0,0.28), 0 2px 6px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
    pointer-events: none;
    color: #4b5563;
}
.w-before-after__handle svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.w-before-after__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
}
.w-before-after__hint {
    margin-top: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--w-text-3);
    text-align: center;
    letter-spacing: 0.02em;
    max-height: 24px;
    overflow: hidden;
    transition: opacity var(--w-transition), transform var(--w-transition), max-height var(--w-transition), margin-top var(--w-transition);
}
.w-before-after__slider.is-hint-dismissed .w-before-after__hint {
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    max-height: 0;
    margin-top: 0;
}
.w-before-after__slider.is-hinting .w-before-after__image--after {
    transition: clip-path 600ms ease;
}
.w-before-after__slider.is-hinting .w-before-after__divider {
    transition: left 600ms ease;
}

@media (max-width: 640px) {
    .w-before-after__slider {
        --ba-max-w: 100%;
        padding: 14px;
    }
    .w-before-after__labels {
        top: 14px;
        width: calc(100% - 28px);
    }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.w-hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.w-hero::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, var(--w-primary-dim) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.w-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(91,110,255,0.18), transparent 45%),
        radial-gradient(circle at 82% 35%, rgba(34,211,160,0.12), transparent 55%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.w-hero__inner {
    position: relative; z-index: 1;
    max-width: var(--w-max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.w-hero__content {
    max-width: 780px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .w-hero {
        overflow: hidden;
    }
    .w-hero__inner {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 0;
    }
    .w-hero__visual {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-top: 0;
        margin-bottom: 16px;
    }
    .w-hero__visual img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }
    .w-hero__screenshot {
        width: 100%;
        height: auto;
        display: block;
    }
    .w-hero__actions {
        flex-wrap: wrap;
        gap: 12px;
    }
}
@media (min-width: 768px) {
    .w-hero { padding-bottom: 32px; }
    .w-hero__inner {
        display: grid;
        grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
        align-items: stretch;
        column-gap: 48px;
        row-gap: 0;
    }
    .w-hero__content {
        display: block;
        max-width: 520px;
        margin: 0;
        text-align: left;
        grid-column: 1;
        grid-row: 1;
    }
    .w-hero__desc { margin: 0 0 32px; }
    .w-hero__actions {
        justify-content: flex-start;
        grid-column: 1;
        grid-row: 2;
    }
    .w-hero__visual {
        margin-top: 0;
        justify-self: end;
        width: 100%;
        display: flex;
        align-items: stretch;
        grid-column: 2;
        grid-row: 1 / span 2;
    }
    .w-hero__dual-screen {
        --w-hero-visual-shift: 40px;
    }
    .w-hero__labels { padding: 0 12%; margin-bottom: 24px; }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .w-hero__visual { max-width: 520px; }
}
@media (max-width: 640px) {
    .w-hero { padding: 32px 0 40px; }
    .w-hero__inner { padding: 0 16px; }
}
.w-hero__title {
    margin-bottom: 20px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
@media (max-width: 768px) {
    .w-hero__title {
        margin-bottom: 12px;
        font-size: 26px;
        line-height: 32px;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}
.w-hero__desc {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--w-text-2);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 32px;
}
.w-hero__actions {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap;
}
.w-hero__note {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: var(--w-text-4);
    letter-spacing: 0.01em;
    line-height: 1.5;
}
.w-hero__visual {
    margin-top: 0;
    position: relative;
}
.w-hero__dual-screen {
    position: relative;
    display: flex;
    flex-direction: column;
}


.w-hero__screenshot {
    width: 100%;
    flex: 1;
    display: block;
    border-radius: var(--w-radius-lg);
    border: 1px solid var(--w-border);
    box-shadow: var(--w-card-shadow-lg);
}

.w-hero__labels {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 16px;
    z-index: 2;
    pointer-events: none;
}

.w-hero__label {
    font-size: 0.75rem;
    color: var(--w-primary);
    background: var(--w-primary-dim);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .w-hero__labels { display: none; }
}

@media (max-width: 768px) {
    .w-hero__visual {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ═══════════════════════════════════════════
   TRUST BADGES / STATS
   ═══════════════════════════════════════════ */
.w-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.w-stat {
    text-align: center;
}
.w-stat__value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--w-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.w-stat__label {
    font-size: 0.875rem;
    color: var(--w-text-3);
    margin-top: 4px;
}

.w-stats-band {
    position: relative;
    border-radius: var(--w-radius-xl);
    border: 1px solid var(--w-border);
    background: linear-gradient(135deg, var(--w-surface), var(--w-surface-2));
    padding: 48px 40px;
    box-shadow: var(--w-card-shadow-lg);
    overflow: hidden;
    max-width: 980px;
    margin: 0 auto;
}
.w-stats-band::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(91,110,255,0.18) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}
.w-stats-band__intro {
    margin-bottom: 32px;
    text-align: center;
}
.w-stats-band__eyebrow {
    display: inline-flex;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--w-text-4);
    font-weight: 700;
    justify-content: center;
    width: 100%;
}
.w-stats-band__desc {
    margin-top: 12px;
    font-size: 1rem;
    color: var(--w-text-3);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.w-stats--band .w-stat__value {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: var(--w-text);
}
.w-stats--band .w-stat__label {
    color: var(--w-text-3);
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .w-stats-band {
        padding: 32px 24px;
    }
}

/* ═══════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════ */
.w-section-header {
    max-width: 640px;
    margin-bottom: 48px;
}
.w-section-header--center {
    margin-left: auto; margin-right: auto;
    text-align: center;
}
.w-section-header .w-label { margin-bottom: 12px; }
.w-section-header .w-h2 { margin-bottom: 12px; }
.w-section-header .w-lead { margin-top: 8px; }

/* ═══════════════════════════════════════════
   FEATURE CARDS (why choose us)
   ═══════════════════════════════════════════ */
.w-feature {
    padding: 24px;
}
.w-feature__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(91,110,255,0.22), rgba(34,211,160,0.08));
    color: var(--w-primary);
    border: 1px solid rgba(91,110,255,0.28);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.w-feature__icon svg path,
.w-feature__icon svg circle,
.w-feature__icon svg rect,
.w-feature__icon svg line,
.w-feature__icon svg polyline,
.w-feature__icon svg polygon {
    stroke-width: 2.5;
}
.w-feature__title {
    font-size: 1.0625rem; font-weight: 600;
    color: var(--w-text);
    margin-bottom: 8px;
}
.w-feature__text {
    font-size: 1rem;
    color: var(--w-text-2);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS (steps)
   ═══════════════════════════════════════════ */
.w-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
    position: relative;
}
@media (max-width: 768px) { .w-steps { grid-template-columns: 1fr; gap: 24px; } }

.w-step {
    position: relative;
    counter-increment: step;
    padding: 24px;
}
.w-step__number {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--w-primary);
    margin-bottom: 12px;
    font-family: var(--w-font-mono);
}
.w-step__number::before { content: counter(step, decimal-leading-zero); }
.w-step__title {
    font-size: 1.125rem; font-weight: 600;
    color: var(--w-text);
    margin-bottom: 8px;
}
.w-step__text {
    font-size: 1rem;
    color: var(--w-text-2);
    line-height: 1.6;
}
.w-step__visual {
    margin-top: 16px;
    border-radius: var(--w-radius);
    border: 1px solid var(--w-border);
    background: var(--w-surface-2);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    padding: 0;
}

.w-step__visual img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.w-pricing {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1180px;
    margin-inline: auto;
    gap: 24px;
    align-items: start;
}
@media (max-width: 1040px) { .w-pricing { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

.w-pricing-card {
    background: var(--w-surface);
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius-xl);
    padding: 32px;
    box-shadow: var(--w-card-shadow);
    transition: border-color var(--w-transition), box-shadow var(--w-transition), transform var(--w-transition);
    position: relative;
}
.w-pricing-card:hover {
    border-color: var(--w-border-2);
    transform: translateY(-2px);
    box-shadow: var(--w-card-shadow-lg);
}
.w-pricing-card--muted {
    background: var(--w-surface-2);
    border-color: var(--w-border);
}
.w-pricing-card--popular {
    border-color: var(--w-primary);
    background: linear-gradient(180deg, rgba(91,110,255,0.1) 0%, rgba(91,110,255,0.02) 55%), var(--w-surface);
    box-shadow:
        0 0 0 1.5px var(--w-primary),
        0 10px 15px -3px rgba(91,110,255,0.18),
        0 4px 6px -2px rgba(91,110,255,0.12);
    transform: translateY(-4px);
}
.w-pricing-card--popular:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1.5px var(--w-primary),
        0 16px 28px -6px rgba(91,110,255,0.22),
        0 6px 10px -4px rgba(91,110,255,0.14);
}
.w-pricing-card__badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--w-primary);
    color: #fff;
    font-size: 12px; font-weight: 600;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.w-pricing-card__name {
    font-size: 1.125rem; font-weight: 600;
    color: var(--w-text);
    margin-bottom: 4px;
}
.w-pricing-card__audience {
    font-size: 1rem;
    color: var(--w-text-3);
    margin-bottom: 20px;
}
.w-pricing-card__price {
    display: flex; align-items: flex-start; gap: 4px;
    margin-bottom: 4px;
}
.w-pricing-card__amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--w-text);
    letter-spacing: -0.02em;
    line-height: 1;
}
.w-pricing-card__period {
    font-size: 0.8125rem;
    color: var(--w-text-3);
    margin-top: 6px;
    font-weight: 600;
}
.w-pricing-card__note {
    font-size: 0.875rem;
    color: var(--w-text-3);
    text-align: center;
    margin-bottom: 24px;
}
.w-pricing-card__note--left {
    text-align: left;
}
.w-pricing-card__divider {
    height: 1px;
    background: var(--w-border);
    margin: 24px 0;
}
.w-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 10px;
}
.w-pricing-card__feature {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--w-text-2);
    line-height: 1.5;
}
.w-pricing-card__feature svg {
    flex-shrink: 0;
    margin-top: 3px;
}
.w-pricing-card__feature--disabled {
    color: #7C86AA;
    text-decoration: line-through;
    opacity: 1;
}
@media (max-width: 900px) {
    .w-pricing-card--popular {
        transform: none;
    }
    .w-pricing-card:hover {
        transform: none;
    }
}

/* Improve pricing-card text contrast for light themes (Lighthouse AA). */
html.theme-light .w-pricing-card__feature--disabled {
    color: #5f6f86;
    opacity: 0.92;
}

@media (prefers-color-scheme: light) {
    html.theme-auto .w-pricing-card__feature--disabled {
        color: #5f6f86;
        opacity: 0.92;
    }
}

/* Dark mode AA contrast for pricing badge and primary CTA. */
html.theme-dark .w-pricing-card__badge,
html.theme-auto .w-pricing-card__badge {
    background: #4A5CE8;
    color: #fff;
}
html.theme-dark .w-pricing .w-btn--primary.w-btn--block,
html.theme-auto .w-pricing .w-btn--primary.w-btn--block {
    background: #4A5CE8;
    color: #fff;
}
html.theme-dark .w-pricing .w-btn--primary.w-btn--block:hover,
html.theme-auto .w-pricing .w-btn--primary.w-btn--block:hover {
    background: #3F52DB;
    color: #fff;
}

@media (prefers-color-scheme: light) {
    html.theme-auto .w-pricing-card__badge {
        background: var(--w-primary);
        color: #fff;
    }
    html.theme-auto .w-pricing .w-btn--primary.w-btn--block {
        background: var(--w-primary);
        color: #fff;
    }
    html.theme-auto .w-pricing .w-btn--primary.w-btn--block:hover {
        background: var(--w-primary-hover);
        color: #fff;
    }
}

.w-inline-002 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--w-surface);
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius-xl);
    overflow: visible;
}
.w-inline-002 thead th {
    vertical-align: top;
    padding: 24px 12px;
}
.w-inline-002 thead th.w-inline-005 {
    background: linear-gradient(180deg, rgba(91,110,255,0.2) 0%, rgba(91,110,255,0.08) 100%);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(91,110,255,0.18);
}
.w-table-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.w-table-head__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--w-text-2);
    letter-spacing: 0.02em;
}
.w-table-head__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--w-text);
    margin-bottom: 4px;
}
.w-table-head__period {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--w-text-3);
}
.w-table-feature-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--w-text);
    line-height: 1.4;
}
.w-table-feature-desc {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--w-text-3);
    margin-top: 4px;
    line-height: 1.4;
}

.w-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: help;
    border-bottom: 1px dotted rgba(91,110,255,0.45);
}
.w-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    max-width: 320px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(12, 15, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.12);
    color: #f5f7ff;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--w-transition), transform var(--w-transition);
    z-index: 4;
}
.w-tooltip:hover::after,
.w-tooltip:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.w-tooltip:focus-visible {
    outline: 2px solid rgba(91,110,255,0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (min-width: 769px) {
    .w-inline-002 tbody tr {
        transition: background var(--w-transition);
    }
    .w-inline-002 tbody tr:nth-child(even) {
        background: var(--w-surface-2);
    }
    .w-inline-002 tbody tr:hover {
        background: var(--w-surface-3);
    }
    .w-inline-002 tbody td[data-plan="Pro"] {
        background: rgba(91,110,255,0.08);
    }
    .w-inline-002 tbody tr:hover td[data-plan="Pro"] {
        background: rgba(91,110,255,0.14);
    }
    .w-inline-002 tbody tr:last-child td[data-plan="Pro"] {
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }
}

@media (max-width: 768px) {
    .w-inline-001 {
        overflow-x: visible;
    }
    .w-inline-002 {
        min-width: 0 !important;
        border: none;
        background: transparent;
        border-radius: 0;
    }
    .w-inline-002 thead {
        display: none;
    }
    .w-inline-002, .w-inline-002 tbody, .w-inline-002 tr, .w-inline-002 td {
        display: block;
        width: 100%;
    }
    .w-inline-002 tr {
        margin-bottom: 32px;
        background: var(--w-surface);
        border: 1px solid var(--w-border);
        border-radius: var(--w-radius-lg);
        overflow: hidden;
    }
    .w-inline-002 td.w-inline-006 {
        background: var(--w-surface-2);
        padding: 12px 16px;
        font-weight: 700;
        font-size: 1rem;
        color: var(--w-text);
        border-bottom: 1px solid var(--w-border);
        text-align: left;
    }
    .w-inline-002 td.w-inline-006 .w-table-feature-name {
        font-size: 1rem;
        font-weight: 700;
    }
    .w-table-feature-desc {
        font-weight: 400;
        font-size: 0.8125rem;
    }
    .w-inline-002 td.w-inline-007 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        border-bottom: 1px solid var(--w-border-2);
        font-size: 1.0625rem;
    }
    .w-inline-002 td.w-inline-007[data-plan="Pro"] {
        background: rgba(91,110,255,0.12);
        border-left: 3px solid rgba(91,110,255,0.5);
    }
    .w-inline-002 td.w-inline-007:last-child {
        border-bottom: none;
    }
    .w-inline-002 td.w-inline-007::before {
        content: attr(data-plan);
        font-weight: 600;
        color: var(--w-text-3);
    }
}


/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.w-cta {
    background: var(--w-surface);
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius-xl);
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.w-cta::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, var(--w-primary-dim) 0%, transparent 60%);
    pointer-events: none;
}
.w-cta__inner { position: relative; z-index: 1; }
.w-cta__title { margin-bottom: 12px; }
.w-cta__text { color: var(--w-text-2); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.w-cta__actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.w-cta__note {
    margin-top: 14px;
    font-size: 0.9375rem;
    color: var(--w-text-3);
}

/* ═══════════════════════════════════════════
   USE CASES
   ═══════════════════════════════════════════ */
.w-usecase {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    box-shadow: var(--w-card-shadow), 0 4px 20px rgba(0,0,0,0.05);
}
.w-usecase:hover {
    transform: translateY(-2px);
    box-shadow: var(--w-card-shadow-lg);
    border-color: var(--w-border-2);
}
.w-usecase__icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(91,110,255,0.28);
    background: linear-gradient(135deg, rgba(91,110,255,0.2), rgba(34,211,160,0.06));
    color: var(--w-primary);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.w-usecase__title { font-size: 1rem; font-weight: 600; color: var(--w-text); margin-bottom: 4px; }
.w-usecase__text { font-size: 1rem; color: var(--w-text-2); line-height: 1.6; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.w-footer {
    border-top: 1px solid var(--w-border);
    padding: 48px 0 32px;
    background: var(--w-bg-alt);
}
.w-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .w-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .w-footer__grid { grid-template-columns: 1fr; }
}
.w-footer__brand-desc {
    font-size: 0.875rem;
    color: var(--w-text-3);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 280px;
}
.w-footer__heading {
    font-size: 0.8125rem; font-weight: 600;
    color: var(--w-text-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.w-footer__links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.w-footer__link {
    font-size: 0.875rem;
    color: var(--w-text-3);
    transition: color var(--w-transition);
}
.w-footer__link:hover { color: var(--w-text); }
.w-footer__bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--w-border);
    font-size: 0.8125rem;
    color: #8D98BE;
}
.w-footer__bottom-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.w-footer__dot {
    opacity: 0.45;
}
.w-footer__lang {
    display: flex;
    align-items: center;
}
.w-lang-picker {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.w-lang-picker__icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8D98BE;
    transition: color var(--w-transition);
}
.w-lang-picker__chevron {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8D98BE;
    transition: color var(--w-transition), transform var(--w-transition);
}
.w-lang-picker__select,
.w-footer .w-lang-picker__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 32px;
    padding: 0 28px 0 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #d1d8e6;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: border-color var(--w-transition), background var(--w-transition), color var(--w-transition), box-shadow var(--w-transition);
}
.w-lang-picker__select:hover,
.w-footer .w-lang-picker__select:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
}
.w-lang-picker__select:focus-visible,
.w-footer .w-lang-picker__select:focus-visible {
    outline: 2px solid var(--w-primary);
    outline-offset: 2px;
    border-color: var(--w-primary);
    box-shadow: 0 0 0 3px var(--w-primary-dim);
    color: #ffffff;
}
.w-lang-picker:hover .w-lang-picker__icon,
.w-lang-picker:hover .w-lang-picker__chevron {
    color: #ffffff;
}
.w-lang-picker:focus-within .w-lang-picker__icon,
.w-lang-picker:focus-within .w-lang-picker__chevron {
    color: var(--w-primary);
}
.w-lang-picker__select option,
.w-footer .w-lang-picker__select option {
    background: #0d1322;
    color: #f1f5f9;
    font-size: 0.8125rem;
    padding: 6px 10px;
}

.w-footer__social {
    display: flex; gap: 12px;
}
.w-footer__social a {
    color: #8D98BE;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--w-border);
    background: var(--w-surface);
    transition: color var(--w-transition), background var(--w-transition), border-color var(--w-transition);
}
.w-footer__social a:hover {
    color: var(--w-text);
    background: var(--w-surface-2);
    border-color: var(--w-border-2);
}

/* Improve footer contrast for light themes (Lighthouse AA). */
html.theme-light .w-footer {
    color: var(--w-text-2);
}
html.theme-light .w-footer__bottom,
html.theme-light .w-footer__social a {
    color: #526076;
}

@media (prefers-color-scheme: light) {
    html.theme-auto .w-footer {
        color: var(--w-text-2);
    }
    html.theme-auto .w-footer__bottom,
    html.theme-auto .w-footer__social a {
        color: #526076;
    }
}

@media (max-width: 768px) {
    .w-footer__link {
        padding: 6px 0;
        display: inline-flex;
    }
    .w-footer__bottom {
        padding-top: 28px;
    }
}

/* ═══════════════════════════════════════════
   FORMS (contact page)
   ═══════════════════════════════════════════ */
.w-form-group { margin-bottom: 20px; }
.w-form-label {
    display: block;
    font-size: 14px; font-weight: 600;
    color: var(--w-text-2);
    margin-bottom: 6px;
}
.w-form-input,
.w-form-textarea,
.w-form-select {
    width: 100%;
    background: var(--w-surface);
    border: 1px solid var(--w-border);
    border-radius: 10px;
    color: var(--w-text);
    font-family: var(--w-font);
    font-size: 15px;
    padding: 11px 14px;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: border-color var(--w-transition), box-shadow var(--w-transition), background var(--w-transition);
}
.w-form-textarea { resize: vertical; min-height: 120px; }
.w-form-input:focus,
.w-form-textarea:focus,
.w-form-select:focus {
    border-color: var(--w-primary);
    box-shadow: 0 0 0 3px var(--w-primary-dim), 0 4px 12px rgba(15,23,42,0.08);
}
.w-form-input::placeholder,
.w-form-textarea::placeholder { color: var(--w-placeholder); }
.w-form-error {
    font-size: 13px;
    color: var(--w-danger);
    margin-top: 4px;
}
.w-form-hint {
    font-size: 13px;
    color: var(--w-text-4);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════ */
.w-alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.w-alert--success {
    background: var(--w-success-dim);
    border: 1px solid rgba(34,211,160,0.25);
    color: var(--w-success);
}
.w-alert--error {
    background: var(--w-danger-dim);
    border: 1px solid rgba(242,92,92,0.25);
    color: var(--w-danger);
}

/* ═══════════════════════════════════════════
   LEGAL / PROSE
   ═══════════════════════════════════════════ */
.w-prose {
    max-width: 760px;
    margin: 0 auto;
}
.w-prose h1 { font-size: 2rem; font-weight: 700; margin-bottom: 8px; color: var(--w-text); }
.w-prose h2 { font-size: 1.375rem; font-weight: 600; margin: 40px 0 12px; color: var(--w-text); }
.w-prose h3 { font-size: 1.125rem; font-weight: 600; margin: 28px 0 8px; color: var(--w-text); }
.w-prose p { margin-bottom: 16px; color: var(--w-text-2); line-height: 1.7; }
.w-prose ul, .w-prose ol { margin: 0 0 16px 24px; color: var(--w-text-2); }
.w-prose li { margin-bottom: 6px; line-height: 1.6; }
.w-prose a { color: var(--w-primary); text-decoration: underline; text-underline-offset: 2px; }
.w-prose a:hover { color: var(--w-primary-hover); }
.w-prose strong { color: var(--w-text); font-weight: 600; }
.w-prose .w-prose__updated {
    font-size: 0.875rem;
    color: var(--w-text-4);
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════════
   COOKIE CONSENT
   ═══════════════════════════════════════════ */
.w-cookie-banner {
    position: fixed;
    bottom: 24px; left: 24px; right: 24px;
    max-width: 480px;
    z-index: 300;
    background: var(--w-surface);
    border: 1px solid var(--w-border-2);
    border-radius: var(--w-radius-lg);
    box-shadow: var(--w-card-shadow-lg);
    padding: 20px 24px;
    display: none;
}
.w-cookie-banner.is-visible { display: block; }
.w-cookie-banner__text {
    font-size: 0.875rem;
    color: var(--w-text-2);
    line-height: 1.6;
    margin-bottom: 16px;
}
.w-cookie-banner__text a { text-decoration: underline; }
.w-cookie-banner__actions {
    display: flex; gap: 8px; flex-wrap: wrap;
}
@media (max-width: 640px) {
    .w-cookie-banner { bottom: 16px; left: 16px; right: 16px; }
}

/* ═══════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════ */
::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--w-scrollbar); border-radius: 99px; }

/* ═══════════════════════════════════════════
   ANIMATIONS (subtle, respects prefers-reduced-motion)
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
    /* Hidden state only applies when JS is active (html.js); otherwise content
       stays visible, preserving meaning when scripting is disabled. */
    html.js .w-fade-in {
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    html.js .w-fade-in.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .w-fade-in { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   SKIP LINK (a11y)
   ═══════════════════════════════════════════ */
.w-skip-link {
    position: absolute;
    top: -100px; left: 16px;
    background: var(--w-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 999;
    transition: top 0.2s;
}
.w-skip-link:focus { top: 16px; }

/* ═══════════════════════════════════════════
   DIVIDER (section divider)
   ═══════════════════════════════════════════ */
.w-divider {
    height: 1px;
    background: var(--w-border);
    border: none;
    margin: 0;
}

/* ═══════════════════════════════════════════
   PAGE LOADER
   ═══════════════════════════════════════════ */
.w-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--w-bg);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.w-page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.w-page-loader__spinner {
    position: relative;
    width: 66px;
    height: 66px;
}

.w-page-loader__ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: var(--w-primary);
    border-radius: 999px;
    animation: wPageLoaderSpin 0.86s linear infinite;
}

.w-page-loader__core {
    position: absolute;
    inset: 18px;
    border-radius: 999px;
    background: var(--w-primary);
    box-shadow: 0 0 28px rgba(91,110,255,0.45);
    animation: wPageLoaderPulse 1.05s ease-in-out infinite;
}

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

@keyframes wPageLoaderPulse {
    0%, 100% { transform: scale(0.72); opacity: 0.4; }
    50% { transform: scale(1); opacity: 0.7; }
}

/* Light theme support */
html.theme-light .w-page-loader {
    background: #F0F4FF;
}
html.theme-light .w-page-loader__ring {
    border-color: rgba(0,0,0,0.1);
    border-top-color: var(--w-primary);
}
html.theme-light .w-page-loader__core {
    box-shadow: 0 0 28px rgba(91,110,255,0.25);
}

/* Website layout utilities */
.w-no-scroll{overflow:hidden}.w-header__inner{max-width:1200px}.w-positioning,.w-contact-layout{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:start}.w-check-list,.w-muted-list{list-style:none;display:grid;gap:12px;margin-top:24px}.w-check-list li:before{content:'✓';color:var(--w-success);font-weight:700;margin-right:10px}.w-muted-list li:before{content:'—';color:var(--w-text-3);margin-right:10px}.w-comparison{overflow-x:auto;border:1px solid var(--w-border-2);border-radius:var(--w-radius-lg);background:var(--w-surface)}.w-comparison table{width:100%;border-collapse:collapse;min-width:760px}.w-comparison th,.w-comparison td{padding:16px 20px;text-align:left;border-bottom:1px solid var(--w-border)}.w-comparison thead th{background:var(--w-surface-2);color:var(--w-text)}.w-active-note{margin-top:28px;padding:24px;border:1px solid var(--w-border-2);border-radius:var(--w-radius-lg);background:var(--w-primary-dim)}.w-form-page{max-width:660px}.w-form-page>.w-card{margin-top:32px}.w-form-help{font-size:.875rem;color:var(--w-text-3);text-align:center;margin-top:12px}.w-honeypot{position:absolute!important;left:-10000px!important;width:1px;height:1px;overflow:hidden}.w-modal[hidden]{display:none}.w-modal{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:20px}.w-modal__backdrop{position:absolute;inset:0;background:rgba(8,10,20,.72);backdrop-filter:blur(8px)}.w-modal__panel{position:relative;width:min(100%,560px);max-height:calc(100vh - 40px);overflow:auto;background:var(--w-surface);border:1px solid var(--w-border-2);border-radius:24px;padding:36px;box-shadow:var(--w-card-shadow-lg)}.w-modal__panel .w-lead{margin:12px 0 24px}.w-modal__close{float:right;border:0;background:var(--w-surface-2);color:var(--w-text-2);min-width:52px;min-height:44px;border-radius:10px;cursor:pointer}.w-success-state{text-align:center}.w-success-mark{display:grid;place-items:center;width:56px;height:56px;margin:0 auto 20px;border-radius:50%;background:var(--w-success-dim);color:var(--w-success);font-size:28px}.w-legal{max-width:820px}.w-legal h2{font-size:1.5rem;margin:36px 0 10px}.w-legal p{margin:12px 0;color:var(--w-text-2)}.w-faq-trigger{min-height:60px}.w-form-error ul{list-style:none;color:var(--w-danger);font-size:.875rem}.w-pricing-card__features li{line-height:1.45}.w-btn:focus-visible,.w-faq-trigger:focus-visible,.w-modal__close:focus-visible,.w-hamburger:focus-visible{outline:3px solid var(--w-primary);outline-offset:3px}.w-btn[disabled]{opacity:.7;cursor:wait}.w-hero__visual{width:100%;max-width:1040px;margin-inline:auto}.w-hero__screenshot{width:100%;height:auto}
@media(max-width:800px){.w-positioning,.w-contact-layout{grid-template-columns:1fr}.w-modal__panel{padding:24px}.w-pricing{grid-template-columns:1fr}.w-hero__inner{padding-inline:16px}.w-btn{min-height:48px}.w-footer__grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.w-footer__grid{grid-template-columns:1fr}.w-modal{padding:8px}.w-modal__panel{max-height:calc(100vh - 16px);border-radius:18px}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}

/* Rich marketing sections */
.w-container--narrow { max-width: 880px; }
.w-gradient-text {
    color: var(--w-primary);
    background: linear-gradient(110deg, #2f44d0 5%, #7258dd 58%, #4a68e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.w-hero__support {
    margin: -18px 0 24px;
    color: var(--w-text-2);
    font-size: 0.975rem;
    font-weight: 600;
}
.w-hero__dual-screen {
    padding: 10px;
    border: 1px solid rgba(47, 68, 208, 0.16);
    border-radius: calc(var(--w-radius-xl) + 2px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 30px 80px rgba(47, 68, 208, 0.15);
}
.w-hero__screenshot { border-radius: var(--w-radius-lg); }
.w-section--solution {
    background: linear-gradient(180deg, rgba(238, 243, 255, 0.75), rgba(255, 255, 255, 0.5));
}
.w-section--steps { background: var(--w-surface); }
.w-section--features {
    background:
        radial-gradient(circle at 12% 16%, rgba(91,110,255,0.1), transparent 28%),
        linear-gradient(180deg, #f3f6ff 0%, #f7f8fc 100%);
}
.w-section--comparison { background: var(--w-surface); }
.w-section--pricing {
    background: linear-gradient(180deg, rgba(238, 241, 247, 0.72), rgba(246, 247, 251, 0.95));
}
.w-section--final-cta { padding-top: 48px; }
.w-section-explainer {
    max-width: 650px;
    margin: 20px auto 0;
    padding: 12px 18px;
    border: 1px solid rgba(47, 68, 208, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--w-text-2);
    font-size: 0.95rem;
    line-height: 1.55;
}
.w-section-action { margin-top: 36px; text-align: center; }
.w-feature { height: 100%; }
.w-feature-grid { align-items: stretch; }
.w-feature__icon--blue { color: #2f44d0; background: #eef1ff; border-color: #dce2ff; }
.w-feature__icon--violet { color: #7047bd; background: #f4edff; border-color: #e7d9ff; }
.w-feature__icon--green { color: #0f7a58; background: #eaf8f2; border-color: #cfeee2; }
.w-feature__icon--rose { color: #b42352; background: #fff0f4; border-color: #f9d7e2; }
.w-feature__icon--amber { color: #8a5700; background: #fff7df; border-color: #f4e5ae; }
.w-feature__icon--cyan { color: #116b82; background: #e9f8fc; border-color: #cdebf3; }
.w-step {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-color: rgba(47, 68, 208, 0.1);
    box-shadow: 0 16px 40px rgba(24, 38, 86, 0.09);
}
.w-step__text { min-height: 76px; }
.w-step__visual {
    aspect-ratio: 800 / 543;
    margin-top: auto;
    background: linear-gradient(145deg, #f4f6ff, #eef4ff);
}
.w-step__visual img { object-fit: cover; }
.w-compare-card { min-height: 100%; padding: 34px; }
.w-compare-card__eyebrow {
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--w-text-3);
}
.w-compare-card--negative {
    border-color: rgba(180, 35, 44, 0.12);
    background: linear-gradient(145deg, #fff, #fff6f7);
}
.w-compare-card--positive {
    border-color: rgba(47, 68, 208, 0.6);
    background: linear-gradient(145deg, #fff, #f1f4ff);
    box-shadow: 0 18px 48px rgba(47, 68, 208, 0.12), inset 0 0 0 1px rgba(47, 68, 208, 0.12);
}
.w-compare-card--positive .w-compare-card__eyebrow { color: var(--w-primary); }
.w-pricing { align-items: stretch; }
.w-pricing-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.w-pricing-card__header { min-height: 158px; }
.w-pricing-card__launch-note {
    display: inline-flex;
    margin: 8px 0 12px;
    color: var(--w-primary);
    font-size: 0.8rem;
    font-weight: 700;
}
.w-pricing-card__features { flex: 1; }
.w-pricing-card__feature svg { color: var(--w-success); }
.w-pricing-card__feature strong { color: var(--w-text); }
.w-pricing-card .w-btn { margin-top: auto; }
.w-pricing-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    background:
        radial-gradient(circle at 50% -10%, rgba(91,110,255,0.16), transparent 42%),
        linear-gradient(180deg, #f9faff, #f2f5fc);
}
.w-pricing-hero::after {
    content: '';
    position: absolute;
    inset: auto -15% -300px;
    height: 500px;
    background: radial-gradient(circle, rgba(112,88,221,0.09), transparent 65%);
    pointer-events: none;
}
.w-pricing-hero > .w-container { position: relative; z-index: 1; }
.w-pricing-hero .w-section-header { max-width: 760px; }
.w-comparison--pricing {
    overflow-x: auto;
    border-radius: var(--w-radius-xl);
    box-shadow: 0 18px 50px rgba(24, 38, 86, 0.1);
    scrollbar-gutter: stable;
}
.w-comparison--pricing table { min-width: 780px; }
.w-comparison--pricing th,
.w-comparison--pricing td { padding: 18px 22px; }
.w-comparison--pricing thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    font-size: 1.02rem;
}
.w-comparison--pricing tbody tr:nth-child(even) { background: rgba(247,248,253,0.85); }
.w-comparison--pricing tbody th { width: 34%; color: var(--w-text); font-size: 0.94rem; }
.w-comparison--pricing td { color: var(--w-text-2); font-size: 0.94rem; }
.w-comparison__pro,
.w-comparison__pro-cell { background: rgba(47, 68, 208, 0.055) !important; }
.w-comparison__pro { color: var(--w-primary) !important; }
.w-comparison__pro span { display: block; margin-top: 2px; font-size: 0.72rem; font-weight: 600; }
.w-table-check { color: var(--w-success); font-size: 1.15rem; font-weight: 800; }
.w-table-dash { color: var(--w-text-4); }
.w-active-note {
    display: flex;
    gap: 18px;
    padding: 26px 28px;
    background: linear-gradient(135deg, #eef1ff, #f7f9ff);
    box-shadow: 0 12px 30px rgba(47, 68, 208, 0.07);
}
.w-active-note__icon {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    color: var(--w-primary);
    box-shadow: var(--w-card-shadow);
}
.w-active-note h3 { margin-bottom: 6px; color: var(--w-text); font-size: 1.05rem; }
.w-active-note p { color: var(--w-text-2); font-size: 0.94rem; }
.w-active-note p + p { margin-top: 5px; }
.w-faq {
    max-width: 780px;
    overflow: hidden;
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius-xl);
    background: var(--w-surface);
    box-shadow: 0 16px 42px rgba(24, 38, 86, 0.08);
}
.w-faq-item:first-child { border-top: 0; }
.w-faq-item:last-child { border-bottom: 0; }
.w-faq-heading { margin: 0; }
.w-faq-item summary { list-style: none; }
.w-faq-item summary::-webkit-details-marker { display: none; }
.w-faq-item summary::marker { content: ''; }
.w-faq-trigger {
    min-height: 72px;
    padding: 20px 24px;
    font-size: 1.04rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    cursor: pointer;
    background: none;
    border: 0;
    text-align: left;
    font-family: inherit;
    font-weight: 650;
    color: var(--w-text);
}
.w-faq-trigger:hover { background: var(--w-surface-2); }
.w-faq-trigger:focus-visible { outline: 3px solid var(--w-primary); outline-offset: -3px; border-radius: 0; }
.w-faq-trigger__icon {
    position: relative;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 1px solid var(--w-border-2);
    border-radius: 50%;
    background: var(--w-surface-2);
}
.w-faq-trigger__icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
}
.w-faq-trigger__icon span:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.w-faq-item[open] .w-faq-trigger__icon { transform: rotate(45deg); color: var(--w-primary); }
.w-faq-item[open] .w-faq-trigger__icon span:last-child { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.w-faq-answer { padding: 0 64px 24px 24px; font-size: 1rem; color: var(--w-text-2); }
.w-cta {
    border-color: rgba(47, 68, 208, 0.16);
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(238,242,255,0.96));
    box-shadow: 0 24px 70px rgba(47, 68, 208, 0.12);
}
.w-cta::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -130px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,160,0.12), transparent 68%);
}
.w-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .w-pricing-card__header { min-height: 0; }
    .w-pricing-card--popular { margin-top: 8px; }
}
@media (max-width: 768px) {
    .w-hero__support { margin: -4px 0 22px; }
    .w-hero__content { text-align: center; }
    .w-hero__visual { margin-top: 30px; }
    .w-hero__dual-screen { padding: 6px; }
    .w-step__text { min-height: 0; }
    .w-pricing-hero { padding: 64px 0; }
    .w-comparison--pricing { margin-inline: -4px; }
    .w-active-note { padding: 22px; }
}
@media (max-width: 520px) {
    .w-section-header { margin-bottom: 34px; }
    .w-card,
    .w-pricing-card,
    .w-compare-card { padding: 22px; }
    .w-before-after__handle { width: 42px; height: 42px; }
    .w-active-note { display: block; }
    .w-active-note__icon { margin-bottom: 14px; }
    .w-faq { border-radius: var(--w-radius-lg); }
    .w-faq-trigger { min-height: 68px; padding: 18px; font-size: 1rem; }
    .w-faq-answer { padding: 0 52px 20px 18px; }
    .w-cta { padding: 42px 22px; }
}

/* Legal documents */
.w-legal { max-width: 920px; }
.w-legal > .w-h1 { margin-bottom: 10px; }
.w-legal-meta { color: var(--w-text-3) !important; font-size: 0.92rem; }
.w-legal h2 { scroll-margin-top: 92px; }
.w-legal h3 { margin: 24px 0 8px; color: var(--w-text); font-size: 1.05rem; }
.w-legal p,
.w-legal li,
.w-legal address { color: var(--w-text-2); line-height: 1.72; }
.w-legal ul,
.w-legal ol { margin: 12px 0 18px 24px; }
.w-legal li + li { margin-top: 7px; }
.w-legal address { margin: 14px 0; font-style: normal; }
.w-legal a { color: var(--w-primary); text-decoration: underline; text-underline-offset: 2px; }
.w-legal-notice {
    margin: 26px 0;
    padding: 18px 20px;
    border: 1px solid rgba(47, 68, 208, 0.2);
    border-radius: 14px;
    background: var(--w-primary-dim);
}
.w-legal-notice p { margin: 0; color: var(--w-text); }
.w-legal-toc {
    margin: 28px 0 40px;
    padding: 22px 24px;
    border: 1px solid var(--w-border);
    border-radius: 16px;
    background: var(--w-surface-2);
}
.w-legal-toc > strong { color: var(--w-text); }
.w-legal-toc ol { columns: 2; column-gap: 38px; margin-bottom: 0; }
.w-legal-toc li { break-inside: avoid; font-size: 0.92rem; }
.w-legal-table {
    margin: 18px 0 24px;
    overflow-x: auto;
    border: 1px solid var(--w-border);
    border-radius: 14px;
    background: var(--w-surface);
}
.w-legal-table table { width: 100%; min-width: 680px; border-collapse: collapse; }
.w-legal-table th,
.w-legal-table td { padding: 13px 15px; border-bottom: 1px solid var(--w-border); text-align: left; vertical-align: top; line-height: 1.55; }
.w-legal-table thead th { background: var(--w-surface-2); color: var(--w-text); font-size: 0.87rem; }
.w-legal-table tbody th { width: 23%; color: var(--w-text); font-size: 0.9rem; }
.w-legal-table td { color: var(--w-text-2); font-size: 0.9rem; }
.w-legal-table tr:last-child th,
.w-legal-table tr:last-child td { border-bottom: 0; }

@media (max-width: 700px) {
    .w-legal-toc ol { columns: 1; }
    .w-legal-notice,
    .w-legal-toc { padding: 18px; }
}

/* Keep the hero product preview sharp and at its native 1376:768 ratio. */
@media (min-width: 768px) {
    .w-hero__inner {
        grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
        column-gap: 40px;
        align-items: center;
    }
    .w-hero__visual {
        align-items: center;
        align-self: center;
    }
}
.w-hero__dual-screen {
    display: block;
    width: 100%;
    height: auto;
}
.w-hero__screenshot {
    display: block;
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}
.w-hero__labels {
    width: 100%;
}
@media (max-width: 767px) {
    .w-hero__dual-screen { max-width: 680px; margin-inline: auto; }
}
.w-hero__visual,
.w-hero__dual-screen {
    min-width: 0;
    max-width: 100%;
}
.w-hero__screenshot { max-width: 100%; }


/* ===========================================
   AUDIT-LED PRODUCT PROOF & RESPONSIVE PASS
   =========================================== */
.w-hero {
    padding: 88px 0 72px;
    text-align: left;
}
.w-hero__inner {
    display: grid;
    grid-template-columns: minmax(360px, .8fr) minmax(0, 1.35fr);
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
}
.w-hero__content { max-width: 540px; margin: 0; text-align: left; }
.w-hero__title { font-size: clamp(2.75rem, 4.7vw, 4.4rem); line-height: 1.02; letter-spacing: -.045em; }
.w-hero__desc { max-width: 620px; margin: 0 0 28px; font-size: 1.1rem; line-height: 1.58; }
.w-hero__actions { justify-content: flex-start; }
.w-hero__note { color: var(--w-text-3); font-size: .875rem; }
.w-product-proof {
    position: relative;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(47,68,208,.18);
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 28px 70px rgba(24,38,86,.17);
}
.w-product-proof .w-hero__screenshot { border-radius: 13px; box-shadow: none; }
.w-product-proof__caption {
    padding: 11px 4px 1px;
    color: var(--w-text-3);
    font-size: .82rem;
    text-align: center;
}

.w-proof-strip {
    border-block: 1px solid var(--w-border);
    background: var(--w-surface);
}
.w-proof-strip__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
}
.w-proof-strip__list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 72px;
    padding: 14px 20px;
    color: var(--w-text-2);
    font-size: .92rem;
    font-weight: 600;
    text-align: center;
}
.w-proof-strip__list li + li { border-left: 1px solid var(--w-border); }
.w-proof-strip__list svg { flex: 0 0 auto; color: var(--w-success); }

.w-section--proof { background: var(--w-bg-alt); }
.w-proof-layout {
    display: grid;
    grid-template-columns: minmax(0,.85fr) minmax(420px,1.15fr);
    gap: clamp(42px, 7vw, 88px);
    align-items: center;
}
.w-proof-copy .w-h2 { margin: 12px 0 16px; }
.w-proof-copy .w-lead { font-size: 1.05rem; }
.w-situation-list {
    display: grid;
    gap: 19px;
    margin-top: 30px;
    list-style: none;
}
.w-situation-list li { padding-left: 20px; border-left: 2px solid var(--w-border-2); }
.w-situation-list strong, .w-situation-list span { display: block; }
.w-situation-list strong { margin-bottom: 3px; color: var(--w-text); font-size: 1rem; }
.w-situation-list span { color: var(--w-text-2); font-size: .95rem; line-height: 1.5; }
.w-proof-layout .w-before-after__slider { width: 100%; max-width: 620px; margin: 0; padding: 16px; }

.w-steps { gap: 22px; }
.w-step {
    padding: 0;
    border: 1px solid rgba(47,68,208,.1);
    border-radius: var(--w-radius-lg);
    background: var(--w-surface);
    box-shadow: 0 10px 28px rgba(24,38,86,.07);
}
.w-step__copy { padding: 24px 24px 18px; }
.w-step__text { min-height: 0; }
.w-step__visual { margin: 0; border: 0; border-top: 1px solid var(--w-border); border-radius: 0 0 var(--w-radius-lg) var(--w-radius-lg); aspect-ratio: 800 / 516; }
.w-step__visual img { object-fit: cover; }

.w-feature-layout {
    display: grid;
    grid-template-columns: minmax(280px,.82fr) minmax(0,1.18fr);
    gap: clamp(42px,7vw,90px);
    align-items: start;
}
.w-feature-layout .w-section-header { margin: 0; position: sticky; top: calc(var(--w-header-h) + 32px); }
.w-feature-formats { margin-top: 24px; color: var(--w-text-3); font-size: .95rem; line-height: 1.6; }
.w-core-features { border-top: 1px solid var(--w-border-2); }
.w-core-feature {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 24px 4px;
    border-bottom: 1px solid var(--w-border-2);
}
.w-core-feature > svg { margin-top: 2px; padding: 8px; width: 40px; height: 40px; color: var(--w-primary); background: var(--w-primary-dim); border-radius: 10px; }
.w-core-feature h3 { color: var(--w-text); font-size: 1.08rem; margin-bottom: 4px; }
.w-core-feature p { color: var(--w-text-2); font-size: .98rem; }

.w-workflow-comparison {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--w-border-2);
    border-radius: var(--w-radius-xl);
    background: var(--w-surface);
    box-shadow: 0 14px 38px rgba(24,38,86,.08);
}
.w-workflow-comparison__head,
.w-workflow-comparison__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.w-workflow-comparison__head { background: var(--w-surface-2); font-size: .86rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.w-workflow-comparison__head span, .w-workflow-comparison__row span { padding: 18px 24px; }
.w-workflow-comparison__head span + span, .w-workflow-comparison__row span + span { border-left: 1px solid var(--w-border); }
.w-workflow-comparison__row + .w-workflow-comparison__row { border-top: 1px solid var(--w-border); }
.w-workflow-comparison__row span { color: var(--w-text-3); font-size: .98rem; }
.w-workflow-comparison__row span:last-child { display: flex; gap: 10px; color: var(--w-text); background: rgba(47,68,208,.035); font-weight: 600; }
.w-workflow-comparison__row svg { flex: 0 0 auto; margin-top: 2px; color: var(--w-success); }

.w-pricing-card__scenario { margin-bottom: 8px; color: var(--w-primary); font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.w-pricing-card__billing-note { min-height: 21px; margin-top: 10px; color: var(--w-text-3); font-size: .8rem; text-align: center; }
.w-pricing-clarity {
    display: flex;
    gap: 10px;
    max-width: 680px;
    margin: 24px auto 0;
    padding: 14px 18px;
    border: 1px solid rgba(47,68,208,.15);
    border-radius: 12px;
    background: rgba(255,255,255,.72);
    color: var(--w-text-2);
    font-size: .92rem;
    line-height: 1.5;
    text-align: left;
}
.w-pricing-clarity strong { flex: 0 0 auto; color: var(--w-text); }
.w-mobile-plan-comparison { display: none; }
.w-billing-facts {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 24px;
}
.w-billing-facts div { padding: 20px; border: 1px solid var(--w-border); border-radius: var(--w-radius-lg); background: var(--w-surface); }
.w-billing-facts strong, .w-billing-facts span { display: block; }
.w-billing-facts strong { margin-bottom: 5px; color: var(--w-text); font-size: .95rem; }
.w-billing-facts span { color: var(--w-text-3); font-size: .88rem; line-height: 1.5; }


@media (max-width: 1024px) {
    .w-hero__inner { grid-template-columns: minmax(320px,.85fr) minmax(0,1.15fr); gap: 30px; }
    .w-proof-layout { grid-template-columns: .9fr 1.1fr; gap: 36px; }
}
@media (max-width: 900px) {
    .w-proof-strip__list { grid-template-columns: repeat(2,1fr); }
    .w-proof-strip__list li:nth-child(3) { border-left: 0; border-top: 1px solid var(--w-border); }
    .w-proof-strip__list li:nth-child(4) { border-top: 1px solid var(--w-border); }
    .w-proof-layout, .w-feature-layout { grid-template-columns: 1fr; }
    .w-proof-layout .w-before-after__slider { max-width: 620px; margin: 0 auto; }
    .w-feature-layout .w-section-header { position: static; }
    .w-billing-facts { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    body.w-body { font-size: 16px; }
    .w-h1, .w-hero__title { font-size: clamp(2.25rem,11vw,2.625rem); line-height: 1.08; }
    .w-h2 { font-size: clamp(1.75rem,8vw,2.1rem); }
    .w-lead, .w-hero__desc { font-size: 1rem; line-height: 1.55; }
    .w-section { padding: 68px 0; }
    .w-section--final-cta { padding-top: 20px; }
    .w-section-header { margin-bottom: 34px; }
    .w-label { font-size: .78rem; }
    .w-btn { min-height: 48px; font-size: 16px; }
    .w-hero { padding: 48px 0 54px; }
    .w-hero__inner { display: flex; flex-direction: column; gap: 34px; padding: 0 16px; }
    .w-hero__content { width: 100%; text-align: left; }
    .w-hero__actions { display: grid; grid-template-columns: 1fr; }
    .w-hero__actions .w-btn { width: 100%; }
    .w-hero__note { font-size: .83rem; }
    .w-hero__visual { order: 2; margin: 0; }
    .w-product-proof { padding: 5px; border-radius: 15px; }
    .w-product-proof__caption { padding: 10px 8px 5px; font-size: .78rem; }
    .w-proof-layout { gap: 34px; }
    .w-proof-copy .w-lead { font-size: 1rem; }
    .w-situation-list { margin-top: 26px; }
    .w-steps { grid-template-columns: 1fr; gap: 20px; }
    .w-step__copy { padding: 22px 20px 16px; }
    .w-core-feature { padding: 20px 2px; }
    .w-workflow-comparison { border: 0; background: transparent; box-shadow: none; overflow: visible; }
    .w-workflow-comparison__head { display: none; }
    .w-workflow-comparison__row { display: block; margin-bottom: 14px; border: 1px solid var(--w-border) !important; border-radius: 14px; overflow: hidden; background: var(--w-surface); }
    .w-workflow-comparison__row span { display: block; padding: 15px 16px 15px 132px; position: relative; font-size: .94rem; }
    .w-workflow-comparison__row span::before { content: attr(data-label); position: absolute; left: 16px; top: 16px; width: 104px; color: var(--w-text-3); font-size: .7rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
    .w-workflow-comparison__row span + span { border-left: 0; border-top: 1px solid var(--w-border); }
    .w-comparison--desktop { display: none; }
    .w-mobile-plan-comparison { display: grid; gap: 12px; }
    .w-plan-details { border: 1px solid var(--w-border-2); border-radius: 14px; background: var(--w-surface); overflow: hidden; }
    .w-plan-details summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 62px; padding: 15px 18px; color: var(--w-text); cursor: pointer; font-weight: 700; list-style: none; }
    .w-plan-details summary::-webkit-details-marker { display: none; }
    .w-plan-details summary::marker { content: ''; }
    .w-plan-details summary small { color: var(--w-text-3); font-weight: 500; }
    .w-plan-details dl { border-top: 1px solid var(--w-border); }
    .w-plan-details dl div { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 16px; padding: 13px 18px; }
    .w-plan-details dl div + div { border-top: 1px solid var(--w-border); }
    .w-plan-details dt { color: var(--w-text-3); font-size: .88rem; }
    .w-plan-details dd { color: var(--w-text); font-size: .9rem; font-weight: 600; text-align: right; }
    .w-active-note { margin-top: 22px; }
    .w-pricing-hero { padding: 58px 0 64px; }
    .w-pricing-clarity { display: block; font-size: .9rem; }
    .w-pricing-clarity strong { display: block; margin-bottom: 4px; }
    .w-pricing { max-width: 520px; }
    .w-pricing-card { padding: 24px 20px; }
    .w-pricing-card__feature { font-size: .96rem; }
    .w-pricing-card--popular { order: -1; margin-top: 10px; }
    .w-faq-trigger { font-size: 1rem; }
}
@media (max-width: 420px) {
    .w-proof-strip__list { grid-template-columns: 1fr; }
    .w-proof-strip__list li + li { border-left: 0; border-top: 1px solid var(--w-border); }
    .w-workflow-comparison__row span { padding-left: 16px; padding-top: 38px; }
    .w-workflow-comparison__row span::before { top: 12px; width: auto; }
    .w-plan-details summary { align-items: flex-start; flex-direction: column; gap: 2px; }
}

.w-pricing-hero__note {
    margin-top: 10px;
    color: var(--w-text-3);
    font-size: .9rem;
}
/* ===========================================
   CONVERSION AUDIT REFINEMENTS
   =========================================== */
.w-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.035em;
}
.w-section-header { max-width: 760px; }
.w-section-header .w-lead { color: var(--w-text-2); }

.w-hero {
    padding: 86px 0 76px;
    background:
        radial-gradient(circle at 18% 8%, rgba(91, 110, 255, .16), transparent 34%),
        radial-gradient(circle at 85% 58%, rgba(34, 211, 160, .09), transparent 30%);
}
.w-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: var(--w-max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.w-hero__content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.w-hero__title {
    max-width: 980px;
    margin: 0 auto 22px;
    font-size: clamp(3.25rem, 6.3vw, 5.4rem);
    line-height: .98;
}
.w-hero__desc {
    max-width: 760px;
    margin: 0 auto 30px;
    color: var(--w-text-2);
    font-size: clamp(1.2rem, 2vw, 1.38rem);
    line-height: 1.55;
}
.w-hero__actions { justify-content: center; }
.w-hero__note { color: var(--w-text-3); font-size: .92rem; }
.w-hero__visual {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
.w-product-proof {
    padding: 9px;
    border-color: rgba(91, 110, 255, .24);
    background: var(--w-surface);
    box-shadow: 0 24px 70px rgba(24, 38, 86, .14);
}
.w-product-proof__caption {
    padding: 13px 8px 4px;
    color: var(--w-text-2);
    font-size: .92rem;
    font-weight: 600;
}

.w-proof-layout {
    grid-template-columns: minmax(290px, .68fr) minmax(520px, 1.32fr);
    gap: clamp(40px, 6vw, 76px);
}
.w-proof-layout .w-before-after__slider {
    max-width: none;
    padding: 16px;
}
.w-before-after__slider--static {
    background: linear-gradient(90deg, rgba(242, 92, 92, .12) 0 50%, rgba(34, 211, 160, .12) 50% 100%);
    box-shadow: none;
}
.w-before-after__slider--static .w-before-after__labels {
    top: 24px;
    width: calc(100% - 32px);
    max-width: none;
}
.w-before-after__slider--static .w-before-after__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: none;
    aspect-ratio: 2 / 1;
    border-color: var(--w-border-2);
    box-shadow: none;
}
.w-before-after__slider--static .w-before-after__image {
    position: static;
    width: 100%;
    height: 100%;
    clip-path: none;
    object-fit: cover;
}
.w-before-after__slider--static .w-before-after__image--after { clip-path: none; }
.w-before-after__slider--static .w-before-after__tag {
    margin: 8px;
    border: 1px solid currentColor;
    background: color-mix(in srgb, var(--w-surface) 92%, transparent);
}
.w-situation-list li:first-child { border-color: var(--w-danger); }
.w-situation-list li:last-child { border-color: var(--w-success); }

.w-step {
    border-color: var(--w-border-2);
    box-shadow: 0 8px 28px rgba(24, 38, 86, .07);
}
.w-section--steps {
    background:
        radial-gradient(circle at 12% 10%, rgba(91, 110, 255, .07), transparent 28%),
        var(--w-surface);
}
.w-section--pricing {
    background:
        radial-gradient(circle at 82% 18%, rgba(91, 110, 255, .09), transparent 30%),
        var(--w-bg-alt);
}

.w-pricing-card {
    border-color: var(--w-border-2);
    box-shadow: 0 8px 28px rgba(24, 38, 86, .07);
}
.w-pricing-card--popular,
.w-pricing-card--popular:hover {
    border-color: rgba(255, 255, 255, .2);
    background: linear-gradient(155deg, #2033a8 0%, #3454df 100%);
    box-shadow: 0 24px 56px rgba(36, 53, 174, .28);
}
.w-pricing-card--popular .w-pricing-card__name,
.w-pricing-card--popular .w-pricing-card__amount,
.w-pricing-card--popular .w-pricing-card__feature,
.w-pricing-card--popular .w-pricing-card__feature strong {
    color: #fff;
}
.w-pricing-card--popular .w-pricing-card__audience,
.w-pricing-card--popular .w-pricing-card__billing-note {
    color: rgba(255, 255, 255, .78);
}
.w-pricing-card--popular .w-pricing-card__scenario,
.w-pricing-card--popular .w-pricing-card__launch-note {
    color: #dce4ff;
}
.w-pricing-card--popular .w-pricing-card__feature svg { color: #86efca; }
.w-pricing-card--popular .w-pricing-card__badge {
    top: -15px;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(166, 180, 255, .16));
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .055em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(17, 29, 104, .22), inset 0 1px 0 rgba(255, 255, 255, .2);
    backdrop-filter: blur(12px) saturate(135%);
}
.w-pricing .w-pricing-card--popular .w-btn--primary.w-btn--block {
    border: 1px solid #fff;
    background: #fff;
    color: #2033a8;
    font-weight: 700;
}
.w-pricing .w-pricing-card--popular .w-btn--primary.w-btn--block:hover {
    background: #eef2ff;
    color: #18298f;
}
.w-pricing-hero {
    background:
        radial-gradient(circle at 50% -10%, rgba(91, 110, 255, .18), transparent 42%),
        var(--w-bg);
}
.w-comparison--pricing {
    border: 1px solid var(--w-border-2);
    box-shadow: 0 12px 36px rgba(24, 38, 86, .08);
}
.w-comparison--pricing tbody th,
.w-comparison--pricing tbody td { border-top: 1px solid var(--w-border); }
.w-comparison--pricing tbody tr:nth-child(even) { background: var(--w-surface-2); }
.w-comparison__pro,
.w-comparison__pro-cell { background: var(--w-primary-dim) !important; }
.w-table-no {
    color: var(--w-danger);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}
.w-table-check {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: var(--w-success-dim);
}

.w-cta {
    border-color: rgba(255, 255, 255, .12);
    background: linear-gradient(135deg, #111b48, #253ec3);
    box-shadow: none;
}
.w-cta .w-label { color: #9fb0ff; }
.w-cta .w-label::before { background: #9fb0ff; }
.w-cta .w-cta__title { color: #fff; }
.w-cta .w-cta__text { color: rgba(255, 255, 255, .82); }
.w-cta .w-cta__note { color: rgba(255, 255, 255, .68); }
.w-cta .w-btn--primary {
    border: 1px solid #fff;
    background: #fff;
    color: #2033a8;
    font-weight: 700;
}
.w-cta .w-btn--primary:hover { background: #eef2ff; color: #18298f; }

@media (max-width: 1024px) {
    .w-proof-layout { grid-template-columns: 1fr; }
    .w-proof-layout .w-before-after__slider { max-width: 820px; margin: 0 auto; }
}
@media (max-width: 767px) {
    .w-h2 { font-size: clamp(1.95rem, 9vw, 2.4rem); }
    .w-hero { padding: 52px 0 58px; }
    .w-hero__inner { gap: 34px; padding: 0 16px; }
    .w-hero__content { text-align: left; }
    .w-hero__title {
        margin-inline: 0;
        font-size: 28px;
        line-height: 32px;
    }
    .w-hero__desc { margin-inline: 0; font-size: 18px; line-height: 28px; }
    .w-hero__actions { justify-content: flex-start; }
    .w-product-proof__caption { font-size: .8rem; }
    .w-before-after__slider--static { padding: 10px; }
    .w-before-after__slider--static .w-before-after__labels {
        top: 18px;
        width: calc(100% - 20px);
    }
    .w-before-after__slider--static .w-before-after__tag {
        margin: 5px;
        padding: 4px 8px;
        font-size: .62rem;
    }
}



/* Wide product-focused hero layout */
.w-hero {
    padding: 88px 0 68px;
    text-align: left;
}
.w-hero__inner {
    max-width: 1440px;
    display: grid;
    grid-template-columns: minmax(380px, .78fr) minmax(620px, 1.22fr);
    grid-template-areas: "copy visual" "cta visual";
    align-items: center;
    column-gap: clamp(40px, 5vw, 88px);
    row-gap: 28px;
}
.w-hero__content { grid-area: copy; max-width: 560px; margin: 0; text-align: left; }
.w-hero__visual { grid-area: visual; width: 100%; margin: 0; }
.w-hero__cta { grid-area: cta; }
.w-hero__actions { justify-content: flex-start; }
.w-hero__desc { max-width: 540px; margin: 0; font-size: clamp(1.125rem, 1.5vw, 1.3rem); }
.w-hero__screenshot { width: 100%; border-radius: 20px; box-shadow: 0 28px 70px rgba(24, 38, 86, .18); }

@media (max-width: 1100px) and (min-width: 769px) {
    .w-hero__inner { grid-template-columns: minmax(330px, .85fr) minmax(460px, 1.15fr); column-gap: 32px; }
    .w-hero__content { max-width: 470px; }
}

@media (max-width: 768px) {
    .w-hero { padding: 40px 0 48px; text-align: center; }
    .w-hero__inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
    }
    .w-hero__content { width: 100%; max-width: 100%; text-align: center; }
    .w-hero__desc { max-width: 100%; margin: 0; font-size: 1.0625rem; line-height: 1.55; }
    .w-hero__visual { order: 2; width: 100%; margin: 0; }
    .w-hero__cta { order: 3; width: 100%; }
    .w-hero__actions { justify-content: center; gap: 10px; }
    .w-hero__actions .w-btn { flex: 1 1 100%; }
    .w-hero__note { margin: 14px auto 0; max-width: 320px; }
    .w-product-proof__caption { margin-top: 10px; }
}


/* Large, readable workflow previews */
.w-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    max-width: 1320px;
    margin-inline: auto;
}
.w-step {
    display: grid;
    grid-template-columns: minmax(250px, .34fr) minmax(0, .66fr);
    align-items: center;
    gap: clamp(28px, 4vw, 64px);
    padding: clamp(28px, 4vw, 48px);
}
.w-step__text { min-height: 0; }
.w-step__visual {
    width: 100%;
    min-height: 0;
    margin-top: 0;
    aspect-ratio: auto;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f6f8ff, #edf2ff);
}
.w-step__visual img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}
@media (max-width: 900px) {
    .w-step {
        grid-template-columns: minmax(210px, .35fr) minmax(0, .65fr);
        gap: 24px;
        padding: 28px;
    }
}
@media (max-width: 680px) {
    .w-steps { gap: 20px; }
    .w-step {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 22px;
    }
    .w-step__visual { margin-top: 0; }
}

/* ===========================================
   2026 HOMEPAGE — FOCUSED CONTENT APPROVAL
   Uses the established brand tokens above.
   =========================================== */
html { scroll-padding-top: calc(var(--w-header-h) + 20px); }
body.w-body {
    background-color: var(--w-bg);
    background-image: none;
}
.w-section[id] { scroll-margin-top: calc(var(--w-header-h) + 20px); }
.w-header__mobile-cta { display: none; }

/* Hero */
.w-hero {
    padding: clamp(64px, 7vw, 96px) 0 clamp(56px, 6vw, 80px);
    background: linear-gradient(180deg, #f8f9ff 0%, var(--w-bg) 100%);
}
.w-hero::before {
    top: -520px;
    width: 940px;
    height: 740px;
    background: radial-gradient(circle, rgba(47, 68, 208, .10), transparent 68%);
}
.w-hero::after { display: none; }
.w-hero__inner {
    display: grid;
    grid-template-columns: minmax(370px, .78fr) minmax(560px, 1.22fr);
    grid-template-areas: "copy visual" "cta visual";
    align-items: center;
    column-gap: clamp(42px, 6vw, 92px);
    row-gap: 30px;
    width: min(100%, 1380px);
    max-width: 1380px;
    padding-inline: 32px;
}
.w-hero__content {
    grid-area: copy;
    max-width: 580px;
    margin: 0;
    text-align: left;
}
.w-hero__title {
    max-width: 620px;
    margin: 0 0 22px;
    font-size: 52px;
    line-height: 64px;
    letter-spacing: -.048em;
}
.w-hero__desc {
    max-width: 570px;
    margin: 0;
    color: var(--w-text-2);
    font-size: 18px;
    line-height: 28px;
}
.w-hero__cta { grid-area: cta; }
.w-hero__actions { justify-content: flex-start; }
.w-hero__note {
    max-width: 570px;
    color: var(--w-text-3);
    font-size: .875rem;
}
.w-hero__visual {
    grid-area: visual;
    width: 100%;
    max-width: none;
    margin: 0;
}
.w-product-proof {
    padding: 8px;
    border-color: rgba(47, 68, 208, .15);
    border-radius: var(--w-radius-xl);
    background: var(--w-surface);
    box-shadow: 0 22px 60px rgba(24, 38, 86, .14);
}
.w-product-proof .w-hero__screenshot {
    border-radius: var(--w-radius-lg);
    box-shadow: none;
}
.w-product-proof__caption {
    padding: 12px 8px 4px;
    color: var(--w-text-2);
    font-size: .875rem;
    font-weight: 600;
}

/* Low-friction proof */
.w-proof-strip__list li {
    min-height: 68px;
    color: var(--w-text-2);
    font-size: .9rem;
}

/* Problem to solution */
.w-section--proof { background: var(--w-surface); }
.w-proof-layout {
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(560px, 1.22fr);
    gap: clamp(48px, 7vw, 92px);
    align-items: center;
}
.w-proof-copy .w-h2 { margin: 14px 0 18px; }
.w-proof-copy .w-lead { color: var(--w-text-2); font-size: 1.08rem; }
.w-situation-list li { border-left-color: rgba(47, 68, 208, .28); }
.w-situation-list li:first-child,
.w-situation-list li:last-child { border-color: rgba(47, 68, 208, .38); }
.w-clarity-visual {
    display: grid;
    grid-template-columns: minmax(185px, .72fr) 38px minmax(300px, 1.28fr);
    align-items: center;
    padding: 20px;
    border: 1px solid var(--w-border-2);
    border-radius: var(--w-radius-xl);
    background: var(--w-bg);
}
.w-clarity-visual__label {
    margin-bottom: 14px;
    color: var(--w-text-3);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.w-clarity-visual__scattered ul {
    display: grid;
    gap: 10px;
    list-style: none;
}
.w-clarity-visual__scattered li {
    padding: 11px 12px;
    border: 1px solid var(--w-border);
    border-radius: 10px;
    background: var(--w-surface);
    color: var(--w-text-2);
    font-size: .78rem;
    line-height: 1.35;
    transform: translateX(-4px);
}
.w-clarity-visual__scattered li:nth-child(2) { transform: translateX(4px); }
.w-clarity-visual__scattered li span {
    display: block;
    margin-bottom: 3px;
    color: var(--w-text-3);
    font-size: .65rem;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.w-clarity-visual__arrow {
    display: grid;
    place-items: center;
    color: var(--w-primary);
}
.w-clarity-visual__review { margin: 0; min-width: 0; }
.w-clarity-visual__review img {
    width: 100%;
    height: auto;
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius-lg);
    background: var(--w-surface);
    box-shadow: 0 12px 30px rgba(24, 38, 86, .10);
}

/* Product-led workflow */
.w-section--steps {
    background: var(--w-bg);
}
.w-steps {
    max-width: 1120px;
    gap: 28px;
}
.w-step {
    display: grid;
    grid-template-columns: minmax(250px, .34fr) minmax(0, .66fr);
    align-items: center;
    gap: clamp(30px, 5vw, 64px);
    padding: clamp(26px, 4vw, 46px);
    border-color: var(--w-border-2);
    border-radius: var(--w-radius-xl);
    background: var(--w-surface);
    box-shadow: 0 10px 30px rgba(24, 38, 86, .06);
}
.w-step:nth-child(even) .w-step__copy { order: 2; }
.w-step:nth-child(even) .w-step__visual { order: 1; }
.w-step:nth-child(even) { grid-template-columns: minmax(0, .66fr) minmax(250px, .34fr); }
.w-step__copy { padding: 0; }
.w-step__number {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 5px 9px;
    border-radius: 7px;
    background: var(--w-primary-dim);
    font-size: .75rem;
}
.w-step__title { margin-bottom: 10px; font-size: 1.35rem; font-weight: 750; }
.w-step__text { color: var(--w-text-2); font-size: 1rem; }
.w-step__visual {
    margin: 0;
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius-lg);
    background: #f3f5fb;
    overflow: hidden;
}
.w-step__visual img { width: 100%; height: auto; object-fit: contain; }

/* Audiences */
.w-section--use-cases { background: var(--w-bg); }
.w-usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.w-usecase-grid .w-usecase {
    display: block;
    min-height: 190px;
    padding: 24px 22px;
    border: 1px solid var(--w-border);
    border-top: 3px solid rgba(47, 68, 208, .34);
    border-radius: var(--w-radius-lg);
    background: var(--w-surface);
    box-shadow: none;
}
.w-usecase-grid .w-usecase:hover {
    transform: none;
    border-color: var(--w-border-2);
    border-top-color: var(--w-primary);
    box-shadow: none;
}
.w-usecase-grid h3 { margin-bottom: 10px; color: var(--w-text); font-size: 1.05rem; }
.w-usecase-grid p { color: var(--w-text-2); font-size: .93rem; line-height: 1.58; }

/* Pricing and conversion */
.w-section--pricing {
    background: linear-gradient(180deg, var(--w-surface) 0%, var(--w-bg) 100%);
}
.w-pricing-clarity { margin-bottom: 28px; }
.w-pricing-card__header { min-height: 174px; }
.w-pricing-card__amount { font-size: clamp(2rem, 4vw, 2.5rem); }
.w-pricing-card__scenario { font-size: .75rem; }
.w-pricing-card--popular { color: rgba(255, 255, 255, .78); }
.w-section--final-cta { padding-top: 40px; }
.w-cta { background: #2338b4; }
.w-cta::before,
.w-cta::after { display: none; }

@media (max-width: 1180px) and (min-width: 981px) {
    .w-hero__inner {
        grid-template-columns: minmax(340px, .82fr) minmax(500px, 1.18fr);
        column-gap: 38px;
        padding-inline: 24px;
    }
    .w-hero__title { font-size: clamp(2.75rem, 4.5vw, 3.25rem); }
}

@media (max-width: 1040px) {
    .w-proof-layout { grid-template-columns: 1fr; }
    .w-clarity-visual { width: min(100%, 780px); margin-inline: auto; }
    .w-usecase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .w-nav { display: none; }
    .w-header__actions { display: none; }
    .w-header__mobile-cta { display: inline-flex; margin-left: auto; }
    .w-hamburger { display: flex; margin-left: 0; }
    .w-hero__inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        max-width: 820px;
        padding-inline: 24px;
    }
    .w-hero__content { order: 1; max-width: 680px; margin-inline: auto; text-align: center; }
    .w-hero__visual { order: 2; }
    .w-hero__cta { order: 3; }
    .w-hero__title { max-width: 720px; }
    .w-hero__desc,
    .w-hero__note { max-width: 650px; margin-inline: auto; }
    .w-hero__actions { justify-content: center; }
}

@media (max-width: 760px) {
    .w-section { padding-block: 64px; }
    .w-hero { padding: 42px 0 54px; text-align: left; }
    .w-hero__inner { gap: 24px; padding-inline: 16px; }
    .w-hero__content { text-align: center; }
    .w-hero__title {
        margin-inline: 0;
        font-size: 28px;
        line-height: 32px;
    }
    .w-hero__desc { margin-inline: auto; font-size: 18px; line-height: 28px; }
    .w-hero__actions { display: grid; grid-template-columns: 1fr; justify-content: stretch; }
    .w-hero__actions .w-btn { width: 100%; }
    .w-hero__note { margin-inline: 0; }
    .w-product-proof { padding: 5px; border-radius: var(--w-radius-lg); }
    .w-proof-strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .w-proof-strip__list li { min-height: 78px; padding: 12px; font-size: .82rem; }
    .w-proof-strip__list li:nth-child(3) { border-left: 0; border-top: 1px solid var(--w-border); }
    .w-proof-strip__list li:nth-child(4) { border-top: 1px solid var(--w-border); }
    .w-clarity-visual {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    .w-clarity-visual__arrow { transform: rotate(90deg); }
    .w-clarity-visual__scattered li,
    .w-clarity-visual__scattered li:nth-child(2) { transform: none; }
    .w-step {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
        border-radius: var(--w-radius-lg);
    }
    .w-step:nth-child(even) .w-step__copy,
    .w-step:nth-child(even) .w-step__visual { order: initial; }
    .w-step:nth-child(even) { grid-template-columns: 1fr; }
    .w-step__copy { order: 1 !important; }
    .w-step__visual { order: 2 !important; }
    .w-usecase-grid { grid-template-columns: 1fr; }
    .w-usecase-grid .w-usecase { min-height: 0; }
    .w-pricing-card__header { min-height: 0; }
    .w-pricing-card--popular { order: initial; }
}

@media (max-width: 420px) {
    .w-proof-strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .w-proof-strip__list li + li { border-left: 1px solid var(--w-border); }
    .w-proof-strip__list li:nth-child(3) { border-left: 0; }
    .w-logo__text { font-size: 16px; }
    .w-logo__icon { width: 28px; height: 28px; }
    .w-header__mobile-cta { min-height: 40px; height: 40px; padding-inline: 12px; font-size: .82rem; }
    .w-header__inner { gap: 8px; }
}

/* ===========================================
   2026 HOMEPAGE — PRODUCT-ALIGNED REFRESH
   Light, focused hero, production UI captures.
   =========================================== */

/* Hero eyebrow label */
.w-label--hero {
    margin-bottom: 16px;
    padding: 0;
    font-size: .75rem;
}
.w-label--hero::before { display: none; }

/* Steps: frame for current product UI screenshots. */
.w-step__visual {
    background: linear-gradient(145deg, #f6f8ff, #edf2ff);
    border: 1px solid var(--w-border);
    border-radius: var(--w-radius-lg);
    box-shadow: 0 12px 30px rgba(24, 38, 86, .10);
}
html.theme-dark .w-step__visual {
    background: linear-gradient(145deg, #14172a, #1c2138);
    border-color: var(--w-border-2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}
.w-step__visual {
    aspect-ratio: 4 / 3;
    padding: 18px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
@media (max-width: 760px) {
    .w-step__visual { aspect-ratio: 5 / 4; padding: 14px; }
}

/* ===========================================
   2026 HOMEPAGE — PREMIUM LANDING SYSTEM
   Scoped to the public home route.
   =========================================== */
body.w-home-page {
    --w-bg: #ffffff;
    --w-bg-alt: #f8f9fb;
    --w-surface: #ffffff;
    --w-surface-2: #f6f7f9;
    --w-surface-3: #eef0f4;
    --w-border: #e5e9f0;
    --w-border-2: #d9dee7;
    --w-primary: #635bff;
    --w-primary-hover: #5149e5;
    --w-primary-dim: #f1f0ff;
    --w-success: #14784d;
    --w-success-dim: #eaf8f1;
    --w-text: #0a0f1d;
    --w-text-2: #4f5969;
    --w-text-3: #697386;
    --w-text-4: #8d95a3;
    --w-header-h: 74px;
    --w-header-bg: rgba(255, 255, 255, .9);
    --w-header-border: rgba(229, 233, 240, .88);
    --w-card-shadow: 0 8px 28px rgba(15, 23, 42, .055);
    --w-card-shadow-lg: 0 20px 52px rgba(15, 23, 42, .1);
    --w-max-w: 1200px;
    background: #fff;
    color: var(--w-text);
    font-family: Inter, "DM Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
}

.w-home-page .w-header {
    height: 74px;
    background: rgba(255, 255, 255, .9);
    border-bottom-color: rgba(229, 233, 240, .88);
    backdrop-filter: blur(18px) saturate(135%);
}

.w-home-page .w-header__inner {
    max-width: 1200px;
    gap: 34px;
    padding-inline: 32px;
}

.w-home-page .w-logo {
    gap: 8px;
    padding: 3px;
}

.w-home-page .w-logo__icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(180deg, #756eff, #635bff);
    box-shadow: 0 8px 20px rgba(99, 91, 255, .22);
}

.w-home-page .w-logo__text {
    color: #0a0f1d;
    font-size: 16px;
    font-weight: 820;
    letter-spacing: -.028em;
}

.w-home-page .w-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    gap: 2px;
}

.w-home-page .w-nav__link,
.w-home-page .w-drop summary {
    color: #657082;
    font-size: 12.5px;
    font-weight: 680;
}

.w-home-page .w-nav__link:hover,
.w-home-page .w-drop summary:hover {
    background: #f5f6f8;
    color: #0a0f1d;
}

.w-home-page .w-header__actions {
    margin-left: auto;
}

.w-home-page .w-header__actions > .w-nav__link {
    color: #434c5c;
    font-weight: 720;
}

.w-home-page .w-btn {
    min-height: 46px;
    border-radius: 11px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 770;
    box-shadow: none;
}

.w-home-page .w-btn--primary {
    border-color: #635bff;
    background: linear-gradient(180deg, #716aff, #635bff);
    color: #fff;
    box-shadow: 0 10px 23px rgba(99, 91, 255, .2);
}

.w-home-page .w-btn--primary:hover {
    border-color: #5149e5;
    background: linear-gradient(180deg, #655ef4, #5149e5);
    color: #fff;
}

.w-home-page .w-btn--outline {
    border: 1px solid #d7dce4;
    background: #fff;
    color: #364052;
}

.w-home-page .w-btn--outline:hover {
    border-color: #c9ced8;
    background: #f8f9fb;
    color: #111827;
}

.w-home-page .w-btn--sm {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 11.5px;
}

.w-home-page .w-btn--lg {
    min-height: 52px;
    padding-inline: 24px;
    font-size: 13.5px;
}

.w-home-page .w-section {
    padding: 112px 0;
}

.w-home-page .w-section-header {
    max-width: 760px;
    margin: 0 auto 50px;
}

.w-home-page .w-label {
    display: inline-flex;
    padding: 0;
    color: #635bff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.w-home-page .w-label::before {
    display: none;
}

.w-home-page .w-h2 {
    margin-top: 14px;
    color: #0a0f1d;
    font-size: 44px;
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.w-home-page .w-section-header .w-lead {
    max-width: 680px;
    margin: 16px auto 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.6;
}

/* Keep the proven hero composition, update its sales system. */
.w-home-page .w-hero {
    padding: 86px 0 68px;
    background:
        radial-gradient(circle at 15% 0%, rgba(99, 91, 255, .13), transparent 33%),
        linear-gradient(180deg, #fbfbff 0%, #fff 82%);
}

.w-home-page .w-hero::before,
.w-home-page .w-hero::after {
    display: none;
}

.w-home-page .w-hero__inner {
    grid-template-columns: minmax(370px, .78fr) minmax(560px, 1.22fr);
    column-gap: clamp(42px, 6vw, 86px);
    row-gap: 28px;
    width: min(100%, 1380px);
    max-width: 1380px;
    padding-inline: 32px;
}

.w-home-page .w-hero__content {
    max-width: 580px;
}

.w-home-page .w-label--hero {
    margin-bottom: 17px;
}

.w-home-page .w-hero__title {
    max-width: 610px;
    margin: 0 0 21px;
    color: #0a0f1d;
    font-size: clamp(48px, 4.7vw, 64px);
    font-weight: 830;
    line-height: 1.01;
    letter-spacing: -.057em;
}

.w-home-page .w-hero__desc {
    max-width: 570px;
    color: #667085;
    font-size: 18px;
    line-height: 1.58;
}

.w-home-page .w-hero__actions {
    gap: 10px;
}

.w-home-page .w-hero__note {
    margin-top: 12px;
    color: #858d9a;
    font-size: 11px;
}

.w-home-page .w-product-proof {
    padding: 8px;
    border: 1px solid #dee2ea;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 76px rgba(15, 23, 42, .14), 0 2px 8px rgba(15, 23, 42, .05);
}

.w-home-page .w-product-proof .w-hero__screenshot {
    border-radius: 17px;
}

.w-home-page .w-product-proof__caption {
    padding: 12px 8px 4px;
    color: #687284;
    font-size: 12px;
}

/* Proof strip */
.w-home-page .w-proof-strip {
    border-block: 1px solid #edf0f4;
    background: #fff;
}

.w-home-page .w-proof-strip__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.w-home-page .w-proof-strip__list li {
    min-height: 64px;
    justify-content: center;
    color: #515a69;
    font-size: 12px;
    font-weight: 720;
}

.w-home-page .w-proof-strip__list svg {
    color: #14784d;
}

/* Problem / clarity */
.w-home-page .w-section--proof {
    background: #f8f9fb;
}

.w-home-page .w-proof-layout {
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
}

.w-home-page .w-proof-copy .w-h2 {
    margin: 15px 0 0;
}

.w-home-page .w-proof-copy .w-lead {
    margin-top: 17px;
    color: #667085;
    font-size: 16px;
    line-height: 1.65;
}

.w-home-page .w-situation-list {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin-top: 27px;
    padding: 0;
    list-style: none;
}

.w-home-page .w-situation-list li,
.w-home-page .w-situation-list__item {
    position: static;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.w-home-page .w-situation-list li::before,
.w-home-page .w-situation-list__item::before {
    display: none;
    content: none;
}

.w-situation-list__icon,
.w-home-page .w-situation-list .w-situation-list__icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #f1f0ff;
    color: #635bff;
    flex: none;
}

.w-situation-list__icon svg,
.w-home-page .w-situation-list .w-situation-list__icon svg {
    display: block;
}

.w-situation-list__content,
.w-home-page .w-situation-list .w-situation-list__content {
    display: flex;
    flex-direction: column;
}

.w-home-page .w-situation-list strong {
    display: block;
    color: #202637;
    font-size: 13.5px;
    line-height: 1.35;
}

.w-home-page .w-situation-list span {
    display: block;
    margin-top: 3px;
    color: #697386;
    font-size: 12.5px;
    line-height: 1.5;
}

.w-home-page .w-clarity-visual {
    grid-template-columns: minmax(175px, .82fr) 46px minmax(250px, 1.18fr);
    min-height: 430px;
    padding: 17px;
    border-color: #e1e5eb;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .065);
}

.w-home-page .w-clarity-visual__scattered {
    position: relative;
    min-height: 350px;
    padding: 12px;
    border: 1px solid #e7eaf0;
    border-radius: 16px;
    background: #fbfbfc;
}

.w-home-page .w-clarity-visual__scattered ul {
    gap: 10px;
}

.w-home-page .w-clarity-visual__scattered li {
    padding: 10px;
    border-color: #e7eaf0;
    background: #fff;
    font-size: 10px;
    box-shadow: 0 5px 15px rgba(15, 23, 42, .045);
}

.w-home-page .w-clarity-visual__arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .18);
}

.w-home-page .w-clarity-visual__review {
    padding: 14px;
    border: 1px solid #dce0e7;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .1);
}

/* Three-step product grid */
.w-home-page .w-section--steps {
    background: #fff;
}

.w-home-page .w-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 18px;
}

.w-home-page .w-step,
.w-home-page .w-step:nth-child(even) {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border: 1px solid #e5e9f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 7px 25px rgba(15, 23, 42, .045);
    overflow: hidden;
}

.w-home-page .w-step__copy,
.w-home-page .w-step:nth-child(even) .w-step__copy {
    order: 1;
    padding: 23px;
}

.w-home-page .w-step__number,
.w-home-page .w-step:nth-child(even) .w-step__number {
    display: block;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #635bff;
    font-family: inherit;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.w-home-page .w-step__number::before {
    display: none;
}

.w-home-page .w-step__title {
    margin: 9px 0 0;
    color: #151a27;
    font-size: 20px;
    font-weight: 790;
    letter-spacing: -.025em;
}

.w-home-page .w-step__text {
    margin-top: 8px;
    color: #697386;
    font-size: 13px;
    line-height: 1.55;
}

.w-home-page .w-step__visual,
.w-home-page .w-step:nth-child(even) .w-step__visual {
    order: 2;
    width: 100%;
    height: 245px;
    flex: none;
    margin: 0;
    padding: 18px;
    border: 0;
    border-top: 1px solid #e5e9f0;
    border-radius: 0;
    background: #f5f6f8;
    box-shadow: none;
}

/* Client decision product stage */
.w-home-page .w-section--client-review {
    background:
        radial-gradient(circle at 50% 20%, rgba(99, 91, 255, .08), transparent 32%),
        #f8f9fb;
}

.w-client-stage {
    position: relative;
    display: flex;
    min-height: 535px;
    align-items: center;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px;
    border: 1px solid #e1e5eb;
    border-radius: 28px;
    background: linear-gradient(145deg, #f6f7fa, #eef0f5);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .085);
}

.w-client-workspace {
    width: 70%;
    min-height: 420px;
    border: 1px solid #dce1e8;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .11);
    overflow: hidden;
}

.w-client-workspace__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    min-height: 52px;
    align-items: center;
    gap: 14px;
    padding: 0 15px;
    border-bottom: 1px solid #e8ebef;
    color: #687180;
    font-size: 10px;
}

.w-client-workspace__top strong {
    color: #303746;
    font-size: 10.5px;
}

.w-client-window-dots {
    display: flex;
    gap: 4px;
}

.w-client-window-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d5d9e0;
}

.w-client-send {
    min-height: 29px;
    padding: 0 11px;
    border-radius: 8px;
    background: #635bff;
    color: #fff;
    font-size: 9px;
    font-weight: 780;
    line-height: 29px;
}

.w-client-workspace__body {
    display: grid;
    grid-template-columns: 126px 1fr;
    min-height: 367px;
}

.w-client-rail {
    padding: 22px 17px;
    border-right: 1px solid #e8ebef;
    background: #fafbfc;
}

.w-client-rail small {
    display: block;
    color: #9aa1ad;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.w-client-rail > strong {
    display: block;
    margin-top: 5px;
    color: #1f2634;
    font-size: 13px;
}

.w-client-rail > span {
    display: block;
    margin-top: 18px;
    color: #9097a3;
    font-size: 9px;
}

.w-client-rail b {
    display: block;
    color: #424a59;
    font-size: 16px;
}

.w-client-drafts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px;
}

.w-client-draft {
    min-width: 0;
    border: 1px solid #e1e5ea;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(15, 23, 42, .04);
    overflow: hidden;
}

.w-client-draft__media {
    display: flex;
    height: 104px;
    align-items: flex-end;
    padding: 11px;
    background: linear-gradient(145deg, #192235, #6c72ff);
    color: #fff;
}

.w-client-draft__media.is-2 { background: linear-gradient(145deg, #103d59, #258bb0); }
.w-client-draft__media.is-3 { background: linear-gradient(145deg, #4a274f, #b35f91); }
.w-client-draft__media.is-4 { background: linear-gradient(145deg, #17171a, #4b4b54); }

.w-client-draft__media span {
    font-size: 10px;
    font-weight: 760;
}

.w-client-draft > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 10px;
}

.w-client-draft > div:last-child strong {
    color: #333b49;
    font-size: 9px;
}

.w-client-draft > div:last-child span {
    color: #9aa1ad;
    font-size: 8px;
}

.w-client-phone {
    position: relative;
    z-index: 2;
    width: 31%;
    min-width: 290px;
    padding: 14px;
    border: 1px solid #d9dee6;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
}

.w-client-phone__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2f3745;
    font-size: 10px;
}

.w-client-phone__brand > strong {
    font-weight: 790;
}

.w-client-phone__brand small {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
    color: #858d99;
    font-size: 8px;
}

.w-client-avatar {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    font-size: 9px;
    font-weight: 850;
}

.w-client-networks {
    display: flex;
    gap: 5px;
    margin-top: 12px;
}

.w-client-networks span {
    min-height: 27px;
    flex: 1;
    border: 1px solid #e5e8ed;
    border-radius: 8px;
    background: #fafbfc;
    color: #8b929f;
    font-size: 7.5px;
    font-weight: 760;
    line-height: 25px;
    text-align: center;
}

.w-client-networks .is-active {
    border-color: #cbc7ff;
    background: #f4f3ff;
    color: #635bff;
}

.w-client-social {
    margin-top: 9px;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    overflow: hidden;
}

.w-client-social__head {
    display: flex;
    height: 42px;
    align-items: center;
    gap: 7px;
    padding: 0 9px;
}

.w-client-social-avatar {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #f59e0b, #9333ea);
    color: #fff;
    font-size: 8px;
    font-weight: 850;
}

.w-client-social__head > div {
    display: flex;
    flex-direction: column;
    color: #2e3542;
    font-size: 8px;
}

.w-client-social__head small {
    color: #959ca8;
    font-size: 7px;
}

.w-client-social__head b {
    margin-left: auto;
    color: #a0a6b0;
    font-size: 8px;
}

.w-client-social__media {
    display: flex;
    height: 185px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
    background: linear-gradient(145deg, #181f2e, #606aff);
    color: #fff;
}

.w-client-social__media strong {
    font-size: 21px;
    letter-spacing: -.04em;
}

.w-client-social__media span {
    margin-top: 3px;
    font-size: 8px;
    opacity: .75;
}

.w-client-social p {
    padding: 9px;
    color: #515a68;
    font-size: 8.5px;
    line-height: 1.45;
}

.w-client-decisions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 9px;
}

.w-client-decisions span {
    display: flex;
    height: 36px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #e0e4e9;
    border-radius: 9px;
    background: #fff;
    color: #485160;
    font-size: 9px;
    font-weight: 800;
}

.w-client-decisions .is-approve {
    border-color: #167a4d;
    background: #167a4d;
    color: #fff;
}

.w-client-progress {
    position: relative;
    height: 5px;
    margin-top: 10px;
    border-radius: 99px;
    background: #eef0f4;
}

.w-client-progress i {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: #635bff;
}

.w-client-progress small {
    position: absolute;
    top: 8px;
    right: 0;
    color: #969da8;
    font-size: 7px;
}

.w-client-bridge {
    position: absolute;
    z-index: 4;
    left: 67%;
    top: 50%;
    display: flex;
    min-height: 35px;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .2);
    font-size: 9px;
    font-weight: 760;
    transform: translate(-50%, -50%);
}

.w-client-bridge svg {
    color: #aaa5ff;
}

/* Audiences */
.w-home-page .w-section--use-cases {
    background: #fff;
}

.w-home-page .w-usecase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.w-home-page .w-usecase-grid .w-usecase {
    min-height: 180px;
    padding: 21px;
    border: 1px solid #e5e9f0;
    border-radius: 16px;
    background: #fff;
}

.w-home-page .w-usecase-grid .w-usecase:hover {
    border-color: #cbc7ff;
    box-shadow: 0 12px 30px rgba(99, 91, 255, .07);
    transform: translateY(-2px);
}

.w-usecase__number {
    color: #635bff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .11em;
}

.w-home-page .w-usecase-grid h3 {
    margin: 11px 0 0;
    color: #171c28;
    font-size: 16px;
    font-weight: 790;
}

.w-home-page .w-usecase-grid p {
    margin-top: 8px;
    color: #697386;
    font-size: 12.5px;
    line-height: 1.55;
}

/* Pricing */
.w-home-page .w-section--pricing {
    background: #f8f9fb;
}

.w-home-page .w-pricing-clarity {
    max-width: 820px;
    margin: -20px auto 30px;
    padding: 13px 15px;
    border: 1px solid #dad7ff;
    border-radius: 14px;
    background: #f6f5ff;
    color: #515969;
    font-size: 12.5px;
    line-height: 1.5;
    box-shadow: none;
}

.w-home-page .w-pricing-clarity > div:first-child {
    color: #635bff;
}

.w-home-page .w-pricing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1180px;
    gap: 16px;
    align-items: stretch;
}

.w-home-page .w-pricing-card,
.w-home-page .w-pricing-card--popular,
.w-home-page .w-pricing-card--popular:hover {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 26px;
    border: 1px solid #e5e9f0;
    border-radius: 20px;
    background: #fff;
    color: #4d5665;
    box-shadow: 0 7px 25px rgba(15, 23, 42, .04);
    transform: none;
}

.w-home-page .w-pricing-card--popular,
.w-home-page .w-pricing-card--popular:hover {
    border-color: #bfbaff;
    box-shadow: 0 18px 45px rgba(99, 91, 255, .12);
}

.w-home-page .w-pricing-card__badge,
.w-home-page .w-pricing-card--popular .w-pricing-card__badge {
    top: 13px;
    right: 13px;
    left: auto;
    min-height: 0;
    padding: 5px 8px;
    border: 0;
    border-radius: 999px;
    background: #eceaff;
    color: #5149df;
    box-shadow: none;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    transform: none;
}

.w-home-page .w-pricing-card__header {
    min-height: 126px;
}

.w-home-page .w-pricing-card__scenario,
.w-home-page .w-pricing-card--popular .w-pricing-card__scenario {
    color: #8d94a0;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
}

.w-home-page .w-pricing-card__name,
.w-home-page .w-pricing-card--popular .w-pricing-card__name {
    margin-top: 10px;
    color: #111827;
    font-size: 20px;
    font-weight: 810;
}

.w-home-page .w-pricing-card__price {
    align-items: baseline;
    margin-top: 16px;
}

.w-home-page .w-pricing-card__amount,
.w-home-page .w-pricing-card--popular .w-pricing-card__amount {
    color: #0a0f1d;
    font-size: 38px;
    font-weight: 830;
    letter-spacing: -.04em;
}

.w-home-page .w-pricing-card__period {
    margin: 0;
    color: #7a8290;
    font-size: 12px;
    font-weight: 650;
}

.w-home-page .w-pricing-card__features {
    flex: 1;
    gap: 11px;
    margin: 2px 0 24px;
    padding-top: 21px;
    border-top: 1px solid #e5e9f0;
}

.w-home-page .w-pricing-card__feature,
.w-home-page .w-pricing-card--popular .w-pricing-card__feature,
.w-home-page .w-pricing-card--popular .w-pricing-card__feature strong {
    color: #4d5665;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.w-home-page .w-pricing-card__feature svg,
.w-home-page .w-pricing-card--popular .w-pricing-card__feature svg {
    color: #1c9a63;
}

.w-home-page .w-pricing-card .w-btn {
    width: 100%;
    min-height: 47px;
    margin-top: auto;
}

.w-home-page .w-pricing .w-pricing-card--popular .w-btn--primary.w-btn--block {
    border-color: #635bff;
    background: linear-gradient(180deg, #716aff, #635bff);
    color: #fff;
}

.w-home-page .w-pricing-card__billing-note,
.w-home-page .w-pricing-card--popular .w-pricing-card__billing-note {
    min-height: 15px;
    margin-top: 11px;
    color: #8a919e;
    font-size: 10px;
}

/* FAQ and final conversion */
.w-home-page #faq {
    background: #fff;
}

.w-home-page .w-faq {
    max-width: 850px;
    margin: 0 auto;
    border: 0;
    border-top: 1px solid #e5e9f0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.w-home-page .w-faq-item {
    border: 0;
    border-bottom: 1px solid #e5e9f0;
    border-radius: 0;
    background: transparent;
}

.w-home-page .w-faq-trigger {
    min-height: 70px;
    padding: 0;
    background: transparent;
    color: #1a202d;
    font-size: 14px;
    font-weight: 750;
}

.w-home-page .w-faq-trigger:hover {
    background: transparent;
    color: #635bff;
}

.w-home-page .w-faq-trigger__icon {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: #697180;
}

.w-home-page .w-faq-item[open] .w-faq-trigger__icon {
    background: #f1f0ff;
    color: #635bff;
}

.w-home-page .w-faq-answer {
    padding: 0 54px 19px 0;
    color: #697386;
    font-size: 13px;
    line-height: 1.65;
}

.w-home-page .w-section--final-cta {
    padding: 105px 0;
    background: #0d1320;
}

.w-home-page .w-cta {
    position: relative;
    overflow: hidden;
    padding: 70px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 0%, rgba(99, 91, 255, .45), transparent 35%),
        #121a2a;
    color: #fff;
    text-align: center;
}

.w-home-page .w-cta::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -280px;
    display: block;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
}

.w-home-page .w-cta .w-label {
    color: #aaa5ff;
}

.w-home-page .w-cta__title {
    max-width: 760px;
    margin: 15px auto 0;
    color: #fff;
    font-size: 48px;
    line-height: 1.08;
}

.w-home-page .w-cta__text {
    max-width: 620px;
    margin: 15px auto 0;
    color: #b9c1cf;
    font-size: 15px;
    line-height: 1.6;
}

.w-home-page .w-cta__actions {
    margin-top: 25px;
}

.w-home-page .w-cta .w-btn--primary {
    border-color: #635bff;
    background: linear-gradient(180deg, #716aff, #635bff);
    color: #fff;
}

.w-home-page .w-cta__note {
    margin-top: 12px;
    color: #99a3b4;
    font-size: 10.5px;
}

.w-home-page .w-footer {
    padding: 62px 0 27px;
    border-top: 0;
    background: #090e18;
    color: #d8dee8;
}

.w-home-page .w-footer__grid {
    grid-template-columns: 1.3fr repeat(3, .7fr);
    gap: 60px;
    margin-bottom: 48px;
}

.w-home-page .w-footer .w-logo__text {
    color: #fff;
}

.w-home-page .w-footer__brand-desc {
    max-width: 290px;
    margin-top: 13px;
    color: #929cab;
    font-size: 12.5px;
    line-height: 1.55;
}

.w-home-page .w-footer__heading {
    margin-bottom: 13px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.w-home-page .w-footer__links {
    gap: 9px;
}

.w-home-page .w-footer__link {
    color: #929cab;
    font-size: 11.5px;
}

.w-home-page .w-footer__link:hover {
    color: #fff;
}

.w-home-page .w-footer__bottom {
    padding-top: 20px;
    border-top-color: rgba(255,255,255,.08);
    color: #768191;
    font-size: 10.5px;
}

.w-home-mobile-cta {
    display: none;
}

@media (max-width: 1040px) {
    .w-home-page .w-proof-layout {
        grid-template-columns: 1fr;
    }

    .w-home-page .w-usecase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .w-home-page .w-pricing {
        grid-template-columns: 1fr;
        max-width: 540px;
    }

    .w-client-stage {
        max-width: 820px;
    }

    .w-client-workspace {
        width: 66%;
    }

    .w-client-bridge {
        left: 63%;
    }
}

@media (max-width: 980px) {
    .w-home-page .w-header__inner {
        padding-inline: 20px;
    }

    .w-home-page .w-hero__inner {
        max-width: 820px;
        padding-inline: 24px;
    }

    .w-home-page .w-hero__content {
        max-width: 720px;
    }

    .w-home-page .w-hero__title {
        max-width: 760px;
    }

    .w-home-page .w-hero__desc {
        max-width: 650px;
    }

    .w-home-page .w-steps {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .w-home-page .w-step__visual,
    .w-home-page .w-step:nth-child(even) .w-step__visual {
        height: 270px;
    }

    .w-client-stage {
        max-width: 660px;
        justify-content: center;
    }

    .w-client-workspace,
    .w-client-bridge {
        display: none;
    }

    .w-client-phone {
        width: min(100%, 370px);
    }
}

@media (max-width: 760px) {
    body.w-home-page {
        --w-header-h: 61px;
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .w-home-page .w-header {
        height: 61px;
    }

    .w-home-page .w-header__inner {
        padding-inline: 15px 58px;
    }

    .w-home-page .w-logo__icon {
        width: 27px;
        height: 27px;
        border-radius: 8px;
    }

    .w-home-page .w-logo__text {
        font-size: 14px;
    }

    .w-home-page .w-header__mobile-cta {
        min-height: 36px;
        height: 36px;
        margin-left: auto;
        padding-inline: 12px;
        border-radius: 10px;
        font-size: 11.5px;
    }

    .w-home-page .w-drawer__trigger {
        top: 11px;
        right: 10px;
        width: 39px;
        height: 39px;
        border: 0;
        background: transparent;
    }

    .w-home-page .w-section {
        padding: 72px 0;
    }

    .w-home-page .w-container {
        padding-inline: 17px;
    }

    .w-home-page .w-section-header {
        margin-bottom: 28px;
    }

    .w-home-page .w-label {
        font-size: 9.5px;
    }

    .w-home-page .w-h2 {
        margin-top: 12px;
        font-size: 31px;
        line-height: 1.08;
    }

    .w-home-page .w-section-header .w-lead {
        margin-top: 12px;
        font-size: 13.5px;
        line-height: 1.55;
    }

    .w-home-page .w-hero {
        padding: 52px 0 36px;
    }

    .w-home-page .w-hero__inner {
        gap: 24px;
        padding-inline: 17px;
    }

    .w-home-page .w-label--hero {
        margin-bottom: 14px;
    }

    .w-home-page .w-hero__title {
        max-width: 390px;
        margin: 0 auto 17px;
        font-size: 42px;
        line-height: 1.01;
        letter-spacing: -.057em;
    }

    .w-home-page .w-hero__desc {
        max-width: 365px;
        font-size: 15px;
        line-height: 1.55;
    }

    .w-home-page .w-product-proof {
        max-width: 430px;
        margin-inline: auto;
        padding: 5px;
        border-radius: 18px;
    }

    .w-home-page .w-product-proof .w-hero__screenshot {
        border-radius: 13px;
    }

    .w-home-page .w-product-proof__caption {
        margin: 0;
        padding: 9px 6px 3px;
        font-size: 10px;
    }

    .w-home-page .w-hero__actions {
        gap: 8px;
    }

    .w-home-page .w-hero__actions .w-btn {
        min-height: 50px;
        border-radius: 12px;
        font-size: 13px;
    }

    .w-home-page .w-hero__note {
        margin: 9px auto 0;
        text-align: center;
    }

    .w-home-page .w-proof-strip .w-container {
        padding: 0;
    }

    .w-home-page .w-proof-strip__list {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 16px 17px;
        scrollbar-width: none;
    }

    .w-home-page .w-proof-strip__list::-webkit-scrollbar {
        display: none;
    }

    .w-home-page .w-proof-strip__list li,
    .w-home-page .w-proof-strip__list li + li,
    .w-home-page .w-proof-strip__list li:nth-child(3),
    .w-home-page .w-proof-strip__list li:nth-child(4) {
        min-height: 0;
        flex: none;
        padding: 8px 10px;
        border: 1px solid #e7eaf0;
        border-radius: 999px;
        background: #fff;
        font-size: 10.5px;
    }

    .w-home-page .w-proof-layout {
        gap: 28px;
    }

    .w-home-page .w-proof-copy {
        text-align: center;
    }

    .w-home-page .w-proof-copy .w-h2 {
        margin-top: 12px;
    }

    .w-home-page .w-proof-copy .w-lead {
        margin-top: 12px;
        font-size: 13.5px;
        line-height: 1.55;
    }

    .w-home-page .w-situation-list {
        max-width: 430px;
        margin-inline: auto;
        text-align: left;
    }

    .w-home-page .w-clarity-visual {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 10px;
        padding: 15px;
        border-radius: 16px;
    }

    .w-home-page .w-clarity-visual__scattered {
        min-height: 0;
    }

    .w-home-page .w-clarity-visual__scattered li:nth-child(n) {
        transform: none;
    }

    .w-home-page .w-clarity-visual__arrow {
        width: 38px;
        height: 38px;
        margin: -2px auto;
        transform: rotate(90deg);
    }

    .w-home-page .w-clarity-visual__review {
        border-radius: 16px;
    }

    .w-home-page .w-steps {
        gap: 10px;
    }

    .w-home-page .w-step,
    .w-home-page .w-step:nth-child(even) {
        border-radius: 16px;
    }

    .w-home-page .w-step__copy,
    .w-home-page .w-step:nth-child(even) .w-step__copy {
        padding: 17px;
    }

    .w-home-page .w-step__number {
        font-size: 9px;
    }

    .w-home-page .w-step__title {
        margin-top: 7px;
        font-size: 17px;
    }

    .w-home-page .w-step__text {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.5;
    }

    .w-home-page .w-step__visual,
    .w-home-page .w-step:nth-child(even) .w-step__visual {
        height: 155px;
        padding: 14px;
    }

    .w-client-stage {
        min-height: 0;
        padding: 0 9px 30px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .w-client-phone {
        width: min(100%, 355px);
        min-width: 0;
        padding: 13px;
    }

    .w-client-social__media {
        height: 180px;
    }

    .w-home-page .w-usecase-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        margin-inline: -17px;
        padding: 0 17px 3px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .w-home-page .w-usecase-grid::-webkit-scrollbar {
        display: none;
    }

    .w-home-page .w-usecase-grid .w-usecase {
        min-height: 170px;
        flex: 0 0 78%;
        padding: 18px;
        scroll-snap-align: start;
    }

    .w-home-page .w-pricing-clarity {
        margin: -6px 0 18px;
        padding: 12px;
        font-size: 11.5px;
    }

    .w-home-page .w-pricing {
        gap: 11px;
    }

    .w-home-page .w-pricing-card,
    .w-home-page .w-pricing-card--popular {
        padding: 20px;
        border-radius: 18px;
    }

    .w-home-page .w-pricing-card__header {
        min-height: 108px;
    }

    .w-home-page .w-pricing-card__scenario {
        font-size: 8.5px;
    }

    .w-home-page .w-pricing-card__name {
        margin-top: 7px;
        font-size: 18px;
    }

    .w-home-page .w-pricing-card__amount {
        font-size: 34px;
    }

    .w-home-page .w-pricing-card__features {
        gap: 9px;
        margin-bottom: 18px;
        padding-top: 15px;
    }

    .w-home-page .w-pricing-card__feature {
        font-size: 11px;
    }

    .w-home-page .w-faq-trigger {
        min-height: 61px;
        font-size: 12.5px;
    }

    .w-home-page .w-faq-trigger__icon {
        width: 26px;
        height: 26px;
    }

    .w-home-page .w-faq-answer {
        padding: 0 38px 15px 0;
        font-size: 11.5px;
        line-height: 1.55;
    }

    .w-home-page .w-section--final-cta {
        padding: 70px 17px;
    }

    .w-home-page .w-section--final-cta .w-container {
        padding: 0;
    }

    .w-home-page .w-cta {
        padding: 40px 20px;
        border-radius: 22px;
        background:
            radial-gradient(circle at 50% 0%, rgba(99,91,255,.42), transparent 35%),
            #121a2a;
    }

    .w-home-page .w-cta__title {
        margin-top: 12px;
        font-size: 31px;
        line-height: 1.07;
    }

    .w-home-page .w-cta__text {
        font-size: 12.5px;
        line-height: 1.55;
    }

    .w-home-page .w-cta__actions {
        margin-top: 19px;
    }

    .w-home-page .w-footer {
        padding: 42px 17px calc(86px + env(safe-area-inset-bottom));
    }

    .w-home-page .w-footer .w-container {
        padding: 0;
    }

    .w-home-page .w-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px;
        margin-bottom: 29px;
    }

    .w-home-page .w-footer__grid > div:first-child {
        grid-column: 1 / -1;
    }

    .w-home-page .w-footer__brand-desc {
        font-size: 11px;
    }

    .w-home-page .w-footer__heading {
        font-size: 10px;
    }

    .w-home-page .w-footer__link {
        font-size: 10.5px;
    }

    .w-home-page .w-footer__bottom {
        gap: 15px;
        padding-top: 17px;
        font-size: 9.5px;
    }

    .w-home-mobile-cta {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 90;
        display: block;
        padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(226, 230, 236, .9);
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(18px) saturate(130%);
    }

    .w-home-mobile-cta a {
        display: flex;
        height: 49px;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border-radius: 13px;
        background: linear-gradient(180deg, #716aff, #635bff);
        color: #fff;
        box-shadow: 0 8px 22px rgba(99, 91, 255, .2);
        font-size: 13px;
        font-weight: 780;
    }
}

@media (max-width: 390px) {
    .w-home-page .w-hero__title {
        font-size: 38px;
    }

    .w-home-page .w-header__mobile-cta {
        padding-inline: 10px;
    }

    .w-home-page .w-footer__bottom {
        display: grid;
    }
}

/* Real product proof captured from the live creator and public-review interfaces. */
.w-home-page .w-client-stage--real {
    position: relative;
    display: block;
    min-height: 700px;
    max-width: 1160px;
    padding: 30px;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 9%, rgba(99, 91, 255, .22), transparent 30%),
        linear-gradient(145deg, #f7f7ff, #edeef6);
}

.w-home-page .w-client-capture-overview {
    width: 88%;
    overflow: hidden;
    border: 1px solid #dfe3eb;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 24px 65px rgba(18, 24, 40, .15);
}

.w-home-page .w-client-capture-overview img {
    display: block;
    width: 100%;
    height: auto;
}

.w-home-page .w-client-capture-mobile {
    position: absolute;
    right: 27px;
    bottom: 25px;
    z-index: 2;
    width: 282px;
    padding: 9px;
    overflow: hidden;
    border: 1px solid #161b2a;
    border-radius: 31px;
    background: #101522;
    box-shadow: 0 34px 75px rgba(18, 24, 40, .27), 0 7px 18px rgba(18, 24, 40, .16);
}

.w-home-page .w-client-capture-mobile img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 23px;
}

.w-home-page .w-client-capture-caption {
    position: absolute;
    top: 39px;
    right: 42px;
    z-index: 3;
    display: flex;
    min-height: 50px;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(99, 91, 255, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 15px 36px rgba(47, 46, 91, .14);
    color: #635bff;
    backdrop-filter: blur(16px);
}

.w-home-page .w-client-capture-caption > span {
    display: grid;
    gap: 1px;
    color: #858c9a;
    font-size: 9px;
    line-height: 1.35;
}

.w-home-page .w-client-capture-caption strong {
    color: #282c39;
    font-size: 11px;
}

@media (max-width: 767px) {
    .w-home-page .w-client-stage--real {
        min-height: 0;
        padding: 10px 10px 18px;
        border: 1px solid #e1e5eb;
        border-radius: 20px;
        background:
            radial-gradient(circle at 82% 18%, rgba(99, 91, 255, .18), transparent 34%),
            #f1f2f7;
        box-shadow: 0 20px 46px rgba(15, 23, 42, .1);
    }

    .w-home-page .w-client-capture-overview {
        width: 100%;
        border-radius: 13px;
    }

    .w-home-page .w-client-capture-mobile {
        position: relative;
        right: auto;
        bottom: auto;
        width: 55%;
        margin: -68px 7px 0 auto;
        padding: 6px;
        border-radius: 23px;
    }

    .w-home-page .w-client-capture-mobile img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 18px;
    }

    .w-home-page .w-client-capture-caption {
        position: relative;
        top: auto;
        right: auto;
        width: fit-content;
        min-height: 44px;
        margin: 12px 4px 0;
    }
}

/* Real, current product captures for the problem and three-step story. */
.w-home-page .w-clarity-visual__real {
    position: relative;
    display: flex;
    height: 350px;
    align-items: flex-start;
    justify-content: center;
    margin-top: 9px;
    overflow: hidden;
    border: 1px solid #e2e3f0;
    border-radius: 14px;
    background:
        radial-gradient(circle at 52% 12%, rgba(99, 91, 255, .18), transparent 38%),
        linear-gradient(180deg, #f7f6ff, #eff0f5);
}

.w-home-page .w-clarity-visual__real img {
    display: block;
    width: auto;
    height: 100%;
    border-inline: 1px solid rgba(19, 25, 42, .08);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .14);
}

.w-home-page .w-clarity-visual__real-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    color: #3d4656;
    font-size: 10px;
    font-weight: 760;
}

.w-home-page .w-clarity-visual__real-caption small {
    color: #8a92a1;
    font-size: 9px;
    font-weight: 650;
}

.w-home-page .w-step__visual--real,
.w-home-page .w-step:nth-child(even) .w-step__visual--real {
    position: relative;
    padding: 10px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(99, 91, 255, .12), transparent 34%),
        #f2f3f7;
}

.w-home-page .w-step__visual--real img {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #dfe2e9;
    border-radius: 12px;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .1);
}

.w-home-page .w-step__visual--real figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .14);
    color: #343c4a;
    font-size: 9px;
    font-weight: 760;
    backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
    .w-home-page .w-clarity-visual__real {
        height: 430px;
    }

    .w-home-page .w-step__visual--real,
    .w-home-page .w-step:nth-child(even) .w-step__visual--real {
        height: 225px;
        padding: 9px;
    }

    .w-home-page .w-step__visual--real figcaption {
        right: 14px;
        bottom: 14px;
    }
}
