:root {
    --navy: #09203d;
    --navy-mid: #0c2a4e;
    --navy-light: #10335e;
    --surface: #f6f8fb;
    --surface-warm: #f0f2f6;
    --teal: #76e9df;
    --teal-deep: #5dd4ca;
    --teal-muted: #6adbd1;
    --teal-glow: rgba(118, 233, 223, 0.08);
    --white: #ffffff;
    --off-white: #fafbfc;
    --text-hero: #09203d;
    --text-body: #3b4f6a;
    --text-light: #4a5568;
    --text-inverse: #c4d0e0;
    --text-inverse-dim: #7a90ab;
    --border-light: rgba(0, 0, 0, 0.06);
    --border-dark: rgba(255, 255, 255, 0.07);
    --border-teal: rgba(118, 233, 223, 0.2);
}

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

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 16px;
    background: var(--teal);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.2s;
    text-decoration: none;
}
.skip-link:focus {
    top: 8px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== GRAIN OVERLAY ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    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-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 3.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 28px;
    width: auto;
    transition: opacity 0.3s;
}

.nav-logo:hover img { opacity: 0.7; }

.nav-links {
    display: flex;
    gap: 2.4rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.nav-cta {
    background: var(--navy);
    color: var(--white);
    padding: 0.65rem 1.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--navy);
}

.nav-links a.nav-cta:hover {
    background: var(--teal);
    color: var(--navy);
    border-color: var(--teal);
}

/* ===== HERO ===== */
.hero {
    padding-top: 180px;
    padding-bottom: 5rem;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Subtle geometric grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(118, 233, 223, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 75% 20%, rgba(118, 233, 223, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 25% 80%, rgba(9, 32, 61, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Floating geometric accent */
.hero::after {
    content: '';
    position: absolute;
    top: 12%;
    right: -6%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(118, 233, 223, 0.08);
    border-radius: 50%;
    pointer-events: none;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 15px) rotate(3deg); }
}

.hero-content {
    max-width: 600px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--navy);
    border: 1px solid rgba(118, 233, 223, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 32px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--text-hero);
    line-height: 1.15;
    margin-bottom: 1.4rem;
    letter-spacing: -0.5px;
}

.hero h1 .accent {
    color: var(--teal);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2rem;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-dark:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-2px);
}

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

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

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===== TRUST STRIP ===== */
.trust {
    background: var(--surface);
    padding: 3.5rem 2rem;
}

.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Logo slider */
.logos-slider {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: logoScroll 35s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logos-track a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 36px;
    flex-shrink: 0;
    opacity: 0.45;
    transition: opacity 0.3s;
}

.logos-track a:hover {
    opacity: 0.85;
}

.logos-track img {
    max-height: 32px;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0);
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Legacy static row (used on solutions page etc.) */
.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
}

.logos-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
    height: 36px;
    opacity: 0.45;
}

.logos-row a:hover {
    opacity: 0.8;
}

.logos-row img {
    max-height: 28px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0);
}

.text-logo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
}

/* ===== STATS BAR ===== */
.stats {
    background: var(--navy);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(118, 233, 223, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(118, 233, 223, 0.2), transparent);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-inverse-dim);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== DARK SECTION ===== */
.dark {
    background: var(--navy);
    color: var(--white);
    padding: 9rem 2rem;
    position: relative;
    overflow: hidden;
}

.dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(118, 233, 223, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 233, 223, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.dark-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dark-header {
    text-align: center;
    margin-bottom: 5rem;
}

.dark-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.dark-header p {
    font-size: 1.05rem;
    color: var(--text-inverse-dim);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Glass cards */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 2rem 1.6rem;
    backdrop-filter: blur(16px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(118, 233, 223, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(118, 233, 223, 0.12);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.glass-card:hover::before { opacity: 1; }

.glass-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(118, 233, 223, 0.2);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1;
    transition: color 0.35s;
}

.glass-card:hover .glass-number {
    color: var(--teal);
}

.glass-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: -0.2px;
    color: var(--white);
}

.glass-card p {
    font-size: 0.85rem;
    color: var(--text-inverse-dim);
    line-height: 1.65;
}

.dark-cta-row {
    text-align: center;
    margin-top: 3.5rem;
}

.dark-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.dark-link:hover { color: var(--teal); gap: 0.8rem; }

/* ===== SOLUTIONS SECTION ===== */
.solutions {
    background: var(--white);
    padding: 3rem 2rem 5rem;
}

.solutions-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.s-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.s-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
}

/* Tab navigation */
.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
    position: relative;
}

.tabs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-light);
}

.tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 1rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.tab-btn:hover { color: var(--navy); }

.tab-btn.active {
    color: var(--navy);
    font-weight: 600;
    border-bottom-color: var(--teal-deep);
}

/* Tab panels */
.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(16px);
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
    animation: panelIn 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes panelIn {
    to { opacity: 1; transform: translateY(0); }
}

.tab-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tab-text > p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.55rem 0;
    font-size: 0.92rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-list li .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-deep);
    flex-shrink: 0;
}

.tab-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.tab-link:hover { gap: 0.8rem; color: var(--teal-deep); }

.tab-visual { display: grid; gap: 0.85rem; }

.tv-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
    transition: all 0.35s;
}

.tv-card:hover {
    border-color: var(--border-teal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transform: translateX(4px);
}

.tv-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
    letter-spacing: -0.2px;
}

.tv-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* DMP grid */
.dmp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.dmp-grid .tv-card.wide { grid-column: 1 / -1; }

/* EPG Highlight subsection within SSP tab */
.epg-highlight {
    margin-top: 1.5rem;
    padding: 1.25rem 1.4rem;
    background: var(--surface);
    border: 1px solid var(--border-teal);
    border-radius: 14px;
    border-left: 3px solid var(--teal);
}

.epg-highlight h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.2px;
}

.epg-highlight > p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.epg-highlight .features-list {
    margin-top: 0;
}

.tv-card.epg-card {
    border-color: var(--border-teal);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(118, 233, 223, 0.06) 100%);
}

.compliance-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.c-badge {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--teal-muted);
    border: 1px solid rgba(106, 219, 209, 0.2);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}

/* ===== FLYWHEEL ===== */
.flywheel {
    background: var(--navy);
    color: var(--white);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.flywheel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(118, 233, 223, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.flywheel-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.flywheel-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.flywheel-text .accent { color: var(--teal); }

.flywheel-text p {
    font-size: 1rem;
    color: var(--text-inverse-dim);
    line-height: 1.85;
}

.flywheel-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-ring {
    position: relative;
    width: 380px;
    height: 380px;
}

.fw-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.fw-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--teal);
    display: block;
}

.fw-sub {
    font-size: 0.75rem;
    color: var(--text-inverse-dim);
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
    display: block;
}

.fw-step {
    position: absolute;
    width: 140px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.fw-step span {
    display: inline-block;
    background: rgba(118, 233, 223, 0.1);
    border: 1px solid rgba(118, 233, 223, 0.2);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    transition: all 0.3s;
}

.fw-step:hover span {
    background: rgba(118, 233, 223, 0.2);
    border-color: rgba(118, 233, 223, 0.4);
    transform: scale(1.05);
}

/* Position 5 steps in a circle */
.fw-step:nth-child(2) { top: 0; left: 50%; transform: translateX(-50%); }
.fw-step:nth-child(3) { top: 18%; right: -10px; }
.fw-step:nth-child(4) { bottom: 10%; right: -10px; }
.fw-step:nth-child(5) { bottom: 10%; left: -10px; }
.fw-step:nth-child(6) { top: 18%; left: -10px; }

/* Circular connector */
.fw-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(118, 233, 223, 0.2);
    border-radius: 50%;
    animation: fwSpin 30s linear infinite;
}

@keyframes fwSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== INDEPENDENCE ===== */
.independence {
    background: var(--navy);
    color: var(--white);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.independence::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(118, 233, 223, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(118, 233, 223, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.indep-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.indep-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.indep-text h2 span {
    color: var(--teal);
}

.indep-text p {
    font-size: 1rem;
    color: var(--text-inverse-dim);
    line-height: 1.85;
    margin-bottom: 1.4rem;
}

.indep-text .hl {
    color: var(--teal);
    font-weight: 600;
}

.conflict-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.c-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.4rem;
    backdrop-filter: blur(8px);
    display: flex;
    gap: 1rem;
    transition: all 0.3s;
}

.c-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(118, 233, 223, 0.15);
    transform: translateX(4px);
}

.c-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.c-icon.bad {
    background: rgba(255, 68, 68, 0.1);
    color: #ff6b6b;
}

.c-icon.good {
    background: rgba(118, 233, 223, 0.1);
    color: var(--teal);
}

.c-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
    letter-spacing: -0.2px;
}

.c-card p {
    font-size: 0.85rem;
    color: var(--text-inverse-dim);
    line-height: 1.6;
}

/* ===== MODELS ===== */
.models {
    background: var(--white);
    padding: 6rem 2rem;
}

.models-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.models-header {
    text-align: center;
    margin-bottom: 5rem;
}

.models-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.models-header h2 .accent { color: var(--teal); }

.models-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.m-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.m-card.featured {
    border-color: var(--teal);
    background: rgba(118, 233, 223, 0.02);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(118, 233, 223, 0.12);
}

.m-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.8rem;
}

.m-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

.m-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.m-list {
    list-style: none;
    padding: 0;
}

.m-list li {
    padding: 0.7rem 0;
    font-size: 0.9rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.m-list li .check {
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== EXPLORE SOLUTIONS ===== */
.explore {
    background: var(--surface);
    padding: 6rem 2rem;
}

.explore-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.explore-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.explore-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.explore-header p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.explore-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1.8rem 1.6rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.explore-card:hover {
    border-color: var(--border-teal);
    background: rgba(118, 233, 223, 0.04);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.explore-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(118, 233, 223, 0.08);
    border: 1px solid rgba(118, 233, 223, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--teal-deep);
    transition: all 0.35s;
}

.explore-card:hover .explore-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--teal);
    transform: scale(1.05);
}

.explore-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.6rem;
    letter-spacing: -0.2px;
}

.explore-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #051829 50%, var(--navy-mid) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(118, 233, 223, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 233, 223, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(118, 233, 223, 0.3), transparent);
}

.cta-banner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-content h2 span {
    color: var(--teal);
}

.cta-content > p {
    font-size: 1.05rem;
    color: var(--text-inverse-dim);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    background: var(--teal);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(118, 233, 223, 0.3);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(118, 233, 223, 0.4);
    background: #62d5cb;
}

/* ===== CONTACT FORM ===== */
.contact {
    background: var(--white);
    padding: 6rem 2rem;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.contact-header p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.6rem;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.2rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-body);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(118, 233, 223, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.3px;
    width: 100%;
}

.form-submit:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(118, 233, 223, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    color: var(--text-inverse);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo-img {
    height: 24px;
    width: auto;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-inverse-dim);
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: block;
    color: var(--text-inverse-dim);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--teal); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-inverse-dim);
}

.footer-bottom a {
    color: var(--text-inverse-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--teal); }

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-social-link svg {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.footer-social-link:hover svg {
    opacity: 1;
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--text-inverse);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 10000;
    border-top: 1px solid rgba(118, 233, 223, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-inverse-dim);
    max-width: 700px;
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cookie-accept {
    background: var(--teal);
    color: var(--navy);
}

.cookie-accept:hover {
    background: #62d5cb;
}

.cookie-decline {
    background: transparent;
    color: var(--text-inverse-dim);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .glass-grid { grid-template-columns: repeat(2, 1fr); }
    .indep-grid { grid-template-columns: 1fr; gap: 3rem; }
    .models-grid { grid-template-columns: 1fr; }
    .explore-grid { grid-template-columns: repeat(2, 1fr); }
    .tab-panel.active { grid-template-columns: 1fr; gap: 3rem; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .flywheel-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
}

@media (max-width: 768px) {
    .cookie-banner { flex-direction: column; text-align: center; padding: 1.5rem; }

    nav { padding: 0 1.5rem; }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a::after { display: none; }

    .nav-links a.nav-cta {
        margin-top: 1rem;
        text-align: center;
        display: block;
    }

    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .hero { padding-top: 140px; padding-bottom: 3rem; }
    .fw-ring { width: 320px; height: 320px; }
    .fw-step { width: 120px; font-size: 0.72rem; }
    .logos-row { gap: 1rem 1.2rem; justify-content: center; }
    .logos-row img { max-height: 22px; max-width: 90px; }
    .logos-row a { height: 28px; }
    .explore-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .glass-grid { grid-template-columns: 1fr; }
    .tabs { flex-wrap: wrap; gap: 0; }
    .tab-btn { flex: 1; min-width: 120px; padding: 0.8rem 1rem; font-size: 0.8rem; }
}

/* ===== ACTIVE NAV LINK ===== */
.nav-links a[aria-current="page"] {
    color: var(--navy);
    font-weight: 600;
}
.nav-links a[aria-current="page"]::after {
    width: 100%;
}

/* ===== BLOG LISTING PAGE ===== */
.blog-hero {
    padding-top: 140px;
    padding-bottom: 3rem;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(118, 233, 223, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, rgba(118, 233, 223, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.blog-hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.blog-hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.blog-hero-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-listing {
    background: var(--surface);
    padding: 4rem 2rem 6rem;
}

.blog-listing-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1.8rem 1.6rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--border-teal);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.blog-card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal-deep);
    background: rgba(118, 233, 223, 0.1);
    border: 1px solid rgba(118, 233, 223, 0.2);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.blog-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--teal-deep);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.2rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-top: auto;
}

.blog-card-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-light);
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-listing {
        padding: 2rem 1.5rem 4rem;
    }
}

/* ===== BLOG ARTICLE PAGES ===== */
.article-hero {
    padding-top: 160px;
    padding-bottom: 3rem;
    background: var(--white);
    text-align: center;
    position: relative;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(118, 233, 223, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 30%, rgba(118, 233, 223, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.article-hero .container,
.article-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.article-category {
    display: inline-block;
    background: rgba(118, 233, 223, 0.12);
    color: var(--navy);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.article-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 400;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-meta .meta-dot,
.article-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-light);
    opacity: 0.4;
}

.article-content {
    padding: 3rem 2rem 4rem;
}

.article-content-inner {
    max-width: 720px;
    margin: 0 auto;
}

.article-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.4rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.4rem;
    padding-left: 1.5rem;
}

.article-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    border-left: 3px solid var(--teal);
    margin: 2rem 0;
    padding: 1.2rem 1.5rem;
    background: var(--surface);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--navy);
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-content strong {
    color: var(--navy);
    font-weight: 600;
}

.article-cta {
    background: var(--navy);
    padding: 4rem 2rem;
    text-align: center;
}

.article-cta .container,
.article-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.article-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.article-cta p {
    color: var(--text-inverse);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.article-cta .btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.article-cta .btn-teal {
    background: var(--teal);
    color: var(--navy);
}

.article-cta .btn-teal:hover {
    background: var(--teal-deep);
}

.article-back {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.article-back a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.article-back a:hover {
    color: var(--navy);
}

@media (max-width: 768px) {
    .article-hero { padding-top: 120px; }
    .article-meta { flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
    .article-content { padding: 2rem 1.5rem 3rem; }
    .article-cta { padding: 3rem 1.5rem; }
}

/* ===== ARTICLE HERO BANNERS ===== */
.article-hero-banner {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    margin-bottom: -1px;
}

.article-hero-banner svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Category color schemes */
.article-hero-banner--industry {
    background: linear-gradient(135deg, #09203d 0%, #1a3a5c 40%, #2a5a8c 100%);
}

.article-hero-banner--strategy {
    background: linear-gradient(135deg, #0d3d4d 0%, #09203d 50%, #1a3a5c 100%);
}

.article-hero-banner--technology {
    background: linear-gradient(135deg, #0a2e3d 0%, #144d5c 50%, #1a6b6b 100%);
}

.article-hero-banner--guide {
    background: linear-gradient(135deg, #09203d 0%, #0d3d4d 60%, #1a6b6b 100%);
}

@media (max-width: 768px) {
    .article-hero-banner {
        height: 160px;
    }
}

/* ===== BLOG CARD CATEGORY STRIPS ===== */
.blog-card {
    overflow: hidden;
    position: relative;
}

.blog-card-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 14px 14px 0 0;
}

.blog-card-strip--industry {
    background: linear-gradient(90deg, #09203d, #2a5a8c);
}

.blog-card-strip--strategy {
    background: linear-gradient(90deg, #0d3d4d, #1a3a5c);
}

.blog-card-strip--technology {
    background: linear-gradient(90deg, #0a2e3d, #1a6b6b);
}

.blog-card-strip--guide {
    background: linear-gradient(90deg, #09203d, #1a6b6b);
}

/* ===== HERO DASHBOARD VISUAL ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dash-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    animation: dashFloat 6s ease-in-out infinite;
}

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

.dash-frame {
    background: linear-gradient(145deg, rgba(9, 32, 61, 0.97), rgba(12, 42, 78, 0.95));
    border: 1px solid rgba(118, 233, 223, 0.15);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(9, 32, 61, 0.25),
        0 1px 0 rgba(118, 233, 223, 0.1) inset;
    backdrop-filter: blur(20px);
}

.dash-topbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid rgba(118, 233, 223, 0.08);
    background: rgba(0, 0, 0, 0.15);
}

.dash-dots {
    display: flex;
    gap: 5px;
}

.dash-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(118, 233, 223, 0.2);
}

.dash-dots span:first-child { background: rgba(255, 95, 87, 0.6); }
.dash-dots span:nth-child(2) { background: rgba(255, 189, 46, 0.6); }
.dash-dots span:nth-child(3) { background: rgba(39, 201, 63, 0.6); }

.dash-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(196, 208, 224, 0.7);
    letter-spacing: 0.5px;
}

/* Metric cards */
.dash-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    padding: 1rem 1.2rem;
}

.dash-metric-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(118, 233, 223, 0.08);
    border-radius: 10px;
    padding: 0.75rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: border-color 0.3s;
}

.dash-metric-card:hover {
    border-color: rgba(118, 233, 223, 0.25);
}

.dash-metric-label {
    font-size: 0.6rem;
    color: rgba(196, 208, 224, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.dash-metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.dash-metric-trend {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dash-metric-trend.up {
    color: var(--teal);
}

/* Curation card accent */
.dash-metric-curation {
    border-color: rgba(118, 233, 223, 0.18);
    background: rgba(118, 233, 223, 0.06);
}

.dash-metric-trend.curated {
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.curated-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    display: inline-block;
    animation: curatePulse 2s ease-in-out infinite;
}

@keyframes curatePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(118, 233, 223, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(118, 233, 223, 0); }
}

/* Chart area */
.dash-chart-area {
    padding: 0.8rem 1.2rem 1rem;
    border-top: 1px solid rgba(118, 233, 223, 0.05);
}

.dash-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.dash-chart-title {
    font-size: 0.7rem;
    color: rgba(196, 208, 224, 0.6);
    font-weight: 500;
}

.dash-chart-badge {
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(118, 233, 223, 0.1);
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 90px;
    padding-bottom: 18px;
    position: relative;
}

.dash-bars::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(118, 233, 223, 0.08);
}

.dash-bar {
    flex: 1;
    height: var(--bar-h);
    background: linear-gradient(180deg, var(--teal), var(--teal-deep));
    border-radius: 4px 4px 0 0;
    position: relative;
    opacity: 0.85;
    transition: opacity 0.3s;
    animation: barGrow 1s ease-out both;
}

.dash-bar:nth-child(1) { animation-delay: 0.1s; }
.dash-bar:nth-child(2) { animation-delay: 0.2s; }
.dash-bar:nth-child(3) { animation-delay: 0.3s; }
.dash-bar:nth-child(4) { animation-delay: 0.4s; }
.dash-bar:nth-child(5) { animation-delay: 0.5s; }
.dash-bar:nth-child(6) { animation-delay: 0.6s; }
.dash-bar:nth-child(7) { animation-delay: 0.7s; }

@keyframes barGrow {
    from { height: 0; opacity: 0; }
    to { height: var(--bar-h); opacity: 0.85; }
}

.dash-bar:hover {
    opacity: 1;
}

.dash-bar span {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: rgba(196, 208, 224, 0.35);
    font-weight: 500;
}

/* Bottom row with ring charts */
.dash-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem 1.2rem;
    border-top: 1px solid rgba(118, 233, 223, 0.05);
}

.dash-mini-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(118, 233, 223, 0.06);
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
}

.dash-mini-ring {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.dash-mini-ring svg {
    width: 100%;
    height: 100%;
}

.dash-mini-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.dash-mini-label {
    font-size: 0.58rem;
    color: rgba(196, 208, 224, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Floating accent badges */
.dash-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(9, 32, 61, 0.92);
    border: 1px solid rgba(118, 233, 223, 0.2);
    backdrop-filter: blur(12px);
    padding: 0.5rem 0.9rem;
    border-radius: 24px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--teal);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(9, 32, 61, 0.3);
}

.dash-float-icon {
    font-size: 0.5rem;
}

.dash-float-1 {
    top: -8px;
    right: -16px;
    animation: floatBadge1 5s ease-in-out infinite;
}

.dash-float-2 {
    bottom: 20px;
    left: -24px;
    animation: floatBadge2 6s ease-in-out infinite;
}

.dash-float-3 {
    bottom: -10px;
    right: -10px;
    animation: floatBadge3 5.5s ease-in-out infinite;
}

.dash-float-pulse {
    animation: curatePulse 2s ease-in-out infinite;
}

@keyframes floatBadge3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(4px, 6px); }
}

@keyframes floatBadge1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(6px, -8px); }
}

@keyframes floatBadge2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-6px, 6px); }
}

/* Staggered reveal for dashboard */
.hero-visual.visible .dash-frame {
    animation: dashReveal 0.8s ease-out both;
}

.hero-visual.visible .dash-float-1 {
    animation: floatBadge1 5s ease-in-out infinite, dashFadeIn 0.6s ease-out 0.4s both;
}

.hero-visual.visible .dash-float-2 {
    animation: floatBadge2 6s ease-in-out infinite, dashFadeIn 0.6s ease-out 0.6s both;
}

.hero-visual.visible .dash-float-3 {
    animation: floatBadge3 5.5s ease-in-out infinite, dashFadeIn 0.6s ease-out 0.8s both;
}

@keyframes dashReveal {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dashFadeIn {
    from { opacity: 0; transform: translateY(10px) scale(0.9); }
    to { opacity: 1; }
}

/* ===== HERO SPLIT RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .dash-wrapper {
        max-width: 440px;
    }
    .dash-float-1 {
        right: 0;
    }
    .dash-float-2 {
        left: 0;
    }
    .dash-float-3 {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-split {
        padding: 0 1.2rem;
        gap: 2rem;
    }
    .dash-wrapper {
        max-width: 360px;
    }
    .dash-metric-value {
        font-size: 1rem;
    }
    .dash-bars {
        height: 65px;
    }
    .dash-float-badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.7rem;
    }
    .dash-float-1 {
        right: 4px;
        top: -6px;
    }
    .dash-float-2 {
        left: 4px;
        bottom: 14px;
    }
    .dash-float-3 {
        right: 4px;
        bottom: -6px;
    }
}

@media (max-width: 480px) {
    .dash-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }
    .dash-metric-card {
        padding: 0.5rem 0.4rem;
    }
    .dash-metric-value {
        font-size: 0.9rem;
    }
    .dash-float-badge {
        display: none;
    }
    .logos-row { gap: 0.8rem 1rem; }
    .logos-row img { max-height: 18px; max-width: 72px; }
    .logos-row a { height: 24px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
