/* ============================================================
   Washington Broadcast Center – BMG Landing Page Styles
   LIGHT THEME — White/Gray base, BMG Blue + Red accents
   ============================================================ */

:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent-color: #c61010;
    --text-color: #111111;
    --text-body: #374151;
    --text-muted: #6b7280;
    --bg-color: #ffffff;
    --bg-alt: #fafafa;
    --bg-section: #ededed;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ── Layout ── */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 100px 0;
}

/* ── Typography Utilities ── */
.gradient-text {
    background: linear-gradient(100deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(236, 19, 19, 0.25);
    border-radius: 100px;
    background: rgba(236, 19, 19, 0.05);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-color) !important;
    border: 2px solid var(--accent-color) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 8px;
}

/* ── Header ── */
.header {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8ecf4;
    box-shadow: 0 2px 12px rgba(37, 58, 117, 0.06);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 38px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a {
    padding: 8px 14px;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-body);
    border-radius: 6px;
}

.nav a:hover {
    color: var(--secondary-color);
    background: rgba(37, 58, 117, 0.06);
}

.nav a.btn-primary {
    margin-left: 8px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Hero ── */
.hero {
    background: linear-gradient(160deg, #ededed 0%, #ffffff 60%);
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e8ecf4;
}

.hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 58, 117, 0.08), transparent 65%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 19, 19, 0.05), transparent 65%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(236, 19, 19, 0.07);
    border: 1px solid rgba(236, 19, 19, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    color: #0d1117;
}

.hero-subhead {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.hero-subhead strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-qualifier {
    display: block;
    max-width: 680px;
    margin: 0 auto 40px;
    background: rgba(37, 58, 117, 0.06);
    border: 1px solid rgba(37, 58, 117, 0.2);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    padding: 20px 24px;
    text-align: left;
}

.hero-qualifier p {
    font-size: 1rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.7;
}

.hero-qualifier p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.video-wrapper {
    max-width: 960px;
    margin: 0 auto;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(37, 58, 117, 0.18), 0 0 0 1px rgba(37, 58, 117, 0.1);
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 100%;
}

.video-placeholder iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Ecosystem Section ── */
.ecosystem-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.ecosystem-highlight {
    max-width: 800px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, rgba(37, 58, 117, 0.06), rgba(37, 58, 117, 0.02));
    border: 1px solid rgba(37, 58, 117, 0.15);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.highlight-badge {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ecosystem-highlight p {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
}

.ecosystem-highlight strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Facility photo strip */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.photo-strip-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--card-border);
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.photo-strip-item:hover img {
    transform: scale(1.04);
}

.no-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.no-more-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 22px 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.no-more-item:hover {
    border-color: rgba(236, 19, 19, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.no-more-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 800;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 19, 19, 0.08);
    border-radius: 50%;
}

.no-more-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.ecosystem-close {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.ecosystem-close strong {
    color: var(--secondary-color);
}

/* ── REMI Section ── */
.remi-section {
    background-color: var(--bg-color);
    position: relative;
}

/* Full-width photo banner inside REMI */
.remi-photo-banner {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
}

.remi-photo-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.remi-layout {
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.remi-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
}

.remi-intro {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 20px;
}

.remi-sub {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
}

.remi-sub strong {
    color: var(--secondary-color);
}

.remi-supports h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-alt);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 14px 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.support-list li:hover {
    border-color: rgba(37, 58, 117, 0.3);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.support-icon {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 58, 117, 0.08);
    border-radius: 8px;
    flex-shrink: 0;
}

.support-list li span {
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text-color);
}

/* ── Who Section ── */
.who-section {
    background-color: var(--bg-section);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.who-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.who-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    box-shadow: 0 16px 40px rgba(37, 58, 117, 0.14);
}

.who-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 58, 117, 0.08);
    border-radius: 10px;
}

.who-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.who-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.who-close-statement {
    text-align: center;
    background: linear-gradient(135deg, rgba(117, 117, 117, 0.05), rgba(236, 19, 19, 0.04));
    border: 1px solid rgba(37, 58, 117, 0.12);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.who-close-statement p {
    font-size: 1.25rem;
    color: var(--text-body);
    line-height: 1.7;
    font-style: italic;
}

.who-close-statement strong {
    color: var(--secondary-color);
    font-style: normal;
}

/* ── Conversion / Contact Section ── */
.conversion-section {
    background-color: var(--bg-color);
}

.conversion-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.conversion-copy h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 36px;
    color: var(--text-color);
}

.conversion-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.conversion-trust li {
    font-size: 0.97rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-alt);
    border-radius: 8px;
    border: 1px solid var(--card-border);
    font-weight: 500;
}

.conversion-trust li::first-letter {
    color: #4ade80;
    font-weight: 700;
}

.conversion-image {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--card-border);
}

.conversion-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.conversion-image:hover img {
    transform: scale(1.03);
}

.form-card {
    background: var(--bg-alt);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-color);
}

/* ── HubSpot Form Overrides (light mode) ── */
.hs-form-frame,
.hs-form {
    color: var(--text-color) !important;
}

.hs-form label {
    color: var(--text-body) !important;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px !important;
}

.hs-form .hs-input {
    background-color: #ffffff !important;
    border: 1px solid #d1d5db !important;
    color: var(--text-color) !important;
    padding: 11px 14px !important;
    border-radius: 6px !important;
    width: 100% !important;
    font-size: 14px !important;
}

.hs-form .hs-input:focus {
    border-color: var(--secondary-color) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(37, 58, 117, 0.12) !important;
}

.hs-form .hs-button {
    background-color: var(--accent-color) !important;
    color: #fff !important;
    border: none !important;
    padding: 13px 28px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    margin-top: 12px !important;
    transition: all 0.3s !important;
    width: 100% !important;
}

.hs-form .hs-button:hover {
    background-color: #d01010 !important;
    transform: translateY(-2px) !important;
}

/* ── Footer ── */
.footer {
    background-color: #0d1117;
    color: #ccc;
    padding: 60px 0 24px;
    border-top: 1px solid #1f2937;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1f2937;
    margin-bottom: 24px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #888;
}

.footer-brand .locations {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-top: 10px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: #888;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.45;
}

/* ── Animations ── */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.7s forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.25s;
}

.delay-3 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.55s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {

    .remi-layout,
    .conversion-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .no-more-grid {
        grid-template-columns: 1fr;
    }

    .photo-strip {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .header .container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-top: 12px;
        border-top: 1px solid var(--card-border);
    }

    .nav.open {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .photo-strip {
        grid-template-columns: 1fr;
    }

    .remi-photo-banner img {
        height: 260px;
    }
}