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

:root
{
    --primary: #1FA3A3;
    --deep-blue: #0B3C5D;
    --accent: #4FD1C5;
    --bg: #FFFFFF;
    --bg-alt: #F7FAFC;
    --text: #1A202C;
    --muted: #718096;
    --radius: 8px;
    --max-w: 1100px;
}

body
{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

nav
{
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid #E2E8F0;
    padding: 0 24px;
}

.nav-inner
{
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand
{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img
{
    width: 36px;
    height: 36px;
    border-radius: 6px;
}

.nav-brand span
{
    font-size: 22px;
    font-weight: 600;
    color: var(--deep-blue);
    letter-spacing: -0.3px;
}

.nav-cta,
.btn-primary
{
    display: inline-block;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-secondary
{
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nav-cta:hover,
.btn-primary:hover
{
    background: var(--deep-blue);
}

.btn-secondary:hover
{
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
}

section
{
    padding: 80px 24px;
}

.container
{
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-label
{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

h1, h2, h3
{
    color: var(--deep-blue);
    line-height: 1.25;
}

.hero
{
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(11, 60, 93, 0.96), rgba(15, 102, 102, 0.81)),
        var(--deep-blue);
    padding: 100px 24px;
    text-align: center;
}

.hero::before
{
    content: "";
    position: absolute;
    inset: 0;
    background: url('/found-practice/web-of-roads-map.png') center center / cover no-repeat;
    opacity: 0.115;
    mix-blend-mode: screen;
    transform: scale(1.04);
    pointer-events: none;
    z-index: -2;
}

.hero::after
{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(79, 209, 197, 0.14), transparent 45%),
        linear-gradient(180deg, rgba(11, 60, 93, 0.17), rgba(11, 60, 93, 0.42));
    pointer-events: none;
    z-index: -1;
}

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

.hero h1
{
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero h1 span
{
    color: var(--accent);
}

.hero-copy
{
    color: #CBD5E0;
    font-size: 1.125rem;
    max-width: 620px;
    margin: 0 auto 28px;
}

.hero-actions
{
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-note
{
    margin: 16px auto 0;
    max-width: 620px;
    font-size: 14px;
    color: #A0AEC0;
}

.hero-divider
{
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 32px auto 32px;
    border-radius: 2px;
}

.stat-row
{
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.stat-number
{
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-desc
{
    font-size: 14px;
    color: #A0AEC0;
    margin-top: 6px;
    font-weight: 500;
}

.visibility
{
    background: var(--bg-alt);
}

.visibility h2,
.implications h2,
.outcomes h2,
.about h2,
.footer-cta h2
{
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.subtitle
{
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 40px;
}

.search-table-wrap
{
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.search-table
{
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.search-table thead tr
{
    background: var(--deep-blue);
    color: #fff;
}

.search-table th
{
    padding: 14px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.search-table tbody tr
{
    background: #fff;
    border-bottom: 1px solid #EDF2F7;
}

.search-table tbody tr:last-child
{
    border-bottom: none;
}

.search-table tbody tr.primary-row
{
    background: #F0FFF4;
}

.search-table td
{
    padding: 14px 20px;
    font-size: 15px;
    vertical-align: middle;
}

.search-table td:first-child
{
    color: var(--text);
    font-weight: 500;
}

.search-volume
{
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.result-pill
{
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pill-shown
{
    background: #C6F6D5;
    color: #22543D;
}

.pill-hidden
{
    background: #FED7D7;
    color: #742A2A;
}

.pill-bottom
{
    background: #FEEBC8;
    color: #7B341E;
}

.pill-competition-low
{
    background: #C6F6D5;
    color: #22543D;
}

.pill-competition-medium
{
    background: #FEEBC8;
    color: #7B341E;
}

.pill-competition-high
{
    background: #FED7D7;
    color: #742A2A;
}

.table-note
{
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
}

.implications
{
    background: var(--bg);
}

.implication-grid,
.outcomes-grid,
.trust-points
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.implication-card,
.outcome-card,
.trust-point
{
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
    background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
}

.implication-card h3,
.outcome-card h3,
.trust-point h3
{
    font-size: 16px;
    margin-bottom: 10px;
}

.implication-card p,
.outcome-card p,
.trust-point p
{
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.outcomes
{
    background: var(--bg-alt);
}

.outcome-icon
{
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #E6FFFA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.outcome-icon svg
{
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.about
{
    background: var(--bg);
}

.about-grid
{
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.about-photo
{
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #E2E8F0;
    box-shadow: 0 12px 32px rgba(11, 60, 93, 0.16);
}

.about-photo img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.quip
{
    font-size: 1.0625rem;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.trust-badges
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.badge
{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EBF8FF;
    color: var(--deep-blue);
    border: 1px solid #BEE3F8;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 500;
}

.badge-dot
{
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.expand-toggle
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    margin-top: 4px;
}

.expand-toggle svg
{
    transition: transform 0.3s;
    flex-shrink: 0;
}

.expand-toggle.open svg
{
    transform: rotate(180deg);
}

.expand-body
{
    display: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.expand-body.open
{
    display: block;
}

.expand-body p
{
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.expand-photo
{
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
    background: #E2E8F0;
    box-shadow: 0 10px 28px rgba(11, 60, 93, 0.12);
    max-width: 210px;
}

.expand-photo img
{
    width: 100%;
    height: auto;
    display: block;
}

.footer-cta
{
    background: var(--deep-blue);
    text-align: center;
}

.footer-cta h2
{
    color: #fff;
}

.footer-cta p
{
    color: #A0AEC0;
    max-width: 560px;
    margin: 0 auto 36px;
}

.footer-contact
{
    margin-top: 18px;
    font-size: 14px;
    color: #A0AEC0;
}

.footer-contact a
{
    color: #81E6D9;
    text-decoration: none;
}

.footer-contact a:hover
{
    text-decoration: underline;
}

footer
{
    background: #0A2540;
    padding: 24px;
    text-align: center;
}

footer p
{
    color: #4A5568;
    font-size: 13px;
}

footer a
{
    color: #A0AEC0;
    text-decoration: none;
}

footer a:hover
{
    text-decoration: underline;
}

body.modal-open
{
    overflow: hidden;
}

.modal-backdrop
{
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(11, 60, 93, 0.62);
    backdrop-filter: blur(4px);
    z-index: 200;
}

.modal-backdrop.open
{
    display: flex;
}

.modal-card
{
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(180deg, #FFFFFF, #F7FAFC);
    border: 1px solid rgba(26, 32, 44, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(11, 60, 93, 0.18);
    padding: 28px;
}

.modal-card-compact
{
    max-width: 620px;
}

.modal-card-calendly
{
    max-width: 980px;
}

.modal-top
{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.modal-top p
{
    color: var(--muted);
    font-size: 14px;
    margin-top: 8px;
}

.modal-backdrop.report-ready .modal-top
{
    margin-bottom: 12px;
}

.modal-backdrop.loading-view .modal-top
{
    margin-bottom: 12px;
}

.modal-backdrop.report-ready .modal-copy h2,
.modal-backdrop.report-ready .modal-copy p
{
    display: none;
}

.modal-backdrop.loading-view .modal-copy h2,
.modal-backdrop.loading-view .modal-copy p
{
    display: none;
}

.modal-close
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #F7FAFC;
    color: var(--deep-blue);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(26, 32, 44, 0.06);
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.modal-close:hover
{
    background: rgba(79, 209, 197, 0.14);
    color: var(--deep-blue);
    transform: translateY(-1px);
}

.visibility-form
{
    display: grid;
    gap: 14px;
}

.visibility-form label
{
    display: grid;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-blue);
}

.field-label
{
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-blue);
}

.hp-field
{
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.visibility-form input,
.visibility-form textarea
{
    width: 100%;
    border: 1px solid rgba(26, 32, 44, 0.12);
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    background: #FFFFFF;
}

.visibility-form textarea
{
    min-height: 110px;
    resize: vertical;
}

.service-checklist
{
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.service-option
{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    min-height: 22px;
}

.visibility-form .service-option
{
    display: flex;
    grid-template-columns: none;
    gap: 10px;
}

.service-option input
{
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.service-option-check
{
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(11, 60, 93, 0.26);
    background: #fff;
    flex-shrink: 0;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.service-option-check::after
{
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

.service-option-title
{
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
}

.service-option input:checked + .service-option-check
{
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary), var(--deep-blue));
}

.service-option input:checked + .service-option-check::after
{
    opacity: 1;
}

.service-option:hover .service-option-title
{
    color: var(--deep-blue);
}

.service-option input:focus + .service-option-check
{
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 163, 163, 0.14);
}

.visibility-form input:focus,
.visibility-form textarea:focus
{
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 163, 163, 0.16);
}

.form-helper
{
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.form-actions
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.form-status
{
    min-height: 20px;
    font-size: 14px;
    color: var(--muted);
}

.form-status.error
{
    color: #C53030;
}

.form-status.success
{
    color: #2F855A;
}

.modal-alt
{
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(26, 32, 44, 0.08);
    font-size: 14px;
    color: var(--muted);
}

.modal-alt a
{
    color: var(--primary);
    text-decoration: none;
}

.modal-alt a:hover
{
    text-decoration: underline;
}

.fix-visibility-copy
{
    display: grid;
    gap: 16px;
    color: var(--muted);
    line-height: 1.75;
}

.fix-visibility-actions
{
    margin-top: 24px;
    display: grid;
    justify-items: start;
    gap: 10px;
}

.fix-visibility-note
{
    color: var(--deep-blue);
    font-size: 14px;
    font-weight: 600;
}

.calendly-shell
{
    margin-top: 10px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 32, 44, 0.08);
    background: #F7FAFC;
}

.calendly-inline-widget
{
    width: 100%;
    max-width: 100%;
}

.calendly-error
{
    padding: 28px;
    color: #C53030;
    text-align: center;
}

.growth-loading,
.growth-preview,
.growth-full-report,
.email-gate
{
    margin-top: 8px;
}

.growth-loading
{
    padding: 12px 0 2px;
}

.loading-badge,
.trust-badge-inline,
.opportunity-topline,
.prompt-label,
.report-card-label
{
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.loading-badge,
.trust-badge-inline
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(31, 163, 163, 0.18);
    background: rgba(79, 209, 197, 0.12);
    color: var(--deep-blue);
}

.trust-badge-inline
{
    letter-spacing: normal;
    text-transform: none;
}

.growth-loading h3,
.growth-preview h3,
.growth-full-report h3
{
    margin: 16px 0 10px;
    color: var(--deep-blue);
    font-size: 28px;
    line-height: 1.2;
}

.growth-loading p,
.preview-copy,
.report-card p,
.gap-item span
{
    color: var(--muted);
    line-height: 1.7;
}

.growth-loading-note
{
    margin: 0;
}

.loading-spinner
{
    width: 54px;
    height: 54px;
    margin: 24px auto;
    border-radius: 50%;
    border: 4px solid rgba(11, 60, 93, 0.12);
    border-top-color: var(--primary);
    animation: growth-spin 0.9s linear infinite;
}

.prompt-grid
{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.prompt-card,
.opportunity-card,
.report-card,
.gap-item
{
    border: 1px solid rgba(26, 32, 44, 0.08);
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 14px 30px rgba(11, 60, 93, 0.06);
}

.prompt-card
{
    padding: 18px;
}

.prompt-card h4
{
    margin: 10px 0 14px;
    color: var(--deep-blue);
    font-size: 18px;
    line-height: 1.4;
}

.prompt-options
{
    display: grid;
    gap: 10px;
}

.prompt-option
{
    position: relative;
    display: block;
    cursor: pointer;
}

.prompt-option input
{
    position: absolute;
    opacity: 0;
}

.prompt-option span
{
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(26, 32, 44, 0.1);
    color: var(--deep-blue);
    font-size: 14px;
    font-weight: 600;
}

.prompt-option input:checked + span
{
    border-color: rgba(31, 163, 163, 0.42);
    background: rgba(79, 209, 197, 0.12);
}

.preview-shell
{
    display: grid;
    gap: 14px;
    padding-top: 8px;
}

.preview-copy
{
    margin: 0 0 12px;
}

.preview-supporting-copy
{
    margin-top: -4px;
    margin-bottom: 10px;
    color: #718096;
    font-size: 13px;
    line-height: 1.45;
}

.preview-summary
{
    margin: 0;
    padding: 11px 14px;
    border-radius: 14px;
    background: #F7FAFC;
    color: var(--muted);
    line-height: 1.5;
}

.preview-summary-strong
{
    background: linear-gradient(180deg, rgba(79, 209, 197, 0.14), rgba(31, 163, 163, 0.08));
    color: var(--deep-blue);
    font-weight: 600;
    border: 1px solid rgba(31, 163, 163, 0.16);
}

.preview-impact-card
{
    padding: 18px 20px;
    border-radius: 20px;
    box-shadow: 0 16px 32px rgba(11, 60, 93, 0.08);
}

.preview-impact-card > :first-child
{
    font-size: 18px;
    line-height: 1.45;
}

.preview-kicker
{
    margin: 0;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.preview-percentage-callout
{
    display: grid;
    gap: 4px;
}

.preview-percentage-headline
{
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.preview-percentage-value
{
    color: var(--deep-blue);
    font-size: clamp(56px, 10vw, 88px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.preview-percentage-good
{
    color: #2F855A;
}

.preview-percentage-warning
{
    color: #D69E2E;
}

.preview-percentage-concerning
{
    color: #DD6B20;
}

.preview-percentage-critical
{
    color: #C53030;
}

.preview-percentage-copy
{
    color: var(--text);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.35;
}

.preview-percentage-status
{
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.preview-finding-list
{
    position: relative;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 38px 20px 18px;
    border: 1px solid rgba(26, 32, 44, 0.08);
    border-radius: 20px;
    background: #F7FAFC;
}

.preview-finding-label
{
    position: absolute;
    top: 14px;
    left: 16px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.preview-finding-list p
{
    margin: 0;
    color: var(--text);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
}

.preview-finding-list strong
{
    color: inherit;
    display: inline;
    margin-right: 0;
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: normal;
}

.preview-trust-card
{
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid rgba(31, 163, 163, 0.18);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(79, 209, 197, 0.12), rgba(255, 255, 255, 0.96));
    box-shadow: 0 10px 24px rgba(11, 60, 93, 0.05);
}

.preview-trust-label
{
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.preview-trust-title
{
    color: var(--deep-blue);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.preview-data-disclosure
{
    border-top: 1px solid rgba(26, 32, 44, 0.08);
    padding-top: 12px;
}

.preview-data-summary
{
    list-style: none;
    cursor: pointer;
    color: var(--deep-blue);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.preview-data-summary::-webkit-details-marker
{
    display: none;
}

.preview-data-summary::after
{
    content: '+';
    color: var(--primary);
    font-size: 22px;
    line-height: 1;
}

.preview-data-disclosure[open] .preview-data-summary::after
{
    content: '−';
}

.preview-data-content
{
    display: grid;
    gap: 10px;
    padding-top: 12px;
}

.preview-data-content .preview-trust-copy
{
    margin: 0;
}

.preview-google-word
{
    font-family: "Product Sans", Roboto, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.preview-trust-copy
{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.preview-sales-line
{
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(26, 32, 44, 0.08);
    color: var(--deep-blue);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
}

.preview-copy-strong
{
    color: var(--deep-blue);
    font-weight: 600;
}

.preview-metrics,
.report-grid
{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}

.preview-metric,
.report-card
{
    padding: 18px;
}

.preview-metric
{
    border-radius: 18px;
    background: linear-gradient(180deg, #FFFFFF, #F7FAFC);
    border: 1px solid rgba(26, 32, 44, 0.08);
}

.preview-metric span,
.report-card-label
{
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
}

.preview-metric strong,
.report-card-value
{
    color: var(--deep-blue);
    font-size: 26px;
    line-height: 1.1;
}

.preview-metrics-compact
{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-grid-compact
{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-section-title
{
    margin: 0 0 12px;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.opportunity-stack,
.gap-list
{
    display: grid;
    gap: 14px;
}

.opportunity-card,
.gap-item
{
    padding: 18px;
}

.opportunity-topline
{
    color: var(--primary);
}

.opportunity-quick-stats
{
    margin-top: 8px;
    color: var(--deep-blue);
    font-size: 14px;
    font-weight: 600;
}

.opportunity-card p
{
    margin: 10px 0 0;
    color: var(--text);
    line-height: 1.7;
}

.opportunity-evidence
{
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.opportunity-evidence li + li
{
    margin-top: 8px;
}

.opportunity-card-compact .opportunity-evidence
{
    margin-top: 10px;
}

.opportunity-card-full .opportunity-evidence
{
    margin-top: 12px;
}

.email-gate
{
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(31, 163, 163, 0.18);
    background: linear-gradient(180deg, rgba(31, 163, 163, 0.08), rgba(11, 60, 93, 0.04));
    color: var(--deep-blue);
    box-shadow: 0 12px 30px rgba(11, 60, 93, 0.08);
}

.email-gate .field-label,
.email-gate .form-helper,
.email-gate .form-status
{
    color: var(--muted);
}

.email-gate .field-label
{
    color: var(--deep-blue);
}

.email-gate-row
{
    display: flex;
    gap: 12px;
}

.email-gate-row input
{
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(26, 32, 44, 0.12);
    background: #fff;
    color: var(--deep-blue);
}

.email-gate-row input::placeholder
{
    color: #7A8797;
}

.email-gate-row .btn-primary
{
    white-space: nowrap;
}

.report-section + .report-section
{
    margin-top: 28px;
}

.report-section h3
{
    margin: 0 0 14px;
    color: var(--deep-blue);
    font-size: 22px;
}

.report-success-banner
{
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(47, 133, 90, 0.1);
    border: 1px solid rgba(47, 133, 90, 0.2);
    color: #276749;
    font-weight: 600;
}

.report-action-row
{
    margin-top: 24px;
}

.report-fix-card
{
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(31, 163, 163, 0.16);
    background: linear-gradient(180deg, rgba(79, 209, 197, 0.14), rgba(255, 255, 255, 0.98));
    box-shadow: 0 14px 32px rgba(11, 60, 93, 0.08);
}

.report-fix-eyebrow
{
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.report-fix-card h3
{
    margin: 0;
    color: var(--deep-blue);
    font-size: 28px;
    line-height: 1.15;
}

.report-fix-card p,
.report-fix-subtitle,
.report-fix-list
{
    margin: 0;
}

.report-fix-card p,
.report-fix-list
{
    color: var(--text);
    line-height: 1.7;
}

.report-fix-subtitle
{
    color: var(--deep-blue);
    font-weight: 700;
}

.report-fix-list
{
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.report-action-row .btn-primary
{
    width: 100%;
    justify-content: center;
}

.report-table-wrap
{
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(26, 32, 44, 0.08);
}

.report-table
{
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.report-table th,
.report-table td
{
    padding: 14px 16px;
    border-bottom: 1px solid rgba(26, 32, 44, 0.08);
    text-align: left;
}

.report-table th
{
    background: #F7FAFC;
    color: var(--deep-blue);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.report-table tbody tr:last-child td
{
    border-bottom: none;
}

.report-table-empty
{
    color: var(--muted);
    text-align: center;
}

.report-disclosure
{
    border: 1px solid rgba(26, 32, 44, 0.08);
    border-radius: 18px;
    background: #FFFFFF;
    overflow: hidden;
}

.report-disclosure-summary
{
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    color: var(--deep-blue);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.report-disclosure-summary::-webkit-details-marker
{
    display: none;
}

.report-disclosure-summary::after
{
    content: '+';
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.report-disclosure[open] .report-disclosure-summary
{
    border-bottom: 1px solid rgba(26, 32, 44, 0.08);
}

.report-disclosure[open] .report-disclosure-summary::after
{
    content: '−';
}

.report-disclosure-content
{
    padding: 18px;
    background: #FCFEFF;
}

.report-disclosure-content-static
{
    padding: 0;
    background: transparent;
}

.report-table-extra[hidden]
{
    display: none;
}

.report-table-toggle
{
    margin-top: 12px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.report-table-toggle:hover,
.report-table-toggle:focus-visible
{
    color: #167D7D;
}

.report-table-toggle:focus-visible
{
    outline: 2px solid rgba(31, 163, 163, 0.28);
    outline-offset: 3px;
    border-radius: 8px;
}

.report-pill
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.report-pill-success
{
    background: rgba(47, 133, 90, 0.12);
    color: #276749;
}

.report-pill-warning
{
    background: rgba(221, 107, 32, 0.14);
    color: #C05621;
}

.report-pill-danger
{
    background: rgba(229, 62, 62, 0.12);
    color: #C53030;
}

@media (max-width: 640px)
{
    .search-table-wrap,
    .report-table-wrap
    {
        overflow-x: visible;
        border: none;
        background: transparent;
    }

    .search-table,
    .report-table,
    .search-table thead,
    .report-table thead,
    .search-table tbody,
    .report-table tbody,
    .search-table tr,
    .report-table tr,
    .search-table th,
    .report-table th,
    .search-table td,
    .report-table td
    {
        display: block;
        width: 100%;
    }

    .search-table thead,
    .report-table thead
    {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .search-table,
    .report-table
    {
        border-collapse: separate;
        background: transparent;
        box-shadow: none;
    }

    .search-table tbody,
    .report-table tbody
    {
        display: grid;
        gap: 12px;
    }

    .search-table tbody tr,
    .report-table tbody tr
    {
        padding: 14px;
        border: 1px solid rgba(26, 32, 44, 0.08);
        border-radius: 16px;
        background: #FFFFFF;
        box-shadow: 0 10px 26px rgba(11, 60, 93, 0.06);
    }

    .search-table tbody tr.primary-row
    {
        background: #F0FFF4;
    }

    .search-table td,
    .report-table td
    {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        padding: 0;
        border: none;
        font-size: 14px;
    }

    .search-table td + td,
    .report-table td + td
    {
        margin-top: 10px;
    }

    .search-table td::before,
    .report-table td::before
    {
        content: attr(data-label);
        color: var(--muted);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        flex: 0 0 118px;
    }

    .search-table td:first-child,
    .report-table td:first-child
    {
        color: var(--text);
        font-weight: 600;
    }

    .search-table td:not(:empty),
    .report-table td:not(:empty)
    {
        text-align: right;
    }

    .search-table td:first-child::before,
    .report-table td:first-child::before
    {
        color: var(--primary);
    }

    .search-table .result-pill,
    .report-table .report-pill
    {
        justify-self: start;
        min-width: 0;
        max-width: 100%;
    }

    .report-table-empty
    {
        display: block;
        text-align: left;
    }

    .report-table-empty::before
    {
        content: none;
    }

    .report-disclosure-summary
    {
        font-size: 15px;
        padding: 16px 18px;
    }

    .report-disclosure-content
    {
        padding: 14px;
    }

    .report-disclosure-content-static
    {
        padding: 0;
    }

    .report-pill
    {
        min-width: 96px;
        font-size: 12px;
    }
}

@keyframes growth-spin
{
    to
    {
        transform: rotate(360deg);
    }
}

@media (max-width: 720px)
{
    .result-pill
    {
        padding: 4px 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .about-grid
    {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-inner
    {
        gap: 16px;
        height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
    }

    .nav-brand span
    {
        font-size: 20px;
    }

    .prompt-grid,
    .preview-metrics,
    .report-grid
    {
        grid-template-columns: 1fr;
    }

    .email-gate-row
    {
        flex-direction: column;
    }

    .modal-card,
    .modal-card-compact,
    .modal-card-calendly
    {
        padding: 20px;
    }

    .modal-backdrop
    {
        padding: 14px;
    }

    .calendly-inline-widget
    {
        min-width: 0 !important;
    }

    .fix-visibility-actions
    {
        justify-items: stretch;
    }

    .fix-visibility-actions .btn-primary
    {
        width: 100%;
        text-align: center;
    }
}