/* LeaseCraft CSS bundle: homepage.css */
/* Generated by scripts/build_css_bundles.py — do not edit */

/* --- lc-design-tokens.css --- */
/**
 * LeaseCraft design tokens — single source for product surfaces.
 * Editorial / document-focused. Warm neutrals, charcoal ink, restrained navy.
 * Not purple SaaS, neon, glass, or AI gradients.
 */
:root {
    /* Canvas & surfaces — warm paper without cream+terracotta cliché */
    --lc-bg: #f3f1ec;
    --lc-bg-elevated: #faf9f6;
    --lc-surface: #ffffff;
    --lc-surface-muted: #f6f4ef;
    --lc-paper: #fffcf7;
    --lc-ink-wash: #e8e4dc;

    /* Ink — charcoal family */
    --lc-text: #1a1f26;
    --lc-text-secondary: #3d4654;
    --lc-muted: #5c6570;
    --lc-charcoal: #2c333d;

    /* Brand — restrained navy + one calm accent */
    --lc-navy: #1a2f45;
    --lc-navy-soft: #2a4058;
    --lc-accent: #1f5c45;
    --lc-accent-dark: #164433;
    --lc-accent-soft: #e6f0eb;

    /* Structure */
    --lc-border: #ddd8ce;
    --lc-border-strong: #c9c3b6;
    --lc-radius: 8px;
    --lc-radius-sm: 4px;
    --lc-radius-lg: 12px;
    --lc-shadow: 0 1px 2px rgba(26, 31, 38, 0.05);
    --lc-shadow-md: 0 6px 20px rgba(26, 31, 38, 0.07);
    --lc-shadow-paper: 0 2px 8px rgba(26, 31, 38, 0.06), 0 12px 40px rgba(26, 31, 38, 0.04);

    /* Feedback */
    --lc-danger: #a31b14;
    --lc-warning: #8a5a00;
    --lc-success: #1f5c45;
    --lc-info: #1a2f45;

    /* Layout */
    --lc-page-max: 1120px;
    --lc-form-max: 680px;
    --lc-wizard-aside: 280px;
    --lc-preview-max: 760px;
    --lc-focus-ring: 0 0 0 3px rgba(31, 92, 69, 0.32);

    /* Typography */
    --lc-font-ui: 'Manrope', 'Segoe UI', sans-serif;
    --lc-font-body: 'Source Sans 3', 'Manrope', 'Segoe UI', sans-serif;
    --lc-font-display: 'Manrope', 'Segoe UI', sans-serif;
    --lc-font-doc: 'Source Serif 4', 'Georgia', 'Times New Roman', serif;

    /* Motion */
    --lc-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --lc-duration: 220ms;

    /* Wizard aliases (existing --w-* consumers) */
    --w-navy: var(--lc-navy);
    --w-navy-soft: var(--lc-navy-soft);
    --w-green: var(--lc-accent);
    --w-green-dark: var(--lc-accent-dark);
    --w-green-light: var(--lc-accent-soft);
    --w-bg: var(--lc-bg);
    --w-surface: var(--lc-surface);
    --w-border: var(--lc-border);
    --w-text: var(--lc-text);
    --w-muted: var(--lc-muted);
    --w-radius: var(--lc-radius);
    --w-radius-sm: var(--lc-radius-sm);
    --w-shadow: var(--lc-shadow);
    --w-font: var(--lc-font-body);
    --w-font-display: var(--lc-font-display);
}

body.lc-pro,
body.udoc-page-body,
body.lc-home,
body.lc-shell {
    background: var(--lc-bg);
    color: var(--lc-text);
    font-family: var(--lc-font-body);
}

body.lc-pro h1,
body.lc-pro h2,
body.lc-home h1,
body.lc-home h2,
body.udoc-page-body h1,
body.udoc-page-body .udoc-hero__title {
    font-family: var(--lc-font-display);
    color: var(--lc-navy);
    letter-spacing: -0.02em;
}

:focus-visible {
    outline: none;
    box-shadow: var(--lc-focus-ring);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- lc-shells.css --- */
/**
 * LeaseCraft layout shells — Marketing, Catalog, Wizard, Preview, Checkout.
 * Presentation only; does not alter funnel logic.
 */

/* ── Shared primitives ── */
.lc-shell-page {
    min-height: 100vh;
    background:
        radial-gradient(1200px 480px at 10% -10%, rgba(26, 47, 69, 0.06), transparent 60%),
        linear-gradient(180deg, var(--lc-bg-elevated) 0%, var(--lc-bg) 42%, var(--lc-bg) 100%);
    color: var(--lc-text);
}

.lc-shell-container {
    width: min(100% - 2rem, var(--lc-page-max));
    margin-inline: auto;
}

.lc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--lc-radius);
    font-family: var(--lc-font-display);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background var(--lc-duration) var(--lc-ease),
        color var(--lc-duration) var(--lc-ease),
        border-color var(--lc-duration) var(--lc-ease),
        transform var(--lc-duration) var(--lc-ease);
    cursor: pointer;
}

.lc-btn:active {
    transform: translateY(1px);
}

.lc-btn--primary {
    background: var(--lc-accent);
    color: #fff !important;
    border-color: var(--lc-accent-dark);
}

.lc-btn--primary:hover {
    background: var(--lc-accent-dark);
    color: #fff !important;
}

.lc-btn--secondary {
    background: var(--lc-surface);
    color: var(--lc-navy) !important;
    border-color: var(--lc-border-strong);
}

.lc-btn--secondary:hover {
    background: var(--lc-surface-muted);
    border-color: var(--lc-navy-soft);
}

.lc-btn--ghost {
    background: transparent;
    color: var(--lc-navy) !important;
    border-color: transparent;
}

.lc-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.lc-field__label {
    font-family: var(--lc-font-display);
    font-weight: 650;
    font-size: 0.92rem;
    color: var(--lc-charcoal);
}

.lc-field__hint {
    font-size: 0.85rem;
    color: var(--lc-muted);
}

.lc-field__control,
.lc-field input,
.lc-field select,
.lc-field textarea {
    min-height: 2.75rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--lc-border-strong);
    border-radius: var(--lc-radius-sm);
    background: var(--lc-surface);
    color: var(--lc-text);
    font: inherit;
}

.lc-field__control:focus,
.lc-field input:focus,
.lc-field select:focus,
.lc-field textarea:focus {
    outline: none;
    border-color: var(--lc-accent);
    box-shadow: var(--lc-focus-ring);
}

.lc-sticky-actions {
    position: sticky;
    bottom: 0;
    z-index: 40;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--lc-border);
    box-shadow: 0 -6px 20px rgba(26, 31, 38, 0.06);
}

.lc-sticky-actions .lc-btn,
.lc-sticky-actions .btn {
    flex: 1 1 10rem;
}

@media (min-width: 768px) {
    .lc-sticky-actions {
        position: static;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 1rem 0 0;
    }

    .lc-sticky-actions .lc-btn,
    .lc-sticky-actions .btn {
        flex: 0 1 auto;
    }
}

/* ── MarketingShell ── */
.lc-marketing-shell .lc-brand-mark {
    font-family: var(--lc-font-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: -0.04em;
    color: var(--lc-navy);
    line-height: 1.05;
    margin: 0 0 0.75rem;
}

.lc-marketing-shell .lc-hero-editorial {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3.5rem);
    position: relative;
}

.lc-marketing-shell .lc-hero-editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26, 47, 69, 0.04), transparent 45%),
        linear-gradient(180deg, #fff 0%, var(--lc-bg) 100%);
    z-index: -1;
}

.lc-marketing-shell .lc-hero-kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lc-muted);
    margin-bottom: 0.75rem;
}

.lc-marketing-shell .lc-hero-lead {
    font-size: 1.1rem;
    max-width: 36rem;
    color: var(--lc-text-secondary);
    margin-bottom: 1.5rem;
}

.lc-marketing-shell .lc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Document plane as visual anchor (not a floating card collage) */
.lc-doc-plane {
    background: var(--lc-paper);
    border: 1px solid var(--lc-border);
    box-shadow: var(--lc-shadow-paper);
    min-height: 280px;
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.lc-doc-plane::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        transparent,
        transparent 27px,
        rgba(26, 47, 69, 0.04) 28px
    );
    pointer-events: none;
    opacity: 0.55;
}

.lc-doc-plane__title {
    font-family: var(--lc-font-doc);
    font-size: 1.15rem;
    color: var(--lc-navy);
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.lc-doc-plane__line {
    height: 8px;
    background: rgba(26, 47, 69, 0.08);
    margin-bottom: 0.65rem;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.lc-doc-plane__line--short {
    width: 62%;
}

@keyframes lc-fade-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lc-motion-enter {
    animation: lc-fade-up 480ms var(--lc-ease) both;
}

.lc-motion-enter-delay {
    animation: lc-fade-up 560ms var(--lc-ease) 80ms both;
}

/* ── DocumentCatalogShell ── */
.lc-catalog-shell .lc-catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--lc-border);
    margin-bottom: 1.25rem;
}

.lc-catalog-shell .lc-catalog-list a {
    text-decoration: none;
    color: inherit;
}

.lc-catalog-shell .lc-catalog-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--lc-border);
}

.lc-catalog-shell .lc-catalog-row:hover {
    background: rgba(255, 255, 255, 0.55);
}

.lc-catalog-shell .lc-catalog-row h3 {
    font-size: 1.05rem;
    margin: 0 0 0.2rem;
    color: var(--lc-navy);
}

.lc-catalog-shell .lc-catalog-row p {
    margin: 0;
    color: var(--lc-muted);
    font-size: 0.9rem;
}

/* ── WizardLayout ── */
.lc-wizard-shell .udoc-page,
.wizard-container.lc-wizard-shell {
    max-width: calc(var(--lc-form-max) + var(--lc-wizard-aside) + 3rem);
}

.lc-wizard-shell .udoc-hero__title,
.lc-wizard-shell .wizard-title {
    font-family: var(--lc-font-display);
}

.lc-wizard-shell .wizard-actions,
.lc-wizard-shell .udoc-nav-actions,
.lc-wizard-shell .form-navigation {
    position: sticky;
    bottom: 0;
    z-index: 30;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.85rem 0.25rem;
    margin-top: 1rem;
    background: linear-gradient(180deg, transparent, var(--lc-bg) 18%, var(--lc-bg));
}

@media (max-width: 767.98px) {
    .lc-wizard-shell .wizard-actions .btn,
    .lc-wizard-shell .udoc-nav-actions .btn,
    .lc-wizard-shell .form-navigation .btn {
        flex: 1 1 46%;
        min-height: 2.75rem;
    }
}

/* ── PreviewLayout + LegalDocumentCanvas ── */
.lc-preview-shell .legal-document-canvas,
.legal-document-canvas {
    background: var(--lc-paper);
    color: var(--lc-text);
    font-family: var(--lc-font-doc);
    border: 1px solid var(--lc-border);
    box-shadow: var(--lc-shadow-paper);
    max-width: var(--lc-preview-max);
    margin: 0 auto;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    line-height: 1.55;
}

.lc-preview-shell .document-viewer,
.preview-conversion-page .document-viewer {
    background: transparent;
}

.lc-preview-shell .document-viewer__body,
.preview-conversion-page .document-viewer__body {
    background: var(--lc-paper);
    font-family: var(--lc-font-doc);
    box-shadow: var(--lc-shadow-paper);
    border: 1px solid var(--lc-border);
    border-radius: 0;
}

.lc-preview-shell .preview-mobile-cta,
.preview-conversion-page .preview-mobile-cta {
    border-top-color: var(--lc-border);
    background: rgba(255, 255, 255, 0.97);
}

/* ── CheckoutLayout ── */
.lc-checkout-shell {
    max-width: 40rem;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--lc-surface);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius-lg);
    box-shadow: var(--lc-shadow-md);
}

.lc-checkout-shell h1 {
    font-family: var(--lc-font-display);
    color: var(--lc-navy);
    font-size: 1.5rem;
}

.lc-checkout-shell .lc-checkout-note {
    color: var(--lc-muted);
    font-size: 0.95rem;
}

/* Visually hidden but focusable skip already used; reinforce AA contrast helpers */
.lc-a11y-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;
}

/* ── Edge states (resume, history, expired, mismatch) ── */
.lc-edge-panel {
    max-width: var(--lc-page-max);
    margin-inline: auto;
}

.lc-edge-card {
    background: var(--lc-surface);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius-lg);
    box-shadow: var(--lc-shadow);
    padding: 1.75rem 1.5rem;
}

.lc-edge-note {
    background: var(--lc-accent-soft);
    color: var(--lc-charcoal);
    border-radius: var(--lc-radius-sm);
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
}

.lc-edge-meta {
    display: grid;
    gap: 0.85rem;
    margin: 0;
}

.lc-edge-meta dt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lc-muted);
    margin: 0;
}

.lc-edge-meta dd {
    margin: 0.15rem 0 0;
    font-weight: 600;
    color: var(--lc-navy);
}

.lc-history-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-history-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--lc-border);
}

.lc-history-list__item a.h5,
.lc-history-list__item h2 a {
    color: var(--lc-navy);
    text-decoration: none;
}

.lc-history-list__item a.h5:hover,
.lc-history-list__item h2 a:hover {
    text-decoration: underline;
}

/* Soften readiness score presentation on preview */
.lc-preview-shell .ar-readiness__score {
    font-size: 0.9rem;
    color: var(--lc-muted);
}

/* Editorial type rows (hero pages — replace dashboard cards) */
.lc-type-row {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--lc-border);
}

.lc-type-row:first-of-type {
    border-top: 1px solid var(--lc-border);
}

.lc-related-list {
    margin: 0;
    padding-left: 1.1rem;
}

.lc-related-list a {
    color: var(--lc-navy);
    font-weight: 600;
}

/* Shared DIY disclaimer on conversion path */
.lc-shell .legal-trust-disclaimer,
.lc-checkout-shell .legal-trust-disclaimer,
.lc-preview-shell .legal-trust-disclaimer {
    background: var(--lc-surface-muted);
    color: var(--lc-text-secondary);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius);
    padding: 1rem 1.15rem;
}

.lc-shell .legal-trust-disclaimer h2,
.lc-checkout-shell .legal-trust-disclaimer h2 {
    color: var(--lc-navy);
    font-family: var(--lc-font-display);
}

/* Checkout primary actions align with shell buttons */
.lc-checkout-shell .btn-primary,
.lc-checkout-shell .btn-success {
    background: var(--lc-accent);
    border-color: var(--lc-accent-dark);
    color: #fff;
    font-weight: 700;
    min-height: 2.75rem;
    border-radius: var(--lc-radius);
}

.lc-checkout-shell .btn-primary:hover,
.lc-checkout-shell .btn-success:hover {
    background: var(--lc-accent-dark);
    border-color: var(--lc-accent-dark);
    color: #fff;
}

.lc-checkout-shell .btn-outline-primary,
.lc-checkout-shell .btn-outline-secondary {
    border-color: var(--lc-border-strong);
    color: var(--lc-navy);
    min-height: 2.75rem;
    border-radius: var(--lc-radius);
    font-weight: 600;
}

/* Focus visibility on shell interactive controls */
.lc-shell a:focus-visible,
.lc-shell button:focus-visible,
.lc-shell input:focus-visible,
.lc-shell select:focus-visible,
.lc-shell textarea:focus-visible,
.lc-btn:focus-visible {
    outline: none;
    box-shadow: var(--lc-focus-ring);
}

/* --- homepage-saas.css --- */
/**
 * LeaseCraft Homepage — layout rules only.
 * Colors/type come from lc-design-tokens.css (loaded globally).
 * Homepage aliases map legacy --lc-green* names onto the shared accent.
 */

body.lc-home {
    /* Bridge older homepage selectors to the shared token set */
    --lc-green: var(--lc-accent);
    --lc-green-hover: var(--lc-accent-dark);
    --lc-green-light: var(--lc-accent-soft);
    --lc-navy-light: var(--lc-navy-soft);
    --lc-navy-muted: var(--lc-navy-soft);
    --lc-text-muted: var(--lc-muted);
    --lc-font: var(--lc-font-body);
    --lc-shadow-lg: var(--lc-shadow-md);

    font-family: var(--lc-font-body);
    color: var(--lc-text);
    background: var(--lc-bg);
    -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.lc-nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lc-border);
    padding: 0.875rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.lc-nav .navbar-brand {
    font-family: var(--lc-font-display);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--lc-navy) !important;
    letter-spacing: -0.03em;
}

.lc-nav .nav-link {
    color: var(--lc-text-muted) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.875rem !important;
    border-radius: 10px;
}

.lc-btn-nav {
    background: var(--lc-green);
    color: #fff !important;
    font-weight: 600;
    padding: 0.5rem 1.25rem !important;
    border-radius: 10px;
    border: none;
    transition: background 0.2s, transform 0.15s;
}

/* ── Hero ── */
.lc-hero {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, #fff 0%, var(--lc-bg) 100%);
    overflow: hidden;
}

.lc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.lc-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--lc-green-light);
    color: var(--lc-green-hover);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.lc-hero h1 {
    font-family: var(--lc-font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--lc-navy);
    margin-bottom: 1.25rem;
}

.lc-hero-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--lc-text-muted);
    margin-bottom: 2rem;
    max-width: 32rem;
}

.lc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.lc-btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--lc-green);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--lc-radius);
    text-decoration: none;
    border: 2px solid var(--lc-green);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.lc-btn--secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--lc-surface);
    color: var(--lc-navy);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--lc-radius);
    text-decoration: none;
    border: 2px solid var(--lc-border);
    transition: border-color 0.2s, background 0.2s;
}

.lc-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.lc-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--lc-text-muted);
    font-weight: 500;
}

.lc-trust-item i {
    color: var(--lc-green);
}

/* Hero mockup */
.lc-mockup {
    position: relative;
    background: var(--lc-surface);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius-lg);
    box-shadow: var(--lc-shadow-lg);
    overflow: hidden;
}

.lc-mockup-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--lc-bg);
    border-bottom: 1px solid var(--lc-border);
}

.lc-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lc-border);
}

.lc-mockup-dot:nth-child(1) { background: #fca5a5; }
.lc-mockup-dot:nth-child(2) { background: #fcd34d; }
.lc-mockup-dot:nth-child(3) { background: #86efac; }

.lc-mockup-title {
    margin-left: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lc-text-muted);
}

.lc-mockup-body {
    padding: 1.5rem;
}

.lc-mockup-progress {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.lc-mockup-step {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--lc-border);
}

.lc-mockup-step.done { background: var(--lc-green); }
.lc-mockup-step.active { background: var(--lc-navy); }

.lc-mockup-field {
    height: 36px;
    background: var(--lc-bg);
    border: 1px solid var(--lc-border);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.lc-mockup-field.short { width: 60%; }
.lc-mockup-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--lc-bg);
    border: 1px dashed var(--lc-navy-muted);
    border-radius: 10px;
    position: relative;
}

.lc-mockup-preview-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lc-navy);
    margin-bottom: 0.5rem;
}

.lc-mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lc-mockup-line {
    height: 8px;
    background: var(--lc-border);
    border-radius: 4px;
}

.lc-mockup-line:nth-child(1) { width: 95%; }
.lc-mockup-line:nth-child(2) { width: 80%; }
.lc-mockup-line:nth-child(3) { width: 88%; }
.lc-mockup-line:nth-child(4) { width: 60%; }

.lc-mockup-generating {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lc-green);
    animation: lc-pulse 2s ease-in-out infinite;
}

@keyframes lc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.lc-mockup-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--lc-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* ── Sections shared ── */
.lc-section {
    padding: 5rem 0;
}

.lc-section-alt {
    background: var(--lc-surface);
}

.lc-section-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
}

.lc-section-header h2 {
    font-family: var(--lc-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--lc-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.lc-section-header p {
    font-size: 1.0625rem;
    color: var(--lc-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── How it works ── */
.lc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lc-step-card {
    background: var(--lc-surface);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.lc-step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: rgba(21, 59, 106, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--lc-navy);
}

.lc-step-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lc-green);
    margin-bottom: 0.5rem;
}

.lc-step-card h3 {
    font-family: var(--lc-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lc-navy);
    margin-bottom: 0.625rem;
}

.lc-step-card p {
    font-size: 0.9375rem;
    color: var(--lc-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ── Document cards ── */
.lc-doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lc-doc-card {
    background: var(--lc-surface);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius-lg);
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lc-doc-icon {
    width: 44px;
    height: 44px;
    background: var(--lc-green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lc-green);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.lc-doc-card h3 {
    font-family: var(--lc-font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lc-navy);
    margin-bottom: 0.5rem;
}

.lc-doc-card p {
    font-size: 0.875rem;
    color: var(--lc-text-muted);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.lc-doc-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lc-green);
}

/* ── State map ── */
.lc-states-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.lc-states-copy h2 {
    font-family: var(--lc-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--lc-navy);
    margin-bottom: 1rem;
}

.lc-states-copy p {
    color: var(--lc-text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.lc-state-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lc-state-chip {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background: var(--lc-surface);
    border: 1px solid var(--lc-border);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lc-navy);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.lc-map-wrap {
    background: var(--lc-surface);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius-lg);
    padding: 2rem;
    box-shadow: var(--lc-shadow);
}

.lc-map-wrap svg {
    width: 100%;
    height: auto;
    display: block;
}

.lc-map-state {
    fill: rgba(21, 59, 106, 0.12);
    stroke: var(--lc-surface);
    stroke-width: 0.5;
    transition: fill 0.2s;
    cursor: default;
}

.lc-map-state.highlight {
    fill: var(--lc-navy);
}

.lc-map-state.mid {
    fill: rgba(21, 59, 106, 0.35);
}

.lc-map-label {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lc-navy);
}

/* ── Why LeaseCraft ── */
.lc-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.lc-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: var(--lc-surface);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius);
    padding: 1.25rem 1.5rem;
}

.lc-benefit-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--lc-green-light);
    color: var(--lc-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.lc-benefit strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--lc-navy);
    margin-bottom: 0.2rem;
}

.lc-benefit span {
    font-size: 0.8125rem;
    color: var(--lc-text-muted);
}

/* ── FAQ ── */
.lc-faq .accordion-item {
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--lc-surface);
}

.lc-faq .accordion-button {
    font-family: var(--lc-font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--lc-navy);
    background: var(--lc-surface);
    box-shadow: none;
    padding: 1.25rem 1.5rem;
}

.lc-faq .accordion-button:not(.collapsed) {
    background: rgba(21, 59, 106, 0.04);
    color: var(--lc-navy);
}

.lc-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.lc-faq .accordion-body {
    color: var(--lc-text-muted);
    line-height: 1.65;
    padding: 0 1.5rem 1.25rem;
}

/* ── Final CTA ── */
.lc-cta-final {
    background: var(--lc-navy);
    padding: 5rem 0;
    text-align: center;
}

.lc-cta-final h2 {
    font-family: var(--lc-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.lc-cta-final p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.lc-cta-final .lc-btn--primary {
    font-size: 1.0625rem;
    padding: 1rem 2.25rem;
}

/* ── Site footer (lc-footer) ── */
.lc-footer {
    background: var(--lc-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 3.5rem 0 1.5rem;
}

.lc-footer h5 {
    color: #fff;
    font-family: var(--lc-font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.lc-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.lc-footer a:hover {
    color: #fff;
}

.lc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8125rem;
}

.lc-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.lc-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.lc-footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.lc-footer-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.lc-footer-badge--green {
    background: rgba(22, 163, 74, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.lc-footer-badge--blue {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(96, 165, 250, 0.4);
}

.lc-footer-badge--navy {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ── Motion ── */
@keyframes lc-fade-up {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.lc-hero-copy,
.lc-mockup,
.lc-step-card {
    animation: lc-fade-up 0.55s ease both;
}

.lc-mockup { animation-delay: 0.12s; }
.lc-step-card:nth-child(2) { animation-delay: 0.08s; }
.lc-step-card:nth-child(3) { animation-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
    .lc-hero-copy,
    .lc-mockup,
    .lc-step-card {
        animation: none;
    }
}

/* Mobile bottom nav (pro tokens) — used when homepage includes shared nav chrome */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f2744;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1050;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -6px 20px rgba(15, 39, 68, 0.35);
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.65rem;
    padding: 8px 4px;
    min-height: 52px;
    border-radius: 8px;
    border: none;
    background: transparent;
    width: 100%;
}

.mobile-nav-link.active {
    color: #86efac;
}

.mobile-nav-link i {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.mobile-nav-cta {
    background: linear-gradient(135deg, #16A34A 0%, #15803d 100%);
    color: #fff !important;
    border-radius: 12px;
    margin: -4px 4px;
    box-shadow: 0 2px 10px rgba(22, 163, 74, 0.35);
}

.mobile-nav-cta.active {
    color: #fff !important;
}

@media (max-width: 767.98px) {
    body:not(.udoc-page-body) {
        padding-bottom: 72px;
    }
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .lc-hero-grid,
    .lc-states-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .lc-mockup { order: -1; max-width: 480px; margin: 0 auto; }
    .lc-steps { grid-template-columns: 1fr; }
    .lc-doc-grid { grid-template-columns: repeat(2, 1fr); }
    .lc-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .lc-hero { padding: 3rem 0; }
    .lc-section { padding: 3.5rem 0; }
    .lc-doc-grid { grid-template-columns: 1fr; }
    .lc-hero-actions { flex-direction: column; }
    .lc-btn--primary, .lc-btn--secondary { justify-content: center; width: 100%; }
    .lc-footer-grid { grid-template-columns: 1fr; }
}

/* --- no-hover-effects.css --- */
/**
 * Global hover kill switch — loaded last to override all theme/wizard CSS.
 * Disables motion, shadow, and color-shift on hover without breaking button styles.
 */

*,
*::before,
*::after {
    transition: none !important;
    animation: none !important;
}

*:hover,
*:hover::before,
*:hover::after {
    transform: none !important;
    -webkit-transform: none !important;
    filter: none !important;
    text-shadow: none !important;
}

a:hover,
button:hover,
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-outline-light:hover,
.nav-link:hover,
.navbar-nav .nav-link:hover,
.dropdown-item:hover,
.card:hover,
.lc-btn-primary:hover,
.lc-btn-secondary:hover,
.lc-btn-nav:hover,
.lc-doc-card:hover,
.lc-step-card:hover,
.lc-state-chip:hover,
.premium-doc-card:hover,
.premium-category-card:hover,
.core-action-link:hover,
.hover-shadow:hover,
.hover-card:hover,
.hover-lift:hover,
.wizard-step:hover,
.state-card:hover,
.document-card:hover,
.feature-card:hover,
.preview-toggle-btn:hover,
.list-group-item:hover,
.list-group-item-action:hover,
.table-hover tbody tr:hover,
tr:hover {
    transform: none !important;
    -webkit-transform: none !important;
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
}

/* Focus-only affordance for keyboard users */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid #3498db !important;
    outline-offset: 2px !important;
}
