/* ═══════════════════════════════════════════════════════════════
   OnePolaris — Website Design System
   Dark-themed, premium feel. Built on CVE360 Design System tokens.
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&display=swap');

/* ── Design Tokens ── */
:root {
    /* Brand */
    --navy:        #1E3A5F;
    --navy-dark:   #152A45;
    --navy-hover:  #6B85B3;

    /* Accent */
    --accent:      #4472C4;
    --accent-light:#5A8AD4;
    --accent-glow: rgba(68, 114, 196, 0.15);

    /* Semantic */
    --teal:        #7A9B76;
    --teal-glow:   rgba(122, 155, 118, 0.15);
    --gold:        #D4A043;
    --gold-glow:   rgba(212, 160, 67, 0.15);
    --danger:      #C9736B;
    --danger-glow: rgba(201, 115, 107, 0.15);
    --purple:      #8E7CC3;
    --purple-glow: rgba(142, 124, 195, 0.15);

    /* Dark backgrounds */
    --bg-deep:     #080c16;
    --bg-primary:  #0c1220;
    --bg-surface:  #111a2e;
    --bg-card:     #15203a;
    --bg-card-hover:#1a2744;
    --border:      rgba(255, 255, 255, 0.06);
    --border-light:rgba(255, 255, 255, 0.10);

    /* Text */
    --text-primary:  rgba(255, 255, 255, 0.92);
    --text-secondary:rgba(255, 255, 255, 0.60);
    --text-muted:    rgba(255, 255, 255, 0.40);

    /* Typography */
    --font-display: 'Source Serif 4', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);

    /* Layout */
    --nav-height: 60px;
    --section-max: 1100px;
    --section-pad: 120px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-deep);
    overflow-x: hidden;
}

a { color: var(--accent-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }

img { max-width: 100%; display: block; }

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(8, 12, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
    background: rgba(8, 12, 22, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { height: 28px; opacity: 0.9; }

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

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8, 12, 22, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu ul { list-style: none; }

.mobile-menu li { margin-bottom: 8px; }

.mobile-menu a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.mobile-menu a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(68, 114, 196, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(142, 124, 195, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 70% 50% at 50% 20%, rgba(122, 155, 118, 0.06) 0%, transparent 70%);
}

.hero-grid {
    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: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

.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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 0 32px;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    background: var(--accent-glow);
    border: 1px solid rgba(68, 114, 196, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-accent {
    background: linear-gradient(135deg, var(--accent-light), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    background: var(--accent);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(68, 114, 196, 0.3);
}

.btn-lg { padding: 16px 36px; font-size: 15px; }

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8) !important;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all 0.25s;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.10);
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-arrow { font-size: 16px; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.scroll-text {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 1px;
    height: 16px;
    background: var(--accent-light);
    position: absolute;
    top: -16px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { top: -16px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 40px; opacity: 0; }
}

/* ══════════════════════════════════════
   SECTIONS (Generic)
   ══════════════════════════════════════ */
.home-section {
    padding: var(--section-pad) 32px;
    position: relative;
}

.home-section.alt-bg {
    background: var(--bg-primary);
}

.home-section-inner {
    max-width: var(--section-max);
    margin: 0 auto;
}

.home-section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.home-section-title {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.home-section-sub {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 48px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-light), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section link */
.section-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light) !important;
    transition: all 0.2s;
}

.section-link:hover {
    color: #fff !important;
    gap: 4px;
}

/* ══════════════════════════════════════
   CARD GRIDS
   ══════════════════════════════════════ */

/* Problem / Principle cards (3-col) */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.principle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: all 0.3s;
}

.principle-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.principle-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.principle-icon.icon-blue { background: var(--accent-glow); color: var(--accent-light); }
.principle-icon.icon-teal { background: var(--teal-glow); color: var(--teal); }
.principle-icon.icon-gold { background: var(--gold-glow); color: var(--gold); }

.principle-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.principle-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* Panel quote (callout) */
.panel-quote {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding: 28px 0;
    border-top-width: 3px;
    border-top-style: solid;
}

.panel-quote strong {
    color: rgba(255,255,255,0.82);
}

/* ══════════════════════════════════════
   COMPARISON GRID (Insight Section)
   ══════════════════════════════════════ */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.comparison-card {
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--border);
}

.comparison-before {
    background: linear-gradient(135deg, rgba(201, 115, 107, 0.06), var(--bg-card));
    border-color: rgba(201, 115, 107, 0.15);
}

.comparison-after {
    background: linear-gradient(135deg, rgba(122, 155, 118, 0.06), var(--bg-card));
    border-color: rgba(122, 155, 118, 0.15);
}

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 50px;
}

.comparison-before .comparison-badge {
    color: var(--danger);
    background: var(--danger-glow);
}

.comparison-after .comparison-badge {
    color: var(--teal);
    background: var(--teal-glow);
}

.comparison-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.comparison-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ══════════════════════════════════════
   PILLAR CARDS (Breakthrough Section)
   ══════════════════════════════════════ */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px;
    overflow: hidden;
    transition: all 0.3s;
}

.pillar-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pillar-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    transition: opacity 0.3s;
}

.pillar-card:hover .pillar-glow { opacity: 0.6; }

.glow-blue { background: var(--accent); }
.glow-teal { background: var(--teal); }
.glow-gold { background: var(--gold); }

.pillar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    color: var(--accent-light);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.pillar-tag {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.pillar-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pillar-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.pillar-card p em {
    color: rgba(255,255,255,0.75);
    font-style: italic;
}

/* ══════════════════════════════════════
   TANGLED MESS DIAGRAM
   ══════════════════════════════════════ */
.mess-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 48px;
}

.mess-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mess-column.left { align-items: flex-end; text-align: right; }
.mess-column.right { align-items: flex-start; text-align: left; }

.mess-item {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: all 0.3s;
}

.mess-item:hover {
    color: var(--text-primary);
    border-color: var(--border-light);
}

.mess-column.left .mess-item { border-right: 2px solid var(--accent); }
.mess-column.right .mess-item { border-left: 2px solid var(--teal); }

.mess-center {
    width: 120px;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mess-tangle {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background:
        repeating-linear-gradient(45deg, var(--danger) 0px, transparent 1px, transparent 8px),
        repeating-linear-gradient(-30deg, var(--gold) 0px, transparent 1px, transparent 12px),
        repeating-linear-gradient(60deg, var(--accent) 0px, transparent 1px, transparent 10px),
        repeating-linear-gradient(-55deg, var(--purple) 0px, transparent 1px, transparent 14px);
}

.mess-label {
    position: relative;
    z-index: 1;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--danger);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.mess-header {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.mess-column.left .mess-header { text-align: right; }
.mess-column.right .mess-header { text-align: left; }

/* ══════════════════════════════════════
   VALUE TRAJECTORY (Insight Section)
   ══════════════════════════════════════ */
.value-trajectory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.trajectory-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.trajectory-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}

.trajectory-card:nth-child(1)::before { background: var(--accent); }
.trajectory-card:nth-child(2)::before { background: var(--teal); }
.trajectory-card:nth-child(3)::before { background: var(--gold); }

.trajectory-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trajectory-multiplier {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.trajectory-card:nth-child(1) .trajectory-multiplier { color: var(--accent-light); }
.trajectory-card:nth-child(2) .trajectory-multiplier { color: var(--teal); }
.trajectory-card:nth-child(3) .trajectory-multiplier { color: var(--gold); }

.trajectory-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
}

.trajectory-sublabel {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ══════════════════════════════════════
   iCLV PROPERTIES GRID
   ══════════════════════════════════════ */
.iclv-props {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 36px 0;
}

.iclv-prop {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
}

.iclv-prop:hover {
    border-color: rgba(68, 114, 196, 0.3);
    transform: translateY(-2px);
}

.iclv-prop-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent-light);
}

.iclv-prop h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ══════════════════════════════════════
   TRANSFORMATION VISUAL
   ══════════════════════════════════════ */
.transform-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin: 48px 0;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.transform-side h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.transform-side.before h4 { color: var(--danger); }
.transform-side.after h4 { color: var(--teal); }

.transform-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.transform-item {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 5px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
}

.transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.transform-orb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-light), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(68, 114, 196, 0.3);
    animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(68, 114, 196, 0.2); }
    50% { box-shadow: 0 0 60px rgba(68, 114, 196, 0.4); }
}

.transform-orb-label {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

.transform-caption {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-light);
}

/* ══════════════════════════════════════
   STATS GRID (Results)
   ══════════════════════════════════════ */
.stats-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.stat-context {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.stat-bar {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    margin: 12px 0;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 2px;
    width: 0;
    transition: width 1.5s ease-out;
}

.stat-bar-fill.bar-blue { background: var(--accent); --bar-width: 60%; }
.stat-bar-fill.bar-teal { background: var(--teal); --bar-width: 80%; }
.stat-bar-fill.bar-gold { background: var(--gold); --bar-width: 68%; }
.stat-bar-fill.bar-purple { background: var(--purple); --bar-width: 90%; }

.stat-label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Results lever labels */
.results-levers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.lever-header {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.lever-header.acquisition { color: var(--accent-light); border-bottom: 2px solid var(--accent); }
.lever-header.development { color: var(--teal); border-bottom: 2px solid var(--teal); }
.lever-header.retention { color: var(--gold); border-bottom: 2px solid var(--gold); }

/* ══════════════════════════════════════
   INDUSTRY GRID
   ══════════════════════════════════════ */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.industry-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.3s;
    color: inherit !important;
    text-decoration: none !important;
}

.industry-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.industry-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.ic-blue { background: var(--accent-glow); color: var(--accent-light); }
.ic-teal { background: var(--teal-glow); color: var(--teal); }
.ic-gold { background: var(--gold-glow); color: var(--gold); }
.ic-purple { background: var(--purple-glow); color: var(--purple); }

.industry-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.industry-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ══════════════════════════════════════
   INSIGHTS GRID
   ══════════════════════════════════════ */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.insight-featured {
    grid-column: 1;
    grid-row: 1;
    border-color: rgba(68, 114, 196, 0.2);
    background: linear-gradient(135deg, rgba(68, 114, 196, 0.06), var(--bg-card));
}

.insight-tag {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.insight-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.35;
}

.insight-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    flex-grow: 1;
}

.insight-meta {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
    margin-top: 16px;
}

/* ══════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════ */
.contact-section {
    position: relative;
    padding: var(--section-pad) 32px;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(68, 114, 196, 0.08) 0%, transparent 70%);
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 36px;
}

.contact-header h2 {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-header p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 28px;
}

.contact-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    color: var(--accent-light);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

.contact-detail { text-align: left; }

.contact-detail h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-detail a {
    font-size: 13px;
    color: var(--accent-light);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer-expanded {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 64px 32px 32px;
}

.footer-top {
    max-width: var(--section-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 24px;
    opacity: 0.7;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 8px; }

.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: var(--section-max);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a {
    font-size: 13px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════
   FADE-IN ANIMATIONS
   ══════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
    :root {
        --section-pad: 80px;
    }

    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .principles-grid,
    .pillars-grid,
    .industry-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .value-trajectory {
        grid-template-columns: 1fr;
    }

    .iclv-props {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .results-levers {
        grid-template-columns: 1fr;
    }

    .transform-visual {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px;
    }

    .transform-side.before, .transform-side.after { text-align: center; }
    .transform-items { align-items: center; }

    .mess-diagram {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mess-column.left, .mess-column.right {
        align-items: center;
        text-align: center;
    }

    .mess-column.left .mess-item { border-right: none; border-bottom: 2px solid var(--accent); }
    .mess-column.right .mess-item { border-left: none; border-bottom: 2px solid var(--teal); }

    .mess-center {
        height: 60px;
        width: 100%;
    }

    .mess-label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    :root {
        --section-pad: 60px;
    }

    .hero-headline { font-size: 32px; }

    .iclv-props { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: 1fr !important; }

    .principles-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; }
}
