/* ========== HERO ========== */
.hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 70% 40%, rgba(11,95,165,0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(46,174,109,0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 90% 90%, rgba(14,165,161,0.15) 0%, transparent 50%);
}
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}
.hero .container { position: relative; z-index: 2; }
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px 6px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}
.hero-eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green-light);
    animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-eyebrow span {
    background: var(--green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero h1 em {
    font-style: italic;
    color: var(--green-light);
}
.hero-sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; }
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-hero-primary:hover { background: var(--green-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,174,109,0.3); }
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.hero-metric {
    padding: 24px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    text-align: center;
}
.hero-metric h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-metric h3 span { color: var(--green-light); }
.hero-metric p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Hero right - bento cards */
.hero-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 14px;
}
.bento-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 24px;
    transition: all 0.35s;
}
.bento-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.bento-wide { grid-column: span 2; display: flex; align-items: center; gap: 16px; }
.bento-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.bento-wide .bento-icon { margin-bottom: 0; flex-shrink: 0; }
.bento-icon.blue { background: rgba(11,95,165,0.2); color: var(--blue-light); }
.bento-icon.green { background: rgba(46,174,109,0.2); color: var(--green-light); }
.bento-icon.teal { background: rgba(14,165,161,0.2); color: var(--teal); }
.bento-card h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.bento-card p {
    color: rgba(255,255,255,0.45);
    font-size: 0.84rem;
    line-height: 1.6;
}
.bento-featured {
    background: linear-gradient(135deg, rgba(11,95,165,0.15), rgba(46,174,109,0.1));
    border-color: rgba(46,174,109,0.15);
}
.bento-featured .bento-stat {
    font-family: 'Instrument Serif', serif;
    font-size: 3rem;
    color: var(--green-light);
    line-height: 1;
}
.bento-featured .bento-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    margin-top: 4px;
}
.bento-img {
    padding: 0;
    overflow: hidden;
    max-height: 180px;
}
.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

/* ========== MARQUEE ========== */
.marquee-strip {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
}
.marquee-inner {
    display: flex;
    gap: 48px;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.marquee-item .dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}