/* ============================================
   BLDR Website Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors - Background */
    --bg-deep: #000000;
    --bg-dark: #000000;
    --bg-mid: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #181818;
    
    /* Colors - Green Accents */
    --glow-dark: #0a0a0a;
    --glow-mid: #1a1a1a;
    --glow-light: #2d8b5e;
    --accent-lime: #cdff5e;
    --accent-lime-hover: #d8ff7a;
    
    /* Colors - Text */
    --text-white: #ffffff;
    --text-off-white: #e8e8e8;
    --text-gray: #b8b8b8;
    --text-muted: #7a7a7a;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1600px;
    --container-padding: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip navigation link (ADA) */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent-lime);
    color: #000;
    padding: 12px 24px;
    font-weight: 600;
    z-index: 10000;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}
.skip-nav:focus {
    top: 0;
}

/* Keyboard focus styles (ADA) */
a:focus-visible,
button:focus-visible,
[role="tab"]:focus-visible {
    outline: 2px solid var(--accent-lime);
    outline-offset: 3px;
    border-radius: 2px;
}

a,
button,
[role="button"],
[onclick] {
    cursor: pointer !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

strong {
    font-weight: 600;
    color: var(--text-off-white);
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---------- Typography ---------- */
.label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--glow-light);
    margin-bottom: 16px;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 24px;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.section-headline .text-accent {
    white-space: normal;
}

.section-services .section-headline .text-accent {
    white-space: nowrap;
}

.section-clients .section-headline,
.section-clients .section-headline .text-accent {
    white-space: nowrap;
}

.section-clients .section-header {
    max-width: none;
    text-align: center;
    margin-bottom: 120px;
}

.section-clients .section-headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
}

.section-subtext {
    font-size: 1rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.7;
    max-width: 600px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-lime);
    color: var(--bg-deep);
}

.btn-primary:hover {
    background: var(--accent-lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(205, 255, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.btn-dark:hover {
    background: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1rem;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-med);
    background: var(--bg-deep);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(205, 255, 94, 0.12);
}

.nav.scrolled {
    background: var(--bg-deep);
    padding: 16px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo-img {
    height: 150px;
    width: auto;
    margin: -52px 0;
    mix-blend-mode: screen;
    transform: translateY(8px);
}

.nav-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    margin-top: -2px;
    margin-left: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-off-white);
    transition: color var(--transition-fast);
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-lime);
}

.nav-link-cta {
    color: var(--text-off-white);
}

.nav-contact-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-off-white);
    transition: color 0.2s ease;
    cursor: pointer;
}

.nav-icon-link:hover {
    color: var(--accent-lime);
}

.nav-icon-link svg {
    width: 22px;
    height: 22px;
}

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

.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--text-white);
    transition: all var(--transition-fast);
}

.nav-toggle span:nth-child(1) { width: 28px; }
.nav-toggle span:nth-child(2) { width: 20px; }
.nav-toggle span:nth-child(3) { width: 12px; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-deep);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 32px;
    padding-right: 80px;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-white);
}

/* ---------- Hero Section ---------- */
.hero {
    height: 100vh;
    max-height: 900px;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
}

.hero-glow-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--glow-mid) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-dark) 0%, transparent 70%);
    bottom: 100px;
    left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-split {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    z-index: 2;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin-left: 80px;
    margin-top: 0;
    padding: 60px 24px;
    text-align: left;
    position: relative;
    z-index: 3;
}

.hero-word-mobile { display: none; }
.hero-word-desktop { display: inline; }

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-headline-accent {
    color: var(--accent-lime);
}

.hero-subheading {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 30%;
    right: 40px;
    bottom: 0;
    height: 100vh;
    z-index: 1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-lime);
    margin-bottom: 12px;
}

.hero-subtext {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-off-white);
    margin-bottom: 48px;
    max-width: 520px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--accent-lime);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.hero-cta:hover {
    gap: 12px;
}

.hero-cta-ghost {
    color: var(--text-off-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    padding: 10px 20px;
    letter-spacing: 0.02em;
    width: fit-content;
}

.hero-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--text-white);
    gap: 12px;
}

.hero-cta .arrow {
    transition: transform var(--transition-fast);
}

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

/* Hero Visual with Callouts */
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.hero-visual-mobile {
    display: none;
}

/* IP Lifecycle Labels */
.ip-labels {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    padding: 0 2%;
}

.ip-labels-top {
    top: 13%;
    justify-content: flex-start;
    padding-left: 4%;
}

.ip-labels-bottom {
    bottom: 18%;
}

/* Individual label positions - centered under each character */
.ip-label-2 {
    position: absolute;
    bottom: 15%;
    left: 36%;
    transform: translateX(-50%);
}

.ip-label-3 {
    position: absolute;
    bottom: 15%;
    left: 52%;
    transform: translateX(-50%);
}

.ip-label-4 {
    position: absolute;
    bottom: 15%;
    left: 70%;
    transform: translateX(-50%);
}

.ip-label-5 {
    position: absolute;
    bottom: 15%;
    left: 88%;
    transform: translateX(-50%);
}

.ip-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}

.ip-label-origin {
    color: var(--accent-lime);
}

.ip-label-spacer {
    visibility: hidden;
}

.hero-image-wrapper:hover .ip-label {
    opacity: 1;
}

/* Callouts - floating transparent boxes */
.callout {
    position: absolute;
}

.callout-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #ff79c6;
    background: rgba(5, 10, 8, 0.15);
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 121, 198, 0.3);
    white-space: nowrap;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Scattered positions - overlaying characters */
.callout-1 {
    top: 25%;
    left: 3%;
    transform: rotate(-2deg);
}

.callout-2 {
    top: 12%;
    left: 28%;
    transform: rotate(1deg);
}

.callout-3 {
    top: 35%;
    right: 18%;
    transform: rotate(-1deg);
}

.callout-4 {
    bottom: 25%;
    right: 5%;
    transform: rotate(2deg);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: var(--container-padding);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 3;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-lime);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* ---------- Sections General ---------- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-dark) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.section-glow-alt {
    left: -200px;
    right: auto;
}

.section-glow-contact {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header .section-subtext {
    margin: 0 auto;
}

/* ---------- About Section - Stats & Impact ---------- */
.section-about {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.about-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(205, 255, 94, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -150px;
}

.about-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 139, 94, 0.1) 0%, transparent 70%);
    bottom: -50px;
    right: -100px;
}

/* Lead-in */
.about-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-split-left {
    flex: 0 0 36%;
    position: sticky;
    top: 100px;
}

.about-split-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-top: 24px;
}

.about-split-right {
    flex: 1;
    min-width: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.about-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.about-headline .text-accent {
    color: var(--accent-lime);
}

.text-accent {
    color: var(--accent-lime);
    font-weight: 400;
}

/* Stats Collage - Masonry-like grid */
.stats-collage {
    display: none;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 21px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(205, 255, 94, 0.25);
    transform: translateY(-2px);
}

.stat-a,
.stat-b,
.stat-c {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-a .stat-number,
.stat-b .stat-number,
.stat-c .stat-number {
    color: var(--text-white);
}

.stat-a .stat-label,
.stat-b .stat-label,
.stat-c .stat-label {
    color: var(--text-gray);
}

.stat-a .stat-source,
.stat-b .stat-source,
.stat-c .stat-source {
    color: var(--text-muted);
}


/* Light card variant */
.stat-light {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.stat-light .stat-number {
    color: var(--text-white);
}

.stat-light .stat-label {
    color: var(--glow-light);
}

.stat-light .stat-source {
    color: var(--text-muted);
}

/* Collage positions */
[class^="stat-"] {
    display: flex;
    flex-direction: column;
}

.stat-a,
.stat-b,
.stat-c,
.stat-d,
.stat-e,
.stat-f {
    grid-column: span 1;
    padding: 20px;
}

.stat-f .stat-number {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    white-space: nowrap;
}

.stat-f.stat-light {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

.stat-f.stat-light .stat-number {
    color: var(--bg-dark);
}

/* Typography */
.stat-number {
    font-size: clamp(1.5rem, 3vw, 2.625rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-a .stat-number,
.stat-b .stat-number {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    line-height: 1.5;
}

.stat-source {
    font-size: 0.5rem;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-trend {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--accent-lime);
    background: rgba(205, 255, 94, 0.08);
    border: 1px solid rgba(205, 255, 94, 0.18);
    border-radius: 3px;
    padding: 3px 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Closing thought */
.section-about-closing {
    background: #ffffff;
    padding: 80px 0;
}

.about-closing {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.closing-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--glow-mid), var(--accent-lime));
    margin: 0 auto 32px;
}

.closing-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--bg-dark);
    max-width: 1050px;
    margin: 0 auto 8px;
}

.closing-text-large {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 28px;
}

.mobile-break {
    display: none;
}

.closing-text:last-of-type {
    margin-bottom: 32px;
}

.closing-text strong {
    color: var(--bg-dark);
    font-weight: 600;
}

.closing-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-fast);
    background: var(--bg-dark);
    border: 1px solid var(--bg-dark);
    cursor: pointer;
    border-radius: 4px;
    padding: 10px 20px;
}

.closing-cta:hover {
    background: #1a1f1d;
    border-color: #1a1f1d;
    gap: 12px;
}

.closing-cta .arrow {
    transition: transform var(--transition-fast);
}

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

/* ---------- Living Map Section ---------- */
.section-living-map {
    background: var(--bg-deep);
    padding: var(--section-padding) 0;
}

.living-map-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.living-map-visual {
    flex: 0 0 55%;
    min-width: 0;
}

.lm-wrapper {
    position: relative;
    height: 430px;
    overflow: visible;
}

/* Back panel — Name/Group list (mirrors .sv-asset-list) */
.lm-back-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 338px;
    height: 300px;
    background: rgba(10, 15, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.lm-back-header {
    display: grid;
    grid-template-columns: 28px 1fr 90px;
    align-items: stretch;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lm-back-col {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: var(--text-gray);
}

.lm-back-col-group {
    display: flex;
    align-items: center;
    padding: 10px 0;
}


.lm-back-row {
    display: grid;
    grid-template-columns: 28px 1fr 90px;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.875rem;
    color: var(--text-gray);
}

.lm-back-group {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.lm-back-check {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    flex-shrink: 0;
}

.lm-back-row[data-lm-asset] {
    cursor: pointer;
    transition: background var(--transition-fast);
}

.lm-back-row[data-lm-asset]:hover {
    background: rgba(255,255,255,0.03);
}

.lm-back-row[data-lm-asset].active {
    background: rgba(205, 255, 94, 0.05);
    color: var(--text-white);
}

.lm-back-row.blurred {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
    opacity: 0.45;
}

.lm-back-check.lm-checked {
    background: #FFB057;
    border-color: #FFB057;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Front panel — Heatmap overlapping */
.living-map-placeholder {
    position: absolute;
    top: 55px;
    left: 155px;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    z-index: 2;
    overflow: hidden;
}

/* Asset header inside heatmap panel — mirrors .sv-detail-header */
.lm-asset-header {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 14px 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.lm-asset-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #111111;
    align-self: flex-start;
}

.lm-asset-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.lm-asset-meta {
    flex: 1;
    align-self: flex-start;
    padding-bottom: 12px;
}

.lm-asset-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0a0f0d;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.lm-asset-meta p {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 2px;
    line-height: 1.5;
}

.lm-asset-meta p span {
    color: #222;
}

.lm-asset-meta p strong {
    color: #444;
}

/* Chart area: y-axis + grid + legend */
.lm-chart-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 16px 16px 16px 20px;
    flex: 1;
}

/* Y-axis — just the rotated label, centered vertically */
.lm-y-axis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    padding-bottom: 24px; /* offset to stay centered alongside grid+x-title */
}

.lm-axis-title-y {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* Grid + x-axis */
.lm-grid-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lm-heatmap {
    display: grid;
    grid-template-columns: repeat(5, 36px);
    grid-template-rows: repeat(5, 36px);
    gap: 4px;
}

.lm-cell {
    width: 36px;
    height: 36px;
    border-radius: 3px;
}

/* All cells gray */
.lm-ht1, .lm-ht2, .lm-ht3, .lm-ht4, .lm-ht5 { background: #d4d6da; }
.lm-ht-red { background: #d94f4f; }
.lm-ht-green { background: #4ade80; }

.lm-cell-avatar {
    position: relative;
    overflow: hidden;
}

.lm-cell-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

.lm-x-title {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    text-align: center;
    width: calc(5 * 36px + 4 * 4px);
}

/* Report item list */
.lm-report-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    flex: 1;
    padding: 0 20px 24px;
    border-left: 1px solid rgba(0,0,0,0.07);
    margin-left: 12px;
}

.lm-report-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lm-report-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.lm-icon-green {
    background: #4caf7d;
    color: #fff;
    font-size: 0.8rem;
}

.lm-icon-yellow {
    background: #f0b429;
    color: #fff;
}

.lm-icon-red {
    background: #d94f4f;
    color: #fff;
}

.lm-report-line {
    height: 8px;
    border-radius: 99px;
    background: #e0e2e6;
    flex: 1;
}

.lm-report-line-short {
    max-width: 60%;
}

.lm-report-line-mid {
    max-width: 75%;
}

/* Inline tab on the header divider line */
.lm-tab {
    margin-left: auto;
    margin-right: 60px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #666;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0 0 10px;
    cursor: pointer;
    font-family: var(--font-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.lm-tab.active {
    color: #111;
    border-bottom-color: #111;
}

.living-map-text {
    flex: 1;
    min-width: 0;
}

.living-map-headline {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.living-map-headline .text-accent {
    font-weight: 400;
}

.living-map-body {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .living-map-split {
        flex-direction: column;
        gap: 40px;
    }

    .lm-wrapper {
        zoom: 0.42;
        margin: 0 auto;
        overflow: visible;
    }

    .lm-back-panel {
        width: 338px;
        height: 300px;
    }

    .living-map-placeholder {
        top: 55px;
        left: 155px;
        right: 20%;
        bottom: 0;
    }

    .sv-detail-card {
        right: 20%;
    }

    .living-map-visual {
        flex: 0 0 auto;
        width: 100%;
        order: 2;
    }

    .living-map-text {
        flex: 0 0 auto;
        width: 100%;
        order: 1;
    }
}

/* ---------- Brand Shift Section ---------- */
.section-brand-shift {
    background: var(--bg-deep);
}

.brand-shift-split {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-shift-left {
    flex: 1;
    min-width: 0;
}

.brand-shift-right {
    flex: 1;
    min-width: 0;
}

.brand-shift-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--glow-light);
    margin-bottom: 16px;
}

.brand-shift-accent {
    color: var(--accent-lime);
    font-weight: 400;
}

.brand-shift-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.brand-shift-body {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--text-off-white);
    line-height: 1.7;
    margin-bottom: 16px;
}

.brand-shift-source {
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 24px;
    letter-spacing: 0.02em;
}

/* Bar Chart */
.bschart {
    width: 100%;
}

.bschart-legend {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.bschart-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-gray);
}

.bschart-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bschart-dot-integration {
    background: var(--accent-lime);
}

.bschart-dot-owned {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bschart-bars {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    height: 260px;
}

.bschart-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.bschart-stack {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
}

.bschart-seg {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: height 0.6s ease;
    min-height: 0;
}

.bschart-seg span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 1;
}

.bschart-seg-integration {
    background: var(--accent-lime);
    order: 1;
}

.bschart-seg-integration span {
    color: #0a0f0d;
}

.bschart-seg-owned {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    order: 2;
}

.bschart-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .brand-shift-split {
        flex-direction: column;
        gap: 48px;
    }

    .bschart-bars {
        height: 200px;
    }
}

/* ---------- Services Section ---------- */
.section-services {
    background: var(--bg-dark);
    padding-top: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-med);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(45, 139, 94, 0.3);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--glow-light);
}

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

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ---------- Services Accordion ---------- */
.services-accordion {
    max-width: 900px;
    margin: 0 auto 48px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-fast);
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-gray);
    min-width: 24px;
}

.accordion-title {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.accordion-chevron {
    width: 24px;
    height: 24px;
    color: var(--text-gray);
    transition: transform var(--transition-fast);
}

.accordion-chevron svg {
    width: 100%;
    height: 100%;
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 24px;
}

.accordion-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.80);
    padding-left: 40px;
}

/* ========================================
   Services Split Layout
   ======================================== */

.services-split {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-split-left {
    flex: 0 0 320px;
    padding-top: 60px;
}

.services-split-left .section-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: left;
    margin-bottom: 16px;
    line-height: 1.15;
}

.services-split-left .section-subtext {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.7;
}

.services-split-right {
    flex: 1;
    min-width: 0;
}

/* ========================================
   Services Visual Dashboard Component
   ======================================== */

.services-visual-wrapper {
    position: relative;
    height: 430px;
    overflow: visible;
}

/* Left asset list panel */
.sv-asset-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 338px;
    height: 300px;
    background: rgba(10, 15, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.sv-list-header {
    display: grid;
    grid-template-columns: 28px 1fr 90px;
    align-items: stretch;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sv-col-name {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.sv-list-header > span:first-child {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.sv-asset-row {
    display: grid;
    grid-template-columns: 28px 1fr 90px;
    align-items: stretch;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background var(--transition-fast);
    font-size: 0.875rem;
    color: var(--text-gray);
}

.sv-asset-row:hover {
    background: rgba(255, 255, 255, 0.03);
}
.sv-asset-row:not([data-asset]) {
    cursor: default;
}
.sv-asset-row:not([data-asset]):hover {
    background: transparent;
}

.sv-asset-row.active {
    background: rgba(205, 255, 94, 0.05);
    color: var(--text-white);
}

.sv-asset-name {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.sv-checkbox-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.sv-checkbox {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sv-checkbox.checked {
    background: #FFB057;
    border-color: #FFB057;
    position: relative;
    flex-shrink: 0;
}

.sv-checkbox.checked::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    display: block;
}

.sv-asset-group {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: left;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    align-self: stretch;
    display: flex;
    align-items: center;
}

.sv-col-group {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sv-asset-row.active .sv-asset-group {
    color: rgba(205, 255, 94, 0.6);
}

.sv-asset-row.blurred {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
    opacity: 0.45;
}

/* Right detail card */
.sv-detail-card {
    position: absolute;
    top: 55px;
    left: 155px;
    right: 0;
    bottom: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.sv-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px 0;
    position: relative;
}

.sv-detail-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #111111;
}

.sv-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.sv-detail-meta {
    flex: 1;
}

.sv-detail-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0a0f0d;
    margin-bottom: 6px;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
}

.sv-detail-meta p {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 2px;
    line-height: 1.5;
}

.sv-detail-meta p span {
    color: #222;
}

.sv-detail-meta p strong {
    color: #222;
}

.sv-close-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition-fast);
    flex-shrink: 0;
}

.sv-close-btn:hover {
    color: #333;
}

.sv-tabs {
    display: flex;
    padding: 12px 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 12px;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.sv-tabs::-webkit-scrollbar {
    display: none;
}

.sv-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #666;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0 0 10px;
    margin-right: 18px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.sv-tab:hover {
    color: #333;
}
.sv-tab:not([data-tab]) , .sv-tab[data-tab=""] {
    cursor: default;
    pointer-events: none;
}
.sv-tab:not([data-tab]):hover, .sv-tab[data-tab=""]:hover {
    color: #666;
}

.sv-tab.active {
    color: #111;
    border-bottom-color: #111;
}

.sv-tab-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.sv-panel {
    display: none;
}

.sv-panel.active {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.sv-flow-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sv-flow-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.sv-flow-bg svg {
    width: 100%;
    height: 100%;
    filter: blur(1.5px);
    opacity: 0.65;
}

.sv-flow-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.sv-panel h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0a0f0d;
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.sv-panel p {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.7;
    max-width: 480px;
}

.services-note {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-mid) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.services-note p {
    font-size: 1.0625rem;
    color: var(--text-off-white);
}

/* ---------- Clients Section ---------- */
.section-clients {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.clients-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 64px;
}

.clients-left-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.clients-right-open,
.clients-left-open {
    align-self: stretch;
    position: relative;
}

.clients-stage-labels {
    position: relative;
    height: 100%;
}

.stage-word {
    display: block;
    position: absolute;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 300;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.stage-word:nth-child(1) { top: 0%; }
.stage-word:nth-child(2) { top: 40%; }
.stage-word:nth-child(3) { top: 75%; }

.stage-word::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M1 6.5 C33 5, 66 7, 99 5.5' stroke='%23cdff5e' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.stage-word.stage-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.client-card {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 4px;
    padding: 36px 36px 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0.3;
    transform: translateX(6px);
}

.client-card.in-view {
    opacity: 1;
    transform: translateX(0);
}

.client-card .client-title {
    color: var(--bg-dark);
}

.client-card .client-signal {
    color: rgba(10, 15, 13, 0.7);
}

.client-card .client-break {
    margin-top: auto;
    flex-shrink: 0;
}

.client-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.client-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.client-signal {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
}

.client-break {
    font-size: 0.9375rem;
    background: var(--bg-dark);
    margin: 24px -40px 0;
    padding: 28px 40px 32px;
    position: relative;
    clip-path: polygon(
        0% 8px,
        3% 0%,
        8% 6px,
        12% 2px,
        18% 8px,
        25% 3px,
        32% 7px,
        38% 1px,
        45% 6px,
        52% 4px,
        58% 9px,
        65% 2px,
        72% 7px,
        78% 3px,
        85% 8px,
        92% 1px,
        97% 6px,
        100% 4px,
        100% 100%,
        0% 100%
    );
}

.client-break::before {
    display: none;
}

.marker-underline {
    position: relative;
    display: inline;
}

.marker-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M1 6.5 C33 5, 66 7, 99 5.5' stroke='%23000000' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.client-break-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-lime);
    margin-bottom: 8px;
}

.client-break p {
    color: var(--text-off-white);
    line-height: 1.7;
}

.clients-cta {
    text-align: center;
    background: #ffffff;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    padding: 64px 24px;
    margin-top: 64px;
}

.clients-cta p {
    font-size: clamp(1.375rem, 2.5vw, 2rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--bg-dark);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.clients-cta .hero-cta {
    color: var(--bg-dark);
    background: var(--accent-lime);
    border-radius: 4px;
    padding: 10px 20px;
    width: fit-content;
}

.clients-cta .hero-cta:hover {
    background: var(--accent-lime-hover);
    opacity: 1;
    gap: 12px;
}

/* ---------- How It Works Section ---------- */
.section-how-it-works {
    background: var(--bg-deep);
    padding: var(--section-padding) 0;
}

.how-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.how-header .section-headline {
    margin-bottom: 0;
}

.how-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto 64px;
}

.how-step {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px 28px;
}

.how-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.how-step-number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-lime);
}

.how-step-icon {
    width: 36px;
    height: 36px;
    color: rgba(255,255,255,0.30);
}

.how-step-icon svg {
    width: 100%;
    height: 100%;
}

.how-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.how-step-body {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.7;
}

.how-step-arrow {
    flex-shrink: 0;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 52px;
}

.how-step-arrow svg {
    width: 40px;
    height: 16px;
}

.how-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .how-steps {
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: stretch;
        margin-bottom: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* bleed past container padding to show peek */
        margin-left: calc(-1 * var(--container-padding));
        margin-right: calc(-1 * var(--container-padding));
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
        /* hide scrollbar */
        scrollbar-width: none;
    }
    .how-steps::-webkit-scrollbar {
        display: none;
    }
    .how-step {
        flex: 0 0 78%;
        scroll-snap-align: start;
        padding: 24px 20px;
    }
    .how-step-icon {
        display: none;
    }
    .how-step-arrow {
        display: none;
    }
}

/* ---------- What You Receive Section ---------- */
.section-what-you-receive {
    background: var(--bg-dark);
    padding: var(--section-padding) 0;
}

.wyr-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.wyr-header .section-subtext {
    max-width: none;
    margin-top: 16px;
}

.wyr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.wyr-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px 28px;
}

.wyr-card-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-lime);
    margin-bottom: 20px;
}

.wyr-card-icon svg {
    width: 100%;
    height: 100%;
}

.wyr-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.wyr-card-body {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.7;
}

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

    .wyr-header {
        text-align: left;
        margin-left: 0;
    }
}

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

/* ---------- Process Section ---------- */
.section-process {
    background: var(--bg-dark);
}

.process-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.process-top-row {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
}

.process-bottom-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.process-who-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

.process-who-col .contact-options {
    justify-content: center;
    margin-top: 0;
}

.process-who-col .contact-email,
.process-who-col .btn-linkedin {
    font-size: 1.375rem;
}

.process-who-col .btn-linkedin .linkedin-icon {
    width: 22px;
    height: 22px;
}

.process-split-left {
    flex: 1;
    padding-top: 20px;
}

.process-calendly {
    flex: 0 0 50%;
    overflow: hidden;
}

.calendly-wrapper {
    background: var(--bg-deep);
    border-radius: 8px;
    overflow: hidden;
}

.book-call-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(205, 255, 94, 0.06);
    border-bottom: 1px solid rgba(205, 255, 94, 0.15);
    color: var(--accent-lime);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 16px 24px;
}

.calendly-clip {
    overflow: hidden;
    height: 580px;
}

.process-calendly .calendly-inline-widget,
.calendly-wrapper .calendly-inline-widget {
    min-width: 280px;
    height: 850px;
    margin-top: 0;
}

.process-who-card {
    flex: 0 0 45%;
    margin-right: 0;
    border-radius: 8px;
    box-sizing: border-box;
}

.process-top-row .process-contact {
    flex: 1;
}

.process-contact .contact-headline {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    text-align: left;
    margin-bottom: 12px;
}

.process-contact .contact-subtext {
    text-align: left;
    margin-bottom: 0;
}

.process-contact .contact-options {
    justify-content: flex-start;
    margin-top: 24px;
}

.who-underline {
    display: block;
    width: 160px;
    height: 8px;
    margin-top: -6px;
    margin-bottom: 24px;
}

.process-how-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.process-how-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.process-how-number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-lime);
    flex-shrink: 0;
    padding-top: 3px;
}

.process-how-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.process-how-body {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.50);
    line-height: 1.6;
}

.process-split-left .section-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: left;
    margin-bottom: 16px;
    line-height: 1.15;
}

.process-split-left .section-subtext {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.7;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.process-step {
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(100% + 8px);
    width: calc(100% - 48px);
    height: 1px;
    background: linear-gradient(90deg, var(--glow-mid) 0%, transparent 100%);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-lime);
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glow-mid);
    border-radius: 50%;
    background: var(--bg-card);
}

.process-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.process-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.process-why {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-white);
    font-style: italic;
}

.process-why strong {
    color: var(--accent-lime);
    font-style: normal;
    font-weight: 600;
}

/* ---------- Duo Section (Side by Side) ---------- */
.duo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.section-who-we-are {
    background: var(--bg-dark);
    padding-top: 60px;
    padding-bottom: 60px;
}

.duo-card {
    padding: 48px;
    border-radius: 4px;
}

.duo-light {
    background: #ffffff;
    color: var(--bg-dark);
}

.duo-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.duo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.duo-light .duo-title {
    color: var(--bg-dark);
}

.duo-light .contact-options {
    justify-content: flex-start;
    margin-top: 24px;
}

.duo-light .contact-email,
.duo-light .btn-linkedin {
    color: var(--bg-dark);
}

.duo-light .contact-email:hover,
.duo-light .btn-linkedin:hover {
    color: var(--bg-dark);
    opacity: 0.6;
    transform: translateY(-2px);
}

.duo-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(10, 15, 13, 0.8);
    margin-bottom: 24px;
}

.duo-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(10, 15, 13, 0.65);
    margin-bottom: 16px;
}

.duo-narrative {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.duo-narrative p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(10, 15, 13, 0.8);
    margin: 0;
}

.duo-narrative em {
    font-style: italic;
    color: var(--bg-dark);
}

.duo-notlist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.duo-notitem {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.duo-notitem-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-dark);
}

.duo-notitem-desc {
    font-size: 0.9375rem;
    color: rgba(10, 15, 13, 0.7);
    line-height: 1.6;
}

.duo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.duo-list li {
    font-size: 1rem;
    color: rgba(10, 15, 13, 0.8);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.duo-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: rgba(10, 15, 13, 0.7);
    font-size: 0.75rem;
}

.duo-principles {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.duo-principle-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-off-white);
}

.duo-principle-desc {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Keep old styles for backwards compatibility */
.process-principles {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 48px;
}

.principles-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 32px;
    text-align: center;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.principle {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.principle-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-off-white);
}

.principle-desc {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

/* ---------- What We're Not Section ---------- */
.section-not {
    background: var(--bg-mid);
    padding: 80px 0;
}

.not-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.not-headline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 40px;
}

.not-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 40px;
    margin-bottom: 32px;
}

.not-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-gray);
}

.not-icon {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.not-summary {
    font-size: 1.0625rem;
    color: var(--text-off-white);
    line-height: 1.7;
}

/* ---------- Contact Section ---------- */
.section-contact {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
    padding: 80px 0;
}

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

.contact-headline {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.15;
    text-align: center;
}

.contact-subtext {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Calendly embed */
.calendly-wrap {
    margin-top: 56px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
}

/* Contact Form */
.contact-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.contact-email {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-off-white);
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.contact-email:hover {
    color: var(--accent-lime);
    transform: translateY(-2px);
}

.contact-divider {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    padding: 0 8px;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 1.125rem;
    background: transparent;
    border: none;
    color: var(--text-off-white);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.btn-linkedin:hover {
    color: var(--accent-lime);
    transform: translateY(-2px);
}

.btn-linkedin .linkedin-icon {
    width: 18px;
    height: 18px;
}

.contact-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.linkedin-link {
    display: flex;
    align-items: center;
    color: var(--text-white);
    transition: color var(--transition-fast);
}

.linkedin-link:hover {
    color: var(--accent-lime);
}

.linkedin-icon {
    width: 20px;
    height: 20px;
}

/* ---------- Legal Pages ---------- */
.legal-page {
    padding-top: 140px;
    background: var(--bg-dark);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.legal-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--glow-light);
}

.legal-section a {
    color: var(--accent-lime);
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-back {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-deep);
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-logo {
    height: 120px;
    width: auto;
    margin: -40px 0;
    mix-blend-mode: screen;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
    font-style: normal;
    letter-spacing: 0.02em;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-social:hover {
    color: var(--accent-lime);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--text-gray);
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-glow {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }

    /* Hero: mobile-style layout for all tablets */
    .hero {
        padding: 0;
        min-height: auto;
        height: auto;
    }

    .hero-split {
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding-top: 100px;
        overflow: visible;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 40px 40px 32px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        box-sizing: border-box;
    }

    .hero-visual {
        display: none;
    }

    .hero-visual-mobile {
        display: block;
        width: calc(100% + 80px);
        height: 480px;
        margin: 0 -40px 0;
        overflow: hidden;
        order: 10;
    }

    .hero-image-mobile {
        width: 100%;
        height: 480px;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .hero-word-mobile { display: inline; }
    .hero-word-desktop { display: none; }

    .hero-headline {
        font-size: 2.75rem;
        text-transform: uppercase;
        letter-spacing: 0;
        text-align: left;
        grid-column: unset;
        grid-row: unset;
    }

    .hero-headline-accent {
        color: var(--accent-lime);
        font-weight: 700;
    }

    .hero-subtext {
        text-align: left;
        grid-column: unset;
        grid-row: unset;
    }

    .hero-cta {
        justify-self: flex-start;
        grid-column: unset;
        grid-row: unset;
    }

    .hero-cta-ghost {
        background: none;
        border: none;
        color: var(--accent-lime);
    }

    .hero-cta-ghost:hover {
        background: none;
        color: var(--accent-lime);
    }
    
    .callout-label {
        font-size: 0.625rem;
        padding: 6px 10px;
    }
    
    .callout-4 {
        display: none;
    }
    
    /* IP Labels - smaller screens */
    .ip-label {
        font-size: 0.5625rem;
    }
    
    .ip-label-2 { left: 34%; }
    .ip-label-3 { left: 50%; }
    .ip-label-4 { left: 68%; }
    .ip-label-5 { left: 86%; }
    
    .stats-collage {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .stats-collage .stat-a { grid-column: span 6; }
    .stats-collage .stat-b { grid-column: span 3; }
    .stats-collage .stat-c { grid-column: span 3; }
    .stats-collage .stat-d { grid-column: span 3; }
    .stats-collage .stat-e { grid-column: span 3; }
    .stats-collage .stat-f { grid-column: span 6; }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }

    /* Stack about/stats section for all tablets */
    .about-split {
        flex-direction: column;
        gap: 40px;
    }

    .about-split-left {
        position: static;
        flex: none;
    }
}

/* ---------- iPad Air (769px–900px) — side-by-side like iPad Pro ---------- */
@media (min-width: 769px) and (max-width: 900px) {
    /* Hero: match mobile layout — auto height, flex column, left-aligned */
    .hero {
        padding: 0;
        min-height: auto;
        height: auto;
    }

    .hero-split {
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding-top: 100px;
        overflow: visible;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 40px 40px 32px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        box-sizing: border-box;
    }

    .hero-visual {
        display: none;
    }

    .hero-visual-mobile {
        display: block;
        width: calc(100% + 80px);
        height: 420px;
        margin: 0 -40px 0;
        overflow: hidden;
        order: 10;
    }

    .hero-image-mobile {
        width: 100%;
        height: 420px;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .hero-word-mobile { display: inline; }
    .hero-word-desktop { display: none; }

    .hero-headline {
        font-size: 2.25rem;
        text-transform: uppercase;
        letter-spacing: 0;
        text-align: left;
    }

    .hero-headline-accent {
        color: var(--accent-lime);
        font-weight: 700;
    }

    .hero-subtext {
        text-align: left;
    }

    .hero-cta-ghost {
        background: none;
        border: none;
        color: var(--accent-lime);
    }

    .hero-cta-ghost:hover {
        background: none;
        color: var(--accent-lime);
    }

    /* Stats section: stack to give cards full width */
    .about-split {
        flex-direction: column;
        gap: 40px;
    }

    .about-split-left {
        position: static;
        flex: none;
    }

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

    /* Brand shift */
    .brand-shift-split {
        flex-direction: column;
        gap: 48px;
    }

    .bschart-bars {
        height: 200px;
    }

    /* Keep side-by-side, tighten spacing */
    .services-split {
        gap: 32px;
        padding-left: 0;
    }

    .services-split-left {
        flex: 0 0 43%;
        padding-top: 20px;
    }

    .services-visual-wrapper {
        overflow: hidden;
        height: 430px;
    }

    /* Keep living-map side-by-side, tighten gap */
    .living-map-split {
        gap: 32px;
    }

    .lm-wrapper {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --container-padding: 20px;
    }

    .hero-glow {
        display: none;
    }

    .about-split {
        flex-direction: column;
        gap: 40px;
    }

    .about-split-left {
        position: static;
        flex: none;
    }

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

    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 0;
        min-height: auto;
        max-height: none;
        height: auto;
        background: #000000;
    }
    
    .hero-split {
        min-height: auto;
        max-height: none;
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
        padding-top: 64px;
        background: #000000;
    }
    
    .hero-content {
        margin: 0 auto;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 40px 20px 60px;
        position: relative;
        z-index: 3;
    }
    
    .hero-word-mobile { display: inline; }
    .hero-word-desktop { display: none; }

    .hero-headline {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.15;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        margin: 0 0 24px 0;
        padding: 0;
    }

    .hero-headline-accent {
        color: var(--accent-lime);
        font-weight: 700;
    }

    .hero-subtext {
        font-size: 1.175rem;
        line-height: 1.65;
    }

    .hero-subheading {
        font-size: 0.75rem;
        text-align: center;
        margin: 0 0 20px 0;
        letter-spacing: 0.05em;
    }
    
    .hero-headline br {
        display: inline;
    }
    
    .hero-headline .mobile-break {
        display: inline;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-visual-mobile {
        display: block;
        width: calc(100% + 40px);
        height: 350px;
        margin: 40px -20px 0;
        overflow: hidden;
        order: 10;
    }
    
    .hero-image-mobile {
        width: 100%;
        height: 350px;
        object-fit: cover;
        object-position: 85% center;
        display: block;
    }
    
    .hero-subtext {
        margin: 0 0 32px 0;
        padding: 0;
    }
    
    .hero-eyebrow {
        text-align: left;
    }

    .hero-subtext {
        text-align: left;
        margin-bottom: 24px;
        margin-top: 0;
        max-width: 100%;
    }
    
    .hero-subtext {
        order: 2;
    }

    .hero-cta {
        order: 3;
    }

    .hero-cta-ghost {
        background: none;
        border: none;
        color: var(--accent-lime);
        font-size: 0.9375rem;
        padding: 0;
        box-shadow: none;
        font-weight: 500;
        letter-spacing: 0.03em;
        width: auto;
        align-self: flex-end;
        margin-left: auto;
        margin-right: 24px;
    }

    .hero-cta-ghost:hover {
        background: none;
        color: var(--accent-lime);
        transform: none;
        box-shadow: none;
    }
    
    .callout {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* IP Labels - tablet/mobile */
    .ip-label {
        font-size: 0.5rem;
        letter-spacing: 0;
    }
    
    .ip-labels-top {
        top: 10%;
    }
    
    .ip-label-2, .ip-label-3, .ip-label-4, .ip-label-5 {
        bottom: 12%;
    }
    
    .stats-collage {
        grid-template-columns: 1fr;
    }
    
    .stat-a, .stat-b, .stat-c, .stat-d, .stat-e, .stat-f {
        grid-column: span 1;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-a .stat-number,
    .stat-b .stat-number {
        font-size: 2.5rem;
    }
    
    .duo-section {
        grid-template-columns: 1fr;
    }
    
    .duo-card {
        padding: 36px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .btn-send,
    .btn-linkedin {
        width: 100%;
        justify-content: center;
    }
    
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .clients-split-layout {
        grid-template-columns: 1fr;
    }

    .clients-right-open,
    .clients-left-open {
        display: none;
    }
    
    .client-card {
        padding: 32px 32px 0;
    }
    
    .client-break {
        margin: 24px -32px 0;
        padding: 24px 32px 28px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .not-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .footer-legal {
        gap: 12px;
    }

    .services-split {
        flex-direction: column;
        gap: 36px;
        padding-left: 0;
    }

    .services-split-left {
        flex: unset;
        padding-top: 0;
        width: 100%;
    }

    .services-split-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 1.5rem;
    }
    
    
    .closing-text {
        font-size: 0.95rem;
    }

    .section-about-closing {
        padding: 28px 0;
    }

    .section-about-closing .about-closing {
        align-items: flex-start;
        text-align: left;
    }

    .closing-text-large,
    .closing-text:last-of-type {
        margin-bottom: 20px;
        text-align: left;
    }

    .closing-cta {
        background: none;
        border: none;
        color: var(--bg-dark);
        font-size: 0.8125rem;
        font-weight: 500;
        letter-spacing: 0.03em;
        align-self: flex-end;
        margin-top: 0;
    }

    .closing-cta:hover {
        background: none;
        color: var(--bg-dark);
    }
    
    .mobile-break {
        display: block;
    }
    
    .section-services .section-headline .text-accent {
        white-space: normal;
    }

    .section-clients .section-headline {
        white-space: normal;
    }

    .services-split {
        flex-direction: column;
        gap: 36px;
        padding-left: 0;
    }

    .services-split-left {
        flex: unset;
        padding-top: 0;
        width: 100%;
    }

    .services-split-left .section-headline,
    .services-split-left .section-subtext {
        text-align: left;
    }

    .services-split-right {
        width: 100%;
    }

    .services-visual-wrapper {
        zoom: 0.42;
        margin: 0 auto;
        overflow: visible;
    }

    .sv-asset-list {
        width: 338px;
        height: 300px;
    }

    .sv-detail-card {
        position: absolute;
        top: 55px;
        left: 155px;
        right: 20%;
        bottom: 0;
    }

    .section-clients {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .section-clients .section-header {
        margin-bottom: 60px;
    }

    .section-clients .clients-split-layout {
        margin-bottom: 48px;
    }

    .clients-cta {
        text-align: left;
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .clients-cta p {
        font-size: 0.95rem;
        margin-bottom: 8px;
        margin-left: 0;
        margin-right: 0;
    }

    .clients-cta .hero-cta {
        background: none;
        border: none;
        color: var(--glow-light);
        font-size: 0.8125rem;
        padding: 0;
        box-shadow: none;
        font-weight: 500;
        letter-spacing: 0.03em;
        align-self: flex-end;
        margin-top: 12px;
        border-radius: 0;
        width: auto;
    }

    .clients-cta .hero-cta:hover {
        background: none;
        color: var(--glow-light);
        transform: none;
        box-shadow: none;
    }
    
    .section-process .section-header {
        text-align: left;
    }

    .section-process .section-subtext {
        text-align: left;
    }

    .process-layout {
        flex-direction: column;
        gap: 32px;
    }

    .process-split-left {
        padding-top: 0;
    }

    .process-bottom-row {
        flex-direction: column;
        gap: 32px;
    }

    .process-calendly {
        width: 100%;
        border-radius: 8px;
    }

    .process-calendly .calendly-inline-widget {
        height: 700px;
    }

    .process-who-card {
        margin-right: 0;
        border-radius: 4px;
        width: 100%;
        flex: none;
    }

    .process-who-col .contact-options {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .process-who-col {
        gap: 32px;
    }

    .contact-headline-accent {
        display: block;
    }

    .section-who-we-are {
        padding-top: 30px;
    }
    
    .section-contact {
        padding: 40px 0;
    }
    
    .contact-email,
    .btn-linkedin {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 0.9375rem;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .client-card {
        padding: 24px 24px 0;
    }
    
    .client-break {
        margin: 24px -24px 0;
        padding: 24px 24px 28px;
    }
    
    .process-principles {
        padding: 32px 24px;
    }
    
    /* IP Labels - smallest screens: keep visible, just smaller */
    .ip-label {
        font-size: 0.45rem;
    }
    
    .ip-label-2 { left: 36%; }
    .ip-label-3 { left: 52%; }
    .ip-label-4 { left: 70%; }
    .ip-label-5 { left: 88%; }
}

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .process-step {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.6s ease forwards;
    }
    
    .services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
    .services-grid .service-card:nth-child(2) { animation-delay: 0.2s; }
    .services-grid .service-card:nth-child(3) { animation-delay: 0.3s; }
    .services-grid .service-card:nth-child(4) { animation-delay: 0.4s; }
    .services-grid .service-card:nth-child(5) { animation-delay: 0.5s; }
    .services-grid .service-card:nth-child(6) { animation-delay: 0.6s; }
    
    .clients-grid .client-card:nth-child(1) { animation-delay: 0.1s; }
    .clients-grid .client-card:nth-child(2) { animation-delay: 0.2s; }
    .clients-grid .client-card:nth-child(3) { animation-delay: 0.3s; }
    .clients-grid .client-card:nth-child(4) { animation-delay: 0.4s; }
    
    .process-timeline .process-step:nth-child(1) { animation-delay: 0.1s; }
    .process-timeline .process-step:nth-child(2) { animation-delay: 0.2s; }
    .process-timeline .process-step:nth-child(3) { animation-delay: 0.3s; }
    .process-timeline .process-step:nth-child(4) { animation-delay: 0.4s; }
}

/* ---------- iPad Mini (481px–768px) — side-by-side like iPad Pro ---------- */
@media (min-width: 481px) and (max-width: 768px) {
    /* IP Maps — text 43%, visual 57% */
    .services-split {
        flex-direction: row;
        gap: 24px;
        padding-left: 0;
    }

    .services-split-left {
        flex: 0 0 43%;
        padding-top: 10px;
        width: auto;
    }

    .services-split-left .section-headline {
        font-size: 1.4rem;
    }

    .services-split-left .section-subtext {
        font-size: 0.875rem;
    }

    .services-split-right {
        flex: 1;
        min-width: 0;
        width: auto;
    }

    .services-visual-wrapper {
        zoom: 0.62;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0;
        height: 500px;
    }

    /* Deal Readiness — visual 58%, text 42%, zoom to fit detail card */
    .living-map-split {
        flex-direction: row;
        gap: 24px;
    }

    .living-map-visual {
        flex: 0 0 58%;
        width: auto;
        order: 0;
    }

    .living-map-text {
        flex: 1;
        width: auto;
        order: 0;
        min-width: 0;
    }

    .living-map-headline {
        font-size: 1.5rem;
    }

    .living-map-body {
        font-size: 0.9rem;
    }

    .lm-wrapper {
        zoom: 0.62;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0;
        height: 550px;
    }
}

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

/* ─── Stack Section ──────────────────────────────────────────────────────── */
.section-stack {
    background: var(--bg-deep);
    overflow: hidden;
}

.stack-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.stack-headline {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-white);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.stack-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.stack-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.stack-body #iso-stack-svg {
    flex-shrink: 0;
}

.stack-svg-col {
    display: contents;
}

.stack-mobile-label {
    display: none;
}

/* Accordion */
.stack-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 340px;
    flex-shrink: 0;
}

.stack-acc-item {
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.stack-acc-item:hover {
    border-color: rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.07);
}

.stack-acc-item.active {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.09);
}

.stack-acc-header {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.70);
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}

.stack-acc-item.active .stack-acc-header {
    color: rgba(255, 255, 255, 0.95);
}

.stack-acc-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.stack-acc-item.active .stack-acc-body {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .stack-headline {
        text-align: left;
    }

    .stack-intro {
        text-align: left;
        margin: 0;
    }

    .iso-bracket-group {
        display: none;
    }

    .stack-svg-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
    }

    .stack-mobile-label {
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.45rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: rgba(255,255,255,0.45);
        text-transform: uppercase;
    }

    .stack-mobile-label-top {
        margin-bottom: 4px;
    }

    .stack-mobile-label-bottom {
        margin-top: 4px;
    }

    .stack-body {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }
    .stack-body #iso-stack-svg {
        flex-shrink: 0;
        width: 185px;
        transform: translateX(-55px);
        margin-right: -55px;
        overflow: visible;
    }
    .stack-body #iso-stack-svg svg {
        max-width: 185px !important;
        overflow: visible;
    }
    .stack-accordion {
        flex: 1;
        width: auto;
        min-width: 0;
    }
    .stack-acc-item {
        padding: 12px 14px;
    }
    .stack-acc-header {
        font-size: 13px;
    }
    .stack-acc-body {
        font-size: 11px;
    }
}