/* ============================================================
   UNNATI PITCH DECK — McKinsey-Style Static Website
   ============================================================ */

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

:root {
    /* Green Agriculture palette */
    --navy:       #0B1F0E;
    --navy-light: #132B17;
    --navy-mid:   #1A3A20;
    --blue:       #2D7A3A;
    --blue-light: #43A854;
    --teal:       #1B8A5A;
    --green:      #2E8B57;
    --gold:       #C69214;
    --white:      #FFFFFF;
    --off-white:  #F8F9FA;
    --gray-50:    #F2F3F5;
    --gray-100:   #E8EAED;
    --gray-200:   #D1D5DB;
    --gray-400:   #9CA3AF;
    --gray-600:   #6B7280;
    --gray-800:   #374151;
    --gray-900:   #1F2937;

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif:   'Source Serif 4', 'Georgia', serif;

    /* Sizing */
    --container: 1200px;
    --section-pad: 120px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

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

.nav.scrolled {
    background: rgba(11, 31, 14, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 18px;
}

.logo-mark.small {
    width: 28px;
    height: 28px;
    font-size: 14px;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1px;
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
    transition: color 0.3s;
    text-transform: uppercase;
}

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

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.2s !important;
}

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(45, 122, 58, 0.35);
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 58, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 16px;
    border-radius: 10px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, #132B17 40%, #1A3A20 70%, var(--navy) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 600px 400px at 20% 50%, rgba(45, 122, 58, 0.12), transparent),
        radial-gradient(ellipse 500px 500px at 80% 30%, rgba(27, 138, 90, 0.08), transparent),
        radial-gradient(circle 2px at 10% 20%, rgba(255,255,255,0.05), transparent),
        radial-gradient(circle 1px at 30% 70%, rgba(255,255,255,0.04), transparent),
        radial-gradient(circle 1px at 70% 40%, rgba(255,255,255,0.03), transparent),
        radial-gradient(circle 1px at 90% 80%, rgba(255,255,255,0.04), transparent);
    opacity: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    padding: 8px 24px;
    margin-bottom: 48px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.badge-sep {
    opacity: 0.3;
}

.hero-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-logo-mark {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 8px 32px rgba(45, 122, 58, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 6px;
    line-height: 1;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-org {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-incubation {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 48px;
}

.hero-incubation i {
    color: var(--teal);
    margin-right: 6px;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* ============================================================
   SECTIONS — GENERAL
   ============================================================ */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}

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

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

.section-navy {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-navy .section-label,
.section-cta .section-label {
    color: var(--blue-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.section-navy .section-title,
.section-cta .section-title {
    color: var(--white);
}

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

.section-desc {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--gray-600);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.section-navy .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */

/* Context stats */
.problem-context {
    margin-bottom: 56px;
}

.context-stat-row {
    display: flex;
    justify-content: center;
    gap: 64px;
}

.context-big-stat {
    text-align: center;
}

.big-stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 8px;
}

.big-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Two-voice contrast */
.voices-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 48px;
}

.voice-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.4s var(--ease);
}

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

.voice-supply {
    border-left: 4px solid var(--blue);
}

.voice-demand {
    border-right: 4px solid var(--gold);
}

.voice-quote-mark {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    line-height: 0.8;
    position: absolute;
    top: 16px;
    right: 24px;
    opacity: 0.06;
    color: var(--gray-900);
}

.voice-who {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.voice-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.voice-avatar.supply {
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.voice-avatar.demand {
    background: linear-gradient(135deg, var(--gold), #E0A820);
}

.voice-who span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
}

.voice-quote {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

.voice-pain {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #DC2626;
    background: rgba(220, 38, 38, 0.06);
    padding: 6px 14px;
    border-radius: 20px;
}

.voice-pain i {
    font-size: 11px;
}

/* Gap connector */
.voice-gap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
}

.gap-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, var(--gray-200), transparent);
}

.gap-icon {
    width: 48px;
    height: 48px;
    background: #FEF2F2;
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DC2626;
    font-size: 18px;
    animation: gapPulse 2.5s ease-in-out infinite;
}

@keyframes gapPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.15); }
    50% { box-shadow: 0 0 0 12px rgba(220, 38, 38, 0); }
}

.gap-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #DC2626;
}

/* Missing layer */
.missing-layer {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 40px;
}

.missing-layer h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 24px;
    text-align: center;
}

.missing-layer h3 i {
    color: var(--gold);
    margin-right: 8px;
}

.missing-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.missing-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
    border: 1px solid rgba(198, 146, 20, 0.15);
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    transition: all 0.3s;
}

.missing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 146, 20, 0.1);
}

.missing-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), #E0A820);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    flex-shrink: 0;
}

/* Impact stat (updated) */
.problem-stat {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 40px;
}

.stat-accent-line {
    width: 4px;
    min-height: 56px;
    background: linear-gradient(to bottom, var(--gold), var(--blue));
    border-radius: 4px;
    flex-shrink: 0;
    align-self: stretch;
}

.stat-content {
    flex: 1;
}

.stat-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-text span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-left: 4px;
}

.stat-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* Answer one-liner */
.problem-answer {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.answer-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.problem-answer p {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--gray-800);
    line-height: 1.7;
    max-width: 600px;
    flex-shrink: 0;
}

.problem-answer strong {
    color: var(--blue);
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 48px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 12px;
    transition: background 0.3s;
}

.feature-item:hover {
    background: rgba(45, 122, 58, 0.06);
}

.feature-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--blue);
    opacity: 0.35;
    line-height: 1;
    padding-top: 2px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.dashboard-preview {
    position: sticky;
    top: 120px;
}

.dashboard-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dot.red { background: #FF5F57; }
.dash-dot.yellow { background: #FEBC2E; }
.dash-dot.green { background: #28C840; }

.dash-title {
    margin-left: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}

/* Tab radio buttons */
.dash-tabs {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.dash-tab {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dash-tab input[type="radio"] {
    display: none;
}

.dash-tab span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--gray-400);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    gap: 5px;
}

.dash-tab span i {
    font-size: 10px;
}

.dash-tab.active span {
    color: var(--blue);
    background: rgba(45, 122, 58, 0.08);
    border-color: rgba(45, 122, 58, 0.2);
}

/* Pause/play button */
.dash-pause {
    width: 28px;
    height: 28px;
    border: 1px solid var(--gray-100);
    border-radius: 6px;
    background: var(--white);
    color: var(--gray-400);
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-left: 8px;
    flex-shrink: 0;
}

.dash-pause:hover {
    color: var(--green);
    border-color: var(--green);
}

.dash-pause.paused {
    color: var(--green);
    background: rgba(45, 122, 58, 0.08);
    border-color: rgba(45, 122, 58, 0.2);
}

/* Image slides */
.dashboard-body {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.dash-slide {
    display: none;
    animation: dashFadeIn 0.5s var(--ease);
}

.dash-slide.active {
    display: block;
}

.dash-slide img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes dashFadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: scale(1); }
}

/* Auto-rotation progress bar */
.dash-progress {
    height: 3px;
    background: var(--gray-100);
}

.dash-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    border-radius: 0 3px 3px 0;
}

.dashboard-note {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: var(--gray-600);
    background: rgba(27, 138, 90, 0.06);
    border: 1px solid rgba(27, 138, 90, 0.15);
    border-radius: 10px;
    padding: 14px;
}

.dashboard-note i {
    color: var(--teal);
    margin-right: 4px;
}

/* ============================================================
   HOW IT WORKS — STAKEHOLDERS
   ============================================================ */
.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 56px 0 40px;
}

.stakeholder-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
}

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

.stakeholder-card.featured {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(45, 122, 58, 0.12);
}

.stakeholder-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    border-radius: 16px 16px 0 0;
}

.stakeholder-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(45, 122, 58, 0.1), rgba(27, 138, 90, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--blue);
    margin: 0 auto 20px;
}

.stakeholder-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.stakeholder-card ul {
    margin-bottom: 24px;
}

.stakeholder-card li {
    font-size: 14px;
    color: var(--gray-600);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-50);
}

.stakeholder-card li:last-child {
    border-bottom: none;
}

.stakeholder-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
}

.stakeholder-price span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-400);
}

.farmer-banner {
    background: linear-gradient(135deg, rgba(27, 138, 90, 0.08), rgba(45, 122, 58, 0.05));
    border: 1px solid rgba(27, 138, 90, 0.2);
    border-radius: 16px;
    padding: 28px 36px;
}

.farmer-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.farmer-icon {
    width: 56px;
    height: 56px;
    background: var(--teal);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.farmer-banner h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 4px;
}

.farmer-banner p {
    font-size: 14px;
    color: var(--gray-600);
}

/* Agronomist banner */
.agronomist-banner {
    background: linear-gradient(135deg, rgba(45, 122, 58, 0.06), rgba(198, 146, 20, 0.05));
    border: 1px solid rgba(45, 122, 58, 0.18);
    border-radius: 16px;
    padding: 28px 36px;
}

.agronomist-icon {
    width: 56px;
    height: 56px;
    background: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.agronomist-banner h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 4px;
}

.agronomist-banner p {
    font-size: 14px;
    color: var(--gray-600);
}

.agronomist-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}

.agronomist-price span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-400);
}

/* ---- VALUE CHAIN FLOW DIAGRAM ---- */
.value-chain-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin: 56px 0 40px;
}

.vc-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 36px 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

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

.vc-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
}

.vc-card-accent.demand {
    background: linear-gradient(90deg, var(--gold), #E0A820);
}

.vc-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.vc-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.vc-icon.demand {
    background: linear-gradient(135deg, var(--gold), #E0A820);
}

.vc-card-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.vc-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.supply-tag {
    background: rgba(45, 122, 58, 0.1);
    color: var(--blue);
}

.demand-tag {
    background: rgba(198, 146, 20, 0.12);
    color: var(--gold);
}

.vc-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    flex: 1;
}

.vc-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.vc-feature i {
    color: var(--blue);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.vc-demand .vc-feature i {
    color: var(--gold);
}

.vc-pricing {
    background: linear-gradient(135deg, rgba(45, 122, 58, 0.06), rgba(27, 138, 90, 0.04));
    border: 1px solid rgba(45, 122, 58, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vc-pricing.demand {
    background: linear-gradient(135deg, rgba(198, 146, 20, 0.06), rgba(198, 146, 20, 0.03));
    border-color: rgba(198, 146, 20, 0.15);
}

.vc-price-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
}

.vc-pricing.demand .vc-price-amount {
    color: var(--gold);
}

.vc-price-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Centre hub */
.vc-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    position: relative;
}

.vc-hub-inner {
    background: linear-gradient(160deg, var(--navy), var(--navy-light));
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.vc-hub-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 24px;
    margin: 0 auto 12px;
}

.vc-hub-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.vc-hub-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.vc-hub-spokes {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 16px 0;
}

.vc-spoke {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vc-spoke i {
    font-size: 10px;
    color: var(--blue);
}

.vc-hub-capabilities {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.vc-hub-capabilities span {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vc-hub-capabilities span i {
    font-size: 10px;
    color: var(--blue);
}

/* Bottom banners */
.vc-bottom-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vc-banner-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

.vc-banner-badge.free {
    background: rgba(27, 138, 90, 0.12);
    color: var(--teal);
}

/* Two-column stakeholder grid */
.stakeholder-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

/* ============================================================
   BUSINESS MODEL
   ============================================================ */
.revenue-streams {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0 48px;
}

.revenue-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
}

.revenue-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.revenue-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.revenue-tag.primary { background: rgba(45, 122, 58, 0.2); color: var(--blue-light); }
.revenue-tag.secondary { background: rgba(27, 138, 90, 0.2); color: #5DC87A; }
.revenue-tag.tertiary { background: rgba(198, 146, 20, 0.2); color: var(--gold); }

.revenue-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.revenue-amount {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
}

.model-detail-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    margin-bottom: 48px;
}

.sample-transaction,
.year5-projection {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
}

.sample-transaction h3,
.year5-projection h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sample-transaction h3 i,
.year5-projection h3 i {
    color: var(--blue-light);
}

.proj-note {
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.transaction-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.txn-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.txn-line.total {
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    font-weight: 700;
    color: var(--white);
    padding-top: 14px;
    margin-top: 4px;
}

.projection-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.proj-item {
    display: grid;
    grid-template-columns: 140px 1fr 80px;
    align-items: center;
    gap: 16px;
}

.proj-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.proj-bar-wrap {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.proj-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    border-radius: 4px;
    width: 0;
    transition: width 1.5s var(--ease);
}

.proj-bar.animated {
    width: var(--target-width);
}

.proj-value {
    font-weight: 700;
    font-size: 14px;
    text-align: right;
}

.proj-total-row {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proj-total-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proj-total-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proj-total-item strong {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.model-footer {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-sep {
    margin: 0 12px;
    opacity: 0.3;
}

/* ============================================================
   COMPETITIVE POSITIONING
   ============================================================ */
.comparison-table {
    margin: 48px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.comp-header {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    background: var(--navy);
    color: var(--white);
}

.comp-header .comp-col {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 14px;
}

.comp-header i {
    margin-right: 8px;
    opacity: 0.7;
}

.comp-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    border-bottom: 1px solid var(--gray-100);
}

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

.comp-col {
    padding: 16px 24px;
    font-size: 14px;
}

.comp-label-col {
    font-weight: 600;
    color: var(--gray-800);
    background: var(--gray-50);
}

.comp-competitor {
    color: var(--gray-600);
}

.comp-us {
    color: var(--blue);
    font-weight: 500;
    background: rgba(45, 122, 58, 0.03);
}

.advantages-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 36px;
}

.adv-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.adv-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    background: var(--off-white);
    transition: all 0.3s;
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
    border-color: var(--blue);
}

.adv-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin: 0 auto 18px;
}

.adv-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.adv-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================================
   TRACTION
   ============================================================ */
.traction-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 56px 0 64px;
}

.traction-stat {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    transition: all 0.3s;
}

.traction-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.traction-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(45, 122, 58, 0.1), rgba(27, 138, 90, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--blue);
    margin: 0 auto 16px;
}

.traction-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.traction-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.milestones-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

.milestones-col {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 36px;
}

.milestones-col h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.milestones-col h3 i {
    color: var(--gold);
    margin-right: 8px;
}

.milestone-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-50);
}

.milestone-list li:last-child {
    border-bottom: none;
}

.milestone-list li i {
    color: var(--teal);
    margin-top: 3px;
    flex-shrink: 0;
}

.milestone-list.next li i {
    color: var(--blue);
}

/* ============================================================
   GO-TO-MARKET TIMELINE
   ============================================================ */
.timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 56px 0 48px;
}

.timeline-phase {
    flex: 1;
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
}

.timeline-phase:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--blue);
}

.timeline-connector {
    width: 40px;
    height: 2px;
    background: var(--gray-200);
    align-self: center;
    flex-shrink: 0;
    position: relative;
}

.timeline-connector::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gray-200);
    border-top: 2px solid var(--gray-200);
    transform: rotate(45deg);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.phase-badge {
    background: var(--blue);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.phase-period {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
}

.timeline-phase h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.phase-details {
    margin-bottom: 20px;
}

.phase-detail {
    font-size: 13px;
    color: var(--gray-600);
    padding: 4px 0;
}

.detail-label {
    font-weight: 600;
    color: var(--gray-800);
}

.phase-arr {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
}

.channels {
    text-align: center;
}

.channels h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.channel-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.channel-tag {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

.channel-tag i {
    color: var(--blue);
    margin-right: 6px;
}

/* ============================================================
   THE ASK — FUNDING
   ============================================================ */
.funds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.fund-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.fund-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.fund-pct {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--blue-light);
    margin-bottom: 12px;
    line-height: 1;
}

.fund-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.fund-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.fund-amount {
    font-weight: 600;
    font-size: 14px;
    color: var(--gold);
}

/* --- Funds Overview Bar --- */
.funds-overview {
    margin: 48px 0 40px;
}

.funds-bar {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    height: 48px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.funds-bar-seg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    transition: all 0.3s;
}

.funds-bar-seg:hover {
    filter: brightness(1.15);
}

.funds-bar-seg.seg-field    { background: #2D7A3A; }
.funds-bar-seg.seg-platform { background: #2196F3; }
.funds-bar-seg.seg-team     { background: #F59E0B; }
.funds-bar-seg.seg-admin    { background: #6B7280; }

.funds-bar-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    display: inline-block;
}

.legend-dot.seg-field    { background: #2D7A3A; }
.legend-dot.seg-platform { background: #2196F3; }
.legend-dot.seg-team     { background: #F59E0B; }
.legend-dot.seg-admin    { background: #6B7280; }

/* --- Funds Breakdown Categories --- */
.funds-breakdown {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.fund-category {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.fund-category:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.fund-cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fund-cat-header.cat-field    { border-left: 4px solid #2D7A3A; }
.fund-cat-header.cat-platform { border-left: 4px solid #2196F3; }
.fund-cat-header.cat-team     { border-left: 4px solid #F59E0B; }
.fund-cat-header.cat-admin    { border-left: 4px solid #6B7280; }

.fund-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.cat-field .fund-cat-icon    { background: rgba(45,122,58,0.3); }
.cat-platform .fund-cat-icon { background: rgba(33,150,243,0.3); }
.cat-team .fund-cat-icon     { background: rgba(245,158,11,0.3); }
.cat-admin .fund-cat-icon    { background: rgba(107,114,128,0.3); }

.fund-cat-info {
    flex: 1;
}

.fund-cat-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.fund-cat-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.fund-cat-pct {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.cat-field .fund-cat-pct    { color: #43A854; }
.cat-platform .fund-cat-pct { color: #64B5F6; }
.cat-team .fund-cat-pct     { color: #FBC02D; }
.cat-admin .fund-cat-pct    { color: #9CA3AF; }

.fund-cat-amount {
    font-weight: 600;
    font-size: 14px;
    color: var(--gold);
    min-width: 80px;
    text-align: right;
}

.fund-cat-items {
    padding: 8px 0;
}

.fund-line-item {
    display: grid;
    grid-template-columns: 180px 60px 1fr 1fr;
    gap: 12px;
    padding: 12px 28px 12px 88px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
}

.fund-line-item:last-child {
    border-bottom: none;
}

.fund-line-item:hover {
    background: rgba(255,255,255,0.03);
}

.fund-line-item.highlight-item {
    background: rgba(45,122,58,0.12);
    border: 1px solid rgba(45,122,58,0.25);
    border-radius: 8px;
    margin: 4px 16px 8px 16px;
    padding-left: 72px;
}

.fund-line-item.highlight-item .fli-name {
    color: #43A854;
    font-weight: 700;
}

.fund-line-item.highlight-item .fli-name i {
    margin-right: 6px;
}

.fli-name {
    font-weight: 600;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.fli-pct {
    font-weight: 700;
    font-size: 13px;
    color: var(--blue-light);
    text-align: center;
}

.fli-desc {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.fli-why {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

.milestones-18 {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.milestones-18 h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
}

.milestone-18-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.m18-item {
    padding: 8px;
}

.m18-value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--blue-light);
    margin-bottom: 6px;
}

.m18-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.runway-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.runway-note i {
    color: var(--gold);
    margin-right: 6px;
}

/* ============================================================
   UNIT ECONOMICS
   ============================================================ */

/* Hero banner */
.ue-hero-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 20px;
    padding: 40px 48px;
    margin-bottom: 48px;
}

.ue-hero-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: center;
}

.ue-hero-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.ue-hero-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.ue-hero-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 2px;
}

.ue-hero-divider {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 8px;
    flex-shrink: 0;
}

/* Season cards */
.ue-seasons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.ue-season-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.ue-season-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--blue);
}

.ue-season-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ue-season-header i,
.ue-season-header-icon i {
    font-size: 20px;
    color: var(--blue);
}

.ue-season-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
}

.ue-season-details {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.ue-detail {
    flex: 1;
    text-align: center;
}

.ue-detail span {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ue-detail strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
}

.ue-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ue-split {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 16px;
}

.ue-split-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(45, 122, 58, 0.15);
}

.ue-split-detail {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 13px;
    color: var(--gray-600);
}

.ue-split-detail.highlight {
    font-weight: 700;
    color: var(--gray-900);
    border-top: 1px solid var(--gray-100);
    margin-top: 4px;
    padding-top: 8px;
}

.ue-split-detail.highlight span:last-child {
    color: var(--blue);
}

/* Revenue & Cost rollup */
.ue-rollup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.ue-rollup-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px;
}

.ue-rollup-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.ue-rollup-card h3 i {
    color: var(--blue);
    margin-right: 8px;
}

.ue-rollup-lines {
    display: flex;
    flex-direction: column;
}

.ue-rollup-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.ue-rollup-line:last-child {
    border-bottom: none;
}

.ue-rollup-line.total {
    font-weight: 700;
    color: var(--gray-900);
    border-top: 2px solid var(--blue);
    border-bottom: none;
    padding-top: 14px;
    margin-top: 4px;
    font-size: 16px;
}

.ue-rollup-line.total span:last-child {
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 18px;
}

/* Scaling logic */
.ue-scaling {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 24px;
}

.ue-scaling h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 28px;
    text-align: center;
}

.ue-scaling h3 i {
    color: var(--gold);
    margin-right: 8px;
}

.ue-scaling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ue-scale-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 24px 20px;
    transition: all 0.3s;
}

.ue-scale-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.ue-scale-card.accent {
    background: rgba(198, 146, 20, 0.12);
    border-color: rgba(198, 146, 20, 0.3);
}

.ue-scale-clusters {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.ue-scale-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
}

.ue-scale-result {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.ue-scale-result span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

/* Assumptions footnote */
.ue-assumptions {
    text-align: center;
}

.ue-assumptions p {
    font-size: 13px;
    color: var(--gray-400);
    font-style: italic;
}

.ue-assumptions i {
    color: var(--blue);
    margin-right: 4px;
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.section-cta {
    background: linear-gradient(160deg, var(--navy) 0%, #1A3A20 50%, var(--navy-light) 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-mission {
    font-family: var(--font-serif);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.contact-card i {
    color: var(--blue-light);
    font-size: 16px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.trust-badges i {
    color: var(--gold);
    margin-right: 6px;
}

.cta-closing {
    font-family: var(--font-serif);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-bottom: 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   TEAM SECTION
   ============================================================ */

/* Founder */
.team-founder {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-bottom: 48px;
}

.founder-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.founder-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.founder-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 4px;
}

.founder-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.founder-role {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

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

.founder-highlights span {
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-highlights span i {
    color: var(--blue);
    width: 16px;
    text-align: center;
    font-size: 13px;
}

/* Bandwidth */
.bandwidth-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 28px 24px;
}

.bandwidth-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.bandwidth-card h4 i {
    color: var(--blue);
    margin-right: 8px;
}

.bandwidth-phases {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bw-phase-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.bw-phase-label span {
    font-weight: 400;
    color: var(--gray-400);
    margin-left: 6px;
}

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

.bw-bar {
    height: 24px;
    background: var(--gray-50);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.bw-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1s var(--ease);
}

.bw-fill.tech { background: linear-gradient(90deg, var(--blue), var(--teal)); }
.bw-fill.biz { background: linear-gradient(90deg, var(--gold), #E0A820); }
.bw-fill.ops { background: linear-gradient(90deg, #6366F1, #818CF8); }

.bw-label {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

/* Advisors */
.team-sub-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.team-sub-title i {
    color: var(--gold);
    margin-right: 8px;
}

.team-advisors {
    margin-bottom: 48px;
}

.advisor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advisor-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s var(--ease);
}

.advisor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.advisor-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(45,122,58,0.1), rgba(27,138,90,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 20px;
    flex-shrink: 0;
}

.advisor-avatar.agro {
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(129,140,248,0.1));
    color: #6366F1;
}

.advisor-avatar.buyer {
    background: linear-gradient(135deg, rgba(198,146,20,0.1), rgba(224,168,32,0.1));
    color: var(--gold);
}

.advisor-info h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.advisor-domain {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
}

.advisor-exp {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 2px;
}

/* Hiring Timeline */
.hiring-section {
    margin-bottom: 48px;
}

.hire-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.hire-month {
    width: 100px;
    flex-shrink: 0;
    padding-top: 20px;
}

.hire-month span {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    background: rgba(45,122,58,0.08);
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.hire-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hire-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.hire-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.hire-card.expanded {
    border-color: var(--blue);
}

.hire-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hire-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.hire-icon.impl { background: linear-gradient(135deg, #6366F1, #818CF8); }
.hire-icon.qi { background: linear-gradient(135deg, var(--gold), #E0A820); }
.hire-icon.field { background: linear-gradient(135deg, var(--teal), #28B463); }

.hire-header h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.hire-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hire-salary {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
}

.hire-priority {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
}

.hire-priority.critical {
    color: var(--gold);
}

.hire-priority.make-break {
    color: #DC2626;
}

.hire-toggle {
    margin-left: auto;
    color: var(--gray-400);
    font-size: 14px;
    transition: transform 0.3s;
}

.hire-card.expanded .hire-toggle {
    transform: rotate(180deg);
}

.hire-summary {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 10px;
    line-height: 1.5;
}

.hire-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), margin 0.3s;
}

.hire-card.expanded .hire-details {
    max-height: 600px;
    margin-top: 16px;
}

.hire-detail-section {
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.hire-detail-section h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
    margin-bottom: 8px;
}

.hire-detail-section p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.hire-detail-section ul {
    list-style: none;
    padding: 0;
}

.hire-detail-section ul li {
    font-size: 14px;
    color: var(--gray-600);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.hire-detail-section ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

/* Budget Table */
.hire-budget {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.budget-row {
    display: grid;
    grid-template-columns: 1fr 120px 100px;
    padding: 14px 24px;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

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

.budget-header-row {
    background: var(--gray-50);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
}

.budget-total {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    font-weight: 700;
    color: var(--white);
}

.budget-total span:last-child {
    color: var(--gold);
}

/* Future Hires */
.hire-future {
    display: flex;
    gap: 20px;
}

.future-item {
    flex: 1;
    background: var(--white);
    border: 1px dashed var(--gray-100);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.future-item i {
    color: var(--blue);
    margin-right: 6px;
}

.future-item strong {
    color: var(--gray-800);
}

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

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

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

    .team-founder {
        grid-template-columns: 1fr;
    }

    .advisor-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 36px;
    }

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

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

    .voices-section {
        gap: 16px;
    }

    .voice-card {
        padding: 28px 24px;
    }

    .missing-items {
        grid-template-columns: repeat(3, 1fr);
    }

    .dashboard-preview {
        position: static;
    }

    .dash-tabs {
        gap: 4px;
    }

    .dash-tab span {
        font-size: 10px;
        padding: 4px 10px;
    }

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

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

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

    .fund-line-item {
        grid-template-columns: 150px 50px 1fr;
        padding-left: 60px;
    }

    .fund-line-item .fli-why {
        grid-column: 1 / -1;
        padding-left: 0;
    }

    .fund-line-item.highlight-item {
        padding-left: 52px;
    }

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

    .timeline {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-connector {
        width: 2px;
        height: 30px;
        align-self: center;
    }

    .timeline-connector::after {
        right: -4px;
        top: auto;
        bottom: -2px;
        transform: rotate(135deg);
    }

    .ue-hero-banner {
        flex-direction: column;
        gap: 24px;
        padding: 32px;
    }

    .ue-hero-divider {
        width: 80%;
        height: 1px;
        margin: 0;
    }

    .ue-seasons-row,
    .ue-rollup-row {
        grid-template-columns: 1fr;
    }

    .ue-scaling-grid {
        grid-template-columns: 1fr;
    }

    .value-chain-flow {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vc-hub {
        padding: 24px 0;
    }

    .vc-hub-spokes {
        justify-content: center;
        gap: 24px;
    }

    .vc-bottom-banners {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

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

    .hire-row {
        flex-direction: column;
        gap: 12px;
    }

    .hire-month {
        width: auto;
        padding-top: 0;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .founder-highlights span {
        justify-content: center;
    }

    .hire-future {
        flex-direction: column;
    }

    .budget-row {
        grid-template-columns: 1fr 90px 80px;
        font-size: 13px;
        padding: 12px 16px;
    }
    :root {
        --section-pad: 64px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(11, 31, 14, 0.98);
        flex-direction: column;
        padding: 24px 32px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 16px;
    }

    .section-title {
        font-size: 30px;
    }

    .voices-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .voice-gap {
        flex-direction: row;
        padding: 0;
    }

    .gap-line {
        width: 32px;
        height: 2px;
    }

    .missing-items {
        grid-template-columns: 1fr;
    }

    .context-stat-row {
        gap: 32px;
    }

    .big-stat-number {
        font-size: 40px;
    }

    .problem-answer {
        flex-direction: column;
    }

    .answer-line {
        width: 60px;
        height: 1px;
    }

    .stakeholder-grid,
    .stakeholder-grid.two-col,
    .revenue-streams,
    .traction-stats {
        grid-template-columns: 1fr;
    }

    .value-chain-flow {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vc-bottom-banners {
        grid-template-columns: 1fr;
    }

    .agronomist-banner .farmer-banner-content,
    .farmer-banner .farmer-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .agronomist-price {
        margin-left: 0;
    }

    .vc-banner-badge {
        margin-left: 0;
    }

    .comp-header,
    .comp-row {
        grid-template-columns: 100px 1fr 1fr;
    }

    .comp-col {
        padding: 12px 14px;
        font-size: 12px;
    }

    .adv-cards {
        grid-template-columns: 1fr;
    }

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

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

    .fund-cat-header {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px 20px;
    }

    .fund-cat-pct {
        font-size: 28px;
    }

    .fund-line-item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 20px 10px 56px;
    }

    .fund-line-item .fli-pct {
        text-align: left;
    }

    .fund-line-item.highlight-item {
        padding-left: 44px;
        margin: 4px 8px 8px;
    }

    .funds-bar {
        height: 36px;
    }

    .funds-bar-seg {
        font-size: 11px;
    }

    .funds-bar-legend {
        gap: 12px;
    }

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

    .ue-season-details {
        flex-direction: column;
        gap: 8px;
    }

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

    .ue-hero-value {
        font-size: 26px;
    }

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

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-title {
        font-size: 36px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .proj-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-title {
        font-size: 28px;
    }

    .hero-logo-mark {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .context-stat-row {
        flex-direction: column;
        gap: 20px;
    }

    .big-stat-number {
        font-size: 36px;
    }

    .voice-quote {
        font-size: 17px;
    }

    .problem-stat {
        flex-direction: column;
        padding: 28px 24px;
    }

    .stat-accent-line {
        width: 60px;
        height: 4px;
        min-height: auto;
    }

    .stat-text {
        font-size: 22px;
    }

    .missing-layer {
        padding: 24px 20px;
    }
}
