/* ============================================
   MERCURY SPC — HOME 2 REDESIGN
   Mercury Planet Theme: Teal, Gold, Red Glow, Gray
   ============================================ */

/* === CSS Variables — Mercury Planet Palette === */
:root {
    --teal: #367589;
    --teal-dark: #2A5E6E;
    --teal-light: #4A8FA3;
    --teal-glow: rgba(54, 117, 137, 0.15);
    --teal-pastel: #D0E8EF;

    --gold: #D4A843;
    --gold-light: #E8C96A;
    --gold-glow: rgba(212, 168, 67, 0.15);
    --gold-pastel: #F5ECD0;

    --red-glow: #C0504D;
    --red-light: #E07A6E;
    --red-pastel: #F5D5D0;

    /* Grays instead of blacks */
    --dark: #2C2C30;
    --dark-card: #353539;
    --dark-border: #45454A;
    --dark-elevated: #3A3A3F;
    --gray-bg: #F0F0F2;
    --gray-warm: #E8E6E3;

    --light: #FAFAF8;
    --light-muted: #9A9A9E;
    --muted: #71717A;

    --accent: var(--teal);
    --accent-glow: var(--teal-glow);

    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-sketch: 'Caveat', cursive;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 60px var(--teal-glow);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ============================
   THERMOMETER PROGRESS BAR
   ============================ */
.thermometer-progress {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    height: 200px;
    display: flex;
    align-items: center;
}

.thermometer-track {
    width: 8px;
    height: 100%;
    background: var(--gray-warm);
    border-radius: 20px;
    position: relative;
    overflow: visible;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.thermometer-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    border-radius: 20px;
    background: linear-gradient(to top, var(--teal-light), var(--teal) 60%, var(--teal-dark));
    transition: height 0.15s ease-out;
}

.thermometer-bulb {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(54, 117, 137, 0.4);
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav.scrolled .logo-text {
    color: var(--dark);
}

.nav.scrolled .nav-links a {
    color: var(--muted);
}

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

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #E8ECF0;
    transition: color 0.4s ease;
}

.logo-spc {
    color: var(--teal-light);
}

.logo-badge {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(200, 210, 220, 0.7);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-cta {
    background: var(--teal) !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--teal-dark) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #E8ECF0;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: var(--teal);
    color: white;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(54, 117, 137, 0.3);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ============================
   HERO — Mercury Planet
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 10rem 0 0;
    background: #070B10;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(30, 50, 80, 0.5), transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 90%, rgba(180, 130, 60, 0.12), transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 0.4rem;
    color: #E8ECF0;
}

.title-line {
    display: inline;
}

.title-line.accent {
    color: #6AAFBF;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(200, 210, 220, 0.6);
    line-height: 1.25;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.1rem;
    font-style: normal;
    white-space: nowrap;
}



/* === Planet Image — Rising from bottom === */
.hero-globe-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 520px;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    white-space: nowrap;
}

.hero-planet-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    mix-blend-mode: screen;
    z-index: 1;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.spin-slow {
    animation: spin-slow 40s linear infinite;
    transform-origin: center;
}

.spin-reverse {
    animation: spin-reverse 55s linear infinite;
    transform-origin: center;
}

/* ============================
   SECTION 2 — ANIMATED INTRO
   ============================ */
.section-intro {
    background: var(--gray-bg);
    padding: 8rem 0;
}

.intro-content {
    text-align: center;
    margin-bottom: 0;
}

.intro-title {
    max-width: 1040px;
    margin: 0 auto;
    line-height: 1.15;
}

.section-intro .title-line {
    display: block;
    margin: 0;
}

.intro-result-driven {
    display: block;
    margin-bottom: 1.25rem !important;
}

.section-intro .accent {
    color: var(--teal);
}

.intro-text {
    max-width: 980px;
    margin: 2rem auto 0;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.75;
    color: #6b7687;
}
.section-problem {
    padding-top: 1.5rem;
}

/* Section 4 — Beyond Compliance */
.problem-statement {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 3rem 4.25rem;
    background: #ffffff;
    border-radius: 1.5rem;
    border-left: 3px solid var(--teal);
    box-shadow: 0 4px 32px rgba(54, 117, 138, 0.08), 0 1px 0 rgba(54, 117, 138, 0.12);
}

.problem-statement .section-tag {
    color: var(--teal);
}

.problem-tag {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.problem-statement .section-title {
    color: var(--dark);
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    font-weight: 600;
    text-transform: none;
}

.problem-kicker {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--teal);
    margin: 0.5rem 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.problem-text {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--muted);
}

/* ============================
   SECTIONS — General
   ============================ */
.section {
    padding: 7rem 0;
}

.section-dark {
    background: var(--dark);
    color: var(--light);
}

.section-gray {
    background: var(--gray-bg);
}

.section-header {
    max-width: 720px;
    margin-bottom: 4rem;
}

.section-header-wide {
    max-width: 1180px;
}

.section-header.light .section-title,
.section-header.light .section-desc {
    color: var(--light);
}

.section-header.light .section-desc {
    color: var(--light-muted);
}

.section-tag {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    color: var(--teal);
    margin-bottom: 1rem;
}

.section-dark .section-tag {
    color: var(--gold-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.philosophy-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-header + .strategic-intro-block {
    margin-top: -1.75rem;
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================
   PHILOSOPHY — Content Block
   ============================ */
.content-block {
    margin-bottom: 4rem;
}

.highlight-block {
    background: linear-gradient(135deg, var(--teal-glow), rgba(212, 168, 67, 0.05));
    border-left: 4px solid var(--teal);
    padding: 2.5rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.highlight-block-header {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--dark);
}

/* Strategic Intro */
.strategic-intro-block {
    max-width: 900px;
}

.strategic-intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--muted);
}

/* Subsection Titles */
.subsection-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.subsection-intro {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Inquiry Phases (Core Components) */
.inquiry-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.inquiry-phase {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.inquiry-phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

.inquiry-phase:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.inquiry-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.3;
    margin-bottom: 0.75rem;
}

.inquiry-phase h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.inquiry-phase p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Comparison Table */
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--teal-glow), rgba(212, 168, 67, 0.05));
}

.comparison-table th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px solid var(--teal);
}

.comparison-table th .th-sub {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

.comparison-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--muted);
    line-height: 1.6;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(54, 117, 137, 0.03);
}

.feature-label {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark) !important;
}

/* Characteristics Grid */
.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.characteristic-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.characteristic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

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

.characteristic-icon {
    width: 48px;
    height: 48px;
    color: var(--teal);
    margin-bottom: 1rem;
}

.characteristic-icon svg {
    width: 48px;
    height: 48px;
}

.characteristic-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.characteristic-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Takeaway Block */
.takeaway-block {
    margin-bottom: 4rem;
}

.takeaway-inner {
    background: var(--dark);
    color: var(--light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.takeaway-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.takeaway-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.takeaway-inner p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(250, 250, 248, 0.85);
}

/* ── Case Study block inside service cards ── */
.letoff-case-study {
    margin-top: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 2rem;
}
.letoff-case-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-light);
    background: rgba(54,117,137,0.08);
    border: 1px solid rgba(54,117,137,0.2);
    border-radius: 100px;
    padding: 0.22rem 0.8rem;
    margin-bottom: 0.9rem;
}
.letoff-case-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.1rem;
    line-height: 1.3;
}
.letoff-case-body p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}
.letoff-case-body p:last-child { margin-bottom: 0; }
.letoff-case-lessons {
    margin-top: 1.25rem;
    background: rgba(212,168,67,0.07);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.9rem 1.1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.letoff-case-lessons-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9a6c10;
    white-space: nowrap;
    padding-top: 0.18rem;
}
.letoff-case-lessons p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Stream Block (Upstream / Downstream banner) */
.stream-block {
    margin-bottom: 1.5rem;
}
.stream-inner {
    background: var(--teal);
    color: #ffffff;
    border-radius: calc(var(--radius-lg) + 2px);
    padding: 1.25rem 1.5rem;
    position: relative;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
}
.stream-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stream-text { display:flex; align-items:center; justify-content:center; gap:0.9rem; flex-wrap:wrap; }
.stream-left, .stream-right { display:inline-block; }
.stream-eq {
    display:inline-block;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 900;
    padding: 0 0.35rem;
}
.stream-eq { flex: 0 0 auto; }

/* Philosophy Flow */
.philosophy-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pointer-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.philosophy-flow .sketch-panel {
    grid-column: 1 / -1;
    margin: 0;
}

.pointer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

.pointer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.pointer-icon {
    width: 56px;
    height: 56px;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.pointer-icon svg {
    width: 48px;
    height: 48px;
}

.pointer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pointer-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-highlight {
    background: var(--gray-bg);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--teal);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-example {
    padding: 1rem;
    background: linear-gradient(135deg, var(--teal-glow), rgba(212, 168, 67, 0.05));
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.example-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.card-example p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================
   SKETCH PANEL (KEPT — Bigger fonts, new theme)
   ============================ */
.sketch-panel {
    margin: 4rem 0;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.sketch-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

.sketch-panel-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.cactus-question {
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 600;
    color: var(--teal);
    line-height: 1.35;
    text-align: center;
}

.cactus-sketch-wrap {
    margin: 2.5rem auto 1rem;
    text-align: center;
    max-width: 640px;
}

.cactus-sketch-svg {
    width: 100%;
    height: auto;
}

/* Cactus Illustration Layout */
.cactus-illustration-wrap {
    margin: 1.5rem auto 0;
    max-width: 560px;
}

.cactus-top-labels {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 5;
    padding: 0 1rem;
}

.cactus-label {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cactus-label-left {
    text-align: left;
}

.cactus-label-right {
    text-align: right;
}

.cactus-label-title {
    font-family: var(--font-sketch);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
}

.cactus-label-title.good {
    color: var(--teal);
}

.cactus-label-title.tough {
    color: var(--red-glow);
}

.cactus-label-sub {
    font-family: var(--font-sketch);
    font-size: 1.2rem;
    line-height: 1.2;
}

.cactus-label-sub.good {
    color: var(--teal);
    opacity: 0.7;
}

.cactus-label-sub.tough {
    color: var(--red-glow);
    opacity: 0.7;
}

.cactus-3d {
    display: flex;
    justify-content: center;
}

.cactus-3d-img {
    height: 360px;
    width: auto;
    object-fit: contain;
}

.cactus-bottom-labels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cactus-bottom-label {
    font-family: var(--font-sketch);
    font-size: 1.4rem;
    color: var(--teal);
    line-height: 1.2;
    flex-shrink: 0;
}

.cactus-bottom-label.left {
    text-align: right;
}

.cactus-bottom-label.right {
    text-align: left;
}

.cactus-cycle-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    padding-top: 0;
}

.perpetual-arrow-svg {
    width: 100%;
    height: auto;
}

.perpetual-label {
    font-family: var(--font-sketch);
    font-size: 1.2rem;
    color: var(--teal);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.cactus-kicker {
    margin-top: 1.25rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    letter-spacing: 0.01em;
}

.cactus-body {
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.sketch-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2.5rem;
}

.sketch-side {
    text-align: center;
}

.sketch-circle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    font-family: var(--font-sketch);
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sketch-circle-label.finite {
    border: 2px dashed #8B8B8B;
    color: #6B6B6B;
    background: rgba(107, 107, 107, 0.05);
}

.sketch-circle-label.infinite {
    border: 2px dashed var(--teal);
    color: var(--teal);
    background: var(--teal-glow);
}

.sketch-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.sketch-list li {
    font-family: var(--font-sketch);
    font-size: 1.35rem;
    color: var(--muted);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.sketch-list li::before {
    content: '~';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.sketch-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.sketch-arrow-down {
    width: 60px;
    height: 120px;
}

.sketch-handwriting {
    font-family: var(--font-sketch);
    font-size: 1.3rem;
    color: var(--teal);
}

.sketch-handwriting.light {
    color: rgba(255, 255, 255, 0.7);
}

.sketch-annotation-inline {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(54, 117, 137, 0.05), rgba(212, 168, 67, 0.05));
    border-radius: var(--radius-md);
    border-left: 3px solid var(--teal);
}

.sketch-annotation-inline .sketch-handwriting {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--dark);
    line-height: 1.7;
    font-style: normal;
}

/* ============================
   GROWTH STRATEGY — Expansion Grid
   ============================ */
.expansion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.expansion-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 2px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out);
}

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

.expansion-positive {
    background: linear-gradient(180deg, rgba(54, 117, 137, 0.08) 0%, rgba(54, 117, 137, 0.03) 100%);
    border-color: rgba(54, 117, 137, 0.3);
}

.expansion-positive:hover {
    border-color: var(--teal);
    background: linear-gradient(180deg, rgba(54, 117, 137, 0.12) 0%, rgba(54, 117, 137, 0.05) 100%);
}

.expansion-warning {
    background: linear-gradient(180deg, rgba(192, 80, 77, 0.08) 0%, rgba(192, 80, 77, 0.03) 100%);
    border-color: rgba(192, 80, 77, 0.3);
}

.expansion-warning:hover {
    border-color: var(--red-glow);
    background: linear-gradient(180deg, rgba(192, 80, 77, 0.12) 0%, rgba(192, 80, 77, 0.05) 100%);
}

.expansion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.expansion-icon.positive {
    background: rgba(54, 117, 137, 0.1);
    color: var(--teal);
}

.expansion-icon.warning {
    background: rgba(192, 80, 77, 0.1);
    color: var(--red-glow);
}

.expansion-icon svg {
    width: 24px;
    height: 24px;
}

.expansion-card h3 {
    font-size: 1.3rem;
}

.expansion-intro {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.expansion-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.example-item {
    padding: 1rem;
    background: var(--gray-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--teal);
}

.example-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.example-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.expansion-warning-box {
    padding: 1.25rem;
    background: rgba(192, 80, 77, 0.06);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--red-glow);
    font-size: 0.9rem;
    color: var(--muted);
}

.expansion-warning-box strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.5rem;
}

.expansion-warning-box p {
    margin: 0;
    line-height: 1.6;
}

.sketch-interconnect {
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-align: center;
}

.sketch-interconnect svg {
    width: 364px;
    height: 183px;
}

/* ============================
   WHAT WE DO
   ============================ */
.what-we-do-desc {
    font-size: 1.2rem;
    line-height: 1.85;
    max-width: 1180px;
}

.objectives-section {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    color: white;
}

.objectives-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.objectives-intro {
    color: var(--light-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.objective-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.objective-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
}

.objective-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.objective-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.objective-card p {
    color: var(--light-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.objectives-summary {
    background: rgba(54, 117, 137, 0.15);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--teal);
}

.objectives-summary p {
    color: var(--light);
    font-size: clamp(1.2rem, 1.45vw, 1.45rem);
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}

/* ============================
   EXECUTION — Circle Loop (KEPT planetary animation)
   ============================ */
.circle-loop-sketch {
    margin-bottom: 4rem;
    text-align: center;
    width: min(70vw, 980px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.loop-container {
    position: relative;
    display: block;
    width: 100%;
}

.loop-svg {
    width: 100%;
    max-width: none;
    height: auto;
}

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

.execution-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--dark-border);
    transition: all 0.4s var(--ease-out);
}

.execution-card:hover {
    transform: translateY(-6px);
    border-color: var(--teal);
    box-shadow: var(--shadow-glow);
}

.execution-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.execution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.execution-card p {
    color: var(--light-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ============================
   SERVICES GRID
   ============================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card.service-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--teal-pastel), var(--gold-pastel));
    border-color: rgba(54, 117, 137, 0.15);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--dark);
}

.service-card > p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-indicators {
    background: var(--gray-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.service-indicators h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-indicators ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-indicators li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: var(--muted);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-indicators li:last-child {
    border-bottom: none;
}

.service-indicators li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.service-list-item {
    padding: 1rem 1.25rem;
    background: var(--gray-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--teal);
}

.service-list-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.service-list-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.service-note {
    background: rgba(212, 168, 67, 0.1);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
}

.service-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
}

.perception-questions {
    background: rgba(54, 117, 137, 0.07);
    border-left-color: var(--teal);
}

.perception-questions p {
    font-style: normal;
    color: var(--dark);
    font-size: 0.95rem;
}

.service-schedule-tab {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 99px;
    border: 1.5px solid var(--teal);
    background: rgba(54, 117, 137, 0.06);
    color: var(--teal);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s;
}

.service-schedule-tab:hover {
    background: var(--teal);
    color: white;
}

.letoffs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.letoff-item {
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--teal);
}

.letoff-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.letoff-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ============================
   HIDDEN COSTS GRID
   ============================ */
.hidden-costs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cost-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--teal);
    transition: all 0.3s ease;
}

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

.cost-card h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cost-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================
   SECTION 6 — THERMOMETER / WHEN NEEDED
   ============================ */
.section-thermometer {
    background: linear-gradient(135deg, var(--gray-bg) 0%, var(--gray-warm) 100%);
    padding: 7rem 0;
}

.thermometer-section-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: center;
}

.thermometer-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.thermo-device {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thermo-tube {
    width: 40px;
    height: 280px;
    background: var(--gray-warm);
    border-radius: 20px 20px 0 0;
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.08);
    overflow: visible;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06);
}

.thermo-mercury {
    position: absolute;
    bottom: 0;
    left: 4px;
    right: 4px;
    height: 20%;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(to top, var(--red-glow), var(--gold), var(--gold-light));
    transition: height 2s ease-out;
}

.thermo-marks {
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 50px;
    margin-left: 8px;
}

.thermo-mark {
    position: absolute;
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 500;
    transform: translateY(50%);
}

.thermo-mark.thermo-danger {
    color: var(--gold);
    font-weight: 700;
}

.thermo-mark.thermo-critical {
    color: var(--red-glow);
    font-weight: 700;
    font-size: 0.8rem;
}

.thermo-redline {
    position: absolute;
    top: 5%;
    left: -10px;
    right: -10px;
    height: 2px;
    background: var(--red-glow);
    opacity: 0.6;
}

.thermo-bulb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gray-warm);
    border: 2px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
    position: relative;
    z-index: 1;
}

.thermo-bulb-fill {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red-glow);
    box-shadow: 0 0 20px rgba(192, 80, 77, 0.4);
}

.thermo-annotation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thermo-annotation .sketch-handwriting {
    color: var(--red-glow);
    font-size: 1.2rem;
}

.sketch-arrow {
    width: 80px;
    height: 40px;
}

.thermometer-text {
    max-width: 640px;
}

.thermometer-text .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 2rem;
}

.thermo-insight {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--red-glow);
}

.insight-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--red-glow);
}

.insight-icon svg {
    width: 24px;
    height: 24px;
}

.thermo-insight p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================
   ADVOCACY GRID
   ============================ */
.advocacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.advocacy-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.advocacy-item:hover {
    border-color: var(--teal);
}

.advocacy-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.advocacy-item p {
    color: var(--light-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================
   CTA SECTION
   ============================ */
.section-cta {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: white;
    text-align: center;
}

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

.section-cta .section-tag {
    color: var(--gold-light);
}

.section-cta .section-title {
    color: white;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.section-cta .btn-primary {
    background: white;
    color: var(--teal);
}

.section-cta .btn-primary:hover {
    background: var(--gold-light);
    color: var(--dark);
}

/* ============================
   CONTACT
   ============================ */
.section-contact {
    background: var(--gray-bg);
}

.contact-grid {
    display: block;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--teal);
}

/* ============================
   TEAM — LEADERSHIP TAPESTRY
   ============================ */
.tapestry-blurb {
    max-width: 600px;
    margin: 0;
    text-align: left;
}

.tapestry-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0.25rem 0 2rem;
}

/* ── Each tier row ── */
.tt-tier {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.tt-tier-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal-light);
}

/* ── Row of cards inside a tier ── */
.tt-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 700px;
}

.tt-row--wide {
    max-width: 900px;
}

/* ── Individual card ── */
.tt-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(74,143,163,0.2);
    border-radius: 10px;
    width: 200px;
    flex-shrink: 0;
}

.tt-card--sm {
    width: 160px;
    padding: 1.25rem 0.75rem;
}

/* ── Photo ── */
.tt-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid rgba(74,143,163,0.45);
    flex-shrink: 0;
}

.tt-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tt-photo--empty {
    background: rgba(74,143,163,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-photo--empty svg {
    width: 42px;
    height: 42px;
    color: rgba(74,143,163,0.45);
}

.tt-card--sm .tt-photo {
    width: 80px;
    height: 80px;
    margin-bottom: 0.75rem;
}

.tt-card--sm .tt-photo--empty svg {
    width: 32px;
    height: 32px;
}

/* ── Text inside card ── */
.tt-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    margin: 0 0 0.3rem;
}

.tt-card--sm .tt-name {
    font-size: 0.9rem;
}

.tt-role {
    font-size: 0.72rem;
    color: var(--teal-light);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.tt-edu {
    font-size: 0.72rem;
    color: rgba(232,236,240,0.45);
    line-height: 1.55;
    margin: 0;
}

/* ── Tree connectors ── */
.tt-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    gap: 0;
}

.tt-c-vert {
    width: 1px;
    height: 1.4rem;
    background: rgba(74,143,163,0.5);
}

.tt-c-horiz {
    height: 1px;
    background: rgba(74,143,163,0.5);
}

.tt-c-drops {
    display: flex;
    justify-content: space-between;
}

.tt-c-drops span {
    display: block;
    width: 1px;
    height: 1.4rem;
    background: rgba(74,143,163,0.5);
}

/* ── Mobile: stack vertically, hide connector lines ── */
@media (max-width: 768px) {
    .tt-connector { display: none; }
    .tt-tier { margin-bottom: 1.5rem; }
    .tt-row,
    .tt-row--wide {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .tt-card,
    .tt-card--sm { width: 240px; }
}

/* ── Preserve old .team-* classes in case referenced elsewhere ── */
.team-grid { display: none; }


/* ============================
   PAGE CURSOR NAV
   ============================ */
.page-cursor-nav {
    padding: 0 0 3rem;
    background: transparent;
}

.page-cursor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.page-cursor-link {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.35rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-cursor-link:hover {
    transform: translateY(-2px);
    border-color: rgba(54, 117, 137, 0.24);
    box-shadow: 0 14px 34px rgba(44, 44, 48, 0.08);
}

.page-cursor-link--next {
    align-items: flex-end;
    text-align: right;
}

.page-cursor-meta {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
}

.page-cursor-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--dark);
}



/* ============================
   FOOTER
   ============================ */
.footer {
    background: #000000;
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-wordmark {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: white;
    line-height: 1;
}

.footer-wordmark span {
    color: var(--teal-light);
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: var(--light-muted);
    font-size: 0.9rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 2rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact-item a,
.footer-contact-item span:not(.contact-label) {
    color: var(--light-muted);
    font-size: 0.92rem;
}

.footer-contact-item a:hover {
    color: var(--teal-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--light-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-initiative {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.fwc-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-initiative-copy {
    text-align: left;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.85rem;
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .hero {
        padding: 6rem 0 0;
    }

    .hero-globe-wrap {
        width: 100%;
        height: 420px;
    }

    .hero-planet-img {
        width: 800px;
        height: 800px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5.5vw, 4rem);
    }

    .philosophy-flow {
        grid-template-columns: 1fr;
    }

    .inquiry-phases {
        grid-template-columns: 1fr;
    }

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

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .takeaway-inner {
        padding: 2rem;
    }

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

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

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

    .service-card.service-featured {
        grid-column: span 1;
    }

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

    .hidden-costs-grid {
        grid-template-columns: 1fr;
    }

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

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .thermometer-section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .thermometer-visual {
        order: -1;
        flex-direction: row;
        gap: 3rem;
    }

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

    .sketch-vs {
        transform: rotate(0deg);
    }

    .sketch-arrow-down {
        transform: rotate(90deg);
    }
}

/* iPad Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(22, 28, 36, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0 1.5rem;
        z-index: 999;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 2rem;
        font-size: 1rem;
        color: rgba(200,210,220,0.85);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin: 0.5rem 2rem 0 !important;
        border-radius: var(--radius-sm) !important;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .hero-globe-wrap {
        height: 50vh;
        overflow: visible;
    }

    .hero-planet-img {
        width: 90vw;
        height: 90vw;
    }

    .hero-content {
        position: absolute;
        top: -8vh;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0.05em;
    }

    .team-grid {
        gap: 2.5rem;
    }

    .team-photo {
        width: 160px;
        height: 160px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(18, 22, 28, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0 1.5rem;
        z-index: 999;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        color: rgba(200,210,220,0.85);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin: 0.5rem 1.5rem 0 !important;
        border-radius: var(--radius-sm) !important;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 0;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-globe-wrap {
        width: 100%;
        height: 50vh;
        height: 50dvh;
        position: absolute;
        bottom: 0;
        overflow: visible;
    }

    .hero-planet-img {
        width: 110vw;
        height: 110vw;
    }

    .hero-content {
        position: absolute;
        top: -10vh;
        top: -10dvh;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 0.78rem;
        letter-spacing: 0.05em;
    }

    .intro-word {
        font-size: 1.8rem;
    }

    .sketch-panel {
        padding: 1.5rem;
    }

    .sketch-panel-title {
        font-size: 1.8rem;
    }

    .sketch-circle-label {
        width: 100px;
        height: 100px;
        font-size: 1.3rem;
    }

    .sketch-list li {
        font-size: 1.15rem;
    }

    /* Cactus: stack labels above/below, no overlap */
    .cactus-illustration-wrap {
        max-width: 100%;
    }

    .cactus-top-labels {
        margin-bottom: 0.5rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .cactus-label-left,
    .cactus-label-right {
        text-align: center;
    }

    .cactus-3d-img {
        height: 220px;
    }

    .cactus-label-title {
        font-size: 1.3rem;
    }

    .cactus-label-sub {
        font-size: 1rem;
    }

    .cactus-cycle-arrow {
        width: 150px;
        flex-shrink: 1;
    }

    .cactus-bottom-labels {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.25rem;
    }

    .cactus-bottom-label {
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-photo {
        width: 140px;
        height: 140px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-cursor-grid {
        grid-template-columns: 1fr;
    }

    .page-cursor-link,
    .page-cursor-link--next {
        align-items: flex-start;
        text-align: left;
    }

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

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }

    .footer-initiative {
        justify-self: start;
    }

    .footer-initiative-copy {
        text-align: left;
    }

    .thermometer-progress {
        display: none;
    }

    .thermometer-visual {
        flex-direction: column;
    }

    .highlight-block {
        padding: 1.5rem;
    }

    .large-text {
        font-size: 1.1rem;
    }

    .objectives-section {
        padding: 2rem;
    }

    .wwd-primary-card {
        padding: 2rem;
    }

    .problem-statement {
        padding: 2rem;
    }

    /* Section header font tightening */
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .intro-title {
        font-size: clamp(1.25rem, 5.5vw, 2rem);
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* Section padding reduction */
    .section {
        padding: 3.5rem 0;
    }

    /* Philosophy section */
    .philosophy-flow {
        grid-template-columns: 1fr;
    }

    .pointer-card {
        padding: 1.5rem;
    }

    .inquiry-phases {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .comparison-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 460px;
    }

    .characteristics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .characteristic-card {
        padding: 1.5rem;
    }

    .takeaway-inner {
        padding: 1.5rem;
    }

    /* Tapestry mobile */
    .tt-card {
        width: auto;
        max-width: 200px;
    }

    .tt-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Sketch panel */
    .cactus-illustration-wrap {
        max-width: 100%;
    }

    .cactus-label-title {
        font-size: 1.2rem;
    }

    .cactus-label-sub {
        font-size: 0.95rem;
    }

    /* Hidden costs */
    .hidden-costs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cost-card {
        padding: 1.5rem;
    }

    /* Expansion */
    .expansion-grid {
        grid-template-columns: 1fr;
    }

    .expansion-card {
        padding: 1.5rem;
    }
}

/* Mobile menu injection handled by JS */

/* ============================
   TRADITIONAL STEWARDSHIP SECTIONS
   ============================ */

/* — TS Intro — */
.ts-intro-section {
    padding-bottom: 4rem;
    background: #ffffff;
    position: relative;
    scroll-margin-top: 7rem;
}

.ts-intro-header {
    max-width: 780px;
    margin-bottom: 3rem;
}

.ts-classical-intro {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--teal);
    letter-spacing: 0em;
}

.ts-compliance-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ts-compliance-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red-glow);
    letter-spacing: -0.01em;
}

.ts-compliance-arrow {
    width: 18px;
    height: 32px;
    flex-shrink: 0;
    transform: rotate(90deg);
}

.ts-compliance-note {
    margin-top: 1.75rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 760px;
    border-left: 3px solid rgba(192, 80, 77, 0.35);
    padding-left: 1.25rem;
}

.ts-facets-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ts-facet-pill {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.5rem 1.1rem;
    border-radius: 99px;
    border: 1px solid rgba(54, 117, 137, 0.25);
    background: rgba(54, 117, 137, 0.06);
    color: var(--teal);
    transition: background 0.2s, border-color 0.2s;
}

.ts-facet-pill--highlight {
    background: rgba(192, 80, 77, 0.08);
    border-color: rgba(192, 80, 77, 0.28);
    color: var(--red-glow);
}

/* — The Doctrine — */
.ts-doctrine-section {
    padding: 5.5rem 0 6rem;
    background: #111a15;
    position: relative;
    overflow: hidden;
}
.ts-doctrine-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(54,117,137,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.ts-doctrine-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}
.ts-doctrine-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal-light);
    border: 1px solid rgba(54,117,137,0.3);
    background: rgba(54,117,137,0.1);
    padding: 0.28rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.1rem;
}
.ts-doctrine-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem;
    line-height: 1.1;
}
.ts-doctrine-title span { color: var(--teal-light); }
.ts-doctrine-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-style: italic;
    color: rgba(212,168,67,0.82);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}
.ts-doctrine-impact-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.5rem;
    position: relative;
}
.ts-doctrine-impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 4rem;
}
.ts-doctrine-card {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem 1.25rem;
    transition: background 0.25s ease;
    position: relative;
}
.ts-doctrine-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.ts-doctrine-card:hover {
    background: rgba(54,117,137,0.1);
}
.ts-doctrine-card:hover::after {
    transform: scaleX(1);
}
.ts-doctrine-card h4 {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.45rem;
    line-height: 1.3;
}
.ts-doctrine-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin: 0;
}
.ts-doctrine-pillars-header {
    margin-bottom: 1.75rem;
}
.ts-doctrine-pillars-sub {
    color: rgba(255,255,255,0.38);
    font-size: 0.95rem;
    margin: 0.35rem 0 0;
    line-height: 1.55;
}
.ts-doctrine-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}
.ts-doctrine-pillar {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0.85rem;
    padding: 1.5rem 1.4rem;
    transition: border-color 0.25s, background 0.25s;
}
.ts-doctrine-pillar:hover {
    border-color: rgba(54,117,137,0.35);
    background: rgba(54,117,137,0.07);
}
.ts-doctrine-pillar-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 0.6rem;
}
.ts-doctrine-pillar h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.ts-doctrine-pillar p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    margin: 0;
}
.ts-doctrine-cta {
    text-align: center;
}
.ts-doctrine-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 2.25rem;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: var(--teal);
    border-radius: 0.6rem;
    transition: background 0.2s ease;
}
.ts-doctrine-cta-btn:hover { background: var(--teal-dark); }

/* — TS Neutral Ground — */
.ts-neutral-section {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.ts-neutral-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--teal) 0%, var(--gold) 100%);
}

.ts-neutral-label {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 2.5rem;
}

.ts-neutral-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.ts-neutral-body p,
.ts-neutral-right p,
.ts-neutral-closer {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.4rem;
}

.ts-neutral-body p:last-child,
.ts-neutral-right p:last-child {
    margin-bottom: 0;
}

.ts-neutral-body em,
.ts-neutral-right em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
}

.ts-downstream-eq {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(184, 220, 233, 0.18);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    cursor: default;
}

.ts-downstream-eq:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.ts-downstream-term {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    color: #ffffff;
}

.ts-downstream-eq-sign {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--teal);
    flex-shrink: 0;
}

/* — TS Numbers / Stats — */
.ts-numbers-section {
    padding: 5rem 0 6rem;
    background: #1a2f26;
    border-top: none;
    border-bottom: none;
}

.ts-numbers-header {
    margin-bottom: 3rem;
}

.ts-numbers-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-bottom: 0.6rem;
}

.ts-numbers-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.55;
}

.ts-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 1rem;
    overflow: hidden;
}

.ts-stat {
    padding: 2.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: default;
}

.ts-stat::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--teal);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s var(--ease-out);
}

.ts-stat:hover {
    background: rgba(54, 117, 137, 0.14);
    box-shadow: inset 0 0 0 1px rgba(54,117,137,0.18);
    z-index: 1;
}

.ts-stat:hover::after {
    transform: scaleY(1);
}

.ts-stat:hover .ts-stat-number {
    color: var(--teal-light);
}

.ts-stat:nth-child(3n) {
    border-right: none;
}

.ts-stat:nth-last-child(-n+3) {
    border-bottom: none;
}

.ts-stat--span {
    grid-column: span 3;
    border-right: none;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 2rem;
}

.ts-stat--span .ts-stat-desc {
    max-width: 560px;
    font-size: 1.05rem;
}

.ts-stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.ts-stat-unit {
    font-size: 0.55em;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    vertical-align: middle;
}

.ts-stat-unit--sub {
    font-size: 0.45em;
    vertical-align: sub;
    color: rgba(255,255,255,0.4);
}

.ts-stat-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.42);
}

/* — TS Consumer Curve — */
.ts-consumer-section {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ts-consumer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 0;
}

.ts-consumer-text p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 1.4rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.ts-consumer-text p:last-child {
    margin-bottom: 0;
}

.ts-consumer-emphasis {
    color: var(--teal);
    font: inherit;
    font-weight: 700;
}

.ts-consumer-followup {
    display: block;
    margin-top: 1rem;
}

/* Sketch diagram */
.ts-consumer-sketch-wrap {
    width: 100%;
    max-width: 860px;
    margin: 0 auto 3rem;
    padding: 1.5rem 2rem;
    background: rgba(54, 117, 137, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(54, 117, 137, 0.1);
}

.ts-consumer-sketch {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.ts-sketch-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ts-sketch-animated .ts-sketch-line {
    stroke-dashoffset: 0;
}

.ts-sketch-consumers { transition-delay: 0s; }
.ts-sketch-corps { transition-delay: 0.4s; }

.ts-consumer-cta {
    text-align: center;
    margin-top: 3.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--teal);
    letter-spacing: -0.01em;
    padding: 2rem 0;
    border-top: 1px solid rgba(54, 117, 137, 0.2);
}

/* — TS Green Rinsing — */
.ts-green-rinsing-section {
    background: #ffffff;
}

.ts-gr-header {
    max-width: 720px;
    margin-bottom: 4rem;
}

.ts-gr-title {
    margin-bottom: 0.4rem;
}

.ts-gr-sub {
    font-family: var(--font-sketch, 'Caveat', cursive);
    font-size: 1.75rem;
    color: var(--teal);
    font-weight: 500;
}

.ts-gr-body-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ts-gr-card {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    border-top: 3px solid transparent;
    position: relative;
}

.ts-gr-card--problem {
    border-top-color: var(--red-glow);
}

.ts-gr-card--approach {
    border-top-color: var(--teal);
}

.ts-gr-card--outcome {
    border-top-color: var(--gold);
}

.ts-gr-card-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.ts-gr-card--problem .ts-gr-card-label { color: var(--red-glow); }
.ts-gr-card--approach .ts-gr-card-label { color: var(--teal); }
.ts-gr-card--outcome .ts-gr-card-label { color: var(--gold); }

.ts-gr-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.ts-gr-card p {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--muted);
}

.ts-gr-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.ts-gr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    background: var(--teal);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 18px rgba(54, 117, 137, 0.25);
}

.ts-gr-cta-btn:hover {
    background: #2a607a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(54, 117, 137, 0.38);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ts-neutral-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ts-doctrine-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ts-doctrine-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .ts-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ts-stat:nth-child(3n) {
        border-right: 1px solid rgba(0, 0, 0, 0.07);
    }

    .ts-stat:nth-child(2n) {
        border-right: none;
    }

    .ts-stat--span {
        grid-column: span 2;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .ts-intro-section {
        padding-top: 5rem;
    }

    .ts-facets-row {
        gap: 0.5rem;
    }

    .ts-facet-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }

    .ts-neutral-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ts-doctrine-impact-grid {
        grid-template-columns: 1fr;
    }

    .ts-doctrine-pillars {
        grid-template-columns: 1fr;
    }

    .ts-downstream-eq {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .ts-stat {
        padding: 1.5rem 1rem;
    }

    .ts-stat-number {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .ts-stat:nth-child(3n) {
        border-right: 1px solid rgba(0, 0, 0, 0.07);
    }

    .ts-stat:nth-child(2n) {
        border-right: none;
    }

    .ts-stat--span {
        grid-column: span 2;
        flex-direction: column;
        gap: 0.75rem;
    }

    .ts-consumer-sketch-wrap {
        padding: 1rem;
    }

    .ts-consumer-cta {
        font-size: 1.3rem;
        padding: 1.5rem 0;
    }

    .ts-gr-body-grid {
        grid-template-columns: 1fr;
    }

    .ts-gr-card {
        padding: 1.5rem;
    }
}

