/* ═══════════════════════════════════════════════════════
   INSTALAWYER.CH — Dallas Luxury Gold & Teal Theme
   Crisp white, gold glow, aquamarine accents, Texan warmth
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Righteous&family=Staatliches&family=Black+Ops+One&family=Share+Tech+Mono&display=swap');

:root {
    /* ─── Gold & Teal Palette ─── */
    --gold: #C8A951;
    --gold-bright: #DAB756;
    --gold-deep: #A67C00;
    --gold-glow: rgba(200, 169, 81, 0.35);
    --gold-glow-soft: rgba(200, 169, 81, 0.15);
    --teal: #20B2AA;
    --teal-deep: #178A83;
    --teal-light: #5CD6D0;
    --teal-glow: rgba(32, 178, 170, 0.3);
    --aquamarine: #7FFFD4;
    --aquamarine-soft: rgba(127, 255, 212, 0.2);
    --emerald: #50C878;
    --emerald-deep: #2E8B57;

    /* ─── Warm Accents ─── */
    --rust: #C4501A;
    --sunset: #E87040;
    --cream: #FDF8F0;

    /* ─── Backgrounds (crisp white) ─── */
    --bg-main: #FFFFFF;
    --bg-section: #FAFAF7;
    --bg-card: #FFFFFF;
    --bg-surface: #F5F3EF;

    /* ─── Hero (rich navy-teal gradient, NOT black) ─── */
    --hero-navy: #0C2340;
    --hero-teal: #14465A;
    --hero-card: rgba(255, 255, 255, 0.08);
    --hero-surface: rgba(255, 255, 255, 0.05);

    /* ─── Text ─── */
    --text-primary: #1A2A3A;
    --text-secondary: #3D5068;
    --text-muted: #7A8EA3;
    --text-hero: #F0EDE8;

    /* ─── Shadows ─── */
    --card-shadow: 0 2px 20px rgba(200, 169, 81, 0.08), 0 1px 4px rgba(0,0,0,0.04);
    --card-shadow-hover: 0 8px 40px rgba(200, 169, 81, 0.15), 0 2px 8px rgba(0,0,0,0.05);
    --gold-shadow: 0 4px 24px rgba(200, 169, 81, 0.25);
    --teal-shadow: 0 4px 24px rgba(32, 178, 170, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.015em;
    background: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════
   F-16 MILITARY STENCIL TYPOGRAPHY — Senior-Friendly
   Large fonts, high contrast, bold weights, wide spacing
   ═══════════════════════════════════════════════════════ */
h1, h2, h3, .hero-title, .neon-text, .section-title,
.hero-badge, .rank-badge, .agent-title {
    font-family: 'Black Ops One', 'Staatliches', cursive;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
h2 {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
}
h3 {
    font-size: 1.9rem;
    line-height: 1.35;
}
p, li, td, th, label {
    font-size: 1.1rem;
    line-height: 1.85;
    font-weight: 450;
}
button, a, .btn-call, .agent-btn {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
input, textarea, select {
    font-size: 1.15rem;
    line-height: 1.6;
}
/* Senior accessibility: minimum contrast, larger click targets */
button, .btn-call, .agent-btn, a[role="button"] {
    min-height: 48px;
    padding: 0.7rem 1.5rem;
}
.stat-value { font-size: 1.8rem; font-weight: 800; }
.stat-label { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; }
.section-sub {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION — Rich navy-to-teal gradient (no black)
   ═══════════════════════════════════════════════════════ */

.neon-sign-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(200, 169, 81, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 70%, rgba(32, 178, 170, 0.1) 0%, transparent 50%),
        linear-gradient(160deg, var(--hero-navy) 0%, var(--hero-teal) 50%, #1A5A6A 100%);
    color: var(--text-hero);
}

/* Subtle texture overlay */
.neon-sign-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0px, transparent 24px, rgba(255,255,255,0.02) 24px, rgba(255,255,255,0.02) 25px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 49px, rgba(255,255,255,0.015) 49px, rgba(255,255,255,0.015) 50px);
    pointer-events: none;
}

.neon-sign-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent 0px, transparent 49px, rgba(255,255,255,0.01) 49px, rgba(255,255,255,0.01) 50px);
    background-position: 25px 12px;
    pointer-events: none;
}

/* ─── The Neon Sign ─── */
.neon-sign {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 4rem;
    margin-bottom: 2rem;
}

.neon-sign .mount-bar {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 6px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
    border-radius: 3px;
    box-shadow: var(--gold-shadow);
}

.neon-sign .wire {
    position: absolute;
    top: -40px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: var(--gold-deep);
}

.neon-sign .wire-left { left: 30%; }
.neon-sign .wire-right { left: 70%; }

/* ─── INSTA text (gold shimmer) ─── */
.neon-text-insta {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 0.15em;
    line-height: 0.9;
    position: relative;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 20%, #FFF 40%, var(--gold-bright) 60%, var(--gold) 80%, var(--gold-deep) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerSlide 3s linear infinite;
    filter: drop-shadow(0 0 20px var(--gold-glow)) drop-shadow(0 0 40px var(--gold-glow-soft));
}

/* ─── LAWYER text (teal shimmer) ─── */
.neon-text-lawyer {
    font-family: 'Staatliches', sans-serif;
    font-size: clamp(5rem, 16vw, 14rem);
    letter-spacing: 0.08em;
    line-height: 0.85;
    position: relative;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 20%, #FFF 35%, var(--teal-light) 50%, var(--teal) 70%, var(--teal-deep) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerSlide 4s linear infinite;
    filter: drop-shadow(0 0 20px var(--teal-glow)) drop-shadow(0 0 40px rgba(32,178,170,0.15));
}

/* ─── .ch (aquamarine glow) ─── */
.neon-text-ch {
    font-family: 'Righteous', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--aquamarine);
    text-shadow: 0 0 15px var(--teal-glow), 0 0 30px rgba(127,255,212,0.2);
    letter-spacing: 0.3em;
    margin-top: 0.5rem;
}

/* ─── Tagline (gold) ─── */
.neon-tagline {
    font-family: 'Righteous', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.6rem);
    color: var(--gold-bright);
    text-shadow: 0 0 12px var(--gold-glow);
    margin-top: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
}

/* ─── Neon border box ─── */
.neon-border {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: 8px;
    box-shadow:
        inset 0 0 20px var(--gold-glow-soft),
        0 0 20px var(--gold-glow-soft),
        0 0 40px rgba(200, 169, 81, 0.06);
    pointer-events: none;
}

.neon-border-inner {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-radius: 4px;
    pointer-events: none;
}

/* ─── Animations ─── */
@keyframes shimmerSlide {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    4% { opacity: 0.92; }
    6% { opacity: 1; }
    42% { opacity: 1; }
    44% { opacity: 0.88; }
    46% { opacity: 1; }
}

@keyframes neonPulse {
    0% { filter: drop-shadow(0 0 20px var(--teal-glow)); }
    50% { filter: drop-shadow(0 0 30px var(--teal-glow)) drop-shadow(0 0 60px rgba(32,178,170,0.15)); }
    100% { filter: drop-shadow(0 0 20px var(--teal-glow)); }
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 20px var(--gold-glow-soft); }
    50% { box-shadow: 0 0 35px var(--gold-glow), 0 0 60px var(--gold-glow-soft); }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes tealWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ═══════════════════════════════════════════════════════
   HERO CONTENT
   ═══════════════════════════════════════════════════════ */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(240, 237, 232, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0;
}

.hero-subtitle strong {
    color: var(--gold-bright);
    font-weight: 700;
}

/* ─── Case Form (inside hero) ─── */
.case-form {
    background: var(--hero-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    box-shadow: 0 0 40px var(--gold-glow-soft);
    opacity: 0;
}

.case-form h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: var(--gold-bright);
    text-shadow: 0 0 12px var(--gold-glow);
    margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: rgba(240, 237, 232, 0.7);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--hero-surface);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 169, 81, 0.15);
    border-radius: 8px;
    color: var(--text-hero);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ─── Buttons ─── */
.btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    margin-top: 0.5rem;
    box-shadow: var(--gold-shadow);
}

.btn-neon:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    box-shadow: 0 6px 30px var(--gold-glow);
    transform: translateY(-2px);
}

/* Gold button inside hero */
.neon-sign-container .btn-neon {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
}
.neon-sign-container .btn-neon:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    box-shadow: 0 6px 30px var(--gold-glow);
}

.btn-neon-red {
    background: linear-gradient(135deg, var(--rust), var(--sunset));
    box-shadow: 0 4px 20px rgba(196, 80, 26, 0.25);
}
.btn-neon-red:hover {
    box-shadow: 0 6px 30px rgba(196, 80, 26, 0.35);
}

/* ─── Social Proof ─── */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
}

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

.proof-stat .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold-bright);
    text-shadow: 0 0 12px var(--gold-glow);
}

.proof-stat .label {
    font-size: 0.75rem;
    color: rgba(240,237,232,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════
   COMPARISON — Insurance vs Lawyer
   ═══════════════════════════════════════════════════════ */

.comparison-section {
    padding: 6rem 2rem;
    background: var(--bg-main);
}

.comparison-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.comparison-section h2 .yellow { color: var(--gold); }
.comparison-section h2 .red { color: var(--rust); }
.comparison-section h2 .aqua { color: var(--teal); }

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.comparison-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(200, 169, 81, 0.1);
    box-shadow: var(--card-shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s;
}

.comparison-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.comparison-card.bad { border-color: rgba(196, 80, 26, 0.2); }
.comparison-card.good {
    border-color: rgba(32, 178, 170, 0.2);
    box-shadow: var(--card-shadow), 0 0 20px rgba(32, 178, 170, 0.06);
}

.comparison-card .amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    margin: 1rem 0;
}

.comparison-card.bad .amount { color: var(--rust); }
.comparison-card.good .amount { color: var(--teal-deep); }

.comparison-card .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comparison-card .detail {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.vs-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold-deep);
    background: var(--bg-surface);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    box-shadow: var(--gold-shadow);
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */

.how-section {
    padding: 6rem 2rem;
    background: var(--bg-section);
    position: relative;
}

/* Texan star watermark */
.how-section::before {
    content: '\2605';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    color: rgba(200, 169, 81, 0.03);
    pointer-events: none;
    z-index: 0;
}

.how-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Gold underline glow on headings */
.how-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    margin: 0.8rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--gold-glow);
}

.pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pipeline-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(200, 169, 81, 0.08);
    box-shadow: var(--card-shadow);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s;
}

.pipeline-step:hover {
    border-color: var(--gold);
    box-shadow: var(--card-shadow-hover), 0 0 20px var(--gold-glow-soft);
    transform: translateY(-5px);
}

.pipeline-step .step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pipeline-step .step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pipeline-step h4 {
    font-family: 'Righteous', sans-serif;
    font-size: 1.1rem;
    color: var(--teal-deep);
    margin-bottom: 0.8rem;
}

.pipeline-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pipeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.2rem;
    top: 50%;
    width: 0.8rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

/* ═══════════════════════════════════════════════════════
   LAWYER CARDS
   ═══════════════════════════════════════════════════════ */

.lawyers-section {
    padding: 6rem 2rem;
    background: var(--bg-main);
}

.lawyers-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.lawyers-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    margin: 0.8rem auto 0;
    background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--teal), transparent);
    border-radius: 2px;
}

.lawyers-section .section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════
   AGENT TERMINAL — Full-Screen CLI with Live Progress
   F-16 military HUD aesthetic, senior-readable fonts
   ═══════════════════════════════════════════════════════ */
.agent-terminal {
    max-width: 960px;
    margin: 0 auto 3rem;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(200, 169, 81, 0.25);
    box-shadow:
        0 8px 40px rgba(12, 35, 64, 0.12),
        0 0 0 1px rgba(200, 169, 81, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.05);
    background: #0D1B2A;
}
.agent-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #0A1628 0%, #0C2340 50%, #14465A 100%);
    border-bottom: 1px solid rgba(200, 169, 81, 0.15);
}
.agent-dot {
    width: 14px; height: 14px; border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.agent-dot.red { background: #FF5F57; box-shadow: 0 0 8px rgba(255,95,87,0.4); }
.agent-dot.yellow { background: #FFBD2E; box-shadow: 0 0 8px rgba(255,189,46,0.4); }
.agent-dot.green { background: #28CA42; box-shadow: 0 0 8px rgba(40,202,66,0.4); }
.agent-title {
    margin-left: 0.6rem;
    font-family: 'Black Ops One', 'Staatliches', monospace;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--gold-bright);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(200,169,81,0.3);
}
.agent-status {
    margin-left: auto;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    padding: 0.25rem 0.9rem;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    font-weight: 700;
}
.agent-status.running {
    background: rgba(32, 178, 170, 0.15);
    color: #5CD6D0;
    border-color: rgba(32,178,170,0.3);
    animation: statusPulse 1.5s ease infinite;
    box-shadow: 0 0 12px rgba(32,178,170,0.2);
}
.agent-status.done {
    background: rgba(80, 200, 120, 0.15);
    color: #7FFFD4;
    border-color: rgba(127,255,212,0.3);
    box-shadow: 0 0 12px rgba(127,255,212,0.15);
}
@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ─── Live Stats Bar ─── */
.agent-stats-bar {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(200, 169, 81, 0.1);
    background: rgba(12, 35, 64, 0.6);
}
.agent-stat-item {
    flex: 1;
    padding: 0.6rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(200, 169, 81, 0.08);
}
.agent-stat-item:last-child { border-right: none; }
.agent-stat-val {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-bright);
    text-shadow: 0 0 8px rgba(200,169,81,0.3);
}
.agent-stat-lbl {
    font-family: 'Black Ops One', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-top: 0.15rem;
}

/* ─── CLI Log Feed ─── */
.agent-log {
    max-height: 320px;
    overflow-y: auto;
    padding: 1rem 1.2rem;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 2;
    background: #0D1B2A;
    color: rgba(255,255,255,0.65);
    scrollbar-width: thin;
    scrollbar-color: rgba(200,169,81,0.2) transparent;
}
.agent-log::-webkit-scrollbar { width: 6px; }
.agent-log::-webkit-scrollbar-track { background: transparent; }
.agent-log::-webkit-scrollbar-thumb {
    background: rgba(200,169,81,0.2);
    border-radius: 3px;
}
.agent-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.15rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    animation: lineSlideIn 0.3s ease;
}
@keyframes lineSlideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}
.agent-ts {
    color: rgba(200,169,81,0.5);
    margin-right: 0.8rem;
    font-size: 0.85rem;
}
.agent-dim { color: rgba(255,255,255,0.4); }
.agent-src {
    color: var(--teal-light);
    font-weight: 700;
}
.agent-found {
    color: #7FFFD4;
    font-weight: 700;
}
.agent-gold {
    color: var(--gold-bright);
    font-weight: 700;
    text-shadow: 0 0 6px rgba(200,169,81,0.3);
}
.agent-err { color: #FF6B6B; font-weight: 700; }

/* ─── Prompt Prefix ─── */
.agent-prompt {
    color: var(--teal);
    font-weight: 700;
    margin-right: 0.4rem;
}
.agent-cursor {
    display: inline-block;
    width: 8px;
    height: 1.1em;
    background: var(--gold-bright);
    animation: cursorBlink 1s step-end infinite;
    vertical-align: text-bottom;
    margin-left: 2px;
}
@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ─── Controls ─── */
.agent-controls {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 1.2rem;
    border-top: 1px solid rgba(200, 169, 81, 0.12);
    background: rgba(12, 35, 64, 0.8);
}
.agent-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(200,169,81,0.15), rgba(200,169,81,0.05));
    color: var(--gold-bright);
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.25s;
    text-transform: uppercase;
    min-height: 48px;
    box-shadow: 0 0 12px rgba(200,169,81,0.1);
}
.agent-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(200,169,81,0.25), rgba(200,169,81,0.1));
    box-shadow: 0 4px 20px rgba(200, 169, 81, 0.3);
    border-color: var(--gold-bright);
}
.agent-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}
.agent-progress-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.agent-progress-bar {
    flex: 1;
    height: 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(200,169,81,0.1);
}
.agent-progress-bar::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, var(--gold), var(--teal), var(--aquamarine));
    border-radius: 5px;
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(200,169,81,0.3);
}
.agent-progress-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-bright);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.lawyer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lawyer-card {
    background: var(--bg-card);
    border: 1px solid rgba(200, 169, 81, 0.08);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s;
    box-shadow: var(--card-shadow);
    perspective: 1200px;
    transform-style: preserve-3d;
    cursor: grab;
}

.lawyer-card:active { cursor: grabbing; }

.lawyer-card:hover {
    border-color: var(--teal);
    box-shadow: var(--card-shadow-hover), 0 0 20px rgba(32,178,170,0.06);
    transform: translateY(-4px);
}

.lawyer-card .card-inner {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.lawyer-card:hover .card-inner {
    transform: rotateY(5deg) rotateX(-3deg) scale(1.02);
}

/* Gold glow halo behind card on hover */
.lawyer-card::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: conic-gradient(from 0deg, var(--gold), var(--teal), var(--aquamarine), var(--gold));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    filter: blur(14px);
    animation: heroGlow 4s linear infinite;
}

.lawyer-card:hover::before { opacity: 0.35; }

@keyframes heroGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lawyer-card .rank-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--gold-deep);
    background: rgba(200, 169, 81, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(200, 169, 81, 0.2);
}

.lawyer-card .lawyer-name {
    font-family: 'Black Ops One', 'Righteous', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    letter-spacing: 0.03em;
}

.lawyer-card .lawyer-firm {
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal-deep);
    margin-bottom: 0.6rem;
}

/* Crawl4AI source badge */
.crawl-badge-row {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
    padding: 0.35rem 0.5rem;
    background: rgba(32, 178, 170, 0.04);
    border-radius: 6px;
    border: 1px solid rgba(32, 178, 170, 0.1);
}
.crawl-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: statusPulse 1.5s ease infinite;
}
.crawl-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--teal-deep);
}
.crawl-src {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    background: rgba(32, 178, 170, 0.08);
    color: var(--teal-deep);
}
.ocaml-check {
    margin-left: auto;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--emerald-deep);
    background: rgba(80, 200, 120, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

/* OCaml proof row */
.ocaml-proof-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0;
    margin-bottom: 0.4rem;
}
.ocaml-icon {
    font-size: 0.95rem;
    color: var(--gold);
}
.ocaml-hash {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-surface);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}
.ocaml-conf {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--emerald-deep);
    margin-left: auto;
}

.lawyer-card .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.lawyer-card .stat {
    text-align: center;
    padding: 0.6rem;
    background: var(--bg-surface);
    border-radius: 8px;
}

.lawyer-card .stat .stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--teal-deep);
}

.lawyer-card .stat .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lawyer-card .insurer-kills {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 169, 81, 0.1);
}

.lawyer-card .insurer-kills h5 {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.lawyer-card .kill-tag {
    display: inline-block;
    font-size: 0.9rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    background: rgba(32, 178, 170, 0.08);
    color: var(--teal-deep);
    border: 1px solid rgba(32, 178, 170, 0.2);
    margin: 0.2rem;
    font-weight: 600;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem;
    margin-top: 1.2rem;
    font-family: 'Black Ops One', 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: white;
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 52px;
}

.btn-call:hover {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    box-shadow: var(--teal-shadow);
}

/* Power bar */
.power-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-surface);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.8rem;
}

.power-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Superhero badge */
.hero-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #FFFFFF;
    font-family: 'Black Ops One', 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    z-index: 2;
    box-shadow: var(--gold-shadow);
}

@keyframes superheroEntrance {
    0% { transform: perspective(1200px) rotateY(90deg) scale(0.5); opacity: 0; }
    60% { transform: perspective(1200px) rotateY(-10deg) scale(1.05); opacity: 1; }
    80% { transform: perspective(1200px) rotateY(5deg) scale(0.98); }
    100% { transform: perspective(1200px) rotateY(0deg) scale(1); }
}

.lawyer-card.revealed {
    animation: superheroEntrance 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Strength bars */
.strength-chart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin: 0.8rem 0;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.strength-item .s-label {
    font-family: 'Black Ops One', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 60px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.strength-item .s-bar {
    flex: 1;
    height: 10px;
    background: var(--bg-surface);
    border-radius: 5px;
    overflow: hidden;
}

.strength-item .s-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.s-fill.excellent { background: linear-gradient(90deg, var(--teal), var(--aquamarine)); }
.s-fill.good { background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.s-fill.average { background: linear-gradient(90deg, var(--sunset), #F0965A); }

.lawyer-card[data-tilt] {
    transform-style: preserve-3d;
    will-change: transform;
}

/* ═══════════════════════════════════════════════════════
   SETTLEMENTS
   ═══════════════════════════════════════════════════════ */

.settlements-section {
    padding: 6rem 2rem;
    background: var(--bg-section);
    position: relative;
}

/* Longhorn watermark */
.settlements-section::before {
    content: '\1F402';
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    font-size: 12rem;
    opacity: 0.03;
    pointer-events: none;
}

.settlements-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

.settlements-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    margin: 0.8rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent);
    border-radius: 2px;
}

.settlement-table {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.settlement-table thead th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-align: left;
    padding: 1rem 0.8rem;
    border-bottom: 2px solid rgba(200, 169, 81, 0.2);
    background: var(--bg-surface);
}

.settlement-table tbody tr {
    border-bottom: 1px solid rgba(200, 169, 81, 0.06);
    transition: background 0.3s;
}

.settlement-table tbody tr:hover {
    background: rgba(200, 169, 81, 0.04);
}

.settlement-table td {
    padding: 0.8rem;
    color: var(--text-secondary);
}

.settlement-table .amount-cell {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--teal-deep);
}

.settlement-table .ratio-cell {
    color: var(--gold-deep);
    font-weight: 700;
}

.settlement-table .insurer-cell {
    color: var(--rust);
}

/* ═══════════════════════════════════════════════════════
   SEARCH
   ═══════════════════════════════════════════════════════ */

.search-section {
    padding: 6rem 2rem;
    background: var(--bg-main);
}

.search-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
}

.search-box {
    background: var(--bg-card);
    border: 1px solid rgba(32, 178, 170, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: var(--card-shadow);
}

.search-box:focus-within {
    border-color: var(--teal);
    box-shadow: var(--card-shadow-hover), 0 0 20px var(--teal-glow);
}

.search-box textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1.05rem;
    line-height: 1.6;
    resize: none;
    outline: none;
}

.search-box textarea::placeholder { color: var(--text-muted); }

.parsed-case {
    background: var(--bg-card);
    border: 1px solid rgba(200, 169, 81, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
}

.parsed-case .tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.2rem;
}

.parsed-case .tag-type { background: rgba(200, 169, 81, 0.1); color: var(--gold-deep); border: 1px solid rgba(200, 169, 81, 0.25); }
.parsed-case .tag-severity { background: rgba(196, 80, 26, 0.08); color: var(--rust); border: 1px solid rgba(196, 80, 26, 0.2); }
.parsed-case .tag-insurer { background: rgba(32, 178, 170, 0.08); color: var(--teal-deep); border: 1px solid rgba(32, 178, 170, 0.2); }
.parsed-case .tag-location { background: rgba(46, 139, 87, 0.08); color: var(--emerald-deep); border: 1px solid rgba(46, 139, 87, 0.2); }

/* ═══════════════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════════════ */

.map-section {
    padding: 6rem 2rem;
    background: var(--bg-section);
}

.map-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(200, 169, 81, 0.08);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.map-container canvas {
    display: block;
    width: 100%;
    height: auto;
}

.map-tooltip {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    min-width: 280px;
    box-shadow: var(--card-shadow-hover);
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.2s;
}

.map-tooltip h4 {
    font-family: 'Righteous', sans-serif;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.map-tooltip .bar-chart { margin-top: 0.5rem; }

.map-tooltip .bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.3rem 0;
    font-size: 0.8rem;
}

.map-tooltip .bar-label { color: var(--text-secondary); min-width: 80px; }
.map-tooltip .bar-fill {
    height: 14px;
    border-radius: 7px;
    transition: width 0.6s ease;
}

.map-tooltip .bar-fill.strength { background: linear-gradient(90deg, var(--teal), var(--aquamarine)); }
.map-tooltip .bar-fill.weakness { background: linear-gradient(90deg, var(--rust), var(--sunset)); }
.map-tooltip .bar-value { color: var(--text-muted); font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════
   CALC
   ═══════════════════════════════════════════════════════ */

.calc-section {
    padding: 6rem 2rem;
    background: var(--bg-main);
}

.calc-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

.calc-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(200, 169, 81, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.calc-result {
    text-align: center;
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.calc-result .result-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--teal-deep);
}

.calc-result .result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.calc-result .result-range {
    font-size: 0.9rem;
    color: var(--teal);
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */

.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-section);
    position: relative;
}

/* Star watermark */
.faq-section::before {
    content: '\2605';
    position: absolute;
    top: 3rem;
    left: 3rem;
    font-size: 15rem;
    color: rgba(200, 169, 81, 0.03);
    pointer-events: none;
}

.faq-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    margin: 0.8rem auto 0;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    border-radius: 2px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(200, 169, 81, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s;
}

.faq-question:hover { color: var(--teal); }

.faq-question .toggle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.open .toggle { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */

.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--bg-main);
    position: relative;
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.cta-section .cta-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold-deep);
    text-shadow: 0 2px 8px var(--gold-glow-soft);
    letter-spacing: 0.1em;
    margin: 1.5rem 0;
    animation: goldPulse 3s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   FOOTER — Rich teal (no black)
   ═══════════════════════════════════════════════════════ */

footer {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--hero-navy), var(--hero-teal));
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    border-top: 3px solid var(--gold);
}

footer a {
    color: var(--teal-light);
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════
   PARTICLES
   ═══════════════════════════════════════════════════════ */

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════ */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-section); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--teal));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ═══════════════════════════════════════════════════════
   SECTION SUB TEXT
   ═══════════════════════════════════════════════════════ */

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════
   SEARCH RESULTS OVERLAY — Animated Match Screen
   ═══════════════════════════════════════════════════════ */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.search-overlay-bg {
    position: absolute;
    inset: 0;
    background: rgba(12, 35, 64, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.search-overlay-panel {
    position: relative;
    width: 92%;
    max-width: 1100px;
    max-height: 90vh;
    background: #FFFFFF;
    border-radius: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow:
        0 20px 80px rgba(200, 169, 81, 0.2),
        0 0 0 1px rgba(200, 169, 81, 0.15),
        0 0 60px rgba(32, 178, 170, 0.08);
    transform: translateY(40px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.search-overlay.open .search-overlay-panel {
    transform: translateY(0) scale(1);
}

/* ─── Overlay Header ─── */
.so-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 2.5rem 1.2rem;
    border-bottom: 1px solid rgba(200, 169, 81, 0.12);
    background: linear-gradient(135deg, #FDFCFA 0%, #F9F6F0 100%);
    border-radius: 20px 20px 0 0;
}
.so-case-badge {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    background: rgba(200, 169, 81, 0.08);
    border: 1px solid rgba(200, 169, 81, 0.2);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}
.so-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--hero-navy);
    letter-spacing: 0.04em;
    line-height: 1.1;
}
.so-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}
.so-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 81, 0.2);
    background: #FFF;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.so-close:hover {
    background: rgba(200, 169, 81, 0.1);
    color: var(--hero-navy);
    border-color: var(--gold);
}

/* ─── Scanning Progress Bar ─── */
.so-scan-bar {
    position: relative;
    height: 32px;
    background: var(--bg-surface);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.so-scan-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold-bright));
    background-size: 200% 100%;
    animation: scanShimmer 1.5s linear infinite;
    transition: width 0.3s ease;
}
.so-scan-label {
    position: relative;
    z-index: 1;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.so-scan-bar.complete .so-scan-progress {
    background: linear-gradient(90deg, var(--emerald), var(--teal));
}
.so-scan-bar.complete .so-scan-label {
    color: #FFF;
}
@keyframes scanShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ─── Case Summary Strip ─── */
.so-case-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(200, 169, 81, 0.08);
    padding: 0;
}
.so-summary-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #FFF;
}
.so-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--emerald);
    line-height: 1.1;
}
.so-stat-bad { color: var(--rust); }
.so-stat-gold { color: var(--gold); }
.so-stat-teal { color: var(--teal); }
.so-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.2rem;
    font-weight: 600;
}

/* ─── OCaml Verification Banner ─── */
.so-ocaml-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, #F7F5F0, #F0F8F7);
    border-top: 1px solid rgba(200, 169, 81, 0.08);
    border-bottom: 1px solid rgba(200, 169, 81, 0.08);
}
.so-ocaml-icon {
    font-size: 1.4rem;
    color: var(--gold);
    animation: spinSlow 4s linear infinite;
}
.so-ocaml-banner.verified .so-ocaml-icon {
    animation: none;
    color: var(--emerald);
}
@keyframes spinSlow {
    to { transform: rotate(360deg); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.so-ocaml-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.so-ocaml-info strong {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--hero-navy);
}
.so-ocaml-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
}
.so-ocaml-badge {
    font-family: 'Staatliches', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.8rem;
    border-radius: 4px;
    background: rgba(200, 169, 81, 0.1);
    color: var(--gold-deep);
    border: 1px solid rgba(200, 169, 81, 0.2);
}
.so-ocaml-banner.verified .so-ocaml-badge {
    background: rgba(80, 200, 120, 0.1);
    color: var(--emerald-deep);
    border-color: rgba(80, 200, 120, 0.3);
}

/* ─── Results Grid ─── */
.so-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
}

/* ─── Match Card ─── */
.so-match-card {
    display: grid;
    grid-template-columns: 56px 1fr 280px 140px;
    gap: 1.2rem;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(200, 169, 81, 0.06);
    background: #FFF;
    opacity: 0;
    transform: translateX(-30px);
    transition: background 0.2s;
}
.so-match-card:hover {
    background: #FDFCFA;
}
.so-match-card:last-child {
    border-bottom: none;
}

/* Rank circle */
.so-rank {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.so-rank-1 {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #FFF;
    box-shadow: 0 4px 16px rgba(200, 169, 81, 0.3);
}
.so-rank-2 {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: #FFF;
    box-shadow: 0 4px 16px rgba(32, 178, 170, 0.25);
}
.so-rank-3 {
    background: linear-gradient(135deg, var(--emerald), var(--aquamarine));
    color: #FFF;
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.2);
}
.so-rank-default {
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid rgba(200, 169, 81, 0.15);
}

/* Lawyer info column */
.so-lawyer-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hero-navy);
    margin-bottom: 0.15rem;
    line-height: 1.2;
}
.so-lawyer-firm {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.so-lawyer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.so-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    white-space: nowrap;
}
.so-tag-gold {
    background: rgba(200, 169, 81, 0.1);
    color: var(--gold-deep);
}
.so-tag-teal {
    background: rgba(32, 178, 170, 0.1);
    color: var(--teal-deep);
}
.so-tag-emerald {
    background: rgba(80, 200, 120, 0.1);
    color: var(--emerald-deep);
}
.so-tag-verified {
    background: rgba(80, 200, 120, 0.08);
    color: var(--emerald-deep);
    border: 1px solid rgba(80, 200, 120, 0.2);
}

/* Bar graphs column */
.so-bars {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}
.so-bar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.so-bar-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    width: 50px;
    text-align: right;
    flex-shrink: 0;
}
.so-bar-track {
    flex: 1;
    height: 8px;
    background: var(--bg-surface);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.so-bar-fill {
    height: 100%;
    border-radius: 4px;
    width: 0%;
    transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.so-bar-fill.gold { background: linear-gradient(90deg, var(--gold), var(--gold-bright)); }
.so-bar-fill.teal { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.so-bar-fill.emerald { background: linear-gradient(90deg, var(--emerald), var(--aquamarine)); }
.so-bar-fill.rust { background: linear-gradient(90deg, var(--rust), var(--sunset)); }
.so-bar-val {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    width: 36px;
    text-align: right;
    flex-shrink: 0;
}

/* Action column */
.so-action {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
}
.so-settlement {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--emerald);
    line-height: 1;
}
.so-settlement-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
}
.so-btn-call {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(200, 169, 81, 0.2);
}
.so-btn-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 169, 81, 0.35);
}

/* OCaml verification check on card */
.so-verified-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.6rem;
    color: var(--emerald-deep);
    font-weight: 600;
}
.so-verified-mark::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--emerald);
    color: #FFF;
    font-size: 0.5rem;
    font-weight: 700;
}

/* ─── Overlay Footer ─── */
.so-footer {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-top: 1px solid rgba(200, 169, 81, 0.1);
    background: linear-gradient(135deg, #FDFCFA 0%, #F9F6F0 100%);
    border-radius: 0 0 20px 20px;
    justify-content: center;
}
.so-btn-primary {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--hero-navy), var(--hero-teal));
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(12, 35, 64, 0.2);
}
.so-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(12, 35, 64, 0.3);
}
.so-btn-secondary {
    padding: 0.7rem 2rem;
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-radius: 10px;
    background: #FFF;
    color: var(--hero-navy);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.so-btn-secondary:hover {
    background: rgba(200, 169, 81, 0.05);
    border-color: var(--gold);
}

/* ─── Crawl4AI data badge ─── */
.so-crawl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--teal-deep);
    background: rgba(32, 178, 170, 0.06);
    border: 1px solid rgba(32, 178, 170, 0.12);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
}
.so-crawl-badge::before {
    content: '\25CF';
    font-size: 0.4rem;
    color: var(--teal);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .so-match-card {
        grid-template-columns: 40px 1fr;
        gap: 0.8rem;
        padding: 1rem 1.2rem;
    }
    .so-bars, .so-action {
        grid-column: 1 / -1;
    }
    .so-case-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    .so-header {
        padding: 1.5rem 1.2rem 1rem;
    }
    .so-footer {
        padding: 1rem 1.2rem;
        flex-direction: column;
    }
    .so-ocaml-banner {
        padding: 0.8rem 1.2rem;
    }
}

/* ═══════════════════════════════════════════════════════
   AI ASSISTANT — Floating Chat
   ═══════════════════════════════════════════════════════ */

.ai-assistant-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    border: 3px solid var(--teal);
    box-shadow: var(--gold-shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s;
    animation: fabPulse 2s ease-in-out infinite;
}

.ai-assistant-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px var(--gold-glow);
}

.ai-assistant-fab .fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--teal);
    border: 2px solid #fff;
    animation: fabDot 1.5s ease-in-out infinite;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: var(--gold-shadow); }
    50% { box-shadow: var(--gold-shadow), 0 0 0 8px var(--gold-glow-soft); }
}

@keyframes fabDot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.ai-assistant-panel {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    max-height: 520px;
    background: var(--bg-card);
    border: 1px solid rgba(200, 169, 81, 0.15);
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(200, 169, 81, 0.15), 0 4px 16px rgba(0,0,0,0.06);
    z-index: 998;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.ai-assistant-panel.open { display: flex; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-panel-header {
    background: linear-gradient(135deg, var(--hero-navy), var(--hero-teal));
    color: white;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ai-panel-header .ai-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ai-panel-header .ai-info h4 {
    font-family: 'Righteous', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.ai-panel-header .ai-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.ai-panel-header .ai-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.ai-panel-header .ai-close:hover { opacity: 1; }

.ai-panel-greeting {
    padding: 1.2rem 1.5rem;
    background: var(--bg-surface);
    border-bottom: 1px solid rgba(200, 169, 81, 0.08);
}

.ai-panel-greeting .greeting-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
    font-weight: 500;
}

.ai-panel-greeting .greeting-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.ai-panel-body {
    flex: 1;
    padding: 1rem 1.5rem;
    overflow-y: auto;
    max-height: 260px;
}

.ai-chat-msg {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.6rem;
}

.ai-chat-msg .msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-chat-msg .msg-bubble {
    background: var(--bg-surface);
    border-radius: 12px 12px 12px 4px;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.5;
    max-width: 85%;
}

.ai-chat-msg.user .msg-bubble {
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    color: white;
    border-radius: 12px 12px 4px 12px;
    margin-left: auto;
}

.ai-panel-input {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(200, 169, 81, 0.08);
    display: flex;
    gap: 0.5rem;
}

.ai-panel-input input {
    flex: 1;
    padding: 0.65rem 1rem;
    border-radius: 24px;
    border: 1px solid rgba(200, 169, 81, 0.15);
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--bg-surface);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}

.ai-panel-input input:focus { border-color: var(--teal); }
.ai-panel-input input::placeholder { color: var(--text-muted); }

.ai-panel-input button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-panel-input button:hover {
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
}

/* Voice indicator */
.voice-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: rgba(32, 178, 170, 0.08);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--teal-deep);
    margin-top: 0.5rem;
}

.voice-indicator .voice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: voicePulse 1s ease-in-out infinite;
}

@keyframes voicePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ═══════════════════════════════════════════════════════
   DALLAS ADS STRIP
   ═══════════════════════════════════════════════════════ */

.dallas-ads-strip {
    background: linear-gradient(135deg, var(--hero-navy), var(--hero-teal));
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    border-bottom: 3px solid var(--gold);
}

.dallas-ad {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.dallas-ad .ad-icon { font-size: 1.4rem; }

.dallas-ad .ad-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.dallas-ad .ad-text strong {
    color: var(--gold-bright);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.dallas-ad .ad-text span {
    font-size: 0.7rem;
    opacity: 0.7;
}

.partner-strip {
    background: var(--bg-surface);
    padding: 0.8rem 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(200, 169, 81, 0.08);
}

.partner-strip strong { color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════
   HERO GLOW SEARCH
   ═══════════════════════════════════════════════════════ */

.hero-search-glow {
    max-width: 680px;
    margin: 2rem auto 0;
    position: relative;
}

.hero-search-glow .glow-ring {
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: conic-gradient(from 0deg, var(--gold), var(--teal), var(--aquamarine), var(--gold));
    opacity: 0.4;
    filter: blur(10px);
    animation: glowRotate 4s linear infinite;
    z-index: 0;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-search-glow .search-inner {
    position: relative;
    z-index: 1;
    background: var(--hero-card);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(200, 169, 81, 0.2);
}

.hero-search-glow textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-hero);
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1.6;
    resize: none;
    outline: none;
}

.hero-search-glow textarea::placeholder {
    color: rgba(240, 237, 232, 0.5);
}

/* ═══════════════════════════════════════════════════════
   TEXAN ART DECORATIONS (CSS-only)
   ═══════════════════════════════════════════════════════ */

/* Lone Star decoration between sections */
.comparison-section::before,
.cta-section::before {
    content: '\2605';
    display: block;
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--gold-glow-soft);
}

/* Gold line separators with star */
.comparison-section::after,
.search-section::after {
    content: '';
    display: block;
    width: 200px;
    height: 2px;
    margin: 3rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .pipeline { grid-template-columns: 1fr 1fr; }
    .pipeline-step:not(:last-child)::after { display: none; }
    .comparison-grid { grid-template-columns: 1fr; }
    .vs-badge { margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }
    .neon-sign { padding: 2rem; }
    .social-proof { flex-direction: column; gap: 1rem; }
    .lawyer-grid { grid-template-columns: 1fr; }
    .ai-assistant-panel {
        width: calc(100% - 32px);
        right: 16px;
        bottom: 96px;
    }
    .dallas-ads-strip {
        gap: 1.5rem;
        padding: 0.8rem 1rem;
    }
    .dallas-ad .ad-text span { display: none; }
}

@media (max-width: 480px) {
    .pipeline { grid-template-columns: 1fr; }
    .neon-sign { padding: 1.5rem; }
    .ai-assistant-fab {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }
}
