/* Built Busy Phase 3 - Stylesheet
 * Typography: Inter for body, Space Grotesk for headings
 * Colors: Navy #0F1B2D (dominant), White #FFFFFF, Clay #C45C26 (CTA accent)
 */

:root {
    --navy: #0F1B2D;
    --navy-light: #1a2a42;
    --clay: #C45C26;
    --clay-dark: #A84D20;
    --white: #FFFFFF;
    --off-white: #F8F7F5;
    --mist: #E8E6E3;
    --stone: #6B6B6B;
    --stone-light: #9A9A9A;
    --success: #2ECC71;
    --error: #E74C3C;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .btn, .nav-link, .tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--mist);
    padding: 0 24px;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo img { height: 40px; width: auto; }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--navy);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover { color: var(--clay); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
}

/* Sections */
.section { padding: 96px 24px; }
.section-navy { background: var(--navy); color: var(--white); }
.section-off-white { background: var(--off-white); }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn-clay { background: var(--clay); color: var(--white); }
.btn-clay:hover { background: var(--clay-dark); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover { background: var(--white); color: var(--navy); }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* Typography */
.heading-xl {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.heading-lg {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 700;
}

.heading-md {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    font-weight: 600;
}

.heading-sm {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.text-lg { font-size: 18px; line-height: 1.6; }
.text-muted { color: var(--stone); }
.text-muted-light { color: rgba(255,255,255,0.7); }

/* Hero */
.hero {
    padding: 120px 24px 140px;
    text-align: center;
    background: var(--navy);
    color: var(--white);
}

.hero-inner { max-width: 800px; margin: 0 auto; }

.hero-logo {
    height: 48px;
    width: auto;
    margin-bottom: 40px;
}

.hero h1 { margin-bottom: 24px; }

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Before/After */
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.before-after-box { padding: 48px; }
.before-box { background: rgba(0,0,0,0.03); border-right: 1px solid var(--mist); }
.after-box { background: var(--navy); color: var(--white); }

.before-after-box h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    opacity: 0.7;
}

.before-after-box ul { list-style: none; padding: 0; }

.before-after-box li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.after-box li { border-color: rgba(255,255,255,0.15); }
.before-after-box li:last-child { border-bottom: none; }

.icon-x { color: var(--error); flex-shrink: 0; }
.icon-check { color: var(--success); flex-shrink: 0; }

/* Feature Cards */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--mist);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--off-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon img { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 12px; font-size: 20px; }
.feature-card p { color: var(--stone); font-size: 15px; line-height: 1.6; }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 24px; }

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--mist);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }

.service-icon {
    width: 44px;
    height: 44px;
    background: var(--off-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon img { width: 22px; height: 22px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { color: var(--stone); font-size: 15px; line-height: 1.6; }

/* Pricing Calculator */
.calculator-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    border: 2px solid var(--mist);
}

.calculator-form { display: flex; flex-direction: column; gap: 24px; }

.calc-group { display: flex; flex-direction: column; gap: 8px; }

.calc-group label { font-size: 15px; font-weight: 500; }

.calc-group input[type="number"],
.calc-group select {
    padding: 12px 16px;
    border: 2px solid var(--mist);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.calc-group input:focus,
.calc-group select:focus { outline: none; border-color: var(--clay); }

.range-display { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.range-value { font-weight: 600; color: var(--clay); }

.checkbox-group { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--off-white);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.checkbox-item:hover { background: var(--mist); }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--clay); }

.calculator-results {
    margin-top: 40px;
    padding: 32px;
    background: var(--navy);
    border-radius: 12px;
    color: var(--white);
    display: none;
}

.calculator-results.active { display: block; }

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.result-item:last-child { border-bottom: none; }
.result-label { font-size: 15px; opacity: 0.8; }
.result-value { font-size: 24px; font-weight: 700; color: var(--clay); }

.result-highlight {
    background: rgba(196, 92, 38, 0.2);
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
    text-align: center;
}

.result-highlight .result-label { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.result-highlight .result-value { font-size: 32px; margin-top: 8px; }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 48px; }

.faq-category-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clay);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--mist);
}

.faq-item { border-bottom: 1px solid var(--mist); }

.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    transition: color 0.2s;
}

.faq-question:hover { color: var(--clay); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; margin-left: 16px; opacity: 0.5; }
.faq-item.active .faq-icon { opacity: 1; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 24px; }
.faq-answer p { color: var(--stone); font-size: 15px; line-height: 1.7; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--mist);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--clay); }
.form-group textarea { min-height: 120px; resize: vertical; }

.form-success {
    display: none;
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid var(--success);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.form-success.active { display: block; }
.form-success-icon { width: 48px; height: 48px; margin: 0 auto 16px; }
.form-success h3 { color: var(--success); margin-bottom: 8px; }
.form-success p { color: var(--stone); }

/* Proof Strip */
.proof-strip { background: var(--off-white); padding: 48px 24px; text-align: center; }
.proof-strip-inner { max-width: 800px; margin: 0 auto; }

.proof-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}

/* Email Capture */
.email-section { text-align: center; }
.email-form {
    max-width: 480px;
    margin: 32px auto 0;
    display: flex;
    gap: 12px;
}

.email-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--mist);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.email-form input:focus { outline: none; border-color: var(--clay); }

/* Section header / utility */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--stone); font-size: 18px; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* Pricing anchor cards */
.pricing-anchors { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto 64px; }
.pricing-anchor {
    background: var(--white);
    border: 2px solid var(--mist);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.pricing-anchor:hover { border-color: var(--clay); transform: translateY(-4px); }
.pricing-anchor-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); margin-bottom: 12px; }
.pricing-anchor-price { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-anchor-suffix { font-size: 18px; color: var(--stone); font-weight: 500; }
.pricing-anchor-desc { color: var(--stone); font-size: 14px; margin-top: 12px; line-height: 1.5; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 15px; }
.compare-table th, .compare-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--mist); }
.compare-table th { background: var(--off-white); font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--navy); font-size: 14px; }
.compare-table tr:hover td { background: rgba(196, 92, 38, 0.04); }
.compare-table .highlight-col { background: rgba(196, 92, 38, 0.06); font-weight: 500; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.blog-card h3 { font-size: 22px; margin-bottom: 12px; line-height: 1.3; }
.blog-card p { color: var(--steno, var(--stone)); font-size: 15px; margin-bottom: 16px; }
.blog-card-link { color: var(--clay); font-weight: 600; font-size: 14px; }

.blog-article { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.blog-article h1 { font-size: clamp(32px, 4vw, 44px); line-height: 1.15; margin-bottom: 16px; }
.blog-article .meta { color: var(--stone); font-size: 14px; margin-bottom: 32px; }
.blog-article h2 { font-size: 26px; margin-top: 40px; margin-bottom: 16px; line-height: 1.2; }
.blog-article h3 { font-size: 20px; margin-top: 28px; margin-bottom: 12px; }
.blog-article p { margin-bottom: 18px; font-size: 17px; line-height: 1.7; color: #2c2c2c; }
.blog-article ul, .blog-article ol { margin: 0 0 18px 24px; }
.blog-article li { margin-bottom: 8px; font-size: 17px; line-height: 1.7; }
.blog-article a { color: var(--clay); text-decoration: underline; }
.blog-article a:hover { color: var(--clay-dark); }
.blog-article .blog-cta { background: var(--off-white); border-left: 4px solid var(--clay); padding: 24px; margin: 32px 0; border-radius: 4px; }
.blog-article .blog-cta p { margin-bottom: 12px; }
.blog-hero { margin-bottom: 32px; border-radius: 12px; }

/* How-it-works steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.step-card { background: var(--white); border: 1px solid var(--mist); border-radius: 12px; padding: 32px; position: relative; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; color: var(--clay); line-height: 1; margin-bottom: 16px; opacity: 0.4; }
.step-card h3 { font-size: 20px; margin-bottom: 12px; }
.step-card p { color: var(--stone); font-size: 15px; }

/* CTA blocks (services double CTA) */
.cta-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.cta-block { background: var(--white); border: 2px solid var(--mist); border-radius: 12px; padding: 40px; text-align: center; }
.cta-block.cta-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-block h3 { font-size: 22px; margin-bottom: 12px; }
.cta-block p { font-size: 15px; margin-bottom: 24px; opacity: 0.85; }

/* Footer */
.footer { background: var(--navy); color: var(--white); padding: 64px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { height: 36px; width: auto; }
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-group h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; opacity: 0.7; }
.footer-group a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; padding: 6px 0; transition: color 0.2s; }
.footer-group a:hover { color: var(--clay); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 24px; }
.footer-copyright { font-size: 13px; opacity: 0.6; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
.social-links a:hover { color: var(--clay); }

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; border-bottom: 1px solid var(--mist); gap: 0; }
    .nav-links.active { display: flex; }
    .nav-links li { padding: 12px 0; }
    .mobile-menu-btn { display: block; }
    .section { padding: 64px 20px; }
    .hero { padding: 80px 20px 100px; }
    .before-after { grid-template-columns: 1fr; }
    .before-box { border-right: none; border-bottom: 1px solid var(--mist); }
    .calculator-container { padding: 24px; }
    .cta-pair { grid-template-columns: 1fr; }
    .email-form { flex-direction: column; }
    .footer-top { flex-direction: column; }
    .footer-links { gap: 32px; }
    .compare-table { font-size: 13px; }
    .compare-table th, .compare-table td { padding: 10px 8px; }
}

/* === /oops page === */
:root {
    --oops-black: #0A0A0A;
    --oops-black-soft: #141414;
    --oops-red: #9B1C2E;       /* Crimson Burgundy — pairs with Clay #C45C26 + Navy #0F1B2D */
    --oops-red-soft: #7A1623;  /* Hover state — deeper crimson */
}

/* Hero — black/red business card treatment */
.oops-hero {
    background: var(--oops-black);
    color: var(--white);
    padding: 120px 24px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.oops-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(230,57,70,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(230,57,70,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.oops-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.oops-heading-xl {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.oops-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto 40px;
}
.oops-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.oops-btn {
    display: inline-block;
    background: var(--oops-red);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 17px;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 8px 24px rgba(230,57,70,0.25);
}
.oops-btn:hover { background: var(--oops-red-soft); transform: translateY(-1px); }
.oops-microcopy {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin: 0;
}
.oops-link-secondary {
    color: rgba(255,255,255,0.6);
    text-decoration: underline;
    font-size: 14px;
}
.oops-link-secondary:hover { color: var(--white); }
.oops-link-secondary-dark {
    color: var(--stone);
    text-decoration: underline;
    font-size: 14px;
}
.oops-link-secondary-dark:hover { color: var(--navy); }

/* Math reveal stat cards */
.oops-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.oops-stat-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.oops-stat-card:hover {
    border-color: var(--oops-red);
    transform: translateY(-2px);
}
.oops-stat-icon {
    font-size: 36px;
    display: block;
    margin: 0 auto 12px;
    width: 64px;
    height: 64px;
}
img.oops-stat-icon {
    /* override the font-size when used as an <img> for SVG icons */
    width: 64px;
    height: 64px;
}
.oops-stat-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--navy);
}
.oops-stat-card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--stone);
}
.oops-red-accent { color: var(--oops-red); font-weight: 700; }

.oops-pullquote {
    max-width: 720px;
    margin: 56px auto 0;
    padding: 24px 32px;
    border-left: 4px solid var(--oops-red);
    background: var(--white);
    border-radius: 0 8px 8px 0;
}
.oops-pullquote p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--navy);
    font-style: italic;
    margin: 0;
}

/* Industry Autopsy Section — oops-industry-bleed */
.oops-industry-bleed {
    background: var(--navy);
    color: var(--white);
}
.oops-industry-bleed .section-header h2 {
    color: var(--white);
}
.oops-industry-bleed .section-header p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
}
.oops-bleed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.oops-bleed-stat {
    text-align: center;
    padding: 32px 20px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--oops-red);
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}
.oops-bleed-stat:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
}
.oops-bleed-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: var(--oops-red);
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}
/* Decimal numbers (e.g. 4.7) need optical bump to match visual weight of solid 2-digit nums */
.oops-bleed-num--decimal {
    font-size: 76px;
    letter-spacing: -0.06em;
    font-weight: 800;
}
.oops-bleed-unit {
    font-size: 30px;
    vertical-align: top;
    margin-left: 2px;
    font-weight: 600;
}
.oops-bleed-label {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.95);
    margin-bottom: 16px;
    font-weight: 500;
}
.oops-bleed-source {
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255,255,255,0.62);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}
.oops-bleed-punchline {
    text-align: center;
    max-width: 720px;
    margin: 56px auto 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--white);
    font-style: italic;
}
@media (max-width: 900px) {
    .oops-bleed-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .oops-bleed-grid { grid-template-columns: 1fr; gap: 16px; }
    .oops-bleed-num { font-size: 52px; }
}

/* High-contrast CTA panel */
.oops-cta-panel {
    background: var(--oops-black);
    color: var(--white);
    padding: 96px 24px;
}
.oops-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.oops-cta-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.oops-cta-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 48px;
}
.oops-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
}
.oops-cta-col {
    background: var(--oops-black-soft);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px;
}
.oops-cta-col h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}
.oops-cta-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}
.oops-link-light {
    color: var(--oops-red);
    text-decoration: underline;
}
.oops-link-light:hover { color: var(--white); }

/* Inline link inside light sections */
.oops-inline-link {
    color: var(--clay);
    font-weight: 600;
    text-decoration: underline;
}
.oops-inline-link:hover { color: var(--navy); }

/* Section background tone helper */
.section-off-white { background: var(--off-white); }

/* Helpers */
.text-center { text-align: center; }
.text-muted { color: var(--stone); }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* Mobile */
@media (max-width: 768px) {
    .oops-hero { padding: 80px 20px 90px; }
    .oops-stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .oops-cta-row { grid-template-columns: 1fr; gap: 16px; }
    .oops-pullquote { margin: 40px 16px 0; }
}
