:root {
    --bg-base: #FAFAF5;
    --bg-surface: #F0EFE8;
    --text-primary: #141413;
    --text-secondary: #838383;
    --border-color: #E0DFDA;
    --accent: #E7EC00;
    --accent-dark: #D4D900;
    --font-serif: 'DM Serif Display', serif;
    --font-sans: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--accent);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    --radius: 150%;
    --cx: 50%;
    --cy: 50%;
    clip-path: circle(var(--radius) at var(--cx) var(--cy));
    -webkit-clip-path: circle(var(--radius) at var(--cx) var(--cy));
}

.preloader-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preloader-icon {
    height: 200px;
    width: auto;
    position: relative;
    transform-origin: center center;
}

.preloader-icon.mirrored {
    transform: scaleX(-1);
    margin-left: -2px;
}

/* Scroll Indicator */
.scroll-indicator-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-surface);
    z-index: 1000;
}
.scroll-indicator {
    height: 100%;
    background: var(--accent);
    width: 0%;
}

/* Typography Scale */
h1, .hero-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
}

p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    border-bottom: none;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
}

.section:last-child::after {
    display: none;
}

/* Navigation */
.nav {
    position: fixed;
    top: 4px;
    left: 0;
    width: 100%;
    padding: 8px 0;
    z-index: 100;
    background: rgba(250, 250, 245, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.nav.scrolled {
    border-color: var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.logo-container {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    flex: 0 0 auto;
    min-width: 0;
    padding-left: 20px;
    max-width: 50%;
}

.logo-link {
    display: inline-flex;
    align-items: flex-start;
    text-decoration: none;
    position: relative;
    height: 36px;
    gap: 8px;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    line-height: 1;
    position: absolute;
    bottom: -1px;
    left: 44px;
    white-space: nowrap;
}

.nav-favicon {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}

.logo {
    height: 15px;
    max-width: calc(100vw - 160px);
    width: auto;
    position: absolute;
    top: calc(42% - 3px);
    left: 44px;
    transform: translateY(-50%);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding-left: 10%;
    margin-right: 24px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    background: var(--accent-dark);
}

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

/* CTA Buttons */
.cta-button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-cta {
    color: var(--text-primary);
    background: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: 4px;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.primary-cta {
    background: var(--accent);
    color: var(--text-primary);
    padding: 16px 36px;
    font-size: 15px;
    border-radius: 5px;
    margin-top: 24px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(231, 236, 0, 0.22), 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.primary-cta:hover {
    box-shadow: 0 10px 36px rgba(231, 236, 0, 0.38), 0 4px 12px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(200,205,0,0.35);
    transform: translateY(-2px);
    background: #ECEE20;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 102;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-base);
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

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

.nav-mobile-link {
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.2s ease;
    letter-spacing: -0.02em;
}

.nav-mobile-link:hover {
    color: var(--text-secondary);
}

.nav-mobile-link.active {
    color: var(--accent-dark);
}

/* Section Labels */
.section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
}

.section-label.center {
    justify-content: center;
}

.creative-line {
    height: 2px;
    background: var(--accent);
    width: 0px;
    margin-left: 16px;
    flex-grow: 1;
    max-width: 60px;
}

.creative-line.left-line {
    margin-left: 0;
    margin-right: 16px;
}

/* ══════════════════════════════════════════════════════════
   SECTION TRANSITIONS
   ══════════════════════════════════════════════════════════ */

.section-transition {
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    padding: 24px 20px 12px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */

.hero {
    padding-top: 80px;
    padding-bottom: 0;
    min-height: auto;
    position: relative;
    overflow: hidden;
    background: var(--bg-base);
    flex-direction: column;
    align-items: stretch;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.hero-content {
    flex: 0 0 44%;
    max-width: 480px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    line-height: 1.08;
}

.hero-title-accent {
    color: var(--text-primary);
    font-style: italic;
}

.hero-sub {
    font-size: 18px;
    color: #4a4a44;
    max-width: 460px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-subtext {
    font-size: 14px;
    color: #6a655e;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-top: 0;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-cta-row .primary-cta {
    margin-top: 0;
}

/* Hero Visual Column */
.hero-visual-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-hook {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0;
}

.hook-accent {
    color: var(--accent-dark);
    font-style: italic;
}

/* Hero Visual Surface */
.hero-visual {
    position: relative;
    height: 497px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 28px 80px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.04);
    background: #EDEAE3;
    overflow: hidden;
}

.ops-surface {
    position: absolute;
    inset: 0;
}

/* Noise texture overlay — REMOVED for cleaner render + performance */

/* ─── WHEEL ─── */
#wheel-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

#wheel-container svg {
    width: 96%;
    height: 92%;
    max-width: 520px;
    max-height: 500px;
}

.wheel-slice {
    cursor: pointer;
    stroke: #EDEAE3;
    stroke-width: 1.2;
    transition: opacity 0.35s ease, filter 0.35s ease;
    filter: brightness(1);
}

.wheel-slice:hover {
    filter: brightness(1.15);
}

.wheel-slice.dimmed {
    opacity: 0.28;
    filter: brightness(0.9);
}

.wheel-slice.tease {
    filter: brightness(1.25);
}

.wheel-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    fill: #fff;
    pointer-events: none;
    paint-order: stroke;
    stroke: rgba(0,0,0,0.15);
    stroke-width: 2px;
    stroke-linejoin: round;
}

#wheel-center-bg {
    transition: fill 0.3s ease;
}

/* ─── ZONE LABELS BESIDE WHEEL QUADRANTS ─── */
.zone-label {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 12;
    pointer-events: none;
    padding: 10px 22px;
    border-radius: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.zone-label[data-zone="quality"]   { color: #E05A47; background: rgba(224, 90, 71, 0.12); border: 1.5px solid rgba(224, 90, 71, 0.35); box-shadow: 0 2px 8px rgba(224, 90, 71, 0.08); }
.zone-label[data-zone="supply"]    { color: #D4943A; background: rgba(212, 148, 58, 0.12); border: 1.5px solid rgba(212, 148, 58, 0.35); box-shadow: 0 2px 8px rgba(212, 148, 58, 0.08); }
.zone-label[data-zone="execution"] { color: #3B8C8C; background: rgba(59, 140, 140, 0.12); border: 1.5px solid rgba(59, 140, 140, 0.35); box-shadow: 0 2px 8px rgba(59, 140, 140, 0.08); }
.zone-label[data-zone="waste"]     { color: #7B5E8B; background: rgba(123, 94, 139, 0.12); border: 1.5px solid rgba(123, 94, 139, 0.35); box-shadow: 0 2px 8px rgba(123, 94, 139, 0.08); }

/* Position in corners — mid-distance between wheel perimeter and box corner
   Waste=top-left, Quality=top-right, Execution=bottom-left, Supply=bottom-right */
.zone-label-tl { top: 4%; left: 2%; }
.zone-label-tr { top: 4%; right: 2%; }
.zone-label-bl { bottom: 4%; left: 2%; }
.zone-label-br { bottom: 4%; right: 2%; }

/* Highlight zone label when its zone is hovered */
.hero-visual.zone-hover-quality .zone-label[data-zone="quality"],
.hero-visual.zone-hover-supply .zone-label[data-zone="supply"],
.hero-visual.zone-hover-execution .zone-label[data-zone="execution"],
.hero-visual.zone-hover-waste .zone-label[data-zone="waste"] {
    opacity: 1;
    transform: scale(1.08);
}

/* Wheel shine overlay */
.wheel-shine {
    pointer-events: none;
}

/* ─── CORNER BRACKETS ─── */
.corner-bracket {
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 12;
    pointer-events: none;
}

.corner-bracket::before,
.corner-bracket::after {
    content: '';
    position: absolute;
    background: rgba(231, 236, 0, 0.45);
}

.corner-tl { top: 10px; left: 10px; }
.corner-tr { top: 10px; right: 10px; }
.corner-bl { bottom: 10px; left: 10px; }
.corner-br { bottom: 10px; right: 10px; }

.corner-tl::before { top: 0; left: 0; width: 28px; height: 2px; }
.corner-tl::after  { top: 0; left: 0; width: 2px; height: 28px; }
.corner-tr::before { top: 0; right: 0; width: 28px; height: 2px; }
.corner-tr::after  { top: 0; right: 0; width: 2px; height: 28px; }
.corner-bl::before { bottom: 0; left: 0; width: 28px; height: 2px; }
.corner-bl::after  { bottom: 0; left: 0; width: 2px; height: 28px; }
.corner-br::before { bottom: 0; right: 0; width: 28px; height: 2px; }
.corner-br::after  { bottom: 0; right: 0; width: 2px; height: 28px; }

/* ─── DYNAMIC CELL POPUP ─── */
.cell-popup {
    position: absolute;
    background: rgba(250, 250, 245, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 14px 18px;
    z-index: 15;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    max-width: 320px;
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

.cell-popup.pos-bottom {
    bottom: 8px;
}
.cell-popup.pos-top {
    top: 8px;
}
.cell-popup.pos-left {
    left: 8px;
}
.cell-popup.pos-right {
    right: 8px;
}

.cell-popup.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) !important;
}

.popup-arrow {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(250, 250, 245, 0.96);
    border: 1px solid rgba(0,0,0,0.08);
    transform: rotate(45deg);
    display: none;
}

.popup-word {
    font-family: 'DM Serif Display', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.popup-case {
    font-family: 'DM Serif Display', serif;
    font-size: 15px;
    font-style: italic;
    color: #3A3632;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.popup-risk {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
    line-height: 1.45;
}

/* ─── WHEEL HOVER HINT (cursor icon over wheel center) ─── */
.wheel-hover-hint {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 0.5s ease;
    background: rgba(28, 27, 24, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 22px;
    border-radius: 30px;
}

.wheel-hover-hint.hidden {
    opacity: 0;
}

.whh-cursor {
    width: 28px;
    height: 28px;
    color: #fff;
    animation: cursorBounce 2.5s ease-in-out infinite;
}

.whh-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

@keyframes cursorBounce {
    0%, 100% { transform: translate(0, 0); }
    30% { transform: translate(8px, -5px); }
    60% { transform: translate(-3px, 3px); }
}

/* ─── HOVER NUDGE PILL ─── */
.hover-nudge-pill {
    position: absolute;
    bottom: 18px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(28, 27, 24, 0.85);
    color: #FAFAF5;
    padding: 8px 16px 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(231, 236, 0, 0.4);
    z-index: 8;
    cursor: default;
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: nudgePulse 2.5s ease-in-out infinite;
}

.nudge-icon {
    font-size: 16px;
    animation: nudgeRotate 3s ease-in-out infinite;
    display: inline-block;
}

.nudge-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes nudgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 236, 0, 0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(231, 236, 0, 0); }
}

@keyframes nudgeRotate {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(4px); }
}

.hover-nudge-pill.hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.hover-nudge-pill.fade-out {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 1s ease, transform 1s ease;
}

/* ─── STORY BRIDGE: Hero → The Problem ─── */
.hero-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

.bridge-line-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bridge-line {
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--border-color));
}

.bridge-line-solid {
    height: 24px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.bridge-line-solid.drawn {
    opacity: 1;
    transform: scaleY(1);
}

.bridge-line-dashed {
    height: 18px;
    background: none;
    border-left: 2px dashed var(--border-color);
}

.bridge-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    margin: 5px 0;
    box-shadow: 0 0 0 4px rgba(231, 236, 0, 0.18);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: bridgePulse 2.5s ease-in-out infinite paused;
}

.bridge-dot.active {
    opacity: 1;
    animation-play-state: running;
}

@keyframes bridgePulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(231, 236, 0, 0.18); }
    50%       { box-shadow: 0 0 0 8px rgba(231, 236, 0, 0.06), 0 0 0 4px rgba(231, 236, 0, 0.12); }
}

.bridge-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 520px;
    line-height: 1.55;
    margin: 8px 0 0;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
    white-space: nowrap;
}

.bridge-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.bridge-arrow {
    color: var(--border-color);
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
    animation: bridgeArrowBounce 2s ease-in-out infinite paused;
}

.bridge-arrow.visible {
    opacity: 0.5;
    transform: translateY(0);
    animation-play-state: running;
}

@keyframes bridgeArrowBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

/* Layer 3: Color bridge — gradient overlay at Hero bottom fading into Problem bg */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--bg-surface));
    z-index: 1;
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   THE DRIFT
   ══════════════════════════════════════════════════════════ */

.drift {
    background: var(--bg-surface);
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
}

.drift-section-label {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 40px;
    width: 100%;
}

.drift-container {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.drift-content {
    flex: 1;
    min-width: 0;
}

.drift-content h2 {
    max-width: 20ch;
    margin-bottom: 20px;
}

.drift-content p {
    max-width: 50ch;
    margin-bottom: 20px;
    color: #555;
    font-size: 18px;
}

/* James Clear Quote */
.drift-quote {
    border-left: 3px solid var(--accent);
    margin: 0 0 24px 0;
    padding: 12px 0 12px 20px;
    background: rgba(231, 236, 0, 0.04);
    border-radius: 0 6px 6px 0;
}

.drift-quote p {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.55;
    margin: 0 0 6px 0;
    max-width: 100% !important;
}

.drift-quote cite {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.drift-visual {
    flex-shrink: 0;
    width: 420px;
    height: 420px;
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.drift-surface {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Zone-coloured drift blocks */
.drift-block {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    transition: transform 0.1s linear, border-color 0.3s ease, background 0.3s ease;
    will-change: transform;
    border-radius: 4px;
}

.drift-block-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.drift-block-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0.75;
    font-style: italic;
}

/* Zone colours matching the wheel */
.db-quality {
    top: 20px; left: 20px;
    border-color: #E05A47;
    color: #E05A47;
}
.db-quality .drift-block-sub { color: #E05A47; }

.db-supply {
    top: 20px; right: 20px;
    border-color: #D4943A;
    color: #D4943A;
}
.db-supply .drift-block-sub { color: #D4943A; }

.db-execution {
    bottom: 20px; left: 20px;
    border-color: #3B8C8C;
    color: #3B8C8C;
}
.db-execution .drift-block-sub { color: #3B8C8C; }

.db-waste {
    bottom: 20px; right: 20px;
    border-color: #7B5E8B;
    color: #7B5E8B;
}
.db-waste .drift-block-sub { color: #7B5E8B; }

/* Active (connected) state — subtle filled background */
.drift-block.connected {
    background: rgba(0,0,0,0.02);
}

/* Drifted (disconnected) state — background empties */
.drift-block.drifted {
    background: transparent;
}

.drift-connector {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.conn-line {
    stroke-width: 1.5;
    stroke-dasharray: 6 4;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

/* Zone-coloured connector lines */
.conn-line:nth-child(1) { stroke: #D4943A; }  /* top: quality—supply */
.conn-line:nth-child(2) { stroke: #3B8C8C; }  /* left: quality—execution */
.conn-line:nth-child(3) { stroke: #7B5E8B; }  /* right: supply—waste */
.conn-line:nth-child(4) { stroke: #3B8C8C; }  /* bottom: execution—waste */
.conn-line:nth-child(5) { stroke: #E05A47; }  /* diag: quality—waste */
.conn-line:nth-child(6) { stroke: #D4943A; }  /* diag: supply—execution */

/* Data flow dots */
.data-dot {
    fill: var(--accent);
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.data-dot.stopped {
    opacity: 0;
}

.dot-h-top {
    animation: flowRight 2s ease-in-out infinite;
}
.dot-h-bot {
    animation: flowRight 2.3s ease-in-out infinite 0.3s;
}
.dot-v-left {
    animation: flowDown 2.1s ease-in-out infinite 0.15s;
}
.dot-v-right {
    animation: flowDown 1.9s ease-in-out infinite 0.4s;
}
.dot-diag-1 {
    animation: flowDiagBR 2.4s ease-in-out infinite 0.2s;
}
.dot-diag-2 {
    animation: flowDiagBL 2.2s ease-in-out infinite 0.5s;
}

@keyframes flowRight {
    0%   { cx: 80; opacity: 0; }
    15%  { opacity: 0.9; }
    85%  { opacity: 0.9; }
    100% { cx: 220; opacity: 0; }
}
@keyframes flowDown {
    0%   { cy: 80; opacity: 0; }
    15%  { opacity: 0.9; }
    85%  { opacity: 0.9; }
    100% { cy: 220; opacity: 0; }
}
@keyframes flowDiagBR {
    0%   { cx: 80; cy: 80; opacity: 0; }
    15%  { opacity: 0.9; }
    85%  { opacity: 0.9; }
    100% { cx: 220; cy: 220; opacity: 0; }
}
@keyframes flowDiagBL {
    0%   { cx: 220; cy: 80; opacity: 0; }
    15%  { opacity: 0.9; }
    85%  { opacity: 0.9; }
    100% { cx: 80; cy: 220; opacity: 0; }
}

/* Verdict upgrade */
.drift-verdict {
    margin-top: 40px;
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    text-align: center;
    display: flex;
    gap: 12px;
    align-items: baseline;
    justify-content: center;
}

.verdict-line {
    color: var(--text-secondary);
}

.verdict-highlight {
    color: #E05A47;
    font-weight: 400;
    position: relative;
}

.verdict-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    opacity: 0.7;
}

.drift-verdict.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Verdict shake reveal */
.drift-verdict.shake {
    animation: verdictShake 0.4s ease;
}

@keyframes verdictShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}

/* ══════════════════════════════════════════════════════════
   THE BUILD
   ══════════════════════════════════════════════════════════ */

.build {
    background: var(--bg-base);
    text-align: center;
}

.build-container {
    width: 100%;
    max-width: 1100px;
}

.build-title {
    margin-bottom: 16px;
}

.build-sub {
    max-width: 60ch;
    margin: 0 auto 12px;
    font-size: 18px;
}

.build-diff {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-style: italic;
}

.build-diff strong {
    font-style: normal;
    color: var(--accent-dark);
}

.build-flex-note {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    font-style: italic;
}

/* ─── JOURNEY MAP ─── */
.build-journey {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

/* Stacked Narrative layout — full-width path, no 3-column grid */
.journey-map {
    position: relative;
    overflow: hidden;
}

/* ─── BACKGROUND WATERMARKS ─── */
.watermark {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    line-height: 1;
}

.wm-chaos {
    top: 8%;
    left: 3%;
    color: #E05A47;
    opacity: 0.07;
}

.wm-clarity {
    top: 5%;
    right: 3%;
    color: #D4D900;
    opacity: 0.09;
}

/* ─── SVG ENDPOINT LABELS ─── */
.endpoint-label {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
}

.chaos-label {
    fill: #E05A47;
}

.clarity-label {
    fill: #D4D900;
}

/* ─── SVG PATH CONTAINER ─── */
.journey-path-wrap {
    position: relative;
    z-index: 1;
}

.journey-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* ─── PATH SEGMENTS ─── */
.journey-seg {
    fill: none;
    stroke-width: 3.5;
    stroke-linecap: round;
}

.seg-1 { stroke: #E05A47; }
.seg-2 { stroke: #D4943A; }
.seg-3 { stroke: #3B8C8C; }
.seg-4 { stroke: #D4D900; }
.seg-end { stroke: #D4D900; opacity: 0.5; }

/* ─── STATION MARKERS ─── */
.phase-station {
    transition: transform 0.4s ease;
}

.station-ring {
    stroke-width: 2.5;
    transition: fill 0.4s ease, stroke 0.4s ease, filter 0.4s ease;
}

/* Inactive state */
.phase-station[data-phase="1"] .station-ring { stroke: #E05A47; stroke-opacity: 0.3; fill: var(--bg-base); }
.phase-station[data-phase="2"] .station-ring { stroke: #D4943A; stroke-opacity: 0.3; fill: var(--bg-base); }
.phase-station[data-phase="3"] .station-ring { stroke: #3B8C8C; stroke-opacity: 0.3; fill: var(--bg-base); }
.phase-station[data-phase="4"] .station-ring { stroke: #D4D900; stroke-opacity: 0.3; fill: var(--bg-base); }

/* Active state */
.phase-station.active[data-phase="1"] .station-ring { fill: #E05A47; stroke: #E05A47; stroke-opacity: 1; }
.phase-station.active[data-phase="2"] .station-ring { fill: #D4943A; stroke: #D4943A; stroke-opacity: 1; }
.phase-station.active[data-phase="3"] .station-ring { fill: #3B8C8C; stroke: #3B8C8C; stroke-opacity: 1; }
.phase-station.active[data-phase="4"] .station-ring { fill: #D4D900; stroke: #D4D900; stroke-opacity: 1; }

.phase-station.active {
    filter: url(#segGlow);
}

.station-num {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    fill: #888;
    pointer-events: none;
    transition: fill 0.4s ease;
}

.phase-station.active .station-num {
    fill: #fff;
}

.station-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    fill: #838383;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.phase-station.active .station-label {
    opacity: 1;
}

/* ─── PHASE CARDS ─── */
.journey-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.journey-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 18px 16px;
    position: relative;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-top: 4px solid var(--phase-color);
}

.journey-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-phase-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.card-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin: 2px 0 8px;
    line-height: 1.15;
}

.card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.55;
    margin: 0 0 12px;
}

.card-get {
    padding: 8px 10px;
    background: var(--bg-surface);
    border-radius: 5px;
    border-left: 3px solid;
}

.card-get .get-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 2px;
}

.card-get .get-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ─── MOBILE: VERTICAL JOURNEY MAP ─── */
.journey-mobile {
    display: none;
}

.mobile-journey-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.mobile-phase {
    display: flex;
    gap: 0;
    position: relative;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-phase.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Station rail: vertical line + dot per phase */
.mobile-station-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 36px;
    flex-shrink: 0;
    position: relative;
}

.station-line {
    flex: 1;
    width: 2px;
    background: var(--border-color);
    min-height: 4px;
}

.station-line-start {
    background: linear-gradient(to bottom, transparent, var(--border-color));
}

.station-line-end {
    background: linear-gradient(to bottom, var(--border-color), transparent);
}

.station-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--phase-color);
    background: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.station-dot span {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--phase-color);
    transition: color 0.4s ease;
}

/* Active station: filled dot */
.mobile-phase.visible .station-dot {
    background: var(--phase-color);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.mobile-phase.visible .station-dot span {
    color: #fff;
}

/* Phase-colored connecting lines (active state) */
.mobile-phase.visible[data-phase="1"] .station-line { background: #E05A47; }
.mobile-phase.visible[data-phase="2"] .station-line { background: #D4943A; }
.mobile-phase.visible[data-phase="3"] .station-line { background: #3B8C8C; }
.mobile-phase.visible[data-phase="4"] .station-line { background: #D4D900; }

/* Card body */
.mobile-body {
    padding: 12px 14px;
    margin-left: 8px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    flex: 1;
    min-width: 0;
    border-top: 3px solid transparent;
    margin-bottom: 12px;
}

.mobile-phase[data-phase="1"] .mobile-body { border-top-color: #E05A47; }
.mobile-phase[data-phase="2"] .mobile-body { border-top-color: #D4943A; }
.mobile-phase[data-phase="3"] .mobile-body { border-top-color: #3B8C8C; }
.mobile-phase[data-phase="4"] .mobile-body { border-top-color: #D4D900; }

/* CHAOS / CLARITY endpoint labels */
.mobile-endpoint-label {
    font-family: var(--font-serif);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    padding: 4px 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mobile-endpoint-label.visible {
    opacity: 0.5;
}

.mobile-chaos { color: #E05A47; }
.mobile-clarity { color: #D4D900; }

.mobile-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.mobile-name {
    font-size: 17px;
    font-weight: 700;
    margin: 4px 0 6px 0;
}

.mobile-body p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.mobile-get {
    padding: 8px 10px;
    background: var(--bg-surface);
    border-radius: 4px;
    border-left: 2.5px solid;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-get .get-label {
    font-size: 9px;
}

.mobile-get span:last-child {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   HOW WE HELP — The Transformation
   ══════════════════════════════════════════════════════════ */

.help {
    background: var(--bg-surface);
    text-align: center;
    padding: 80px 0 60px 0;
    border-bottom: none;
    position: relative;
}

.help::after {
    content: '';
    display: block;
    height: 32px;
    background: linear-gradient(to bottom, var(--bg-surface), var(--bg-base));
    position: absolute;
    bottom: -32px;
    left: 0;
    right: 0;
    z-index: 0;
}

.help-container {
    width: 100%;
}

.help .section-label {
    margin-bottom: 28px;
}

.help-lead {
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.help-title {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.18;
}

.help-sub {
    font-family: var(--font-sans);
    font-size: 17px;
    color: #5a5a54;
    line-height: 1.65;
    font-weight: 500;
}

/* ─── TRANSFORM CARDS ─── */
.transform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1060px;
    margin: 0 auto 60px;
}

.transform-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: box-shadow 0.4s ease, transform 0.35s ease, border-color 0.4s ease;
    position: relative;
}

.transform-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
    transform: translateY(-4px);
    border-color: transparent;
}

/* Before section */
.tc-before {
    background: #F5F4EE;
    padding: 24px 22px 20px;
    position: relative;
}

.tc-pillar-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 12px;
}

.tc-quote {
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    color: #5a5550;
    line-height: 1.55;
    margin: 0 0 14px;
}

.tc-state-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}

.tc-state-before {
    background: rgba(224, 90, 71, 0.08);
    color: #E05A47;
}

/* Divider with animated arrow line */
.tc-divider {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.tc-arrow-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--border-color), var(--accent-dark));
    position: relative;
}

.tc-arrow-line::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--accent-dark);
}

/* After section */
.tc-after {
    background: #fff;
    padding: 22px 22px 24px;
}

.tc-outcome {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0 0 10px;
    line-height: 1.2;
}

.tc-detail {
    font-size: 14px;
    color: #5a5a54;
    line-height: 1.6;
    margin: 0 0 16px;
}

.tc-micro-proof {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent-dark);
    background: rgba(212, 217, 0, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid rgba(212, 217, 0, 0.2);
}

/* Pillar accent colors on hover */
.transform-card[data-pillar="people"]:hover { border-top: 3px solid #E05A47; }
.transform-card[data-pillar="process"]:hover { border-top: 3px solid #3B8C8C; }
.transform-card[data-pillar="technology"]:hover { border-top: 3px solid #D4943A; }

.transform-card[data-pillar="people"] .tc-pillar-label { color: #E05A47; }
.transform-card[data-pillar="process"] .tc-pillar-label { color: #3B8C8C; }
.transform-card[data-pillar="technology"] .tc-pillar-label { color: #D4943A; }

/* Scroll-reactive state (GSAP ScrollTrigger toggles .tc-scroll-active) */
.transform-card.tc-scroll-active {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
    transform: translateY(-4px);
    border-color: transparent;
}
.transform-card[data-pillar="people"].tc-scroll-active { border-top: 3px solid #E05A47; }
.transform-card[data-pillar="process"].tc-scroll-active { border-top: 3px solid #3B8C8C; }
.transform-card[data-pillar="technology"].tc-scroll-active { border-top: 3px solid #D4943A; }

/* ─── TRUST CARDS — What we won't do ─── */
.help-trust {
    background: var(--text-primary);
    padding: 48px 40px 52px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
}

.help-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
}

.help-trust-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin-bottom: 28px;
}

.help-trust-inner {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.trust-card:hover {
    border-color: rgba(231, 236, 0, 0.3);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
}

.trust-no {
    font-family: var(--font-serif);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    position: relative;
}

.trust-no::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: rgba(231, 236, 0, 0.35);
}

.trust-yes {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--accent);
    line-height: 1.4;
}

/* ─── DUAL MARQUEE ─── */
.marquee-wrap {
    overflow: hidden;
    position: relative;
    margin-top: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    background: var(--bg-surface);
}

.marquee-row {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.marquee-row:last-child {
    border-bottom: none;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee-left 50s linear infinite;
    will-change: transform;
}

.marquee-right .marquee-track {
    animation: marquee-right 50s linear infinite;
}

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

.marquee-item {
    font-size: 13px;
    font-weight: 500;
    color: #6a6560;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.marquee-item.marquee-outcome {
    font-weight: 600;
    color: var(--text-primary);
}

.marquee-item.marquee-outcome i {
    background: var(--accent-dark);
}

.marquee-item i {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

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

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

/* ─── SECTION CTA ─── */
.help-cta-wrap {
    padding: 48px 0 60px;
    background: var(--bg-surface);
}

.help-cta-text {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.help-cta {
    margin-top: 0;
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(231, 236, 0, 0.22), 0 1px 3px rgba(0,0,0,0.08); }
    50% { box-shadow: 0 8px 28px rgba(231, 236, 0, 0.35), 0 2px 8px rgba(0,0,0,0.10), 0 0 0 4px rgba(231, 236, 0, 0.12); }
}

/* ─── VISUAL SEPARATION: Help → Proof ─── */
.help + .proof {
    background: var(--bg-base);
    border-top: 3px solid var(--accent-dark);
}

/* ══════════════════════════════════════════════════════════
   PROOF — Immersive Case Study Experience
   ══════════════════════════════════════════════════════════ */

.proof {
    background: var(--bg-surface);
    padding: 80px 0;
    min-height: auto;
    flex-direction: column;
    justify-content: center;
}

.proof-header {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    margin-bottom: 32px;
}

.proof-title {
    margin-bottom: 0;
}

/* ─── Impact Subtext ─── */
.proof-subtext {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 28px;
    text-align: center;
    line-height: 1.6;
    padding: 16px 20px;
    border-left: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    background: rgba(231, 236, 0, 0.03);
    border-radius: 4px;
}

/* ─── Micro-Proofs Row ─── */
.proof-micro-row {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto 32px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.proof-micro-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: var(--bg-base);
    border-right: 1px solid var(--border-color);
}

.proof-micro-item:last-child {
    border-right: none;
}

.micro-value {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 2px;
}

.micro-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── Carousel ─── */
.proof-carousel-wrapper {
    position: relative;
    width: 100%;
}

.proof-carousel {
    overflow: hidden;
    width: 100%;
}

.proof-carousel-track {
    display: flex;
    gap: 16px;
    padding: 0 40px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* ─── Case Study Cards (Deeper) ─── */
.proof-card {
    flex: 0 0 calc((100% - 48px) / 3.5);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.proof-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tag-color, var(--text-secondary));
    background: var(--bg-surface);
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 14px;
    border: 1px solid rgba(0,0,0,0.04);
}

.proof-card-metric {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.proof-card-metric-sub {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.proof-card-quote {
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    color: #3A3632;
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}

/* ─── Before/After Bars ─── */
.proof-card-before-after {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.ba-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ba-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    width: 42px;
    flex-shrink: 0;
}

.ba-bar {
    flex: 1;
    height: 6px;
    background: var(--bg-surface);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.ba-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--fill);
    background: var(--bar-color);
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-card:hover .ba-bar::after {
    width: var(--fill);
}

/* ─── Meta Pills ─── */
.proof-card-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.meta-pill {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-surface);
    padding: 3px 8px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.proof-card-read {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease, gap 0.2s ease;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.proof-card:hover .proof-card-read {
    color: var(--accent-dark);
    gap: 8px;
}

/* ─── CTA Card ─── */
.proof-card-cta {
    background: #1C1B18;
    border-color: transparent;
    align-items: center;
    text-align: center;
    justify-content: center;
    cursor: default;
}

.proof-card-cta:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.proof-cta-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 12px;
}

.proof-cta-icon svg {
    width: 100%;
    height: 100%;
}

.proof-cta-title {
    font-family: var(--font-serif);
    font-size: 24px;
    color: #FAFAF5;
    margin-bottom: 8px;
}

.proof-cta-text {
    font-size: 14px;
    color: #8A8580;
    line-height: 1.5;
    margin-bottom: 20px;
}

.proof-cta-btn {
    margin-top: 0;
    font-size: 13px;
    padding: 12px 28px;
}

/* ─── Industry Badges ─── */
.proof-industry-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding: 0 40px;
}

.industry-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    background: var(--bg-base);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.industry-badge:hover {
    border-color: var(--accent-dark);
    color: var(--text-primary);
}

/* ─── Carousel Nav ─── */
.proof-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.proof-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(231, 236, 0, 0.3), 0 2px 8px rgba(0,0,0,0.1);
}

.proof-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
    stroke-width: 2;
    fill: none;
}

.proof-nav-prev { left: 12px; }
.proof-nav-next { right: 12px; }

.proof-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.proof-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
    padding: 0;
}

.proof-dot.active {
    background: var(--text-primary);
    width: 24px;
    border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   CASE STUDY MODALS — Full-Screen Split Panel
   ══════════════════════════════════════════════════════════ */

.case-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.case-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.case-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20,20,19,0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.case-modal-content {
    position: relative;
    display: flex;
    width: 92vw;
    max-width: 1200px;
    max-height: 88vh;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 32px 100px rgba(0,0,0,0.35);
    transform: translateY(40px) scale(0.97);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-modal.open .case-modal-content {
    transform: translateY(0) scale(1);
}

/* ─── Viz Panel (Left / Dark) ─── */
.case-modal-viz {
    flex: 0 0 55%;
    background: #1C1B18;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.case-modal-viz[data-zone="quality"] { --zone-color: #E05A47; }
.case-modal-viz[data-zone="execution"] { --zone-color: #3B8C8C; }
.case-modal-viz[data-zone="supply"] { --zone-color: #D4943A; }
.case-modal-viz[data-zone="waste"] { --zone-color: #7B5E8B; }

/* ─── Radial Rings ─── */
.viz-ring-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.viz-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.viz-ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.06);
    stroke-width: 8;
}

.viz-ring-fill {
    fill: none;
    stroke: var(--zone-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 8px var(--zone-color));
}

.viz-ring-inner-bg {
    fill: none;
    stroke: rgba(255,255,255,0.04);
    stroke-width: 6;
}

.viz-ring-inner-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 389;
    stroke-dashoffset: 389;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    filter: drop-shadow(0 0 6px var(--accent));
}

.viz-ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.viz-counter {
    font-family: var(--font-serif);
    font-size: 42px;
    color: #FAFAF5;
    line-height: 1;
    display: block;
    text-shadow: 0 0 20px var(--accent);
}

.viz-counter-unit {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

/* ─── Sparklines ─── */
.viz-sparkline {
    width: 100%;
    max-width: 260px;
}

.sparkline-svg {
    width: 100%;
    height: 60px;
}

.sparkline-path {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.sparkline-before {
    stroke: rgba(255,255,255,0.15);
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sparkline-after {
    stroke: var(--accent);
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    filter: drop-shadow(0 0 4px var(--accent));
}

.case-modal.open .sparkline-before { stroke-dashoffset: 0; }
.case-modal.open .sparkline-after { stroke-dashoffset: 0; }

.sparkline-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}

.spark-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* ─── Dot Matrix Grid ─── */
.viz-dots-container {
    text-align: center;
}

.viz-dots-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
    width: 140px;
}

.viz-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.viz-dot.dot-defect {
    background: var(--zone-color);
    box-shadow: 0 0 6px var(--zone-color);
}

.viz-dot.dot-ok {
    background: var(--accent);
    box-shadow: 0 0 4px var(--accent);
    opacity: 0.7;
}

.viz-dots-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.legend-defect, .legend-ok {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.legend-defect::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--zone-color);
    margin-right: 4px;
    vertical-align: middle;
}

.legend-ok::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 4px;
    vertical-align: middle;
}

/* ─── Morph SVG (Execution) ─── */
.viz-morph-container {
    text-align: center;
}

.viz-morph-svg {
    width: 100px;
    height: 100px;
}

.morph-before {
    fill: none;
    stroke: var(--zone-color);
    stroke-width: 2;
    opacity: 0.3;
    stroke-dasharray: 4 3;
}

.morph-after {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    filter: drop-shadow(0 0 6px var(--accent));
}

.morph-labels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 6px;
}

.morph-labels span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* ─── Nodes SVG (Supply) ─── */
.viz-nodes-container {
    text-align: center;
    width: 100%;
    max-width: 260px;
}

.viz-nodes-svg {
    width: 100%;
    height: auto;
}

.node-dot {
    fill: rgba(255,255,255,0.1);
    stroke: rgba(255,255,255,0.2);
    stroke-width: 1.5;
    transition: fill 0.5s ease, stroke 0.5s ease;
}

.node-dot.node-hub {
    fill: var(--accent);
    stroke: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent));
}

.node-conn {
    stroke-width: 1.5;
    transition: opacity 0.5s ease;
}

.node-conn-dim {
    stroke: rgba(255,255,255,0.1);
}

.node-conn-active {
    stroke: var(--accent);
    filter: drop-shadow(0 0 4px var(--accent));
    opacity: 0;
}

.case-modal.open .node-conn-active {
    opacity: 1;
}

.nodes-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 6px;
}

.nodes-legend span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* ─── MOBILE ZONE GRID (2×2) — hidden on desktop ─── */
.mobile-zone-grid {
    display: none;
}

/* ─── CASE MODAL — Narrative Panel (Right / Light) ─── */
.case-modal-narrative {
    flex: 1;
    background: var(--bg-base);
    padding: 48px 40px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.case-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 10;
}

.case-modal-close:hover {
    color: var(--text-primary);
    background: rgba(0,0,0,0.1);
    transform: scale(1.1);
}

.case-modal-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 12px;
    display: block;
}

.case-modal-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.15;
}

.case-modal-subtitle {
    font-size: 16px;
    color: #6a6560;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.case-modal-body {
    flex: 1;
}

.case-modal-body p {
    font-size: 15px;
    color: #4a4a44;
    line-height: 1.7;
    margin-bottom: 16px;
}

.solution-intro {
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    font-style: italic;
}

/* ─── P-P-T Breakdown ─── */
.ppt-breakdown {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ppt-breakdown li {
    font-size: 14px;
    color: #4a4a44;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.ppt-breakdown li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.ppt-breakdown li strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ─── Result Box ─── */
.case-modal-result {
    background: #f5f5f0;
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
}

.result-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
    display: block;
    margin-bottom: 6px;
}

.result-text {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

/* ─── In-Modal Navigation ─── */
.case-modal-nav-arrows {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.modal-arrow {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 0;
    transition: color 0.2s ease;
    font-family: var(--font-sans);
}

.modal-arrow:hover {
    color: var(--text-primary);
}

.modal-arrow svg {
    stroke: currentColor;
    fill: none;
}

/* ══════════════════════════════════════════════════════════
   WHO WE ARE
   ══════════════════════════════════════════════════════════ */

.about {
    background: var(--bg-base);
}

.about-container {
    width: 100%;
}

/* ─── FLOAT LAYOUT: photo left, text wraps around ─── */
.about-flow {
    overflow: hidden;
}

.about-photo-col {
    float: left;
    margin-right: 32px;
    margin-bottom: 0;
}

.photo-wrapper {
    position: relative;
    display: inline-block;
    padding: 0;
}

/* ─── Modern Photo Treatment: Left accent bar + deep shadow ─── */
.photo-frame-wrap {
    position: relative;
    display: inline-block;
}

/* Photo accent frame — top + left L-shape */
.photo-frame-wrap::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 32px;
    height: 32px;
    border-top: 3px solid var(--accent);
    border-left: 3px solid var(--accent);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s;
}

.photo-frame-wrap::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 32px;
    height: 32px;
    border-bottom: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease 0.5s;
}

.photo-frame-wrap.frame-visible::before,
.photo-frame-wrap.frame-visible::after {
    opacity: 1;
}

.photo-frame-premium {
    position: relative;
    width: 220px;
    height: 280px;
    overflow: hidden;
    z-index: 2;
    border: none;
    border-radius: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

.about-founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 1;
    display: block;
}

.photo-name-badge {
    position: absolute;
    bottom: -14px;
    right: -4px;
    left: auto;
    background: var(--text-primary);
    color: var(--bg-base);
    padding: 10px 14px;
    z-index: 15;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.photo-name-badge .name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.photo-name-badge .title {
    font-size: 9px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-section-label {
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ─── Section Tagline (distinctive serif italic under section label) ─── */
.section-tagline {
    font-family: var(--font-serif);
    font-size: 34px;
    font-style: italic;
    color: var(--text-primary);
    margin-top: 8px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.about-headline {
    display: none;
}

/* ─── Founder Quote (matches drift-quote style) ─── */
.about-quote {
    border-left: 3px solid var(--accent);
    margin: 0 0 12px 0;
    padding: 12px 0 12px 20px;
    border-radius: 0 6px 6px 0;
}

.about-quote p {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.55;
    margin: 0;
}

/* ─── Quote as Section Opener (centered, no border) ─── */
.about-quote-opener {
    border-left: none;
    margin: 16px auto 0;
    padding: 0;
    max-width: 560px;
    text-align: center;
}

.about-quote-opener p {
    font-size: 19px;
    line-height: 1.5;
}

/* ─── Accent Rail: single continuous accent line wrapping all text ─── */
.about-accent-rail {
    border-left: 3px solid var(--accent);
    padding-left: 18px;
}

/* ─── Quote Beside Photo (sits next to photo in flow) ─── */
.about-quote-beside {
    border-left: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 6px;
}

.about-quote-beside p {
    font-family: var(--font-serif);
    font-size: 19px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.45;
    margin: 0;
}

/* ─── Accent Quote Mark ─── */
.quote-accent-mark {
    font-family: var(--font-serif);
    font-size: 52px;
    line-height: 1;
    color: var(--accent);
    display: inline-block;
    margin: 0;
    flex-shrink: 0;
    user-select: none;
}

/* ─── Origin (merged into About Me — styles kept for fallback) ─── */

/* ─── About blocks (no own border — rail handles it) ─── */
.about-block {
    border-left: none;
    margin: 0;
    padding: 6px 0 6px 0;
    border-radius: 0;
}

.about-block:first-of-type {
    padding-top: 10px;
}

.about-block-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6a6a6a;
    margin-bottom: 8px;
}

.about-body {
    font-size: 16px;
    color: #4a4a44;
    line-height: 1.7;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.about-body:last-child {
    margin-bottom: 0;
}

.about-block + .about-block {
    margin-top: 8px;
}

/* ─── Differentiator Cards ─── */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.about-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px 18px;
    border-top: 4px solid var(--accent);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.about-card-title {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0 0 8px;
    line-height: 1.25;
}

.about-card-sub {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ─── Read More / Read Less Toggle ─── */
.about-collapsible {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Desktop: always show full content, hide toggle */
.about-read-toggle {
    display: none;
}

/* ─── Collapsible: Desktop always expanded ─── */
.about-collapsible.collapsed .about-body-extended {
    display: block;
}

/* ══════════════════════════════════════════════════════════
   AUDIT CTA
   ══════════════════════════════════════════════════════════ */

.audit-cta {
    background: #1C1B18;
    text-align: center;
    min-height: auto;
    padding: 80px 0;
    border-bottom: none;
}

.audit-container {
    max-width: 700px;
}

/* Structural accent frame — echoes hero corner brackets */
.audit-frame {
    position: relative;
    padding: 48px 40px;
    text-align: center;
}

.audit-corner {
    position: absolute;
    width: 36px;
    height: 36px;
    z-index: 12;
    pointer-events: none;
}

.audit-corner::before,
.audit-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
    opacity: 0.45;
    border-radius: 1px;
}

.ac-tl { top: 0; left: 0; }
.ac-tl::before { top: 0; left: 0; width: 36px; height: 2px; }
.ac-tl::after  { top: 0; left: 0; width: 2px; height: 36px; }

.ac-tr { top: 0; right: 0; }
.ac-tr::before { top: 0; right: 0; width: 36px; height: 2px; }
.ac-tr::after  { top: 0; right: 0; width: 2px; height: 36px; }

.ac-bl { bottom: 0; left: 0; }
.ac-bl::before { bottom: 0; left: 0; width: 36px; height: 2px; }
.ac-bl::after  { bottom: 0; left: 0; width: 2px; height: 36px; }

.ac-br { bottom: 0; right: 0; }
.ac-br::before { bottom: 0; right: 0; width: 36px; height: 2px; }
.ac-br::after  { bottom: 0; right: 0; width: 2px; height: 36px; }

.audit-label {
    color: rgba(250, 250, 245, 0.5);
    margin-bottom: 24px;
}

.audit-label .creative-line {
    background: var(--accent);
}

.audit-label .section-label {
    color: rgba(250, 250, 245, 0.5);
}

.audit-title {
    font-size: 40px;
    margin-bottom: 20px;
    color: #F5F4F0;
    line-height: 1.12;
}

.audit-sub {
    font-size: 17px;
    color: rgba(250, 250, 245, 0.65);
    margin-bottom: 32px;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

/* ─── What Happens Next — 3-step process strip ─── */
.audit-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 32px;
    background: rgba(250, 250, 245, 0.05);
    border: 1px solid rgba(250, 250, 245, 0.08);
    border-radius: 10px;
    max-width: 580px;
}

.audit-step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
}

.audit-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audit-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.audit-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #F5F4F0;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audit-step-desc {
    font-size: 12px;
    color: rgba(250, 250, 245, 0.45);
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.audit-step-arrow {
    color: rgba(250, 250, 245, 0.25);
    flex: 0 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audit-btn {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 17px;
    padding: 20px 44px;
    box-shadow: 0 4px 20px rgba(231, 236, 0, 0.35), 0 1px 3px rgba(0,0,0,0.2), 0 0 0 2px rgba(231, 236, 0, 0.15);
    width: 100%;
    animation: auditBtnPulse 2.5s ease-in-out infinite;
}

@keyframes auditBtnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(231, 236, 0, 0.35), 0 1px 3px rgba(0,0,0,0.2), 0 0 0 2px rgba(231, 236, 0, 0.15); }
    50%       { box-shadow: 0 6px 28px rgba(231, 236, 0, 0.5), 0 2px 8px rgba(0,0,0,0.15), 0 0 0 4px rgba(231, 236, 0, 0.2); }
}

.audit-btn:hover {
    box-shadow: 0 10px 40px rgba(231, 236, 0, 0.45), 0 4px 12px rgba(0,0,0,0.15), 0 0 0 1.5px rgba(200,205,0,0.3);
    background: #ECEE20;
}

/* ─── Formspree Form ─── */
.audit-form {
    max-width: 480px;
    margin: 0 auto 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.audit-form-row {
    display: flex;
    gap: 12px;
}

.audit-input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(250, 250, 245, 0.08);
    border: 1px solid rgba(250, 250, 245, 0.15);
    border-radius: 6px;
    color: #FAFAF5;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.audit-input::placeholder {
    color: rgba(250, 250, 245, 0.35);
}

.audit-input:focus {
    border-color: var(--accent);
    background: rgba(250, 250, 245, 0.12);
}

.audit-input-full {
    width: 100%;
}

.audit-textarea {
    resize: vertical;
    min-height: 72px;
}

.audit-form-success {
    text-align: center;
    padding: 20px;
}

.audit-form-success p {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--accent);
    font-style: italic;
}

.audit-scarcity {
    font-size: 13px;
    color: rgba(250, 250, 245, 0.45);
    margin-bottom: 20px;
    font-style: italic;
}

.audit-contact-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.audit-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(250, 250, 245, 0.6);
    padding: 8px 14px;
    border: 1px solid rgba(250, 250, 245, 0.12);
    border-radius: 6px;
    background: rgba(250, 250, 245, 0.06);
    letter-spacing: 0.01em;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.audit-contact-pill:hover {
    border-color: var(--accent);
    color: #F5F4F0;
}

.audit-contact-pill svg {
    opacity: 0.45;
}

/* WhatsApp link styling */
.audit-whatsapp-link {
    text-decoration: none;
    cursor: pointer;
}

.audit-whatsapp-link:hover {
    border-color: #25D366 !important;
    color: #25D366 !important;
}

.audit-whatsapp-link:hover svg {
    opacity: 1;
}

.audit-whatsapp-link svg:first-child {
    opacity: 0.55;
    color: #25D366;
}

/* Mail link styling */
.audit-mail-link {
    text-decoration: none;
    cursor: pointer;
}

.audit-mail-link:hover {
    border-color: var(--accent) !important;
    color: #F5F4F0 !important;
}

.audit-mail-link:hover svg {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */

.footer {
    background: #1C1B18;
    border-top: 3px solid var(--accent);
    padding: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 0 32px;
}

/* ─── Brand block (left) — mirrors nav bar layout ─── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
}

.footer-brand-mark {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding-left: 20px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: flex-start;
    text-decoration: none;
    position: relative;
    height: 36px;
    gap: 8px;
}

.footer-icon {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.footer-logo {
    height: 15px;
    width: auto;
    filter: brightness(0) invert(1);
    position: absolute;
    top: calc(42% - 3px);
    left: 44px;
    transform: translateY(-50%);
}

.footer-tagline {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(250, 250, 245, 0.5);
    margin: 0;
    line-height: 1;
    position: absolute;
    bottom: -1px;
    left: 44px;
    white-space: nowrap;
}

/* ─── Info block (right) ─── */
.footer-info {
    display: flex;
    gap: 56px;
    flex: 1;
    justify-content: flex-end;
}

.footer-col-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(250, 250, 245, 0.35);
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(250, 250, 245, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    display: inline-block;
    letter-spacing: 0.01em;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: #F5F4F0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-link {
    font-size: 14px;
    color: rgba(250, 250, 245, 0.95);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.footer-contact-link svg {
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-contact a:hover svg {
    opacity: 1;
}

.footer-location {
    cursor: default;
}

/* ─── Footer bottom ─── */
.footer-bottom {
    border-top: 1px solid rgba(250, 250, 245, 0.08);
    padding: 14px 0;
    display: flex;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(250, 250, 245, 0.3);
    margin: 0;
    letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .logo-tagline { display: block; font-size: 8px; left: 38px; }
    .nav-favicon { opacity: 1 !important; height: 30px; }
    .logo-container { gap: 0; }
    .logo-link { height: 30px; gap: 6px; }
    .logo { height: 14px; left: 38px; }

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

    .hero-container {
        flex-direction: column;
        gap: 36px;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        flex: none;
        align-items: center;
        text-align: center;
    }
    .hero-cta-row {
        justify-content: center !important;
    }
    .hero-visual-column {
        width: 100%;
    }
    .hero-visual {
        height: 442px;
    }
    .zone-label { font-size: 10px; padding: 5px 12px; }
    .zone-label-tl { top: 7%; left: 4%; }
    .zone-label-tr { top: 7%; right: 4%; }
    .zone-label-bl { bottom: 7%; left: 4%; }
    .zone-label-br { bottom: 7%; right: 4%; }

    .drift-section-label {
        margin-bottom: 24px;
        padding: 0 20px;
    }
    .drift-container {
        flex-direction: column;
        gap: 40px;
    }
    .drift-visual {
        position: relative;
        top: 0;
        width: 100%;
        height: 350px;
    }

    .about-flow {
        overflow: hidden;
    }
    .about-photo-col {
        float: none;
        text-align: center;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .photo-frame-premium {
        width: 180px;
        height: 230px;
    }
    .photo-frame-wrap::before {
        width: 24px;
        height: 24px;
        top: -4px;
        left: -4px;
    }
    .photo-frame-wrap::after {
        width: 24px;
        height: 24px;
        bottom: -4px;
        right: -4px;
    }
    .about-section-label {
        text-align: center;
        padding-top: 12px;
    }
    .about-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-quote-beside p {
        font-size: 17px;
    }

    .transform-grid { grid-template-columns: 1fr; max-width: 480px; }
    .transform-card:hover { transform: none; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border-color: var(--border-color); border-top: none; }
    .transform-card[data-pillar="people"]:hover { border-top: none; }
    .transform-card[data-pillar="process"]:hover { border-top: none; }
    .transform-card[data-pillar="technology"]:hover { border-top: none; }
    .help-trust { padding: 44px 32px; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; }
    .help-trust-inner { grid-template-columns: 1fr 1fr; }
    .trust-no { font-size: 13px; }
    .trust-yes { font-size: 14px; }
    .help-title { font-size: 28px; }
    .proof-card { flex: 0 0 calc((100% - 32px) / 2.2); }

    /* Build journey map adjustments for tablet */
    .watermark {
        font-size: 56px;
    }
    .endpoint-label {
        font-size: 15px;
    }
    .card-name {
        font-size: 18px;
    }

    /* Audit CTA — slight adjustments for tablet */
    .audit-steps {
        padding: 20px 24px;
    }
    .audit-step-title {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 16px; }
    .logo-tagline { display: block; font-size: 8px; left: 32px; }
    .nav-favicon { opacity: 1 !important; height: 28px; }
    .logo-container { gap: 0; padding-left: 8px; flex: 0 1 auto; max-width: calc(100% - 56px); align-items: center; }
    .logo-link { height: 28px; gap: 6px; }
    .logo { height: 12px; max-width: calc(100vw - 160px); top: calc(42% - 2px); left: 34px; }
    .nav-hamburger { flex-shrink: 0; margin-left: auto; }

    #wheel-container svg {
        max-width: 360px;
        max-height: 360px;
    }
    .wheel-slice {
        stroke-width: 3;
    }

    /* ─── MOBILE: Replace wheel with 2×2 Zone Grid ─── */
    .ops-surface,
    #wheel-container,
    .zone-label,
    .corner-bracket,
    .cell-popup,
    .hover-nudge-pill,
    .wheel-hover-hint {
        display: none !important;
    }

    .hero-visual {
        height: auto !important;
        min-height: unset;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        padding: 12px;
    }

    .mobile-zone-grid {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .mzg-cell {
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: visible;
    }

    .mzg-cell.mzg-expanded {
        overflow: hidden;
    }

    /* ── Collapsed state (2×2 grid) ── */
    .mobile-zone-grid:not(.mzg-has-expanded) .mzg-cell {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px 14px 12px;
        min-height: 72px;
        cursor: pointer;
    }

    /* Tap indicator — cursor nudge on Waste card */
    .mobile-zone-grid:not(.mzg-has-expanded) .mzg-cell {
        position: relative;
    }

    .mobile-zone-grid:not(.mzg-has-expanded) .mzgz-waste {
        animation: mzg-pulse 2.5s ease-in-out infinite;
    }

    .mobile-zone-grid:not(.mzg-has-expanded) .mzg-cell::after {
        display: none;
    }

    /* Cursor icon is now inline inside .mzg-nudge-label pill — no ::after needed */
    .mobile-zone-grid:not(.mzg-has-expanded) .mzgz-waste::after {
        display: none;
    }

    /* Nudge label text — overlay pill near top-center */
    .mzg-nudge-label {
        display: none;
    }

    .mobile-zone-grid:not(.mzg-has-expanded) .mzg-nudge-label {
        display: flex;
        align-items: center;
        gap: 4px;
        position: absolute;
        bottom: -4px;
        right: -14px;
        background: rgba(123, 94, 139, 0.88);
        color: #fff;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        white-space: nowrap;
        padding: 5px 10px 5px 8px;
        border-radius: 12px;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        box-shadow: 0 2px 8px rgba(123, 94, 139, 0.25);
        animation: mzg-nudge-sync 2.5s ease-in-out infinite;
        z-index: 6;
        pointer-events: none;
    }

    .mzg-nudge-cursor {
        flex-shrink: 0;
        animation: mzg-cursor-bounce 2.5s ease-in-out infinite;
    }

    .mobile-zone-grid:not(.mzg-has-expanded) .mzg-nudge-label.mzg-nudge-hidden {
        animation: none !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease;
    }

    .mzg-nudge-label.mzg-nudge-hidden .mzg-nudge-cursor {
        animation: none !important;
    }

    .mobile-zone-grid.mzg-has-expanded .mzgz-waste::after {
        display: none;
    }

    /* Hide nudge label when grid has expanded zone */
    .mobile-zone-grid.mzg-has-expanded .mzg-nudge-label {
        display: none;
    }

    @keyframes mzg-pulse {
        0%, 100% { box-shadow: none; }
        50% { box-shadow: 0 0 0 3px rgba(123, 94, 139, 0.15); }
    }

    @keyframes mzg-nudge-sync {
        0%, 100% { opacity: 0.25; }
        25% { opacity: 0.85; }
        40% { opacity: 1; }
        55% { opacity: 0.85; }
        75% { opacity: 0.3; }
    }

    @keyframes mzg-cursor-bounce {
        0%, 100% { transform: translate(0, 0); }
        15% { transform: translate(1px, -1px); }
        25% { transform: translate(-1px, 1px); }
        40% { transform: scale(0.82); }
        55% { transform: scale(1.1); }
        75% { transform: translate(0, 0); }
    }

    .mobile-zone-grid:not(.mzg-has-expanded) {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Hide count and chevron in collapsed state */
    .mobile-zone-grid:not(.mzg-has-expanded) .mzg-zone-count,
    .mobile-zone-grid:not(.mzg-has-expanded) .mzg-chevron {
        display: none;
    }

    .mobile-zone-grid:not(.mzg-has-expanded) .mzg-zone-header {
        justify-content: center;
    }

    /* ── Zone header row ── */
    .mzg-zone-header {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mzg-zone-name {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .mzg-zone-count {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 500;
        color: var(--text-secondary);
        opacity: 0.7;
    }

    .mzg-chevron {
        margin-left: auto;
        font-size: 12px;
        transition: transform 0.3s ease;
        opacity: 0.5;
    }

    /* ── Zone body (hidden when collapsed) ── */
    .mzg-zone-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.3s ease;
        opacity: 0;
    }

    /* ── Expanded state ── */
    .mzg-cell.mzg-expanded {
        grid-column: 1 / -1;
        padding: 16px 16px 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        animation: none;
    }

    .mzg-cell.mzg-expanded::after {
        display: none;
    }

    .mzg-cell.mzg-expanded .mzg-zone-header {
        margin-bottom: 12px;
        justify-content: flex-start;
    }

    .mzg-cell.mzg-expanded .mzg-zone-count,
    .mzg-cell.mzg-expanded .mzg-chevron {
        display: revert;
    }

    .mzg-cell.mzg-expanded .mzg-chevron {
        transform: rotate(90deg);
    }

    .mzg-cell.mzg-expanded .mzg-zone-body {
        max-height: 500px;
        opacity: 1;
    }

    /* ── Compressed state (other zones when one is expanded) ── */
    .mzg-has-expanded .mzg-cell:not(.mzg-expanded) {
        padding: 10px 16px;
        align-items: center;
        justify-content: center;
        animation: none;
    }

    .mzg-has-expanded .mzg-cell:not(.mzg-expanded)::after {
        display: none;
    }

    .mzg-has-expanded .mzg-cell:not(.mzg-expanded) .mzg-zone-count,
    .mzg-has-expanded .mzg-cell:not(.mzg-expanded) .mzg-chevron {
        display: none;
    }

    .mzg-has-expanded .mzg-cell:not(.mzg-expanded) .mzg-zone-header {
        justify-content: center;
    }

    /* ── Top accent bar ── */
    .mzg-cell::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
    }

    /* ── Zone colors ── */
    .mzgz-waste {
        background: rgba(123, 94, 139, 0.10);
        border: 1.5px solid rgba(123, 94, 139, 0.30);
    }
    .mzgz-waste::before { background: #7B5E8B; }
    .mzgz-waste .mzg-zone-name { color: #7B5E8B; }

    .mzgz-quality {
        background: rgba(224, 90, 71, 0.10);
        border: 1.5px solid rgba(224, 90, 71, 0.30);
    }
    .mzgz-quality::before { background: #E05A47; }
    .mzgz-quality .mzg-zone-name { color: #E05A47; }

    .mzgz-execution {
        background: rgba(59, 140, 140, 0.10);
        border: 1.5px solid rgba(59, 140, 140, 0.30);
    }
    .mzgz-execution::before { background: #3B8C8C; }
    .mzgz-execution .mzg-zone-name { color: #3B8C8C; }

    .mzgz-supply {
        background: rgba(212, 148, 58, 0.10);
        border: 1.5px solid rgba(212, 148, 58, 0.30);
    }
    .mzgz-supply::before { background: #D4943A; }
    .mzgz-supply .mzg-zone-name { color: #D4943A; }

    /* ── Item pills ── */
    .mzg-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 14px;
    }

    .mzg-pill {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding: 6px 12px;
        border-radius: 20px;
        border: 1.5px solid rgba(0,0,0,0.12);
        background: rgba(255,255,255,0.7);
        color: var(--text-secondary);
        cursor: pointer;
        transition: all 0.2s ease;
        text-transform: capitalize;
        display: inline-block;
        width: auto;
        white-space: nowrap;
    }

    .mzg-pill:active {
        transform: scale(0.96);
    }

    .mzg-pill.mzg-pill-active {
        color: #fff;
        border-color: transparent;
    }

    .mzgz-waste .mzg-pill.mzg-pill-active { background: #7B5E8B; }
    .mzgz-quality .mzg-pill.mzg-pill-active { background: #E05A47; }
    .mzgz-execution .mzg-pill.mzg-pill-active { background: #3B8C8C; }
    .mzgz-supply .mzg-pill.mzg-pill-active { background: #D4943A; }

    /* ── Case reveal ── */
    .mzg-case-reveal {
        background: rgba(255,255,255,0.6);
        border-radius: 8px;
        padding: 14px 16px;
        border-left: 3px solid rgba(0,0,0,0.08);
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

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

    .mzg-case-text {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.6;
        color: var(--text-primary);
        margin: 0 0 10px 0;
    }

    .mzg-risk-text {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.5;
        font-style: italic;
        margin: 0;
        opacity: 0.75;
    }

    .mzgz-waste .mzg-risk-text { color: #7B5E8B; }
    .mzgz-quality .mzg-risk-text { color: #E05A47; }
    .mzgz-execution .mzg-risk-text { color: #3B8C8C; }
    .mzgz-supply .mzg-risk-text { color: #D4943A; }

    .mzg-bleed {
        display: none;
    }

    /* ─── MOBILE: Case Modal — viz top, scrollable text bottom ─── */
    .case-modal-content {
        flex-direction: column !important;
        max-height: 92vh !important;
        width: 96vw !important;
        border-radius: 14px;
    }

    .case-modal-viz {
        flex: 0 0 auto !important;
        padding: 28px 24px 20px !important;
        gap: 16px !important;
        min-height: 200px;
        max-height: 260px;
    }

    .viz-ring-container {
        width: 130px !important;
        height: 130px !important;
    }

    .viz-counter {
        font-size: 30px !important;
    }

    .viz-counter-unit {
        font-size: 9px !important;
    }

    .viz-sparkline {
        max-width: 180px !important;
    }

    .viz-dots-container,
    .viz-morph-container,
    .viz-nodes-container {
        display: none !important;
    }

    .case-modal-narrative {
        flex: 1 1 auto !important;
        padding: 20px 22px 24px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .case-modal-close {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 40px !important;
        height: 40px !important;
        margin: 8px !important;
        background: rgba(255,255,255,0.95) !important;
        border: 1px solid rgba(0,0,0,0.12) !important;
        color: #1C1B18 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
        z-index: 210 !important;
    }

    .case-modal-title {
        font-size: 24px !important;
    }

    .case-modal-subtitle {
        font-size: 14px !important;
        margin-bottom: 16px !important;
        padding-bottom: 14px !important;
    }

    .case-modal-body p {
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .ppt-breakdown li {
        font-size: 12px !important;
    }

    .case-modal-result {
        padding: 12px 16px !important;
    }

    .result-text {
        font-size: 13px !important;
    }

    .case-modal-nav-arrows {
        padding-top: 12px !important;
    }

    .container {
        padding: 0 20px;
    }
    .section {
        padding: 60px 0;
    }

    h1, .hero-title {
        font-size: 40px;
    }
    .hero-title-accent {
        font-size: 0.78em;
    }
    h2 {
        font-size: 28px;
    }

    .hero {
        padding-top: 70px;
    }
    .hero-bridge {
        margin-top: 4px;
    }
    .bridge-text { font-size: 14px; margin-top: 6px; white-space: normal; max-width: 340px; }
    .bridge-line-solid { height: 16px; }
    .bridge-line-dashed { height: 10px; }
    .bridge-dot { width: 8px; height: 8px; }
    .bridge-arrow { margin-top: 4px; }
    .hero::after { height: 40px; }
    .hero-container {
        padding-bottom: 16px;
        padding-top: 16px;
    }
    .hero-hook {
        font-size: 22px;
    }

    .cell-popup {
        max-width: 280px;
        min-width: 240px;
        padding: 14px 16px;
    }
    .popup-case {
        font-size: 13px;
    }
    .popup-risk {
        font-size: 12px;
    }
    .popup-word {
        font-size: 12px;
    }
    .hover-nudge-pill {
        bottom: 12px;
        right: 12px;
        padding: 6px 12px 6px 10px;
    }
    .nudge-text {
        font-size: 9px;
    }
    .corner-bracket {
        width: 20px;
        height: 20px;
    }
    .corner-tl::before, .corner-tr::before, .corner-bl::before, .corner-br::before { width: 20px; }
    .corner-tl::after, .corner-tr::after, .corner-bl::after, .corner-br::after { height: 20px; }

    .drift-surface {
        width: 240px;
        height: 240px;
    }
    .drift-block {
        width: 90px;
        height: 90px;
        border-radius: 3px;
    }
    .drift-block-name {
        font-size: 9px;
    }
    .drift-block-sub {
        font-size: 9px;
    }
    .drift-quote p {
        font-size: 15px;
    }
    .drift-verdict {
        font-size: 18px;
        gap: 8px;
    }

    .journey-map {
        display: none;
    }

    .journey-mobile {
        display: block;
    }

    .mobile-station-rail {
        width: 32px;
    }

    .station-dot {
        width: 22px;
        height: 22px;
    }

    .station-dot span {
        font-size: 7px;
    }

    .mobile-body {
        padding: 10px 10px;
        margin-left: 6px;
    }

    .mobile-name {
        font-size: 15px;
    }

    .mobile-body p {
        font-size: 12px;
        margin: 0 0 6px 0;
    }

    .transform-grid { grid-template-columns: 1fr; max-width: 480px; }
    .transform-card:hover { transform: none; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border-color: var(--border-color); border-top: none; }
    .transform-card[data-pillar="people"]:hover { border-top: none; }
    .transform-card[data-pillar="process"]:hover { border-top: none; }
    .transform-card[data-pillar="technology"]:hover { border-top: none; }
    .help-trust { padding: 36px 20px; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; }
    .help-trust-inner { grid-template-columns: 1fr; gap: 10px; }
    .help-trust-label { margin-bottom: 20px; }
    .trust-card { padding: 14px 12px; }
    .trust-no { font-size: 13px; }
    .trust-yes { font-size: 14px; }
    .help-title { font-size: 24px; }
    .help-sub { font-size: 15px; }
    .tc-outcome { font-size: 19px; }

    .proof-header { padding: 0 20px; }
    .proof-subtext { font-size: 15px; padding: 12px 16px; margin-bottom: 20px; }
    .proof-carousel-track { padding: 0 20px; gap: 12px; }
    .proof-card { flex: 0 0 calc((100% - 12px) / 1.2); padding: 24px; }
    .proof-card-metric { font-size: 32px; }
    .proof-nav { display: none; }
    .proof-dots { display: flex; }
    /* case-modal-content mobile overrides moved to dedicated block above */
    .case-modal-metric { font-size: 36px; }

    .marquee-item { font-size: 12px; }
    .marquee-item.marquee-outcome { font-size: 12px; }
    .marquee-wrap {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
    }
    .help-cta-wrap { padding: 36px 0 48px; }

    .audit-title {
        font-size: 28px;
    }
    .audit-frame {
        padding: 32px 20px;
    }
    .audit-steps {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }
    .audit-step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    .audit-step {
        width: 100%;
        flex: none;
        justify-content: flex-start;
        padding-left: 0;
        text-align: left;
    }
    .audit-step-num {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .audit-step-text {
        text-align: left;
        gap: 3px;
    }
    .audit-step-title {
        white-space: normal;
        font-size: 15px;
    }
    .audit-step-desc {
        font-size: 13px;
        line-height: 1.4;
    }
    .audit-sub {
        font-size: 15px;
        max-width: 100%;
        text-align: center;
        line-height: 1.6;
    }
    .audit-scarcity {
        text-align: center;
    }
    .audit-form {
        text-align: center;
    }
    .audit-btn {
        font-size: 15px;
        padding: 16px 28px;
    }
    .audit-form-row {
        flex-direction: column;
    }
    .audit-contact-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .section-tagline {
        font-size: 24px;
    }
    .about-section-label {
        padding-top: 0;
    }
    .about {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .about-flow {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        overflow: hidden;
    }
    /* Mobile: Photo LEFT — slightly larger */
    .about-photo-col {
        float: none;
        text-align: center;
        margin-right: 0;
        margin-bottom: 0;
        flex: 0 0 auto;
        width: 115px;
    }
    .photo-frame-premium {
        width: 105px;
        height: 132px;
    }
    .photo-frame-wrap::before,
    .photo-frame-wrap::after {
        display: none;
    }
    /* Mobile: Name badge — title on single line */
    .photo-name-badge {
        position: absolute;
        bottom: -8px;
        right: -3px;
        left: auto;
        background: var(--text-primary);
        color: var(--bg-base);
        padding: 4px 7px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.12);
        align-items: flex-start;
        max-width: none;
        white-space: nowrap;
        gap: 1px;
    }
    .photo-name-badge .name {
        font-size: 8px;
        color: var(--bg-base);
        line-height: 1.25;
        white-space: nowrap;
    }
    .photo-name-badge .title {
        font-size: 6px;
        color: var(--accent);
        line-height: 1.2;
        white-space: nowrap;
    }
    /* Quote RIGHT of photo — takes remaining width */
    .about-quote-beside {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 6px;
        flex: 1 1 0;
        min-width: 0;
        margin-bottom: 16px;
        padding-top: 4px;
    }
    .about-quote-beside p {
        font-size: 13px;
        line-height: 1.5;
        margin: 0;
    }
    .quote-accent-mark {
        font-size: 32px;
        margin: 0;
        flex-shrink: 0;
    }
    /* Text blocks below photo+quote, full width */
    .about-accent-rail {
        flex: 0 0 100%;
        min-width: 0;
        padding-left: 12px;
        border-left-width: 2px;
    }
    .about-body {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 6px;
    }
    /* Mobile: Show the Read More / Read Less toggle */
    .about-read-toggle {
        display: flex;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        font-family: var(--font-sans);
        font-size: 12px;
        font-weight: 600;
        color: var(--accent-dark);
        padding: 4px 0;
        margin-top: 2px;
        transition: color 0.2s ease;
        letter-spacing: 0.02em;
    }
    .about-read-toggle:hover {
        color: var(--text-primary);
    }
    .about-read-toggle .toggle-icon {
        font-size: 10px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    .about-read-toggle[aria-expanded="true"] .toggle-icon {
        transform: rotate(180deg);
    }
    /* Mobile: collapsed state hides extended paragraphs */
    .about-collapsible.collapsed .about-body-extended {
        display: none;
    }
    .about-collapsible:not(.collapsed) .about-body-extended {
        display: block;
    }
    .about-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .about-card-title {
        font-size: 16px;
    }


    .footer-container {
        flex-direction: column;
        gap: 28px;
        padding-top: 52px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-info {
        flex-direction: column;
        gap: 24px;
        justify-content: flex-start;
    }

    .footer-brand-mark {
        gap: 0;
        padding-left: 16px;
    }

    .footer-icon {
        height: 28px;
    }

    .footer-logo-link {
        height: 28px;
        gap: 6px;
    }

    .footer-logo {
        height: 12px;
        top: calc(42% - 2px);
        left: 34px;
    }

    .footer-tagline {
        font-size: 8px;
        left: 32px;
    }
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--text-primary);
    color: #fff;
    padding: 12px 24px;
    z-index: 10000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

/* Fix mobile auto-linking phone numbers in blue */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

.footer-contact a[href^="tel:"] {
    color: rgba(250, 250, 245, 0.95);
}

.footer-contact a[href^="tel:"]:hover {
    color: #fff;
}

.footer-contact a[href^="tel:"]:hover svg {
    opacity: 1;
}

.audit-contact-pill {
    color: rgba(255, 255, 255, 0.7);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .marquee-track { animation: none !important; }
    .hover-nudge-pill { animation: none !important; }
    .preloader { display: none !important; }
    body.no-scroll { overflow: auto !important; height: auto !important; }
}
