/* ============================================
   HomeSpecs — Global Styles v2
   Editorial layout. Asymmetric. Cinematic.
   ============================================ */

:root {
    --navy:          #0B1628;
    --navy-90:       #0F1D33;
    --navy-80:       #1A2D54;
    --slate-dark:    #1E293B;
    --teal:          #14B8A6;
    --teal-light:    #5EEAD4;
    --teal-dark:     #0D9488;
    --teal-glow:     rgba(20, 184, 166, 0.15);
    --teal-subtle:   rgba(20, 184, 166, 0.06);
    --slate:         #64748B;
    --slate-light:   #94A3B8;
    --white:         #FAFBFD;
    --light:         #F1F5F9;
    --surface:       #F8FAFC;
    --severity-low:  #22C55E;
    --severity-med:  #F59E0B;
    --severity-high: #EF4444;
    --font-display:  'Outfit', sans-serif;
    --font-body:     'Plus Jakarta Sans', sans-serif;
    --ease:          cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-weight: 300; color: var(--navy); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.4s var(--ease); }
ul, ol { list-style: none; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.25rem 0;
    transition: background 0.5s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
    background: rgba(11, 22, 40, 0.9);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 0.75rem 0;
}
.header-container {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.logo-link { display: flex; align-items: center; gap: 0.6rem; }
.logo-icon { width: 26px; height: 26px; display: flex; align-items: center; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-wordmark {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    color: #fff; letter-spacing: -0.3px;
}
.logo-accent { color: var(--teal); }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.5);
    padding: 0.5rem 0.875rem; border-radius: 6px;
    transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active { background: rgba(255,255,255,0.06); }
.nav-cta {
    font-size: 0.8rem; font-weight: 600; color: var(--navy); background: var(--teal);
    padding: 0.5rem 1.2rem; border-radius: 6px;
    transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover { background: var(--teal-light); transform: translateY(-1px); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle-bar {
    display: block; width: 22px; height: 1.5px; background: #fff; border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-solid {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem;
    background: var(--teal); color: var(--navy);
    padding: 0.875rem 2rem; border-radius: 8px; border: none; cursor: pointer;
    transition: background 0.3s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-solid:hover {
    background: var(--teal-light); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(20,184,166,0.2);
}
.btn-solid:active { transform: translateY(0); }
.btn-solid-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-outline {
    display: inline-flex; align-items: center;
    font-family: var(--font-body); font-weight: 500; font-size: 0.9375rem;
    background: transparent; color: rgba(255,255,255,0.65);
    padding: 0.875rem 2rem; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.btn-outline:hover {
    color: #fff; border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.04);
}

/* ============================================
   HERO — Cinematic Property
   ============================================ */
.hero {
    position: relative; min-height: 100vh;
    background: var(--navy); overflow: hidden;
    display: flex; align-items: center;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 1;
}
.hero-bg-layers {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, #0B1628 0%, #122040 30%, #1A2D54 60%, #0F1D33 100%);
}
.hero-bg-layers::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(20,184,166,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 30%, rgba(20,184,166,0.04) 0%, transparent 40%);
}
.hero-bg-grain {
    position: absolute; inset: 0; opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 8rem 2rem 5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--teal); margin-bottom: 1.5rem;
}
.hero-headline {
    font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
    line-height: 1.1; letter-spacing: -1px; color: #fff; margin-bottom: 1.5rem;
}
.hero-headline-em { color: var(--teal-light); }
.hero-lead {
    font-size: 1.0625rem; font-weight: 300; color: rgba(255,255,255,0.5);
    line-height: 1.75; max-width: 460px; margin-bottom: 2.5rem;
}
.hero-cta-row { display: flex; align-items: center; gap: 1rem; }

/* --- Transform card --- */
.hero-transform { position: relative; }
.transform-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 1.75rem; position: relative;
}
.transform-panel { margin-bottom: 1.25rem; }
.transform-panel:last-of-type { margin-bottom: 0; }
.transform-label {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 0.75rem;
}
.transform-dot {
    width: 6px; height: 6px; border-radius: 50%;
}
.transform-dot-amber { background: var(--severity-med); }
.transform-dot-teal { background: var(--teal); }
.transform-voice-text {
    font-size: 0.9375rem; font-weight: 300; color: rgba(255,255,255,0.6);
    font-style: italic; line-height: 1.65; min-height: 4.5rem;
}
.transform-waveform {
    display: flex; align-items: end; gap: 3px; height: 28px; margin-top: 0.75rem;
}
.waveform-bar {
    flex: 1; height: var(--h); background: var(--severity-med); opacity: 0.35;
    border-radius: 2px;
    animation: waveform-pulse 1.2s ease-in-out infinite alternate;
}
.waveform-bar:nth-child(even) { animation-delay: 0.2s; }
.waveform-bar:nth-child(3n) { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .waveform-bar { animation: none; }
}

@keyframes waveform-pulse {
    0% { transform: scaleY(0.7); } 100% { transform: scaleY(1); }
}

.transform-arrow {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--teal); font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 0.75rem 0; margin: 0.25rem 0;
}
.transform-arrow svg { opacity: 0.8; }

.transform-polished {
    background: rgba(20,184,166,0.04);
    border: 1px solid rgba(20,184,166,0.08);
    border-radius: 12px; padding: 1.25rem;
}
.report-severity {
    display: inline-block; font-size: 0.625rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 4px; margin-bottom: 0.75rem;
}
.report-severity-high { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.report-observation, .report-recommendation {
    font-size: 0.8125rem; font-weight: 300; color: rgba(255,255,255,0.55);
    line-height: 1.65; margin-bottom: 0.5rem;
}
.report-observation strong, .report-recommendation strong {
    font-weight: 600; color: rgba(255,255,255,0.75);
}

/* ============================================
   PROOF STRIP
   ============================================ */
.proof-strip {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 3rem 0;
}
.proof-strip-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: center; gap: 3rem;
}
.proof-item { text-align: center; }
.proof-number {
    display: block; font-family: var(--font-display); font-size: 1.75rem;
    font-weight: 700; color: var(--navy); letter-spacing: -0.5px;
}
.proof-context {
    display: block; font-size: 0.8125rem; font-weight: 400;
    color: var(--slate); margin-top: 0.125rem;
}
.proof-divider {
    width: 1px; height: 40px; background: rgba(0,0,0,0.08);
}

/* ============================================
   NARRATIVE — Editorial blocks
   ============================================ */
.narrative-block {
    padding: 6rem 0;
}
.narrative-block-dark {
    background: var(--navy);
}
.narrative-block-slate {
    background: var(--slate-dark);
}
.narrative-wide {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem 0;
}
.narrative-offset {
    max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    padding-left: calc(2rem + 33%);
}
.narrative-centered {
    max-width: 720px; margin: 0 auto; padding: 0 2rem; text-align: center;
}
.narrative-chapter {
    display: inline-block;
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--teal-dark); margin-bottom: 1rem;
}
.narrative-chapter-light { color: var(--teal-light); }
.narrative-heading {
    font-family: var(--font-display); font-size: 3rem; font-weight: 700;
    line-height: 1.12; letter-spacing: -0.5px; color: var(--navy);
}
.narrative-heading-light { color: #fff; }
.narrative-heading-sm {
    font-family: var(--font-display); font-size: 2rem; font-weight: 700;
    line-height: 1.2; letter-spacing: -0.3px; color: var(--navy); margin-bottom: 1.25rem;
}
.narrative-heading-light-sm {
    font-family: var(--font-display); font-size: 2.25rem; font-weight: 700;
    line-height: 1.15; letter-spacing: -0.3px; color: #fff; margin-bottom: 1.25rem;
}
.narrative-body {
    font-size: 1.0625rem; font-weight: 300; color: var(--slate);
    line-height: 1.8; margin-bottom: 1rem;
}
.narrative-body:last-child { margin-bottom: 0; }
.narrative-body-light { color: rgba(255,255,255,0.5); }
.narrative-body-wide { max-width: 560px; margin-left: auto; margin-right: auto; }

/* --- Split layout --- */
.narrative-split {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.narrative-split-reverse { direction: rtl; }
.narrative-split-reverse > * { direction: ltr; }

/* --- Phone mockup --- */
.demo-phone {
    width: 280px; margin: 0 auto;
    background: var(--navy); border-radius: 28px;
    padding: 12px; box-shadow: 0 24px 80px rgba(11,22,40,0.2);
}
.demo-phone-screen {
    background: var(--navy-90); border-radius: 20px;
    padding: 1.25rem; min-height: 400px;
}
.demo-phone-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.25rem;
}
.demo-phone-status {
    font-size: 0.625rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    background: rgba(20,184,166,0.15); color: var(--teal-light);
    padding: 3px 10px; border-radius: 4px;
}
.demo-phone-ref {
    font-size: 0.6875rem; color: rgba(255,255,255,0.25);
    font-family: var(--font-display);
}
.demo-phone-category {
    display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1rem;
}
.demo-chip {
    font-size: 0.6875rem; font-weight: 500;
    padding: 5px 12px; border-radius: 20px;
    background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.06);
}
.demo-chip-active {
    background: rgba(20,184,166,0.12); color: var(--teal-light);
    border-color: rgba(20,184,166,0.2);
}
.demo-phone-location {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem;
}
.demo-phone-location svg { opacity: 0.5; }
.demo-phone-mic {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; margin: 1.5rem 0;
}
.demo-mic-ring {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--teal); display: flex; align-items: center; justify-content: center;
    position: relative;
}
.demo-mic-ring-pulse {
    position: absolute; inset: -8px; border-radius: 50%;
    border: 2px solid var(--teal); opacity: 0.3;
    animation: mic-pulse 2s ease-out infinite;
}
@keyframes mic-pulse {
    0% { transform: scale(0.8); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .demo-mic-ring-pulse { animation: none; opacity: 0.2; }
}
.demo-mic-label {
    font-size: 0.6875rem; font-weight: 500; color: var(--teal-light);
    letter-spacing: 1px;
}
.demo-phone-transcript {
    font-size: 0.8125rem; font-weight: 300; font-style: italic;
    color: rgba(255,255,255,0.45); line-height: 1.6;
    padding: 0.75rem; background: rgba(255,255,255,0.03);
    border-radius: 8px; margin-bottom: 1rem;
}
.demo-phone-actions {
    display: flex; gap: 8px;
}
.demo-btn-enhance {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.6875rem; font-weight: 600; color: var(--teal);
    background: rgba(20,184,166,0.1); padding: 6px 12px; border-radius: 6px;
}
.demo-btn-save {
    font-size: 0.6875rem; font-weight: 600; color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05); padding: 6px 12px; border-radius: 6px;
}

/* --- Report card mockup --- */
.demo-report-card {
    width: 320px; margin: 0 auto;
    background: #fff; border-radius: 16px;
    padding: 1.5rem; box-shadow: 0 24px 80px rgba(11,22,40,0.12);
    color: var(--navy);
}
.demo-report-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.25rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.demo-report-logo {
    display: flex; align-items: center; gap: 6px;
}
.demo-report-logo-icon { width: 18px; height: 18px; display: flex; }
.demo-report-logo-icon svg { width: 100%; height: 100%; }
.demo-report-logo-text {
    font-family: var(--font-display); font-size: 0.875rem; font-weight: 700;
    color: var(--navy);
}
.demo-report-date {
    font-size: 0.6875rem; color: var(--slate-light);
}
.demo-report-title {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    color: var(--navy); margin-bottom: 0.25rem;
}
.demo-report-address {
    font-size: 0.75rem; color: var(--slate); margin-bottom: 1.25rem;
}
.demo-report-summary {
    background: var(--light); border-radius: 10px; padding: 1rem;
    margin-bottom: 1rem;
}
.demo-report-summary-label {
    font-size: 0.625rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--teal-dark); margin-bottom: 0.5rem;
}
.demo-report-summary p {
    font-size: 0.75rem; font-weight: 400; color: var(--slate);
    line-height: 1.65;
}
.demo-report-items { display: flex; flex-direction: column; gap: 8px; }
.demo-report-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px; border-radius: 8px;
    background: var(--surface); font-size: 0.75rem;
}
.demo-severity {
    font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
    padding: 2px 8px; border-radius: 3px; flex-shrink: 0;
}
.demo-severity-high { background: rgba(239,68,68,0.1); color: var(--severity-high); }
.demo-severity-med { background: rgba(245,158,11,0.1); color: var(--severity-med); }
.demo-severity-low { background: rgba(34,197,94,0.1); color: var(--severity-low); }
.demo-report-item-cat { font-weight: 600; color: var(--navy); }
.demo-report-item-loc { color: var(--slate); }

/* ============================================
   CLOSING CTA
   ============================================ */
.closing {
    padding: 8rem 0; background: var(--white); text-align: center;
}
.closing-inner {
    max-width: 600px; margin: 0 auto; padding: 0 2rem;
}
.closing-eyebrow {
    display: inline-block;
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--teal-dark); margin-bottom: 1.25rem;
}
.closing-headline {
    font-family: var(--font-display); font-size: 2.75rem; font-weight: 700;
    line-height: 1.12; letter-spacing: -0.5px; color: var(--navy); margin-bottom: 2rem;
}
.closing-actions { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.closing-or {
    font-size: 0.875rem; font-weight: 300; color: var(--slate);
}
.closing-email {
    color: var(--teal-dark); font-weight: 500;
    border-bottom: 1px solid rgba(13,148,136,0.3);
    transition: border-color 0.3s var(--ease);
}
.closing-email:hover { border-color: var(--teal-dark); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 0 2rem;
}
.footer-container {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-logo-link {
    display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
}
.footer-logo-link .logo-icon { width: 20px; height: 20px; }
.footer-wordmark {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
    color: #fff; letter-spacing: -0.2px;
}
.footer-description {
    font-size: 0.8125rem; font-weight: 300; color: rgba(255,255,255,0.3);
    line-height: 1.7; max-width: 300px;
}
.footer-heading {
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 600;
    color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a, .footer-links li {
    font-size: 0.8125rem; font-weight: 300; color: rgba(255,255,255,0.35);
    transition: color 0.3s var(--ease);
}
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-powered { font-size: 0.6875rem; color: rgba(255,255,255,0.15); }

/* ============================================
   HOMEPAGE HERO
   ============================================ */
.hero-home {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 9rem 2rem 5rem;
    text-align: center;
}
.hero-home-title {
    font-family: var(--font-display); font-size: 3.75rem; font-weight: 700;
    line-height: 1.08; letter-spacing: -1.5px; color: #fff; margin-bottom: 1.5rem;
}
.hero-home-lead {
    font-size: 1.125rem; font-weight: 300; color: rgba(255,255,255,0.5);
    line-height: 1.75; max-width: 580px; margin: 0 auto 2.5rem;
}
.hero-home-actions {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin-bottom: 3.5rem;
}
.hero-proof-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 1.5rem 2.5rem;
    display: inline-block;
}
.hero-proof-row {
    display: flex; align-items: center; gap: 2.5rem;
}
.hero-proof-item { text-align: center; }
.hero-proof-value {
    display: block; font-family: var(--font-display); font-size: 1.75rem;
    font-weight: 700; color: var(--teal-light);
}
.hero-proof-label {
    display: block; font-size: 0.75rem; color: rgba(255,255,255,0.3);
    margin-top: 0.125rem;
}
.hero-proof-divider {
    width: 1px; height: 36px; background: rgba(255,255,255,0.08);
}

/* ============================================
   PILLARS
   ============================================ */
.pillar {
    padding: 6rem 0;
}
.pillar-primary { background: var(--white); }
.pillar-dark { background: var(--navy); }
.pillar-light { background: var(--light); }
.pillar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.pillar-inner-reverse { direction: rtl; }
.pillar-inner-reverse > * { direction: ltr; }

.pillar-number {
    display: block; font-family: var(--font-display); font-size: 4rem;
    font-weight: 800; color: var(--light); line-height: 1; margin-bottom: 0.75rem;
}
.pillar-number-light { color: rgba(255,255,255,0.06); }
.pillar-label {
    display: inline-block; font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--teal-dark); margin-bottom: 1rem;
}
.pillar-label-light { color: var(--teal); }
.pillar-title {
    font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
    line-height: 1.12; letter-spacing: -0.5px; color: var(--navy); margin-bottom: 1.25rem;
}
.pillar-title-light { color: #fff; }
.pillar-body {
    font-size: 1rem; font-weight: 300; color: var(--slate);
    line-height: 1.75; margin-bottom: 1rem;
}
.pillar-body-light { color: rgba(255,255,255,0.45); }
.pillar-features {
    display: flex; flex-direction: column; gap: 0.625rem;
    margin: 1.5rem 0 2rem;
}
.pillar-feature {
    display: flex; align-items: center; gap: 0.625rem;
    font-size: 0.875rem; font-weight: 400; color: var(--slate-dark);
}
.pillar-feature svg { color: var(--teal); flex-shrink: 0; }
.pillar-feature-light { color: rgba(255,255,255,0.55); }
.pillar-feature-light svg { color: var(--teal-light); }
.pillar-coming-soon {
    display: inline-block; margin-left: 1rem;
    font-size: 0.75rem; font-weight: 500; color: var(--slate-light);
    font-style: italic;
}

/* --- Report mockup (Pillar 1) --- */
.pillar-report-mockup {
    background: #fff; border-radius: 16px; padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 24px 68px rgba(11,22,40,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}
.mockup-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mockup-logo { display: flex; align-items: center; gap: 6px; }
.mockup-logo-icon { width: 18px; height: 18px; display: flex; }
.mockup-logo-icon svg { width: 100%; height: 100%; }
.mockup-logo-text {
    font-family: var(--font-display); font-size: 0.875rem; font-weight: 700;
}
.mockup-badge-overall {
    font-size: 0.625rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
    background: rgba(245,158,11,0.1); color: var(--severity-med);
    padding: 4px 12px; border-radius: 4px;
}
.mockup-property { margin-bottom: 1rem; }
.mockup-property-title {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    color: var(--navy); margin-bottom: 0.125rem;
}
.mockup-property-address { font-size: 0.75rem; color: var(--slate); }
.mockup-summary {
    background: var(--light); border-radius: 10px; padding: 1rem; margin-bottom: 1.25rem;
}
.mockup-summary-label {
    font-size: 0.5625rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--teal-dark); margin-bottom: 0.375rem;
}
.mockup-summary p {
    font-size: 0.75rem; font-weight: 400; color: var(--slate); line-height: 1.65;
}
.mockup-items { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.mockup-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 12px; border-radius: 8px; background: var(--surface);
    font-size: 0.75rem;
}
.mockup-sev {
    font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
    padding: 2px 8px; border-radius: 3px; flex-shrink: 0; margin-top: 2px;
}
.mockup-sev-critical { background: rgba(239,68,68,0.1); color: var(--severity-high); }
.mockup-sev-high { background: rgba(249,115,22,0.1); color: #EA580C; }
.mockup-sev-med { background: rgba(245,158,11,0.1); color: var(--severity-med); }
.mockup-sev-low { background: rgba(34,197,94,0.1); color: var(--severity-low); }
.mockup-item-detail { flex: 1; }
.mockup-item-cat { display: block; font-weight: 600; color: var(--navy); }
.mockup-item-desc { display: block; color: var(--slate); margin-top: 1px; }
.mockup-item-cost {
    font-family: var(--font-display); font-weight: 600; color: var(--navy);
    white-space: nowrap; font-size: 0.6875rem;
}
.mockup-total {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 0.75rem; border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.8125rem; font-weight: 500; color: var(--slate);
}
.mockup-total-value {
    font-family: var(--font-display); font-weight: 700; color: var(--navy);
}

/* --- Phone mockup (Pillar 2) --- */
.pillar-phone-mockup { display: flex; justify-content: center; }
.phone-frame {
    width: 280px; background: #000; border-radius: 32px; padding: 10px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.phone-screen {
    background: var(--navy-90); border-radius: 24px; padding: 1.25rem;
    min-height: 420px;
}
.phone-status-bar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.25rem;
}
.phone-status-badge {
    font-size: 0.5625rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    background: rgba(20,184,166,0.15); color: var(--teal-light);
    padding: 3px 10px; border-radius: 4px;
}
.phone-ref { font-size: 0.625rem; color: rgba(255,255,255,0.2); font-family: var(--font-display); }
.phone-chips { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 1rem; }
.phone-chip {
    font-size: 0.625rem; font-weight: 500; padding: 4px 10px; border-radius: 20px;
    background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}
.phone-chip-active {
    background: rgba(20,184,166,0.12); color: var(--teal-light);
    border-color: rgba(20,184,166,0.2);
}
.phone-location-bar {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.6875rem; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem;
}
.phone-location-bar svg { opacity: 0.4; }
.phone-mic-area {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    margin: 1.25rem 0;
}
.phone-mic-btn {
    width: 52px; height: 52px; border-radius: 50%; background: var(--teal);
    display: flex; align-items: center; justify-content: center; position: relative;
}
.phone-mic-pulse {
    position: absolute; inset: -6px; border-radius: 50%;
    border: 2px solid var(--teal); opacity: 0.3;
    animation: mic-pulse 2s ease-out infinite;
}
@keyframes mic-pulse {
    0% { transform: scale(0.85); opacity: 0.4; }
    100% { transform: scale(1.25); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .phone-mic-pulse { animation: none; opacity: 0.15; }
}
.phone-mic-text {
    font-size: 0.625rem; font-weight: 500; color: var(--teal-light); letter-spacing: 0.5px;
}
.phone-transcript {
    font-size: 0.75rem; font-weight: 300; font-style: italic;
    color: rgba(255,255,255,0.4); line-height: 1.55;
    padding: 0.625rem; background: rgba(255,255,255,0.03);
    border-radius: 8px; margin-bottom: 0.75rem;
}
.phone-actions { display: flex; gap: 6px; }
.phone-btn-ai {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.625rem; font-weight: 600; color: var(--teal);
    background: rgba(20,184,166,0.1); padding: 5px 10px; border-radius: 5px;
}
.phone-btn-save {
    font-size: 0.625rem; font-weight: 600; color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.05); padding: 5px 10px; border-radius: 5px;
}

/* --- Directory mockup (Pillar 3) --- */
.pillar-directory-mockup {
    background: #fff; border-radius: 16px; padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 24px 68px rgba(11,22,40,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}
.directory-search {
    display: flex; align-items: center; gap: 8px;
    padding: 0.75rem 1rem; border-radius: 10px;
    background: var(--light); margin-bottom: 1rem;
    font-size: 0.8125rem; color: var(--slate-light);
}
.directory-search svg { opacity: 0.4; flex-shrink: 0; }
.directory-categories {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.25rem;
}
.dir-cat {
    font-size: 0.6875rem; font-weight: 500;
    padding: 4px 12px; border-radius: 20px;
    background: var(--teal-subtle); color: var(--teal-dark);
    border: 1px solid rgba(20,184,166,0.1);
}
.directory-contractor {
    padding: 0.875rem; border-radius: 10px; background: var(--surface);
    margin-bottom: 8px;
}
.directory-contractor:last-child { margin-bottom: 0; }
.dir-contractor-row {
    display: flex; align-items: center; gap: 10px;
}
.dir-avatar {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6875rem; font-weight: 700;
    background: var(--teal-subtle); color: var(--teal-dark);
}
.dir-avatar-blue { background: rgba(59,130,246,0.08); color: #2563EB; }
.dir-avatar-amber { background: rgba(245,158,11,0.08); color: #D97706; }
.dir-info { flex: 1; min-width: 0; }
.dir-name {
    display: block; font-size: 0.8125rem; font-weight: 600; color: var(--navy);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dir-trade {
    display: block; font-size: 0.6875rem; color: var(--slate);
}
.dir-rating { text-align: right; flex-shrink: 0; }
.dir-stars { font-size: 0.6875rem; color: var(--severity-med); }
.dir-count { display: block; font-size: 0.5625rem; color: var(--slate-light); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-animate].visible {
    opacity: 1; transform: translateY(0);
}
