:root {
    --night: #060d0a;
    --forest: #0a1f14;
    --card: #0e2218;
    --emerald: #12c97f;
    --mint: #00f0a8;
    --teal: #0dcfb8;
    --gold: #d4a84b;
    --cream: #edeae0;
    --mist: #9db8b0;
    --dim: #5a7a6e;
    --border: rgba(18, 201, 127, 0.12);
    --border-h: rgba(18, 201, 127, 0.35);
    --glow: rgba(18, 201, 127, 0.08);
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--night);
    color: var(--cream);
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

/* ══ CURSOR ══ */

#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--emerald);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
    mix-blend-mode: exclusion;
}

#cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(18, 201, 127, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

body:hover #cursor {
    opacity: 1
}

/* ══ SCROLLBAR ══ */

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: var(--night)
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--emerald), var(--teal));
    border-radius: 2px
}

/* ══ PROGRESS BAR ══ */

#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--teal), var(--mint));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s;
}

/* ══ NOISE OVERLAY ══ */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
}

/* ══ NAVBAR ══ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background: rgba(6, 13, 10, 0.8);
    backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s;
}

nav.scrolled {
    background: rgba(6, 13, 10, 0.97);
    border-bottom-color: var(--border-h);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(18, 201, 127, 0.3);
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.nav-logo-text em {
    color: var(--emerald);
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--mist);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
    white-space: nowrap;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--emerald)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--emerald);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    transform: scaleX(1)
}

.nav-cta {
    background: transparent !important;
    border: 1px solid var(--emerald) !important;
    color: var(--emerald) !important;
    padding: 7px 20px;
    border-radius: 2px;
    font-size: 0.68rem !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--emerald) !important;
    color: var(--night) !important;
    box-shadow: 0 0 20px rgba(18, 201, 127, 0.4) !important;
}

.nav-cta::after {
    display: none !important
}

/* ══ HERO ══ */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("./images/home1.png");
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}

.hero-bg-filter {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(6, 13, 10, 0.95) 0%, rgba(6, 13, 10, 0.6) 45%, rgba(10, 31, 20, 0.85) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(18, 201, 127, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 201, 127, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    from {
        background-position: 0 0
    }

    to {
        background-position: 72px 72px
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 3.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--emerald);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--emerald);
    flex-shrink: 0;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5.5vw, 6rem);
    font-weight: 300;
    line-height: 1.0;
    color: var(--cream);
    letter-spacing: -0.01em;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s ease forwards;
}

h1 em {
    color: var(--emerald);
    font-style: italic
}

h1 strong {
    font-weight: 700
}

.hero-sub {
    font-size: 1rem;
    color: var(--mist);
    font-weight: 400;
    line-height: 1.85;
    margin-bottom: 2.8rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeUp 0.9s 0.6s ease forwards;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--emerald);
    color: var(--night);
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-primary:hover {
    background: var(--mint);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(18, 201, 127, 0.4)
}

.btn-primary:hover::before {
    transform: translateX(100%)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--cream);
    padding: 14px 30px;
    border: 1px solid rgba(237, 234, 224, 0.25);
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--emerald);
    color: var(--emerald);
    box-shadow: 0 0 20px var(--glow)
}

/* ══ HERO STATS ══ */

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 1s 0.9s ease forwards;
    margin-top: 8rem;
    align-self: end;
}

.hero-stat {
    background: rgba(10, 31, 20, 0.8);
    padding: 2rem 1.8rem;
    backdrop-filter: blur(12px);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.hero-stat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.hero-stat:hover {
    background: var(--glow)
}

.hero-stat:hover::after {
    transform: scaleX(1)
}

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.hero-stat-label {
    font-size: 0.65rem;
    color: var(--dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ══ SCROLL INDICATOR ══ */

.scroll-ind {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1px solid rgba(18, 201, 127, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: var(--emerald);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    80% {
        transform: translateY(12px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 0
    }
}

.scroll-text {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    color: var(--dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ══ SECTIONS ══ */

section {
    padding: 8rem 3.5rem
}

.container {
    max-width: 1260px;
    margin: 0 auto
}

.section-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--emerald);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-tag-line {
    width: 28px;
    height: 1px;
    background: var(--emerald);
    flex-shrink: 0;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

h2 em {
    color: var(--emerald);
    font-style: italic
}

h2 strong {
    font-weight: 700
}

.lead {
    font-size: 1.0rem;
    color: var(--mist);
    font-weight: 400;
    line-height: 1.85;
    max-width: 640px;
}

/* ══ STORY ══ */

#story {
    background: var(--night)
}

.story-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 6rem;
    align-items: start;
    margin-top: 4rem;
}

.story-img-wrap {
    position: sticky;
    top: 90px;
}

.story-img-frame {
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.story-img-frame img {
    width: 100%;
    display: block;
}

.story-img-caption {
    padding: 1rem 1.2rem;
    background: rgba(10, 31, 20, 0.95);
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-top: 1px solid var(--border);
}

.story-body p {
    color: var(--mist);
    font-weight: 400;
    margin-bottom: 1.4rem;
    font-size: 0.97rem;
    line-height: 1.85;
}

.story-body p strong {
    color: var(--cream);
    font-weight: 600
}

.story-pull {
    border-left: 2px solid var(--emerald);
    padding: 1.4rem 1.8rem;
    margin: 2.2rem 0;
    background: rgba(18, 201, 127, 0.04);
    border-radius: 0 3px 3px 0;
}

.story-pull p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream) !important;
    line-height: 1.55;
    margin: 0 !important;
}

/* ══ PROBLEM ══ */

#problem {
    background: var(--forest);
    position: relative;
    overflow: hidden
}

#problem::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 201, 127, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4rem;
}

.problem-card {
    background: rgba(6, 13, 10, 0.9);
    padding: 2.8rem;
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.problem-card:hover {
    background: rgba(18, 201, 127, 0.04)
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--teal));
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.problem-card:hover::before {
    transform: scaleX(1)
}

.p-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.56rem;
    color: var(--emerald);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.p-tag-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--emerald);
    flex-shrink: 0
}

.problem-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.9rem;
    line-height: 1.2;
}

.problem-card p {
    color: var(--dim);
    font-size: 0.88rem;
    line-height: 1.75;
    flex: 1;
}

.problem-card p strong {
    color: var(--mist)
}

.p-stat {
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border);
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    color: var(--emerald);
    line-height: 1.5;
}

/* ══ SOLUTION ══ */

#solution {
    background: var(--night)
}

.solution-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 5rem;
}

.solution-img-wrap {
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.solution-img-wrap img {
    width: 100%;
    display: block;
}

.layers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.layer-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem 2rem;
    background: rgba(14, 34, 24, 0.6);
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.layer-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--emerald), var(--teal));
    transform: scaleY(0);
    transition: transform 0.35s;
    transform-origin: top;
}

.layer-card:hover {
    border-color: var(--border-h);
    background: rgba(18, 201, 127, 0.04);
    transform: translateX(4px)
}

.layer-card:hover::before {
    transform: scaleY(1)
}

.layer-badge {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(18, 201, 127, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    flex-shrink: 0;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--emerald);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.layer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.layer-body {
    font-size: 0.87rem;
    color: var(--dim);
    line-height: 1.75
}

/* ══ CROPS ══ */

#crops {
    background: var(--forest)
}

.crops-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.crops-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.crops-table thead th {
    padding: 1rem 1.4rem;
    background: rgba(18, 201, 127, 0.08);
    color: var(--emerald);
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: left;
    font-weight: 400;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.crops-table tbody tr {
    border-bottom: 1px solid rgba(18, 201, 127, 0.06);
    transition: background 0.25s;
}

.crops-table tbody tr:hover {
    background: rgba(18, 201, 127, 0.04)
}

.crops-table tbody td {
    padding: 1.3rem 1.4rem;
    color: var(--mist);
    vertical-align: top;
    line-height: 1.6;
}

.crops-table tbody td:first-child {
    color: var(--cream);
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
}

.crop-pill {
    display: inline-block;
    background: rgba(18, 201, 127, 0.12);
    color: var(--emerald);
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    padding: 3px 9px;
    border-radius: 2px;
    white-space: nowrap;
}

/* ══ MARKET ══ */

#market {
    background: var(--night)
}

.market-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.market-card {
    background: rgba(14, 34, 24, 0.5);
    border: 1px solid var(--border);
    padding: 2.8rem 2.2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.market-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.market-card:hover {
    border-color: var(--border-h);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4)
}

.market-card:hover::after {
    transform: scaleX(1)
}

.market-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.market-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.market-desc {
    font-size: 0.85rem;
    color: var(--dim);
    line-height: 1.7
}

/* ══ TRACTION ══ */

#traction {
    background: var(--forest)
}

.traction-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.metric {
    background: rgba(6, 13, 10, 0.9);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.3s;
}

.metric:hover {
    background: var(--glow)
}

.metric.wide {
    grid-column: span 2
}

.metric-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.traction-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem
}

.traction-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.4rem;
    background: rgba(6, 13, 10, 0.6);
    border: 1px solid var(--border);
    border-radius: 3px;
    font-size: 0.88rem;
    color: var(--mist);
    transition: all 0.25s;
    line-height: 1.6;
}

.traction-item:hover {
    border-color: var(--border-h);
    color: var(--cream);
    background: var(--glow)
}

.t-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ══ INVESTMENT ══ */

#investment {
    background: var(--night)
}

.invest-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.invest-card {
    background: rgba(14, 34, 24, 0.7);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.invest-card-head {
    background: rgba(18, 201, 127, 0.07);
    padding: 1.4rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.invest-card-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
}

.invest-rows {
    padding: 0 2rem
}

.invest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(18, 201, 127, 0.06);
}

.invest-row:last-child {
    border: none
}

.invest-label {
    font-size: 0.83rem;
    color: var(--dim)
}

.invest-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--emerald);
    text-align: right;
}

.invest-val sub {
    font-size: 0.65rem;
    color: var(--dim);
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.roadmap {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.roadmap-row {
    background: rgba(6, 13, 10, 0.9);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 1.5rem;
    align-items: start;
    border-bottom: 1px solid rgba(18, 201, 127, 0.06);
    transition: background 0.25s;
    position: relative;
}

.roadmap-row:last-child {
    border: none
}

.roadmap-row:hover {
    background: var(--glow)
}

.roadmap-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--emerald);
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: center;
}

.roadmap-row:hover::before {
    transform: scaleY(1)
}

.r-year {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: var(--emerald);
    font-weight: 400;
    letter-spacing: 0.08em;
    padding-top: 3px;
}

.r-phase {
    font-family: 'DM Mono', monospace;
    font-size: 0.56rem;
    color: var(--dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.r-rev {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.3rem;
    line-height: 1.1;
}

.r-desc {
    font-size: 0.78rem;
    color: var(--dim);
    line-height: 1.55
}

/* ══ FACILITY / WHY WIN ══ */

#facility {
    background: var(--forest)
}

.facility-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
}

.facility-img-wrap {
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.facility-img-wrap img {
    width: 100%;
    display: block;
}

.fac-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: rgba(6, 13, 10, 0.92);
    border: 1px solid var(--border-h);
    padding: 6px 14px;
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    color: var(--emerald);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    backdrop-filter: blur(10px);
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem
}

.why-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1.2rem;
    align-items: start;
    padding: 1.6rem;
    background: rgba(6, 13, 10, 0.6);
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--border-h);
    background: var(--glow);
    transform: translateX(4px)
}

.why-badge {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid rgba(18, 201, 127, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--emerald);
}

.why-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.why-body {
    font-size: 0.83rem;
    color: var(--dim);
    line-height: 1.7
}

/* ══ CONTACT ══ */

#contact {
    background: var(--night);
    position: relative;
    overflow: hidden
}

#contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 201, 127, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-left h2 {
    margin-bottom: 1.2rem
}

.contact-left .lead {
    margin-bottom: 2rem;
    max-width: 100%
}

.contact-offices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem
}

.office-card {
    padding: 1.4rem 1.6rem;
    background: rgba(14, 34, 24, 0.5);
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: all 0.3s;
}

.office-card:hover {
    border-color: var(--border-h);
    background: var(--glow)
}

.office-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.25rem;
}

.office-addr {
    font-size: 0.8rem;
    color: var(--dim);
    line-height: 1.6
}

.office-type {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    color: var(--emerald);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.contact-form {
    background: rgba(14, 34, 24, 0.5);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
}

.form-head {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.form-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.form-head p {
    font-size: 0.83rem;
    color: var(--dim)
}

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

.form-group {
    margin-bottom: 1.2rem
}

.form-label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    color: var(--emerald);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background: rgba(6, 13, 10, 0.8);
    border: 1px solid var(--border);
    color: var(--cream);
    padding: 0.85rem 1rem;
    border-radius: 2px;
    font-family: 'Syne', sans-serif;
    font-size: 0.88rem;
    transition: all 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald);
    background: rgba(6, 13, 10, 0.95);
    box-shadow: 0 0 0 3px rgba(18, 201, 127, 0.08);
}

.form-input::placeholder {
    color: var(--dim)
}

select.form-input option {
    background: var(--forest);
    color: var(--cream)
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.captcha-wrap {
    margin: 1.2rem 0;
    display: flex;
    justify-content: flex-start;
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 14px;
    font-size: 0.78rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.72rem;
    color: var(--dim);
    text-align: center;
    line-height: 1.6;
}

/* ══ CLOSING ══ */

#closing {
    background: var(--forest);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 3.5rem;
}

#closing h2 {
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#closing p {
    color: var(--mist);
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.closing-meta {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    color: var(--dim);
    letter-spacing: 0.1em;
}

.closing-meta a {
    color: var(--emerald);
    text-decoration: none
}

.closing-meta a:hover {
    color: var(--mint)
}

/* ══ FOOTER ══ */

footer {
    background: var(--night);
    border-top: 1px solid var(--border);
    padding: 1.8rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    color: var(--dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-right {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--dim);
    letter-spacing: 0.04em;
}

.footer-right em {
    color: var(--emerald);
    font-style: normal
}

/* ══ ANIMATIONS ══ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

.d1 {
    transition-delay: 0.1s
}

.d2 {
    transition-delay: 0.2s
}

.d3 {
    transition-delay: 0.3s
}

.d4 {
    transition-delay: 0.4s
}

.d5 {
    transition-delay: 0.5s
}

/* ══ COUNTER ══ */

.count-up {
    display: inline-block
}

/* ══ TICKER ══ */

.ticker-wrap {
    background: rgba(18, 201, 127, 0.06);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 0.7rem 0;
    position: relative;
}

.ticker-inner {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    gap: 0;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-item span {
    color: var(--emerald)
}

.ticker-sep {
    color: var(--border-h)
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ══ DROPDOWN NAV ══ */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .5rem 0;
    min-width: 200px;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: .6rem 1.2rem;
    color: var(--mist);
    text-decoration: none;
    font-size: .85rem;
    transition: all .2s;
}

.dropdown-menu a:hover {
    color: var(--emerald);
    background: var(--glow);
}

/* ══ HAMBURGER ══ */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — TABLET & SMALL SCREENS (max-width: 960px)
   ══════════════════════════════════════════════════════════════════
   Pages covered:
     • GLOBAL               — Shared across ALL pages (nav, headings)
     • index.html            — Home page grids & hero
     • biomod.html           — BioMod hero grid, stats, layers, badges
     • crops.html            — Crop details, sidebar, table
     • build-your-farm.html  — BYF hero, band, process, features
     • earnings.html         — Market cards, metrics, traction
     • innovations.html      — Investment cards, roadmap
     • contact.html          — Contact form, office cards
   ═══════════════════════════════════════════════════════════════ */


@media(max-width:960px) {

    /* ╔══════════════════════════════════════════════════════════╗
       ║  GLOBAL — Applies to ALL pages                           ║
       ╚══════════════════════════════════════════════════════════╝ */

    nav { padding: 0 1.5rem !important; }
    section { padding: 5rem 1.5rem !important; }
    footer { padding: 1.5rem !important; flex-direction: column; text-align: center; }

    /* Standardized heading scale — same on every page */
    h1 { font-size: 2.8rem !important; line-height: 1.1 !important; }
    h2 { font-size: 2.2rem !important; line-height: 1.15 !important; }
    h3 { font-size: 1.6rem !important; }
    h4 { font-size: 1.3rem !important; }
    .lead { font-size: 0.95rem !important; }
    .hero-sub { font-size: 0.95rem !important; }
    .section-tag, .tag { font-size: 0.58rem !important; }

    /* Hamburger menu — all pages */
    .hamburger { display: flex; position: relative; z-index: 1002; }
    .nav-links {
        display: none; position: absolute; top: 70px; left: 0; right: 0;
        height: calc(100vh - 70px); background: rgba(6,13,10,0.99);
        backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 2.2rem; z-index: 1001; padding: 2rem; overflow-y: auto;
        border-top: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .nav-links li { list-style: none; text-align: center; }
    .nav-links a { font-size: 1.05rem; letter-spacing: 0.18em; }
    .nav-cta { margin-top: 1rem; }
    .nav-dropdown:hover .dropdown-menu { display: none; }
    .nav-dropdown.active .dropdown-menu {
        display: block; position: static; background: transparent;
        border: none; backdrop-filter: none; padding: 0.5rem 0 0 1rem; min-width: auto;
    }
    #cursor, #cursor-ring { display: none !important; }
    body { cursor: auto; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  index.html — Home page                                ║
       ╚══════════════════════════════════════════════════════════╝ */

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1.5rem !important;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr !important;
        margin-top: 1rem !important;
        align-self: auto !important;
    }

    .hero-stat { padding: 1.2rem 1rem; }
    .hero-stat-num { font-size: 1.8rem; }

    .story-layout, .solution-header,
    .crops-intro, .traction-wrap, .invest-layout,
    .facility-layout, .contact-layout {
        grid-template-columns: 1fr; gap: 2.5rem;
    }
    .market-cards, .problem-grid, .form-row { grid-template-columns: 1fr; }
    .story-img-wrap { position: static; }
    #closing { padding: 5rem 1.5rem; }
    #closing h2 { font-size: 1.8rem !important; }
    .closing-meta { font-size: 0.58rem; gap: 1.2rem; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  biomod.html — BioMod Technology page                  ║
       ╚══════════════════════════════════════════════════════════╝ */

    #hero .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .pilots-top {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .layers-grid {
        grid-template-columns: 1fr !important;
    }
    #layers .layer-card {
        padding: 2rem 1.5rem !important;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .stat {
        padding: 2rem 1.5rem !important;
    }
    .stat-val {
        font-size: 2.5rem !important;
    }
    .stat-label {
        font-size: 0.95rem !important;
    }
    .stat .stat-desc {
        font-size: 0.78rem !important;
    }
    #hero h1 {
        font-size: 2.8rem !important;
    }
    .hero-right p {
        font-size: 0.92rem !important;
    }
    .ip-row {
        flex-direction: column !important;
        gap: 0.8rem !important;
        padding: 1.5rem !important;
    }
    .cta-btns {
        flex-direction: column !important;
        align-items: center !important;
    }
    .hero-badges {
        justify-content: flex-start !important;
    }
    .badge {
        font-size: 0.52rem !important;
        padding: 5px 10px !important;
    }
    .mono-note {
        font-size: 0.58rem !important;
    }


    /* ╔══════════════════════════════════════════════════════════╗
       ║  crops.html — Crops Portfolio page                     ║
       ╚══════════════════════════════════════════════════════════╝ */

    .crop-details { grid-template-columns: 1fr !important; padding: 25px !important; gap: 30px !important; }
    .crop-sidebar { position: relative !important; top: 0 !important; }
    .crop-stats { grid-template-columns: 1fr !important; }
    .crop-header h3 { font-size: 1.8rem; }
    .story-step h4 { font-size: 1.2rem; }
    .stat-label { font-size: 0.78rem; }
    .stat-value { font-size: 1.2rem; }
    .crops-table { font-size: 0.75rem; }
    .crops-table thead th { font-size: 0.52rem; padding: 0.7rem; }
    .crops-table tbody td { padding: 0.8rem 0.7rem; font-size: 0.8rem; }

    .byf-hero {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        padding: 5rem 1.5rem 3rem !important;
    }
    .byf-left { padding-left: 0 !important; }
    .byf-hero-btns { flex-direction: column !important; align-items: stretch !important; }
    .byf-hero-btns a { text-align: center !important; }

    .byf-stats-col {
        border-left: none !important;
        border-top: 1px solid var(--border) !important;
        padding-left: 0 !important;
        padding-top: 1.5rem !important;
        margin-top: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    .byf-stat {
        padding: 1.2rem 0 !important;
        border-bottom: 1px solid var(--border) !important;
        width: 100% !important;
    }
    .byf-stat:first-child { border-top: none !important; }

    .byf-band {
        grid-template-columns: 1fr !important;
        padding: 0 1.5rem !important;
    }
    .byf-band-item {
        border-left: none !important;
        border-top: 1px solid var(--border) !important;
        padding: 2rem 0 !important;
        text-align: left !important;
    }
    .byf-band-item:first-child { border-top: none !important; }

    .byf-process-head { grid-template-columns: 1fr !important; }
    .byf-thread { padding-left: 3.5rem !important; }

    .byf-feat-grid { grid-template-columns: 1fr !important; }
    .byf-feat-cell {
        padding: 2rem 1.5rem !important;
        border-bottom: 1px solid var(--border) !important;
    }

    .byf-invest-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .byf-inv-card { padding: 2rem 1.5rem !important; }

    .byf-process, .byf-features, .byf-invest { padding: 4rem 1.5rem !important; }
    .byf-hero h1 { font-size: 2.8rem !important; }
    .byf-process-head h2, .byf-features h2, .byf-invest h2 { font-size: 2.2rem !important; }
    .byf-band-num { font-size: 2.5rem !important; }
    .byf-stat-num { font-size: 2.2rem !important; }
    .byf-eyebrow { font-size: 0.58rem !important; letter-spacing: 0.12em !important; margin-bottom: 1.5rem !important; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  earnings.html — Earnings & Market page                ║
       ╚══════════════════════════════════════════════════════════╝ */

    .market-num { font-size: 2.8rem; }
    .market-card { padding: 2rem 1.5rem; }
    .metric-val { font-size: 2rem; }
    .traction-item { font-size: 0.82rem; padding: 1rem; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  innovations.html — Innovations & Roadmap page         ║
       ╚══════════════════════════════════════════════════════════╝ */

    .invest-card-head h3 { font-size: 1rem; }
    .invest-val { font-size: 1.3rem; }
    .roadmap-row { grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.2rem 1.5rem; }
    .r-rev { font-size: 1.2rem; }
    .r-desc { font-size: 0.75rem; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  contact.html — Contact page                           ║
       ╚══════════════════════════════════════════════════════════╝ */

    .contact-form { padding: 1.5rem; }
    .form-head h3 { font-size: 1.3rem; }
    .office-card { padding: 1.2rem; }
}

/* ══════════════════════════════════════════════════════════════════
   SMALL MOBILE — PHONE SCREENS (max-width: 480px)
   ═══════════════════════════════════════════════════════════════ */

@media(max-width:480px) {

    /* ╔══════════════════════════════════════════════════════════╗
       ║  GLOBAL — Applies to ALL pages (small phone)           ║
       ╚══════════════════════════════════════════════════════════╝ */

    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.7rem !important; }
    h3 { font-size: 1.3rem !important; }
    h4 { font-size: 1.1rem !important; }
    .lead { font-size: 0.9rem !important; }
    .hero-sub { font-size: 0.9rem !important; }
    .section-tag, .tag { font-size: 0.52rem !important; }
    nav { padding: 0 1rem; }
    section { padding: 3rem 1rem; }
    footer { padding: 1rem; }
    .nav-logo-text { font-size: 1rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stat-num { font-size: 1.8rem; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  index.html — Home page (small phone)                  ║
       ╚══════════════════════════════════════════════════════════╝ */

    #closing { padding: 3rem 1rem; }
    #closing h2 { font-size: 1.35rem; }
    #closing p { font-size: 0.85rem; }
    .closing-meta { font-size: 0.52rem; gap: 0.8rem; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  biomod.html — BioMod (small phone)                    ║
       ╚══════════════════════════════════════════════════════════╝ */

    #hero h1 { font-size: 2rem !important; }
    .stats-grid { grid-template-columns: 1fr !important; }
    .stat { padding: 1.5rem 1.2rem !important; }
    .stat-val { font-size: 2rem !important; }
    .stat-label { font-size: 0.85rem !important; }
    .stat .stat-desc { font-size: 0.72rem !important; }
    .badge { font-size: 0.48rem !important; padding: 4px 8px !important; }
    .layer-title { font-size: 1.15rem !important; }
    #layers .layer-card { padding: 1.5rem 1.2rem !important; }
    .ip-body strong { font-size: 0.82rem !important; }
    .ip-body span { font-size: 0.78rem !important; }
    .hero-right p { font-size: 0.85rem !important; }


    /* ╔══════════════════════════════════════════════════════════╗
       ║  crops.html — Crops (small phone)                      ║
       ╚══════════════════════════════════════════════════════════╝ */

    .crop-details { margin: 40px 0 !important; padding: 15px !important; }
    .story-step { padding: 25px !important; }
    .story-step h4 { font-size: 1rem; }
    .crop-header h3 { font-size: 1.5rem; }
    .crop-img-container { height: 160px; }
    .crop-section li { font-size: 0.85rem; }
    .advantages h5 { font-size: 0.9rem; }
    .advantages p { font-size: 0.82rem; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  build-your-farm.html — BYF (small phone)              ║
       ╚══════════════════════════════════════════════════════════╝ */

    .byf-hero { padding: 3rem 1rem 2rem !important; }
    .byf-hero h1 { font-size: 1.6rem !important; }
    .byf-process-head h2, .byf-features h2, .byf-invest h2 { font-size: 1.35rem !important; }
    .byf-stats-col { grid-template-columns: 1fr !important; }
    .byf-process, .byf-features, .byf-invest { padding: 3rem 1rem !important; }
    .byf-band-num { font-size: 2rem; }
    .byf-stat-num { font-size: 1.8rem; }
    .byf-step-num { font-size: 3.5rem; }
    .byf-feat-cell { padding: 2rem 1.5rem; }
    .byf-feat-cell h3 { font-size: 1.3rem; }
    .byf-feat-cell p { font-size: 0.82rem; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  earnings.html — Earnings (small phone)                ║
       ╚══════════════════════════════════════════════════════════╝ */

    .market-num { font-size: 2.2rem; }
    .market-desc { font-size: 0.78rem; }
    .metric-val { font-size: 1.6rem; }
    .traction-item { font-size: 0.78rem; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  innovations.html — Innovations (small phone)          ║
       ╚══════════════════════════════════════════════════════════╝ */

    .invest-val { font-size: 1.1rem; }
    .r-rev { font-size: 1rem; }

    /* ╔══════════════════════════════════════════════════════════╗
       ║  contact.html — Contact (small phone)                  ║
       ╚══════════════════════════════════════════════════════════╝ */

    .contact-form { padding: 1.2rem; }
    .form-head h3 { font-size: 1.1rem; }
    .office-name { font-size: 0.95rem; }
    .office-addr { font-size: 0.75rem; }
}


