/* AgriVision Pro Theme - Main Stylesheet */

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

:root {
    /* Forest greens */
    --forest-950: #0a1610;
    --forest-900: #0F1F14;
    --forest-800: #1a3024;
    --forest-700: #2D4A33;
    --forest-600: #3f6149;
    --forest-200: #c8d4cc;
    --forest-100: #e4ebe5;
    --forest-50: #f1f5f1;

    /* Cacao / earth */
    --cacao-900: #2a1a10;
    --cacao-700: #6B4423;
    --cacao-500: #9b6b3f;
    --cacao-100: #ede1d2;

    /* Ochre / gold accent */
    --ochre-700: #8a6a3a;
    --ochre-500: #B8935A;
    --ochre-200: #e8dcc4;
    --ochre-100: #f3ebd9;

    /* Signal */
    --signal-red: #9b2b1f;
    --signal-red-lt: #f3e1de;

    /* Neutrals */
    --bone: #F5F1E8;
    --paper: #FAFAF7;
    --white: #ffffff;
    --ink-900: #1a1a17;
    --ink-700: #3d3d38;
    --ink-500: #75756e;
    --ink-300: #b8b8b0;
    --line: #e6e3d8;

    /* Shadows */
    --sh-sm: 0 1px 2px rgba(20, 20, 15, .04);
    --sh-md: 0 8px 24px -8px rgba(20, 20, 15, .08), 0 1px 2px rgba(20, 20, 15, .04);
    --sh-lg: 0 24px 56px -16px rgba(20, 20, 15, .12), 0 2px 6px rgba(20, 20, 15, .04);
    --sh-xl: 0 48px 96px -24px rgba(20, 20, 15, .18);

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --t: .45s var(--ease);

    --display: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--sans);
    color: var(--ink-900);
    background: var(--paper);
    line-height: 1.55;
    font-feature-settings: "ss01", "cv11";
    overflow-x: hidden;
}

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

/* Reveal animations */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.rv-l {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.rv-r {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.rv-s {
    opacity: 0;
    transform: scale(.97);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.rv.on,
.rv-l.on,
.rv-r.on,
.rv-s.on {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

.d5 {
    transition-delay: .40s
}

.d6 {
    transition-delay: .48s
}

@keyframes drift {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

@keyframes slowPulse {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: 1
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

/* Layout */
.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 120px 0;
}

/* Typography */
.eyebrow {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--forest-700);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--forest-700);
}

.eyebrow.ochre {
    color: var(--ochre-700);
}

.eyebrow.ochre::before {
    background: var(--ochre-700);
}

.eyebrow.red {
    color: var(--signal-red);
}

.eyebrow.red::before {
    background: var(--signal-red);
}

.display {
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -.01em;
    font-size: clamp(40px, 5.8vw, 76px);
    color: var(--forest-900);
}

.display em {
    font-style: italic;
    color: var(--forest-700);
}

.display .ochre {
    color: var(--ochre-500);
    font-style: italic;
}

h2.section-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.08;
    letter-spacing: -.01em;
    color: var(--forest-900);
    margin-bottom: 18px;
    max-width: 18ch;
}

h2.section-title em {
    font-style: italic;
    color: var(--forest-700);
}

h2.section-title.center {
    margin: 0 auto 18px;
}

.lede {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-500);
    max-width: 56ch;
}

.lede.center {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    white-space: nowrap;
}

.btn svg {
    width: 14px;
    height: 14px;
}

.btn-dark {
    background: var(--forest-900);
    color: var(--paper);
}

.btn-dark:hover {
    background: var(--forest-800);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    border-color: var(--forest-900);
    color: var(--forest-900);
}

.btn-ghost:hover {
    background: var(--forest-900);
    color: var(--paper);
}

.btn-white {
    background: var(--paper);
    color: var(--forest-900);
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: var(--sh-md);
}

.btn-line-w {
    background: transparent;
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-line-w:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .06);
}

/* Icons */
.icn {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.icn-sm {
    width: 16px;
    height: 16px;
}

.icn-lg {
    width: 28px;
    height: 28px;
}

/* Topbar */
.topbar {
    background: var(--forest-950);
    color: rgba(255, 255, 255, .85);
    padding: 11px 24px;
    text-align: center;
    font-size: 12.5px;
    letter-spacing: .01em;
    position: relative;
}

.topbar .pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(184, 147, 90, .18);
    color: var(--ochre-500);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 12px;
}

.topbar a {
    color: var(--ochre-500);
    text-decoration: none;
    margin-left: 12px;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
}

.topbar a:hover {
    border-color: var(--ochre-500);
}

/* Navigation */
nav.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 247, .82);
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
}

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

.nav-in {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--forest-900);
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--forest-900);
    display: grid;
    place-items: center;
    color: var(--ochre-500);
}

.logo-mark svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.6;
}

.logo-text {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1;
    letter-spacing: -.01em;
}

.logo-text em {
    font-style: italic;
    color: var(--forest-700);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    gap: 38px;
    list-style: none;
}

.nav-links a {
    font-size: 13.5px;
    color: var(--ink-700);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: .005em;
    transition: color .3s;
    position: relative;
}

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

.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-actions .login {
    font-size: 13.5px;
    color: var(--ink-700);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
}

.nav-actions .login:hover {
    color: var(--forest-900);
}

/* Hero */
#hero {
    background: var(--bone);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 31, 20, .05) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at top right, black, transparent 70%);
    opacity: .6;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 72px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-700);
    margin-bottom: 32px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--forest-700);
    animation: slowPulse 2.4s infinite;
}

.hero-badge strong {
    color: var(--forest-900);
    font-weight: 600;
}

h1.hero-h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(44px, 5.8vw, 84px);
    line-height: 1.02;
    letter-spacing: -.015em;
    color: var(--forest-900);
    margin-bottom: 28px;
}

h1.hero-h1 .it {
    font-style: italic;
    color: var(--forest-700);
}

h1.hero-h1 .num {
    font-style: italic;
    color: var(--ochre-500);
    position: relative;
    display: inline-block;
}

h1.hero-h1 .num::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background: var(--ochre-500);
    opacity: .25;
}

.hero-p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-500);
    max-width: 48ch;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.hero-stat-val {
    display: block;
    font-family: var(--display);
    font-size: 40px;
    font-style: italic;
    color: var(--forest-900);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -.01em;
}

.hero-stat-val .unit {
    font-size: 18px;
    font-style: normal;
    color: var(--ink-500);
    margin-left: 2px;
}

.hero-stat-lbl {
    font-size: 12px;
    color: var(--ink-500);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 520px;
    justify-self: end;
    width: 100%;
}

.hero-img {
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--forest-800) 0%, var(--forest-600) 100%);
    box-shadow: var(--sh-xl);
}

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

.hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 31, 20, .55) 100%);
}

.hero-img-cap {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    color: #fff;
    z-index: 2;
}

.hero-img-cap .lbl {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 6px;
}

.hero-img-cap .val {
    font-family: var(--display);
    font-size: 32px;
    font-style: italic;
}

.hero-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 16px 20px;
    box-shadow: var(--sh-lg);
    animation: drift 6s ease-in-out infinite;
}

.hero-card.tl {
    top: 32px;
    left: -56px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-card.br {
    bottom: 80px;
    right: -48px;
    animation-delay: 2s;
}

.hero-card .mini-ico {
    width: 38px;
    height: 38px;
    background: var(--forest-50);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--forest-700);
}

.hero-card .mini-val {
    font-family: var(--display);
    font-size: 22px;
    font-style: italic;
    color: var(--forest-900);
    line-height: 1;
}

.hero-card .mini-lbl {
    font-size: 11px;
    color: var(--ink-500);
    margin-top: 4px;
}

.hero-card.br .row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-card.br .row+.row {
    margin-top: 8px;
}

.hero-card.br strong {
    font-size: 12.5px;
    color: var(--forest-900);
    font-weight: 600;
}

.hero-card.br .sub {
    font-size: 11px;
    color: var(--ink-500);
}

/* ROI Section */
#roi {
    background: var(--paper);
}

.roi-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat-cell {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    position: relative;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-cell .stat-num {
    font-family: var(--display);
    font-size: 80px;
    line-height: .92;
    font-style: italic;
    color: var(--forest-900);
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.stat-cell.ochre .stat-num {
    color: var(--ochre-500);
}

.stat-cell.red .stat-num {
    color: var(--signal-red);
}

.stat-cell.dark .stat-num {
    color: var(--cacao-700);
}

.stat-cell .stat-num .sign {
    font-style: normal;
    font-size: 48px;
    vertical-align: top;
    margin-right: 4px;
    letter-spacing: 0;
}

.stat-cell .stat-num .unit {
    font-style: normal;
    font-size: 28px;
    color: var(--ink-500);
    margin-left: 2px;
}

.stat-cell .stat-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-900);
    margin-bottom: 8px;
}

.stat-cell .stat-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-500);
}

/* Problem Section */
#problem {
    background: var(--bone);
}

.prob-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
}

.prob-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.p-card {
    background: var(--paper);
    padding: 36px 28px;
    transition: background var(--t);
}

.p-card:hover {
    background: #fff;
}

.p-ico {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--signal-red);
    background: var(--white);
    margin-bottom: 28px;
}

.p-title {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1.2;
    color: var(--forest-900);
    margin-bottom: 12px;
}

.p-text {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--ink-500);
    margin-bottom: 24px;
    min-height: 4.2em;
}

.p-stat {
    font-family: var(--display);
    font-size: 40px;
    font-style: italic;
    color: var(--signal-red);
    line-height: 1;
    letter-spacing: -.01em;
}

.p-stat-lbl {
    display: block;
    font-size: 11px;
    color: var(--ink-500);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* Solution Section */
#solution {
    background: var(--paper);
}

.sol-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

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

.f-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
    position: relative;
}

.f-card:hover {
    border-color: var(--forest-200);
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
}

.f-num {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: var(--display);
    font-style: italic;
    color: var(--ink-300);
    font-size: 22px;
}

.f-ico {
    width: 52px;
    height: 52px;
    background: var(--forest-50);
    color: var(--forest-700);
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
}

.f-ico.ochre {
    background: var(--ochre-100);
    color: var(--ochre-700);
}

.f-ico.cacao {
    background: var(--cacao-100);
    color: var(--cacao-700);
}

.f-title {
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.18;
    color: var(--forest-900);
    margin-bottom: 12px;
}

.f-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-500);
}

/* Diagnosis Section */
#diag {
    background: var(--bone);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.split-r {
    padding-right: 12px;
}

.chk {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.chk li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--ink-700);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

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

.chk-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--forest-900);
    color: var(--ochre-500);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.chk-dot svg {
    width: 11px;
    height: 11px;
    stroke-width: 2;
}

.frame {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--cacao-700), var(--forest-700));
    box-shadow: var(--sh-xl);
}

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

.frame-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--forest-900);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.frame-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--signal-red);
    animation: slowPulse 1.8s infinite;
}

.frame-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-radius: var(--r-md);
    padding: 20px 24px;
}

.frame-overlay .tag-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ochre-700);
    margin-bottom: 10px;
}

.frame-overlay h4 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    color: var(--forest-900);
    margin-bottom: 4px;
}

.frame-overlay p {
    font-size: 13px;
    color: var(--ink-500);
}

/* How Section */
#how {
    background: var(--paper);
}

.how-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    counter-reset: step;
}

.step {
    padding: 0 32px;
    position: relative;
    counter-increment: step;
    border-left: 1px solid var(--line);
}

.step:first-child {
    border-left: none;
    padding-left: 0;
}

.step:last-child {
    padding-right: 0;
}

.step-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 64px;
    color: var(--ochre-500);
    line-height: 1;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.step-num .icn {
    width: 24px;
    height: 24px;
    color: var(--forest-700);
}

.step h3 {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 400;
    color: var(--forest-900);
    margin-bottom: 12px;
    line-height: 1.2;
}

.step p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-500);
}

/* Dashboard Section */
#dashboard {
    background: var(--forest-950);
    color: var(--paper);
}

.dash-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
    color: var(--paper);
}

.dash-head .eyebrow {
    color: var(--ochre-500);
}

.dash-head .eyebrow::before {
    background: var(--ochre-500);
}

.dash-head h2.section-title {
    color: var(--paper);
}

.dash-head h2.section-title em {
    color: var(--ochre-500);
}

.dash-head .lede {
    color: rgba(245, 241, 232, .6);
}

.dash-feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 56px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.df {
    padding: 28px 24px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.df:last-child {
    border-right: none;
}

.df-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(184, 147, 90, .12);
    color: var(--ochre-500);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.df strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 4px;
}

.df span {
    font-size: 12.5px;
    color: rgba(245, 241, 232, .55);
    line-height: 1.5;
}

/* App Window */
.appwin {
    background: #0a1610;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 60px 140px -40px rgba(0, 0, 0, .7), 0 0 0 1px rgba(184, 147, 90, .06);
}

.appwin-bar {
    background: linear-gradient(180deg, #11231a, #0c1a12);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.appwin-dots {
    display: flex;
    gap: 7px;
    flex-shrink: 0;
}

.adot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    opacity: .85;
}

.adot.r {
    background: #d56454;
}

.adot.y {
    background: #d6a85a;
}

.adot.g {
    background: #6a9b6a;
}

.appwin-url {
    flex: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 7px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 999px;
    font-size: 12px;
    color: rgba(245, 241, 232, .55);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: ui-monospace, "SF Mono", monospace;
    letter-spacing: -.01em;
    text-align: center;
    justify-content: center;
}

.appwin-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--ochre-500);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    flex-shrink: 0;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ochre-500);
    animation: slowPulse 1.8s infinite;
}

.appwin-body {
    background: #fff;
    line-height: 0;
}

.appwin-body img {
    width: 100%;
    display: block;
}

/* NDVI Panel */
.ndvi {
    margin-top: 48px;
    height: 480px;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    background: #0a1610 center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, .08);
}

.ndvi::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 16, .55) 0%, rgba(10, 22, 16, 0) 30%, rgba(10, 22, 16, 0) 70%, rgba(10, 22, 16, .55) 100%);
    pointer-events: none;
}

.ndvi-cap {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 2;
}

.ndvi-cap .lbl {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 4px;
}

.ndvi-cap h4 {
    font-family: var(--display);
    font-size: 24px;
    color: #fff;
    font-weight: 400;
}

.ndvi-legend {
    position: absolute;
    bottom: 24px;
    right: 28px;
    z-index: 2;
    background: rgba(10, 22, 16, .6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 14px 18px;
}

.ndvi-legend-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #fff;
    letter-spacing: .04em;
}

.ndvi-legend-row+.ndvi-legend-row {
    margin-top: 6px;
}

.sw {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

/* Agro Section */
#agro {
    background: var(--paper);
}

.agro-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

.agro-feats {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.agro-feat {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.agro-feat:last-child {
    border-bottom: none;
}

.agro-ico {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--forest-700);
    flex-shrink: 0;
}

.agro-feat strong {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
    color: var(--forest-900);
    display: block;
    margin-bottom: 6px;
}

.agro-feat p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-500);
}

/* Trust Section */
#trust {
    background: var(--bone);
}

.trust-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

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

.t-card {
    text-align: center;
    padding: 8px 12px;
}

.t-ico {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--forest-900);
    color: var(--ochre-500);
    display: grid;
    place-items: center;
    margin: 0 auto 28px;
    transition: transform var(--t);
}

.t-ico .icn {
    width: 26px;
    height: 26px;
    stroke-width: 1.4;
}

.t-card:hover .t-ico {
    transform: scale(1.06);
}

.t-card h3 {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
    color: var(--forest-900);
    margin-bottom: 12px;
}

.t-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-500);
    max-width: 30ch;
    margin: 0 auto;
}

/* Who Section */
#who {
    background: var(--paper);
}

.who-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.w-card {
    padding: 36px 32px;
    border-right: 1px solid var(--line);
    background: var(--white);
    transition: background var(--t);
}

.w-card:last-child {
    border-right: none;
}

.w-card:hover {
    background: var(--bone);
}

.w-role {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.w-role .icn-wrap {
    width: 38px;
    height: 38px;
    background: var(--forest-50);
    color: var(--forest-700);
    border-radius: 10px;
    display: grid;
    place-items: center;
}

.w-role h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    color: var(--forest-900);
}

.w-quote {
    font-family: var(--display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.4;
    color: var(--forest-800);
    padding-left: 16px;
    border-left: 2px solid var(--ochre-500);
    margin-bottom: 24px;
}

.w-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.w-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--ink-700);
}

.w-list li svg {
    flex-shrink: 0;
    margin-top: 4px;
    width: 12px;
    height: 12px;
    stroke: var(--forest-700);
    stroke-width: 2;
}

/* Demo Section */
#demo {
    background: var(--paper);
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.demo-feats {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
}

.demo-feat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.demo-feat:last-child {
    border-bottom: none;
}

.demo-feat .ico {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--forest-700);
}

.demo-feat span {
    font-size: 14px;
    color: var(--ink-700);
}

.demo-card {
    background: var(--bone);
    border-radius: var(--r-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--sh-md);
    border: 1px solid var(--line);
}

.demo-card .demo-card-ico {
    width: 60px;
    height: 60px;
    background: var(--forest-900);
    color: var(--ochre-500);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
}

.demo-card h3 {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 400;
    color: var(--forest-900);
    margin-bottom: 10px;
}

.demo-card p {
    font-size: 14px;
    color: var(--ink-500);
    margin-bottom: 28px;
    line-height: 1.6;
}

.demo-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--forest-900);
    color: var(--paper);
    border: none;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--t), transform var(--t);
}

.demo-cta:hover {
    background: var(--forest-800);
    transform: translateY(-1px);
}

.demo-note {
    font-size: 12px;
    color: var(--forest-700);
    margin-top: 14px;
}

.demo-divider {
    height: 1px;
    background: var(--line);
    margin: 28px 0;
    border: none;
}

.demo-alt-lbl {
    font-size: 12px;
    color: var(--ink-500);
    margin-bottom: 12px;
}

.demo-alt-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--forest-900);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--forest-900);
    text-decoration: none;
    text-align: center;
    transition: background var(--t), color var(--t);
}

.demo-alt-btn:hover {
    background: var(--forest-900);
    color: var(--paper);
}

/* CTA Section */
#cta {
    background: var(--forest-950);
    color: var(--paper);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(184, 147, 90, .08) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black, transparent 70%);
    opacity: .6;
}

.cta-in {
    position: relative;
    z-index: 1;
}

.cta-mark {
    width: 60px;
    height: 60px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: rgba(184, 147, 90, .1);
    color: var(--ochre-500);
    display: grid;
    place-items: center;
}

#cta h2 {
    font-family: var(--display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--paper);
    max-width: 18ch;
    margin: 0 auto 20px;
}

#cta h2 em {
    font-style: italic;
    color: var(--ochre-500);
}

#cta p {
    font-size: 16px;
    color: rgba(245, 241, 232, .6);
    max-width: 52ch;
    margin: 0 auto 40px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--forest-950);
    color: rgba(245, 241, 232, .6);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 56px;
}

.foot-brand .logo .logo-text {
    color: var(--paper);
}

.foot-brand p {
    font-size: 13.5px;
    line-height: 1.65;
    max-width: 32ch;
    margin-top: 20px;
}

.foot-copy {
    font-size: 11.5px;
    color: rgba(245, 241, 232, .3);
    margin-top: 24px;
    letter-spacing: .04em;
}

.foot-col h4 {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ochre-500);
    margin-bottom: 20px;
    font-weight: 600;
}

.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.foot-col a {
    font-size: 14px;
    color: rgba(245, 241, 232, .6);
    text-decoration: none;
    transition: color var(--t);
}

.foot-col a:hover {
    color: var(--paper);
}

.foot-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    margin-bottom: 12px;
}

.foot-contact .icn {
    color: var(--ochre-500);
    width: 16px;
    height: 16px;
}

.foot-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.foot-bottom p {
    font-size: 12px;
    color: rgba(245, 241, 232, .3);
}

.foot-links {
    display: flex;
    gap: 28px;
}

.foot-links a {
    font-size: 12px;
    color: rgba(245, 241, 232, .3);
    text-decoration: none;
    transition: color var(--t);
}

.foot-links a:hover {
    color: rgba(245, 241, 232, .7);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bone);
}

::-webkit-scrollbar-thumb {
    background: var(--forest-700);
    border-radius: 4px;
}

::selection {
    background: var(--ochre-200);
    color: var(--forest-900);
}

/* Responsive */
@media(max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stat-cell:nth-child(1),
    .stat-cell:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .prob-grid,
    .feat-grid,
    .dash-feats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid,
    .split,
    .demo-grid,
    .agro-intro {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .hero-visual {
        max-width: 100%;
        justify-self: stretch;
        aspect-ratio: 16/12;
    }

    .hero-card.tl {
        left: 16px;
        top: 16px;
    }

    .hero-card.br {
        right: 16px;
        bottom: 100px;
    }
}

@media(max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .wrap {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .stats-row,
    .prob-grid,
    .feat-grid,
    .trust-grid,
    .who-grid,
    .steps,
    .dash-feats {
        grid-template-columns: 1fr;
    }

    .stat-cell,
    .df,
    .w-card,
    .step {
        border-right: none !important;
        border-bottom: 1px solid var(--line);
        padding-left: 0;
        padding-right: 0;
    }

    .step {
        border-left: none;
        padding: 32px 0;
    }

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

    .hero-stats {
        gap: 32px;
    }
}


/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Preview Section */
.blog-preview-section {
    background: var(--paper);
    padding: 120px 0;
}

.blog-preview-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
}

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

.blog-preview-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}

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

.blog-preview-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--forest-50);
}

.blog-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.blog-preview-card:hover .blog-preview-img img {
    transform: scale(1.05);
}

.blog-preview-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-100), var(--forest-50));
    color: var(--forest-700);
}

.blog-preview-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.blog-preview-content {
    padding: 24px;
}

.blog-preview-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--ink-500);
    flex-wrap: wrap;
}

.blog-preview-date,
.blog-preview-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-preview-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-preview-title a {
    color: var(--forest-900);
    text-decoration: none;
    transition: color var(--t);
}

.blog-preview-title a:hover {
    color: var(--ochre-500);
}

.blog-preview-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-500);
    margin-bottom: 16px;
}

.blog-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--forest-900);
    text-decoration: none;
    transition: gap var(--t);
}

.blog-preview-link:hover {
    gap: 12px;
}

.blog-preview-footer {
    text-align: center;
    margin-top: 32px;
}

/* Blog Archive Hero */
.blog-archive-hero {
    background: var(--bone);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-archive-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 31, 20, .05) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: .6;
    pointer-events: none;
}

.blog-archive-hero-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-archive-title {
    font-family: var(--display);
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--forest-900);
    margin-bottom: 20px;
}

.blog-archive-title em {
    font-style: italic;
    color: var(--ochre-500);
}

.blog-archive-subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-500);
}

/* Blog Archive Grid */
.blog-archive-grid-section {
    padding: 80px 0;
    background: var(--paper);
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-archive-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}

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

.blog-archive-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--forest-50);
}

.blog-archive-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.blog-archive-card:hover .blog-archive-card-img img {
    transform: scale(1.05);
}

.blog-archive-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-100), var(--forest-50));
    color: var(--forest-700);
}

.blog-archive-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.blog-archive-card-content {
    padding: 24px;
}

.blog-archive-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--ink-500);
    flex-wrap: wrap;
}

.blog-archive-card-date,
.blog-archive-card-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-archive-card-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-archive-card-title a {
    color: var(--forest-900);
    text-decoration: none;
    transition: color var(--t);
}

.blog-archive-card-title a:hover {
    color: var(--ochre-500);
}

.blog-archive-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-500);
    margin-bottom: 16px;
}

.blog-archive-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--forest-900);
    text-decoration: none;
    transition: gap var(--t);
}

.blog-archive-card-link:hover {
    gap: 12px;
}

/* Pagination */
.blog-archive-pagination {
    margin-top: 56px;
    text-align: center;
}

.blog-archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 4px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-700);
    text-decoration: none;
    transition: all var(--t);
}

.blog-archive-pagination .page-numbers.current {
    background: var(--forest-900);
    color: var(--paper);
}

.blog-archive-pagination .page-numbers:hover:not(.current) {
    background: var(--forest-50);
    color: var(--forest-900);
}

.blog-archive-pagination .prev,
.blog-archive-pagination .next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    padding: 0 20px;
}

/* Single Post */
.single-post-main {
    background: var(--paper);
}

.single-post-hero {
    position: relative;
    padding: 60px 0 80px;
    background: var(--bone);
}

.single-post-hero.has-featured {
    padding: 0;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.single-post-featured-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.single-post-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 16, 0.4) 0%, rgba(10, 22, 16, 0.85) 100%);
}

.single-post-hero .wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

.single-post-hero.has-featured .single-post-hero-content {
    padding: 60px 0 80px;
    color: var(--white);
}

.single-post-hero.has-featured .single-post-breadcrumb a,
.single-post-hero.has-featured .single-post-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.single-post-hero.has-featured .single-post-meta {
    color: rgba(255, 255, 255, 0.7);
}

.single-post-hero.has-featured .single-post-title {
    color: var(--white);
}

.single-post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    flex-wrap: wrap;
}

.single-post-breadcrumb a {
    color: var(--ink-500);
    text-decoration: none;
    transition: color var(--t);
}

.single-post-breadcrumb a:hover {
    color: var(--ochre-500);
}

.single-post-breadcrumb svg {
    width: 12px;
    height: 12px;
}

.single-post-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--ink-500);
    flex-wrap: wrap;
}

.single-post-date,
.single-post-author,
.single-post-category,
.single-post-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.single-post-category a {
    color: inherit;
    text-decoration: none;
}

.single-post-category a:hover {
    color: var(--ochre-500);
}

.single-post-title {
    font-family: var(--display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--forest-900);
    max-width: 900px;
}

/* Single Post Layout */
.single-post-content-section {
    padding: 80px 0;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
}

.single-post-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.single-post-toc {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px;
    margin-bottom: 32px;
}

.single-post-toc h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.single-post-toc-content {
    font-size: 13px;
}

.single-post-toc-content a {
    display: block;
    padding: 8px 0;
    color: var(--ink-700);
    text-decoration: none;
    transition: color var(--t);
}

.single-post-toc-content a:hover {
    color: var(--ochre-500);
}

.single-post-share h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-900);
    margin-bottom: 16px;
}

.single-post-share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bone);
    color: var(--ink-700);
    transition: all var(--t);
    text-decoration: none;
}

.share-btn:hover {
    background: var(--forest-900);
    color: var(--white);
    transform: translateY(-2px);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.single-post-content {
    min-width: 0;
}

.single-post-body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-700);
}

.single-post-body h2 {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
    color: var(--forest-900);
    margin: 48px 0 20px;
}

.single-post-body h3 {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 400;
    color: var(--forest-900);
    margin: 40px 0 16px;
}

.single-post-body p {
    margin-bottom: 24px;
}

.single-post-body img {
    margin: 32px 0;
    border-radius: var(--r-lg);
}

.single-post-body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: var(--bone);
    border-left: 4px solid var(--ochre-500);
    border-radius: var(--r-md);
    font-style: italic;
    color: var(--forest-900);
}

.single-post-body ul,
.single-post-body ol {
    margin: 24px 0;
    padding-left: 24px;
}

.single-post-body li {
    margin-bottom: 12px;
}

.single-post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.tags-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-700);
}

.single-post-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bone);
    border-radius: 999px;
    font-size: 12px;
    color: var(--ink-700);
    text-decoration: none;
    transition: all var(--t);
}

.single-post-tag:hover {
    background: var(--forest-900);
    color: var(--white);
}

/* Related Posts */
.single-post-related {
    padding: 80px 0;
    background: var(--bone);
}

.related-head {
    text-align: center;
    margin-bottom: 48px;
}

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

.related-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--t);
}

.related-card:hover {
    transform: translateY(-4px);
}

.related-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.related-card:hover .related-card-img img {
    transform: scale(1.05);
}

.related-card-content {
    padding: 20px;
}

.related-card-title {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
}

.related-card-title a {
    color: var(--forest-900);
    text-decoration: none;
    transition: color var(--t);
}

.related-card-title a:hover {
    color: var(--ochre-500);
}

.related-card-excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-500);
    margin-bottom: 12px;
}

.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--forest-900);
    text-decoration: none;
    transition: gap var(--t);
}

.related-card-link:hover {
    gap: 10px;
}

.blog-archive-empty {
    text-align: center;
    padding: 60px;
    background: var(--bone);
    border-radius: var(--r-lg);
    color: var(--ink-500);
}

/* Responsive Blog */
@media(max-width: 1024px) {
    .blog-preview-grid,
    .blog-archive-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .single-post-sidebar {
        position: static;
        order: 2;
    }
    
    .single-post-toc {
        display: none;
    }
}

@media(max-width: 768px) {
    .blog-preview-grid,
    .blog-archive-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .single-post-meta {
        gap: 12px;
    }
    
    .single-post-body {
        font-size: 16px;
    }
}

/* Empty Blog State */
.blog-preview-empty {
    padding: 80px 0;
}

.blog-empty-message {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
}

.blog-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ochre-500);
    box-shadow: var(--sh-md);
}

.blog-empty-title {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
    color: var(--forest-900);
    margin-bottom: 16px;
}

.blog-empty-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-500);
    margin-bottom: 32px;
}

.blog-empty-contact p {
    font-size: 14px;
    color: var(--ink-700);
    margin-bottom: 20px;
}

.blog-empty-contact .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}