.live-funnel-root,
.live-funnel-root * {
    box-sizing: border-box;
}

.live-funnel-root {
    --lf-border: #d8dde7;
    --lf-border-width: 1px;
    --lf-text: #172033;
    --lf-muted: #5b6475;
    --lf-bg: #ffffff;
    --lf-panel-bg: #ffffff;
    --lf-page-bg: transparent;
    --lf-soft: #f4f6f9;
    --lf-primary: #0f766e;
    --lf-primary-hover: #115e59;
    --lf-secondary: #dbeafe;
    --lf-container-radius: 8px;
    --lf-button-radius: 6px;
    --lf-input-radius: 6px;
    --lf-panel-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    --lf-button-shadow: none;
    --lf-input-shadow: none;
    --lf-button-text: #ffffff;
    --lf-input-bg: #ffffff;
    --lf-input-border: var(--lf-border);
    --lf-input-focus: var(--lf-primary);
    --lf-input-text: var(--lf-text);
    --lf-placeholder: #94a3b8;
    --lf-progress-bg: var(--lf-soft);
    --lf-progress-fill: var(--lf-primary);
    --lf-progress-height: 8px;
    --lf-progress-radius: 999px;
    --lf-panel-padding: 24px;
    --lf-field-gap: 16px;
    --lf-max-width: 720px;
    --lf-headline-size: 28px;
    --lf-body-size: 16px;
    --lf-field-size: 15px;
    --lf-button-size: 15px;
    --lf-label-weight: 600;
    position: relative;
    max-width: var(--lf-max-width);
    margin: 24px auto;
    border-radius: calc(var(--lf-container-radius) + 8px);
    padding: 8px;
    background: var(--lf-page-bg);
    color: var(--lf-text);
    font-family: inherit;
    font-size: var(--lf-body-size);
}

.live-funnel-panel {
    position: relative;
    overflow: hidden;
    background: var(--lf-panel-bg, var(--lf-bg));
    border: var(--lf-border-width) solid var(--lf-border);
    border-radius: var(--lf-container-radius);
    padding: var(--lf-panel-padding);
    box-shadow: var(--lf-panel-shadow);
}

.live-funnel-mouse-bg-soft-glow .live-funnel-panel::before {
    content: "";
    position: absolute;
    inset: -30% -20% auto auto;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: radial-gradient(circle, color-mix(in srgb, var(--lf-primary) 22%, transparent), transparent 62%);
    opacity: 0.68;
    pointer-events: none;
}

.live-funnel-panel > * {
    position: relative;
    z-index: 1;
}

.live-funnel-auto-back {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    width: max-content;
    margin: 0 0 14px auto;
    border: 1px solid color-mix(in srgb, var(--lf-border) 70%, transparent);
    border-radius: 999px;
    padding: 6px 10px;
    background: color-mix(in srgb, var(--lf-panel-bg) 82%, transparent);
    color: var(--lf-muted);
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.live-funnel-auto-back:hover,
.live-funnel-auto-back:focus {
    border-color: var(--lf-primary);
    color: var(--lf-primary);
    outline: none;
    transform: translateY(-1px);
}

.live-funnel-root h2,
.live-funnel-root h3 {
    margin: 0 0 10px;
    color: var(--lf-text);
    letter-spacing: 0;
}

.live-funnel-root h2 {
    font-size: var(--lf-headline-size);
    line-height: 1.12;
}

.live-funnel-root p {
    margin: 0 0 18px;
    color: var(--lf-muted);
    font-size: var(--lf-body-size);
}

.live-funnel-progress {
    display: grid;
    gap: 8px;
    margin: 0 0 22px;
}

.live-funnel-progress-track {
    width: 100%;
    height: var(--lf-progress-height);
    overflow: hidden;
    border-radius: var(--lf-progress-radius);
    background: var(--lf-progress-bg);
}

.live-funnel-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--lf-progress-fill), var(--lf-primary));
    transition: width 180ms ease;
}

.live-funnel-progress-text {
    color: var(--lf-muted);
    font-size: 13px;
    font-weight: 700;
}

.live-funnel-field {
    margin-bottom: var(--lf-field-gap);
}

.live-funnel-field-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: var(--lf-field-gap);
}

.live-funnel-field-grid--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.live-funnel-field--full {
    grid-column: 1 / -1;
}

.live-funnel-field--half {
    grid-column: span 1;
}

.live-funnel-extra-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.live-funnel-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: var(--lf-label-weight);
    color: var(--lf-text);
    font-size: var(--lf-field-size);
}

.live-funnel-field input,
.live-funnel-field textarea,
.live-funnel-field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--lf-input-border);
    border-radius: var(--lf-input-radius);
    padding: 10px 12px;
    color: var(--lf-input-text);
    background: var(--lf-input-bg);
    box-shadow: var(--lf-input-shadow);
    font: inherit;
    font-size: var(--lf-field-size);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.live-funnel-field input::placeholder,
.live-funnel-field textarea::placeholder {
    color: var(--lf-placeholder);
}

.live-funnel-field input:focus,
.live-funnel-field textarea:focus,
.live-funnel-field select:focus {
    border-color: var(--lf-input-focus);
    outline: none;
}

.live-funnel-input-effect-focus-ring .live-funnel-field input:focus,
.live-funnel-input-effect-focus-ring .live-funnel-field textarea:focus,
.live-funnel-input-effect-focus-ring .live-funnel-field select:focus {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--lf-input-focus) 18%, transparent), var(--lf-input-shadow);
}

.live-funnel-input-effect-glow .live-funnel-field input:focus,
.live-funnel-input-effect-glow .live-funnel-field textarea:focus,
.live-funnel-input-effect-glow .live-funnel-field select:focus {
    box-shadow: 0 0 22px color-mix(in srgb, var(--lf-input-focus) 28%, transparent), var(--lf-input-shadow);
}

.live-funnel-field textarea {
    min-height: 112px;
    resize: vertical;
}

.live-funnel-choice-group {
    border: 0;
    margin: 0;
    padding: 0;
}

.live-funnel-choice-group legend {
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--lf-text);
}

.live-funnel-checkbox,
.live-funnel-radio {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
    font-weight: 400;
}

.live-funnel-checkbox input,
.live-funnel-radio input {
    width: auto;
    min-height: 0;
    margin-top: 4px;
}

.live-funnel-image-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.live-funnel-image-choice {
    display: block;
    margin: 0;
}

.live-funnel-image-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.live-funnel-image-choice-card {
    display: grid;
    gap: 8px;
    min-height: 100%;
    padding: 10px;
    border: 1px solid var(--lf-input-border);
    border-radius: var(--lf-input-radius);
    background: var(--lf-input-bg);
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.live-funnel-image-choice-card img,
.live-funnel-image-choice-placeholder,
.live-funnel-image-choice-card .lf-fullpage-inline-icon {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.live-funnel-image-choice-card .lf-fullpage-inline-icon {
    display: inline-grid;
    place-items: center;
    font-size: 34px;
    color: var(--lf-primary);
}

.live-funnel-image-choice-card strong {
    color: var(--lf-text);
    font-size: 14px;
}

.live-funnel-image-choice-card small {
    color: var(--lf-muted);
    font-size: 12px;
    line-height: 1.35;
}

.live-funnel-image-choice input:focus-visible + .live-funnel-image-choice-card,
.live-funnel-image-choice input:checked + .live-funnel-image-choice-card {
    border-color: var(--lf-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--lf-primary) 18%, transparent);
}

.live-funnel-image-choice input:checked + .live-funnel-image-choice-card {
    transform: translateY(-1px);
}

.live-funnel-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 18px;
}

.live-funnel-button {
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: var(--lf-button-radius);
    padding: 10px 18px;
    cursor: pointer;
    font: inherit;
    font-size: var(--lf-button-size);
    font-weight: 700;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.live-funnel-button-primary {
    background: var(--lf-primary);
    color: var(--lf-button-text);
    box-shadow: var(--lf-button-shadow);
}

.live-funnel-button-primary:hover,
.live-funnel-button-primary:focus {
    background: var(--lf-primary-hover);
}

.live-funnel-button-effect-lift .live-funnel-button:hover,
.live-funnel-button-effect-lift .live-funnel-button:focus {
    transform: translateY(-1px);
}

.live-funnel-button-effect-press .live-funnel-button:active {
    transform: translateY(1px) scale(0.99);
}

.live-funnel-button-effect-glow .live-funnel-button-primary:hover,
.live-funnel-button-effect-glow .live-funnel-button-primary:focus {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--lf-primary) 18%, transparent), var(--lf-button-shadow);
}

.live-funnel-button-secondary {
    border-color: var(--lf-border);
    background: var(--lf-secondary);
    color: var(--lf-text);
}

.live-funnel-button-ghost {
    border-color: var(--lf-border);
    background: transparent;
    color: var(--lf-text);
}

.live-funnel-error,
.live-funnel-success {
    margin-top: 16px;
    border-radius: 6px;
    padding: 12px 14px;
}

.live-funnel-error {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}

.live-funnel-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.live-funnel-success--card {
    margin-top: 18px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--lf-text);
}

.live-funnel-success-card {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
}

.live-funnel-success-card h3 {
    margin: 0;
    max-width: 22ch;
    color: var(--lf-text);
    font-size: var(--lf-headline-size);
    line-height: 1.12;
}

.live-funnel-success-card p {
    margin: 0;
    max-width: 42ch;
    color: var(--lf-muted);
    line-height: 1.6;
}

.live-funnel-success-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--lf-primary) 14%, #ffffff);
    color: var(--lf-primary);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--lf-primary) 18%, transparent);
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.live-funnel-success-icon--heart {
    color: #be123c;
    background: #fff1f2;
}

.live-funnel-success-icon--bell,
.live-funnel-success-icon--star {
    color: #b45309;
    background: #fffbeb;
}

.live-funnel-success-icon--info {
    color: #0369a1;
    background: #f0f9ff;
    font-family: Georgia, serif;
    font-style: italic;
}

.live-funnel-success-note {
    width: 100%;
    border: 1px solid var(--lf-border);
    border-radius: var(--lf-input-radius);
    padding: 12px 14px;
    background: var(--lf-soft);
    color: var(--lf-text);
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
}

.live-funnel-success-note--success {
    border-color: color-mix(in srgb, var(--lf-primary) 28%, var(--lf-border));
    background: color-mix(in srgb, var(--lf-primary) 10%, #ffffff);
}

.live-funnel-success-note--info {
    border-color: #bae6fd;
    background: #f0f9ff;
}

.live-funnel-ab-trust {
    margin: 12px 0 16px;
    padding: 10px 12px;
    border-left: 3px solid var(--lf-primary);
    background: var(--lf-soft);
    color: var(--lf-text);
    font-size: 14px;
}

.live-funnel-field-error {
    border-color: #dc2626 !important;
}

.live-funnel-choice-group.live-funnel-field-error {
    border: 1px solid #dc2626;
    border-radius: 6px;
    padding: 10px;
}

.live-funnel-recovery {
    margin-top: 16px;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    background: #eef2ff;
    padding: 14px;
    color: #1e1b4b;
}

.live-funnel-recovery p {
    margin: 0 0 10px;
    color: #1e1b4b;
}

@media (max-width: 640px) {
    .live-funnel-root {
        margin: 16px 0;
    }

    .live-funnel-panel {
        border-radius: min(var(--lf-container-radius), 18px);
        padding: 18px;
    }

    .live-funnel-field-grid--split {
        grid-template-columns: 1fr;
    }

    .live-funnel-field--half {
        grid-column: 1 / -1;
    }

    .live-funnel-image-choice-grid {
        grid-template-columns: 1fr;
    }

    .live-funnel-actions {
        flex-direction: column-reverse;
    }

    .live-funnel-button {
        width: 100%;
    }
}

@keyframes live-funnel-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes live-funnel-slide-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-funnel-entrance-fade .live-funnel-panel {
    animation: live-funnel-fade-in 260ms ease both;
}

.live-funnel-entrance-fade-up .live-funnel-panel,
.live-funnel-entrance-slide-up .live-funnel-panel {
    animation: live-funnel-slide-up 320ms ease both;
}

.live-funnel-label-compact .live-funnel-field label,
.live-funnel-label-compact .live-funnel-choice-group legend {
    margin-bottom: 4px;
    font-size: max(12px, calc(var(--lf-field-size) - 1px));
}

.live-funnel-label-floating .live-funnel-field > label:first-child,
.live-funnel-label-floating .live-funnel-choice-group legend {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 9px;
    background: var(--lf-secondary);
    color: var(--lf-text);
}

@media (prefers-reduced-motion: reduce) {
    .live-funnel-root *,
    .live-funnel-root *::before,
    .live-funnel-root *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

.lf-fullpage-story,
.lf-fullpage-story-root,
.lf-layout-fullpage-story {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100svh;
    margin-right: -50vw;
    margin-left: -50vw;
    padding: 0;
    overflow-x: clip;
}

.lf-fullpage-story {
    border-radius: 0;
    background: radial-gradient(circle at 15% 10%, color-mix(in srgb, var(--lf-fullpage-accent, #14b8a6) 24%, transparent), transparent 32%), linear-gradient(135deg, color-mix(in srgb, var(--lf-fullpage-main, #2563eb) 12%, #ffffff), color-mix(in srgb, var(--lf-fullpage-accent, #14b8a6) 12%, #ffffff));
}

.lf-fullpage-story-page-host,
.entry-content > .lf-fullpage-story-page-host,
.wp-block-post-content > .lf-fullpage-story-page-host {
    width: 100vw;
    max-width: none !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    border: 0 !important;
    outline: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow-x: clip;
}

.lf-fullpage-story-live,
.lf-fullpage-story-live .live-funnel-panel,
.lf-fullpage-story-live .lf-fullpage-story-section,
.lf-fullpage-story-live .lf-story-screen,
.lf-fullpage-story-live .lf-story-form-screen,
.lf-fullpage-story-live .live-funnel-success {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.lf-fullpage-story-live::before,
.lf-fullpage-story-live::after,
.lf-fullpage-story-live .live-funnel-panel::before,
.lf-fullpage-story-live .live-funnel-panel::after {
    border: 0 !important;
    box-shadow: none !important;
    content: none !important;
}

.lf-fullpage-story-bg-color { background: var(--lf-page-bg, #f8fafc); }
.lf-fullpage-story-bg-image { background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.18)), var(--lf-fullpage-bg-image); background-size: cover; background-position: center; }
.lf-fullpage-story-scroll-smooth { scroll-behavior: smooth; }
.lf-fullpage-story-scroll-snap { scroll-snap-type: y proximity; }

.lf-fullpage-story .live-funnel-panel {
    display: grid;
    gap: 0;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    max-width: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.lf-fullpage-story-section {
    position: relative;
    display: grid;
    align-content: center;
    width: min(1180px, calc(100vw - 32px));
    min-height: min(760px, 92vh);
    margin: 0 auto;
    padding: 72px 0;
    scroll-snap-align: start;
}

.lf-fullpage-story-spacing-compact .lf-fullpage-story-section { min-height: auto; padding: 48px 0; }
.lf-fullpage-story-spacing-spacious .lf-fullpage-story-section { padding: 104px 0; }

.lf-fullpage-story-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
    gap: clamp(28px, 5vw, 80px);
    min-height: 100vh;
    min-height: 100svh;
}

.lf-fullpage-story-copy h1,
.lf-fullpage-story-section h2 { margin: 0 0 16px; color: var(--lf-text); letter-spacing: 0; }
.lf-fullpage-story-copy h1 { max-width: 820px; font-size: clamp(38px, 6vw, 72px); line-height: 1.02; overflow-wrap: anywhere; }
.lf-fullpage-story-copy p { max-width: 640px; color: var(--lf-muted); font-size: clamp(18px, 2.4vw, 25px); }

.lf-fullpage-story-kicker {
    display: inline-flex;
    width: max-content;
    margin-bottom: 18px;
    border: 1px solid color-mix(in srgb, var(--lf-primary) 24%, transparent);
    border-radius: 999px;
    padding: 7px 11px;
    background: color-mix(in srgb, #ffffff 72%, transparent);
    color: var(--lf-primary);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.lf-fullpage-story-icon {
    display: inline-grid;
    place-items: center;
    width: clamp(46px, 8vw, 70px);
    height: clamp(46px, 8vw, 70px);
    margin-bottom: 6px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--lf-primary) 14%, #ffffff);
    color: var(--lf-primary);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    line-height: 1;
}

.lf-fullpage-story-cta { display: inline-flex; align-items: center; gap: 10px; width: max-content; margin-top: 10px; text-decoration: none; }
.lf-fullpage-story-hero-image { width: 100%; max-height: 520px; border-radius: calc(var(--lf-container-radius) + 16px); object-fit: cover; box-shadow: 0 34px 100px rgba(15, 23, 42, 0.22); }
.lf-fullpage-story-social, .lf-fullpage-story-form, .lf-fullpage-story-trust { width: min(960px, calc(100vw - 32px)); }
.lf-fullpage-social-actions, .lf-fullpage-trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }

.lf-fullpage-social-action,
.lf-fullpage-trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid color-mix(in srgb, var(--lf-border) 76%, transparent);
    border-radius: var(--lf-container-radius);
    padding: 16px;
    background: color-mix(in srgb, var(--lf-bg) 88%, transparent);
    color: var(--lf-text);
    text-decoration: none;
    box-shadow: var(--lf-panel-shadow);
    backdrop-filter: blur(14px);
}

.lf-fullpage-social-action .lf-fullpage-inline-icon,
.lf-fullpage-trust-card span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--lf-primary) 12%, #ffffff);
    color: var(--lf-primary);
    font-size: 12px;
    font-weight: 850;
}

.lf-fullpage-inline-icon img {
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 6px;
}

.lf-fullpage-story-cta .lf-fullpage-inline-icon,
.lf-fullpage-sticky-cta .lf-fullpage-inline-icon {
    display: inline-grid;
    place-items: center;
    min-width: 1.1em;
}

.lf-fullpage-story-form > h2,
.lf-fullpage-story-form > p,
.lf-fullpage-story-form > form,
.lf-fullpage-story-form > .live-funnel-success,
.lf-fullpage-story-form > .live-funnel-error,
.lf-fullpage-story-form > .live-funnel-recovery,
.lf-fullpage-story-form > .live-funnel-auto-back { width: min(860px, 100%); margin-right: auto; margin-left: auto; }

.lf-fullpage-story-form > form,
.lf-fullpage-story-form > .live-funnel-success {
    border: 0;
    border-radius: max(0px, var(--lf-container-radius));
    padding: var(--lf-panel-padding);
    background: color-mix(in srgb, var(--lf-panel-bg) 92%, transparent);
    box-shadow: none;
}

.lf-fullpage-story-form > .live-funnel-recovery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-color: color-mix(in srgb, var(--lf-primary) 18%, var(--lf-border));
    border-radius: 18px;
    padding: 12px 14px;
    background: color-mix(in srgb, var(--lf-panel-bg) 94%, var(--lf-primary) 6%);
    color: var(--lf-text);
    box-shadow: none;
}

.lf-fullpage-story-form > .live-funnel-recovery[hidden] {
    display: none !important;
}

.lf-fullpage-story-form > .live-funnel-recovery p {
    margin: 0;
    color: var(--lf-muted);
    font-size: 14px;
}

.lf-fullpage-story-form > .live-funnel-recovery .live-funnel-button {
    flex: 0 0 auto;
}

.lf-fullpage-sticky-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    border-radius: 999px;
    padding: 12px 18px;
    background: var(--lf-primary);
    color: var(--lf-button-text);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
    font-weight: 820;
    text-decoration: none;
}

.lf-fullpage-story-tone-light { --lf-text: #ffffff; --lf-muted: rgba(255, 255, 255, 0.78); --lf-bg: rgba(15, 23, 42, 0.54); --lf-panel-bg: rgba(15, 23, 42, 0.58); --lf-border: rgba(255, 255, 255, 0.22); --lf-input-bg: rgba(255, 255, 255, 0.94); --lf-input-text: #0f172a; }

@media (max-width: 780px) {
    .lf-fullpage-story-hero { grid-template-columns: 1fr; }
    .lf-fullpage-story-section { width: min(100% - 22px, 760px); min-height: auto; padding: 48px 0; }
    .lf-fullpage-story-copy h1 { font-size: clamp(36px, 13vw, 58px); }
    .lf-fullpage-sticky-cta { right: 12px; bottom: 12px; left: 12px; }
}

.lf-story-funnel {
    min-height: 100vh;
    min-height: 100svh;
    overflow-x: clip;
    color: var(--lf-text);
}

.lf-story-funnel .live-funnel-panel {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: clamp(28px, 6vw, 80px) clamp(18px, 5vw, 72px);
}

.lf-story-funnel .lf-fullpage-story-section {
    width: min(1120px, calc(100vw - 48px));
    min-height: min(760px, calc(100svh - 40px));
    align-content: stretch;
    padding: 0;
}

.lf-story-funnel .lf-story-screen,
.lf-story-funnel .lf-story-form-screen {
    position: relative;
    width: min(1120px, calc(100vw - 48px));
    min-height: min(760px, calc(100svh - 40px));
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    padding: calc(26px + env(safe-area-inset-top, 0px)) 0 calc(24px + env(safe-area-inset-bottom, 0px));
    background: transparent;
    box-shadow: none;
    overflow: hidden auto;
}

.lf-story-funnel .lf-story-start-screen {
    display: grid;
    align-content: center;
}

.lf-story-funnel .lf-fullpage-story-copy {
    display: grid;
    gap: 16px;
}

.lf-story-funnel .lf-fullpage-story-copy h1,
.lf-story-funnel .live-funnel-step h3 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.04;
    overflow-wrap: anywhere;
}

.lf-story-funnel .lf-fullpage-story-copy p,
.lf-story-funnel .live-funnel-step > p {
    max-width: 720px;
    margin: 0;
    color: var(--lf-muted);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
}

.lf-story-funnel .lf-fullpage-story-kicker {
    width: max-content;
    max-width: 100%;
}

.lf-story-funnel .lf-fullpage-story-cta {
    width: max-content;
    min-width: min(320px, 100%);
    margin-top: 18px;
}

.lf-story-funnel .lf-story-form-screen > form {
    display: grid;
    gap: 18px;
    width: min(860px, 100%);
    min-height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.lf-story-funnel .live-funnel-progress {
    margin: 0 0 10px;
}

.lf-story-funnel .live-funnel-progress-text {
    justify-content: flex-start;
    color: var(--lf-muted);
    font-size: 12px;
    font-weight: 820;
    text-transform: uppercase;
}

.lf-story-funnel .live-funnel-step {
    display: grid;
    align-content: center;
    gap: 18px;
    width: min(900px, 100%);
    min-height: calc(100svh - 220px);
}

.lf-story-funnel .live-funnel-step[hidden],
.lf-story-funnel [hidden] {
    display: none !important;
}

.lf-story-funnel .live-funnel-field-grid {
    display: grid;
    gap: 12px;
}

.lf-story-funnel .live-funnel-field,
.lf-story-funnel .live-funnel-choice-group {
    display: grid;
    gap: 10px;
}

.lf-story-funnel .live-funnel-choice-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lf-story-funnel .live-funnel-choice-group legend {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.lf-story-funnel .live-funnel-checkbox,
.lf-story-funnel .live-funnel-radio {
    position: relative;
    min-height: 78px;
    border: 1px solid color-mix(in srgb, var(--lf-border) 82%, transparent);
    border-radius: 22px;
    padding: 17px 18px;
    background: color-mix(in srgb, var(--lf-bg) 88%, transparent);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lf-story-funnel .live-funnel-checkbox:hover,
.lf-story-funnel .live-funnel-radio:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--lf-primary) 42%, var(--lf-border));
}

.lf-story-funnel .live-funnel-checkbox input,
.lf-story-funnel .live-funnel-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lf-story-funnel .live-funnel-checkbox span,
.lf-story-funnel .live-funnel-radio span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    color: var(--lf-text);
    font-size: 16px;
    font-weight: 820;
    overflow-wrap: anywhere;
}

.lf-story-funnel .live-funnel-checkbox span::after,
.lf-story-funnel .live-funnel-radio span::after {
    content: "";
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border: 2px solid color-mix(in srgb, var(--lf-border) 80%, var(--lf-primary));
    border-radius: 999px;
}

.lf-story-funnel .live-funnel-checkbox input:checked + span,
.lf-story-funnel .live-funnel-radio input:checked + span {
    color: var(--lf-primary);
}

.lf-story-funnel .live-funnel-checkbox input:checked + span::after,
.lf-story-funnel .live-funnel-radio input:checked + span::after {
    border-color: var(--lf-primary);
    background: radial-gradient(circle, var(--lf-primary) 0 44%, transparent 48%);
}

.lf-story-funnel .live-funnel-checkbox:has(input:checked),
.lf-story-funnel .live-funnel-radio:has(input:checked) {
    border-color: var(--lf-primary);
    background: color-mix(in srgb, var(--lf-primary) 9%, var(--lf-bg));
    box-shadow: 0 16px 38px color-mix(in srgb, var(--lf-primary) 18%, transparent);
}

.lf-story-funnel .live-funnel-image-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lf-story-funnel .live-funnel-image-choice-card {
    min-height: 132px;
    border-radius: 22px;
}

.lf-story-funnel .live-funnel-field input,
.lf-story-funnel .live-funnel-field textarea,
.lf-story-funnel .live-funnel-field select {
    min-height: 54px;
    font-size: 16px;
}

.lf-story-funnel .live-funnel-actions {
    position: sticky;
    bottom: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    background: linear-gradient(to top, color-mix(in srgb, var(--lf-panel-bg) 98%, transparent) 74%, transparent);
}

.lf-story-funnel .live-funnel-actions .live-funnel-button-primary {
    grid-column: 2;
}

.lf-story-funnel .live-funnel-actions .live-funnel-button-secondary {
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
}

.lf-story-funnel .live-funnel-success {
    width: min(900px, calc(100vw - 48px));
    min-height: min(620px, calc(100svh - 72px));
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    padding: calc(32px + env(safe-area-inset-top, 0px)) 24px calc(28px + env(safe-area-inset-bottom, 0px));
    background: transparent;
    box-shadow: none;
}

@media (max-width: 780px) {
    .lf-fullpage-story,
    .lf-fullpage-story-root,
    .lf-layout-fullpage-story {
        left: 50%;
        right: 50%;
        width: 100vw;
        max-width: 100vw;
        min-height: 100svh;
        margin-right: -50vw;
        margin-left: -50vw;
        overflow-x: hidden;
    }

    .lf-story-funnel .live-funnel-panel {
        place-items: stretch;
        padding: 0;
    }

    .lf-story-funnel .lf-fullpage-story-section,
    .lf-story-funnel .lf-story-screen,
    .lf-story-funnel .lf-story-form-screen,
    .lf-story-funnel .live-funnel-success {
        width: 100%;
        max-width: 100%;
        min-height: 100svh;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .lf-story-funnel .lf-story-screen,
    .lf-story-funnel .lf-story-form-screen,
    .lf-story-funnel .live-funnel-success {
        padding-right: 18px;
        padding-left: 18px;
    }

    .lf-story-funnel .lf-fullpage-story-cta {
        width: 100%;
    }

    .lf-story-funnel .live-funnel-step {
        min-height: calc(100svh - 150px);
    }

    .lf-story-funnel .live-funnel-choice-group {
        grid-template-columns: 1fr;
    }

    .lf-story-funnel .live-funnel-image-choice-grid {
        grid-template-columns: 1fr;
    }

    .lf-story-funnel .lf-fullpage-story-copy h1,
    .lf-story-funnel .live-funnel-step h3 {
        font-size: clamp(30px, 10vw, 42px);
    }
}
