@charset "UTF-8";

/* ── BASE & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --c-forest: #0d2818; --c-green-deep: #1a4731; --c-green: #2d6a4f;
  --c-green-mid: #40916c; --c-green-light: #52b788; --c-green-pale: #b7e4c7;
  --c-green-whisper: #d8f3dc; --c-cream: #fefae0; --c-sand: #f4f1de;
  --c-gold: #dda15e; --c-gold-dark: #bc6c25; --c-amber: #e76f51;
  --c-text: #1a1a1a; --c-text-mid: #4a4a4a; --c-text-soft: #7a7a7a;
  --c-white: #fff; --c-off-white: #fafaf8;
  --shadow-soft: 0 2px 20px rgba(13,40,24,.06);
  --shadow-med: 0 8px 40px rgba(13,40,24,.1);
  --shadow-heavy: 0 20px 60px rgba(13,40,24,.15);
  --radius: 16px; --radius-sm: 10px; --radius-xl: 24px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; color: var(--c-text); background: var(--c-off-white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, .serif { font-family: 'Fraunces', serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: all .8s cubic-bezier(.16, 1, .3, 1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .15s; } .reveal-d2 { transition-delay: .3s; }
.reveal-d3 { transition-delay: .45s; } .reveal-d4 { transition-delay: .6s; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes pulse-ring { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.5);opacity:0} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes gradient-shift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes counter { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

/* ── NAV ── */
.nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1rem 0; transition: all .4s; }
.nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-soft); padding: .6rem 0; }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Fraunces', serif; text-decoration: none; display: inline-flex; align-items: center; gap: 0; background: var(--c-forest); padding: .3rem .9rem; border-radius: 8px; transition: opacity .3s; }
.logo:hover { opacity: .85; }
.logo-be { color: var(--c-white) !important; font-weight: 300; font-size: 1.4rem; text-transform: lowercase; letter-spacing: -.02em; }
.logo-on { color: var(--c-gold); font-weight: 800; font-size: 1.4rem; line-height: 1; display: inline-flex; align-items: center; }
.logo-o { position: relative; width: 1.1em; height: 0.62em; background: rgba(255,255,255,.1); border: 1.5px solid var(--c-gold); border-radius: 100px; margin: 0 .15rem 0 .1rem; color: transparent; user-select: none; display: inline-block; vertical-align: middle; }
.logo-o::after { content: ''; position: absolute; top: 50%; right: 2px; width: .38em; height: .38em; background: var(--c-gold); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 5px var(--c-gold); }
.nav.scrolled .logo-on { color: var(--c-gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: .88rem; transition: color .3s; color: var(--c-white); }
.nav-links a:hover { color: var(--c-gold); }
.nav-cta { background: var(--c-gold); color: var(--c-forest) !important; padding: .65rem 1.6rem; border-radius: 100px; font-weight: 700; font-size: .85rem; text-decoration: none; transition: all .3s; }
.nav-cta:hover { background: var(--c-gold-dark); color: var(--c-white) !important; transform: scale(1.03); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--c-white); border-radius: 2px; transition: .3s; }
.nav.scrolled .hamburger span { background: var(--c-forest); }

/* ── BUTTONS & COMPONENTS ── */
.btn { display: inline-flex; align-items: center; gap: .6rem; padding: .95rem 2rem; border-radius: 100px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .9rem; text-decoration: none; transition: all .3s; cursor: pointer; border: none; letter-spacing: .01em; }
.btn-gold { background: var(--c-gold); color: var(--c-forest); }
.btn-gold:hover { background: var(--c-gold-dark); color: var(--c-white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(221,161,94,.35); }
.btn-glass { background: rgba(255,255,255,.07); color: var(--c-white); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.14); }
.btn-white { background: var(--c-white); color: var(--c-forest); font-weight: 700; }
.btn-white:hover { background: var(--c-cream); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,.15); }

/* WA Float */
.wa-btn { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: .3s; text-decoration: none; font-size: 1.5rem; }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.5); }
.wa-btn::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.25); animation: ring 2s infinite; }
@keyframes ring { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.4);opacity:0} }

/* ── SECTION BASE ── */
.section { padding: 6rem 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.section-eyebrow { font-size: .73rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--c-green); margin-bottom: .7rem; }
.section-title { font-family: 'Fraunces', serif; font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; color: var(--c-forest); line-height: 1.15; margin-bottom: 1rem; letter-spacing: -.02em; max-width: 680px; }
.section-desc { font-size: 1rem; color: var(--c-text-mid); max-width: 620px; line-height: 1.7; font-weight: 300; }

/* ── UNIFIED HERO (INDEX & PITCH) ── */
.hero, .pitch-hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--c-forest); position: relative; overflow: hidden; }
.hero-bg, .pitch-hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .pitch-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* Soft dark overlay for better text contrast */
.hero-bg::after, .pitch-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,27,21,.85) 0%, rgba(13,27,21,.4) 50%, rgba(13,27,21,.95) 100%); }
.hero-bg img { opacity: .7; }
.pitch-hero-bg img { opacity: .5; }

.hero-content, .pitch-hero-content { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; padding: 6rem 1.5rem 4rem; }

/* Badge style */
.hero-badge, .pitch-badge { display: inline-flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.06); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.1); padding: .5rem 1.3rem; border-radius: 100px; color: var(--c-green-pale); font-size: .73rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2rem; }
.hero-badge::before, .pitch-badge::before { content: ''; width: 8px; height: 8px; background: var(--c-gold); border-radius: 50%; animation: pulse-ring 2s infinite; }

.hero h1, .pitch-hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 800; color: var(--c-white); line-height: 1.08; margin-bottom: 1.5rem; letter-spacing: -.03em; }
.hero h1 em, .pitch-hero h1 em { font-style: italic; color: var(--c-gold); font-weight: 400; }
.hero h1 span.accent, .pitch-hero h1 span.accent { color: var(--c-green-light); }

.hero-desc, .pitch-sub { font-size: 1.15rem; color: rgba(255,255,255,.65); max-width: 700px; margin: 0 auto 2.5rem; line-height: 1.7; font-weight: 300; }

.hero-btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* Metrics Row */
.hero-metrics { display: flex; justify-content: center; gap: 4rem; margin-top: 4rem; flex-wrap: wrap; }
.hero-metric { text-align: center; }
.hero-metric .val { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 800; color: var(--c-white); line-height: 1; }
.hero-metric .lab { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: .4rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }

/* Scroll Hint */
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.3); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; animation: float 3s ease-in-out infinite; z-index: 3; }
.scroll-arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--c-gold), transparent); }

/* ── TRUST BAR ── */
.trust { background: var(--c-white); border-bottom: 1px solid rgba(0,0,0,.04); padding: 1.8rem 0; }
.trust-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { font-size: .8rem; color: var(--c-text-soft); font-weight: 500; display: flex; align-items: center; gap: .5rem; }
.trust-item strong { color: var(--c-green); font-weight: 700; }

/* ── PROBLEM / OPPORTUNITY ── */
.problem { background: var(--c-off-white); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.opportunity { background: var(--c-off-white); }
.opp-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.opp-header .section-title { max-width: none; }
.opp-header .section-desc { margin: 0 auto; }
.opp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.opp-stat { background: var(--c-white); border-radius: var(--radius-xl); padding: 2rem; text-align: center; border: 1px solid rgba(0,0,0,.04); transition: all .4s; position: relative; overflow: hidden; }
.opp-stat:hover { box-shadow: var(--shadow-med); transform: translateY(-4px); }
.opp-stat::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--c-green-light), var(--c-gold)); opacity: 0; transition: .4s; }
.opp-stat:hover::after { opacity: 1; }
.opp-stat .num { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 800; color: var(--c-forest); line-height: 1; margin-bottom: .3rem; }
.opp-stat .unit { font-size: .85rem; color: var(--c-green); font-weight: 600; }
.opp-stat .desc { font-size: .78rem; color: var(--c-text-soft); margin-top: .5rem; line-height: 1.4; }

.pain-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pain-card, .pain { background: var(--c-white); border-radius: var(--radius-xl); padding: 2rem; border: 1px solid rgba(0,0,0,.04); transition: all .4s; position: relative; overflow: hidden; }
.pain-card:hover, .pain:hover { box-shadow: var(--shadow-med); transform: translateY(-4px); }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg,var(--c-green-light),var(--c-gold)); opacity: 0; transition: .4s; }
.pain-card:hover::before { opacity: 1; }
.pain-num { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 800; color: var(--c-green-whisper); line-height: 1; margin-bottom: .7rem; }
.pain-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.pain-card h3, .pain h4 { font-family: 'Outfit', sans-serif; font-size: 1.02rem; font-weight: 700; margin-bottom: .5rem; color: var(--c-forest); }
.pain-card p, .pain p { font-size: .85rem; color: var(--c-text-soft); line-height: 1.6; }
.pain-impact { display: inline-block; margin-top: .8rem; font-size: .75rem; font-weight: 600; color: var(--c-amber); background: rgba(231,111,81,.07); padding: .25rem .7rem; border-radius: 100px; }
.pain .solution { display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem; font-size: .75rem; font-weight: 600; color: var(--c-green); background: var(--c-green-whisper); padding: .3rem .8rem; border-radius: 100px; }

/* ── GENESIS ── */
.genesis { background: var(--c-white); border-bottom: 1px solid rgba(0,0,0,.04); }
.genesis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.genesis-text p { font-size: .95rem; color: var(--c-text-mid); line-height: 1.8; margin-bottom: 1.2rem; }
.genesis-text p strong { color: var(--c-forest); font-weight: 600; }
.genesis-quote { margin-top: 2rem; padding: 1.5rem 2rem; background: linear-gradient(135deg, var(--c-green-whisper), var(--c-cream)); border-radius: var(--radius); border-left: 4px solid var(--c-gold); position: relative; }
.genesis-quote p { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; color: var(--c-forest); line-height: 1.6; margin: 0; }
.genesis-visual { position: relative; }
.genesis-visual img { border-radius: var(--radius-xl); box-shadow: var(--shadow-heavy); }
.name-card { position: absolute; bottom: -1.5rem; right: -1rem; background: var(--c-white); border-radius: var(--radius); padding: 1.5rem 2rem; box-shadow: var(--shadow-med); border: 1px solid rgba(0,0,0,.04); }
.name-card h3 { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 800; color: var(--c-forest); margin-bottom: .3rem; }
.name-card h3 i { font-style: normal; color: var(--c-gold); }
.name-card p { font-size: .78rem; color: var(--c-text-soft); line-height: 1.5; }
.name-breakdown { display: flex; gap: 1.5rem; margin-top: .8rem; }
.nb { text-align: center; }
.nb .code { font-family: 'Outfit', sans-serif; font-size: .7rem; font-weight: 700; color: var(--c-green); background: var(--c-green-whisper); padding: .2rem .6rem; border-radius: 6px; margin-bottom: .2rem; display: inline-block; }
.nb .mean { font-size: .68rem; color: var(--c-text-soft); }

/* ── MISSION / VISION ── */
.mv { background: var(--c-forest); position: relative; overflow: hidden; }
.mv::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(82,183,136,.1), transparent 70%); border-radius: 50%; }
.mv::after { content: ''; position: absolute; bottom: -200px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(221,161,94,.06), transparent 70%); border-radius: 50%; }
.mv .section-inner { position: relative; z-index: 1; }
.mv .section-eyebrow { color: var(--c-green-light); }
.mv .section-title { color: var(--c-white); max-width: 700px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3rem; }
.mv-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-xl); padding: 2.5rem; position: relative; overflow: hidden; transition: all .4s; }
.mv-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); transform: translateY(-4px); }
.mv-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; }
.mv-card.mission::before { background: linear-gradient(90deg, var(--c-green-light), var(--c-green)); }
.mv-card.vision::before { background: linear-gradient(90deg, var(--c-gold), var(--c-gold-dark)); }
.mv-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mv-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--c-white); margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.mv-card p { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.mv-card blockquote { margin-top: 1.2rem; padding: 1rem 1.3rem; background: rgba(255,255,255,.04); border-radius: var(--radius-sm); border-left: 3px solid; }
.mv-card.mission blockquote { border-left-color: var(--c-green-light); }
.mv-card.vision blockquote { border-left-color: var(--c-gold); }
.mv-card blockquote p { font-family: 'Fraunces', serif; font-style: italic; font-size: .92rem; color: rgba(255,255,255,.75); margin: 0; }

/* ── SERVICES & MODEL ── */
.services, .roadmap { background: var(--c-forest); position: relative; overflow: hidden; }
.services::before, .roadmap::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle,rgba(82,183,136,.12),transparent 70%); border-radius: 50%; }
.services .section-inner, .roadmap .section-inner { position: relative; z-index: 1; }
.services .section-eyebrow, .roadmap .section-eyebrow { color: var(--c-green-light); }
.services .section-title, .roadmap .section-title { color: var(--c-white); }
.services .section-desc, .roadmap .section-desc { color: rgba(255,255,255,.55); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius-xl); padding: 2rem; transition: all .4s; position: relative; overflow: hidden; }
.svc:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); transform: translateY(-4px); }
.svc::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; opacity: 0; transition: .4s; }
.svc:nth-child(1)::before { background: linear-gradient(90deg,var(--c-green-light),var(--c-green)); }
.svc:nth-child(2)::before { background: linear-gradient(90deg,var(--c-green),var(--c-green-light)); }
.svc:nth-child(3)::before { background: linear-gradient(90deg,var(--c-gold),var(--c-gold-dark)); }
.svc:hover::before { opacity: 1; }
.svc-badge, .phase-badge { display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 100px; margin-bottom: 1rem; }
.svc-badge.now { background: rgba(82,183,136,.12); color: var(--c-green-light); }
.svc-badge.soon { background: rgba(221,161,94,.12); color: var(--c-gold); }
.svc-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.svc h3 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--c-white); margin-bottom: .5rem; }
.svc > p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 1.2rem; }
.svc-price .amt { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 700; color: var(--c-gold); }
.svc-price .per { font-size: .8rem; color: rgba(255,255,255,.35); }
.svc-list { list-style: none; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.05); }
.svc-list li { font-size: .8rem; color: rgba(255,255,255,.45); padding: .3rem 0; display: flex; align-items: center; gap: .4rem; }
.svc-list li::before { content: '✓'; color: var(--c-green-light); font-weight: 700; font-size: .68rem; }

.model { background: var(--c-sand); }
.model-phases { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.phase { background: var(--c-white); border-radius: var(--radius-xl); padding: 2.2rem; border: 1px solid rgba(0,0,0,.04); transition: all .4s; position: relative; overflow: hidden; }
.phase:hover { box-shadow: var(--shadow-med); transform: translateY(-4px); }
.phase::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; }
.phase.p1::before { background: linear-gradient(90deg, var(--c-green-light), var(--c-green)); }
.phase.p2::before { background: linear-gradient(90deg, var(--c-gold), var(--c-amber)); }
.phase.p1 .phase-badge { background: rgba(82,183,136,.12); color: var(--c-green); padding: .25rem .8rem; }
.phase.p2 .phase-badge { background: rgba(221,161,94,.12); color: var(--c-gold-dark); padding: .25rem .8rem; }
.phase h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; color: var(--c-forest); margin-bottom: .5rem; }
.phase > p { font-size: .88rem; color: var(--c-text-mid); line-height: 1.6; margin-bottom: 1.2rem; }
.phase-features { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.phase-features li { font-size: .82rem; color: var(--c-text-mid); display: flex; align-items: center; gap: .5rem; padding: .3rem 0; }
.phase-features li::before { content: '✓'; color: var(--c-green); font-weight: 700; font-size: .7rem; }
.phase.p2 .phase-features li::before { color: var(--c-gold-dark); }
.phase-pricing { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(0,0,0,.06); }
.phase-pricing .from { font-size: .75rem; color: var(--c-text-soft); }
.phase-pricing .price { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 700; color: var(--c-forest); }
.phase-pricing .per { font-size: .8rem; color: var(--c-text-soft); }

/* ── DEMO & ROI ── */
.demo, .roi { background: var(--c-sand); }
.demo-grid { display: grid; grid-template-columns: .42fr .58fr; gap: 3.5rem; align-items: center; }
.demo-feat { list-style: none; margin: 1.5rem 0 2rem; }
.demo-feat li { padding: .5rem 0; font-size: .9rem; color: var(--c-text-mid); display: flex; align-items: flex-start; gap: .7rem; }
.demo-feat .ic { width: 26px; height: 26px; background: var(--c-green); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--c-white); font-size: .65rem; flex-shrink: 0; margin-top: .15rem; }
.demo-screen { background: var(--c-forest); border-radius: var(--radius-xl); padding: 1.3rem; box-shadow: var(--shadow-heavy); }
.demo-bar { display: flex; gap: .4rem; margin-bottom: .8rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; } .dot-r { background: #ff5f57; } .dot-y { background: #ffbd2e; } .dot-g { background: #28c840; }
.demo-bar span { margin-left: auto; font-size: .68rem; color: rgba(255,255,255,.35); }
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; margin-bottom: .8rem; }
.kpi { background: rgba(255,255,255,.05); border-radius: var(--radius-sm); padding: .8rem; text-align: center; border: 1px solid rgba(255,255,255,.04); }
.kpi .v { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 700; color: var(--c-green-light); }
.kpi .l { font-size: .6rem; color: rgba(255,255,255,.3); margin-top: .15rem; text-transform: uppercase; letter-spacing: .04em; }
.kpi .d { font-size: .62rem; font-weight: 600; margin-top: .15rem; }
.kpi .d.up { color: var(--c-gold); } .kpi .d.dn { color: var(--c-green-light); }
.chart-box { background: rgba(255,255,255,.035); border-radius: var(--radius-sm); padding: 1rem; border: 1px solid rgba(255,255,255,.04); margin-bottom: .6rem; }
.chart-label { font-size: .68rem; color: rgba(255,255,255,.35); margin-bottom: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 90px; }
.bar { flex: 1; border-radius: 3px 3px 0 0; transition: all .7s cubic-bezier(.16,1,.3,1); }
.bar.g { background: var(--c-green-light); } .bar.o { background: var(--c-gold); }
.bar:hover { opacity: .7; }
.mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.mini { background: rgba(255,255,255,.035); border-radius: var(--radius-sm); padding: .8rem; border: 1px solid rgba(255,255,255,.04); }
.mini-title { font-size: .65rem; color: rgba(255,255,255,.3); margin-bottom: .4rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.alert { display: flex; align-items: center; gap: .4rem; padding: .2rem 0; font-size: .72rem; color: rgba(255,255,255,.55); }
.adot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.adot.ok { background: var(--c-green-light); } .adot.warn { background: var(--c-gold); } .adot.crit { background: var(--c-amber); }

.roi { background: var(--c-off-white); }
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.roi-form { background: var(--c-white); border-radius: var(--radius-xl); padding: 2.2rem; box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,.04); }
.fg { margin-bottom: 1.3rem; }
.fg label { display: block; font-size: .8rem; font-weight: 600; color: var(--c-text); margin-bottom: .4rem; }
.fg input, .fg select { width: 100%; padding: .8rem 1rem; border: 1.5px solid rgba(0,0,0,.07); border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: .92rem; background: var(--c-off-white); outline: none; transition: .2s; color: var(--c-text); }
.fg input:focus, .fg select:focus { border-color: var(--c-green); box-shadow: 0 0 0 3px rgba(45,106,79,.08); }
.roi-out { background: var(--c-forest); border-radius: var(--radius-xl); padding: 2.2rem; color: var(--c-white); }
.roi-out h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--c-green-pale); margin-bottom: 1.5rem; }
.rr { display: flex; justify-content: space-between; align-items: center; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.rr:last-of-type { border: none; }
.rr .rl { font-size: .85rem; color: rgba(255,255,255,.55); }
.rr .rv { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; color: var(--c-green-light); }
.roi-big { background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark)); border-radius: var(--radius); padding: 1.8rem; text-align: center; margin-top: 1.5rem; }
.roi-big .num { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 800; color: var(--c-forest); display: block; line-height: 1; }
.roi-big .sub { font-size: .82rem; color: var(--c-forest); opacity: .7; margin-top: .3rem; }

/* ── TEAM ── */
.team { background: var(--c-white); }
.team-layout { display: grid; grid-template-columns: .55fr .45fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.team-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-heavy); position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,40,24,.4) 0%, transparent 50%); border-radius: var(--radius-xl); }
.team-roles { display: flex; flex-direction: column; gap: 1rem; }
.role { background: var(--c-off-white); border-radius: var(--radius); padding: 1.3rem 1.5rem; border: 1px solid rgba(0,0,0,.04); transition: all .4s; display: flex; align-items: flex-start; gap: 1rem; }
.role:hover { box-shadow: var(--shadow-soft); transform: translateX(4px); }
.role-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.role-icon.agro { background: rgba(82,183,136,.12); }
.role-icon.tech { background: rgba(221,161,94,.12); }
.role h4 { font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 700; color: var(--c-forest); margin-bottom: .2rem; }
.role p { font-size: .82rem; color: var(--c-text-soft); line-height: 1.5; }

/* ── ROADMAP ── */
.roadmap .section-title { margin-bottom: 3rem; }
.timeline { position: relative; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.08); }
.tl-item { position: relative; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.04); }
.tl-item:last-child { margin-bottom: 0; border-bottom: none; }
.tl-dot { position: absolute; left: -3rem; top: .3rem; width: 12px; height: 12px; border-radius: 50%; border: 2px solid; background: var(--c-forest); }
.tl-item:nth-child(odd) .tl-dot { border-color: var(--c-green-light); }
.tl-item:nth-child(even) .tl-dot { border-color: var(--c-gold); }
.tl-time { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-gold); margin-bottom: .4rem; }
.tl-title { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: var(--c-white); margin-bottom: .3rem; }
.tl-desc { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.tl-tag { display: inline-block; margin-top: .5rem; font-size: .68rem; font-weight: 600; padding: .2rem .6rem; border-radius: 100px; background: rgba(82,183,136,.1); color: var(--c-green-light); }

/* ── FINANCIALS ── */
.financials { background: var(--c-off-white); }
.fin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.fin-card { background: var(--c-white); border-radius: var(--radius-xl); padding: 2rem; border: 1px solid rgba(0,0,0,.04); text-align: center; transition: all .4s; }
.fin-card:hover { box-shadow: var(--shadow-med); transform: translateY(-4px); }
.fin-card .scenario { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-text-soft); margin-bottom: .8rem; }
.fin-card .amount { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 800; color: var(--c-forest); line-height: 1; }
.fin-card .currency { font-size: .85rem; color: var(--c-green); font-weight: 600; margin-top: .2rem; }
.fin-card .detail { font-size: .78rem; color: var(--c-text-soft); margin-top: .8rem; line-height: 1.5; }
.fin-card .breakeven { display: inline-block; margin-top: .8rem; font-size: .73rem; font-weight: 700; color: var(--c-gold-dark); background: rgba(221,161,94,.1); padding: .3rem .8rem; border-radius: 100px; }
.fin-highlight { margin-top: 2rem; background: linear-gradient(135deg, var(--c-green-deep), var(--c-forest)); border-radius: var(--radius-xl); padding: 2.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.fin-highlight .fh-item .num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 800; color: var(--c-gold); line-height: 1; }
.fin-highlight .fh-item .lab { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .4rem; line-height: 1.3; }

/* ── CTA SECTIONS ── */
.cta, .pitch-cta { background: var(--c-green-deep); text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(221,161,94,.08), transparent 70%); border-radius: 50%; }
.pitch-cta { padding: 7rem 0; }
.pitch-cta::before { content: ''; position: absolute; inset: 0; background: url('../img/pattern-bg.png') center/cover no-repeat; opacity: .15; }
.cta .section-inner, .pitch-cta-inner { position: relative; z-index: 1; max-width: 650px; margin: 0 auto; padding: 0 2.5rem; }
.pitch-cta-inner { max-width: 700px; }
.cta h2, .pitch-cta h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--c-white); margin-bottom: 1rem; font-weight: 700; line-height: 1.15; }
.cta h2 em, .pitch-cta h2 em { font-style: italic; color: var(--c-gold); font-weight: 400; }
.cta p, .pitch-cta p { color: rgba(255,255,255,.55); font-size: 1rem; line-height: 1.7; margin-bottom: 2.2rem; }
.pitch-cta p { margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact { background: var(--c-off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; }
.contact-info h3 { font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--c-forest); margin-bottom: .8rem; }
.contact-info > p { color: var(--c-text-mid); line-height: 1.7; margin-bottom: 1.8rem; }
.ch { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.1rem; background: var(--c-white); border-radius: var(--radius); margin-bottom: .7rem; border: 1px solid rgba(0,0,0,.04); transition: .3s; text-decoration: none; color: inherit; }
.ch:hover { box-shadow: var(--shadow-soft); transform: translateX(4px); }
.ch-ic { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ch-ic.wa { background: #dcfce7; } .ch-ic.em { background: #e0f2fe; } .ch-ic.lo { background: var(--c-green-whisper); }
.ch-t strong { display: block; font-size: .88rem; color: var(--c-forest); }
.ch-t span { font-size: .78rem; color: var(--c-text-soft); }
.cf { background: var(--c-white); border-radius: var(--radius-xl); padding: 2.2rem; box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,.04); }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: .8rem; }
.fi { margin-bottom: .8rem; }
.fi label { display: block; font-size: .8rem; font-weight: 600; color: var(--c-text); margin-bottom: .35rem; }
.fi input, .fi select, .fi textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid rgba(0,0,0,.07); border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: .9rem; outline: none; background: var(--c-off-white); transition: .2s; }
.fi input:focus, .fi select:focus, .fi textarea:focus { border-color: var(--c-green); box-shadow: 0 0 0 3px rgba(45,106,79,.07); }
.fi textarea { min-height: 90px; resize: vertical; }
#fmsg { text-align: center; margin-top: .8rem; font-size: .83rem; color: var(--c-green); display: none; }

/* ── FOOTER ── */
footer { background: var(--c-forest); padding: 2.5rem 0 1.2rem; text-align: center; border-top: 1px solid rgba(255,255,255,.05); }
footer .logo { display: inline-block; font-size: 1.2rem; color: var(--c-white); margin-bottom: .5rem; }
footer p { font-size: .75rem; color: rgba(255,255,255,.25); }
footer .pitch-link, footer .back-link { display: inline-block; margin-bottom: 1rem; font-size: .82rem; color: var(--c-green-light); text-decoration: none; transition: .3s; }
footer .pitch-link:hover, footer .back-link:hover { color: var(--c-gold); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero-layout, .demo-grid, .roi-grid, .contact-grid, .genesis-grid, .mv-grid, .team-layout, .model-phases { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 180px; }
  .opp-stats { grid-template-columns: repeat(2, 1fr); }
  .fin-grid { grid-template-columns: 1fr; }
  .fin-highlight { grid-template-columns: repeat(2, 1fr); }
  .name-card { position: relative; bottom: auto; right: auto; margin-top: 1.5rem; }
  .genesis-grid { direction: ltr; }
}

@media(max-width:768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.show { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--c-white); padding: 1.5rem 2.5rem; box-shadow: var(--shadow-med); gap: 1rem; }
  .nav-links.show a { color: var(--c-forest) !important; }
  
  .hero h1, .pitch-hero h1 { font-size: 2rem; }
  .problem-grid, .svc-grid, .pain-cards { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .fr { grid-template-columns: 1fr; }
  .hero-stats { gap: .5rem; }
  .stat-card { min-width: 140px; }
  
  .hero-metrics { gap: 1.5rem; }
  .opp-stats { grid-template-columns: 1fr 1fr; }
  .fin-highlight { grid-template-columns: 1fr 1fr; }
}

@media(max-width:480px) {
  .opp-stats, .fin-highlight { grid-template-columns: 1fr; }
  .hero-metrics { flex-direction: column; gap: 1rem; }
}

/* ── HOW IT WORKS ── */
.how { background: var(--c-white); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; position: relative; }
.how-grid::before { content: ''; position: absolute; top: 2.5rem; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem); height: 2px; background: linear-gradient(90deg, var(--c-green-whisper), var(--c-gold), var(--c-green-whisper)); z-index: 0; }
.how-step { position: relative; z-index: 1; text-align: center; }
.how-num { font-family: 'Fraunces', serif; font-size: 4rem; font-weight: 800; color: var(--c-green-whisper); line-height: 1; margin-bottom: -.5rem; }
.how-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--c-off-white); border: 2px solid var(--c-green-whisper); display: flex; align-items: center; justify-content: center; margin: 0 auto .9rem; color: var(--c-green); transition: all .4s; }
.how-step:hover .how-icon { background: var(--c-green); color: var(--c-white); border-color: var(--c-green); box-shadow: 0 8px 24px rgba(45,106,79,.2); }
.how-step h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--c-forest); margin-bottom: .5rem; }
.how-step p { font-size: .85rem; color: var(--c-text-soft); line-height: 1.65; max-width: 240px; margin: 0 auto; }

/* ── TRUST BAR (updated) ── */
.trust-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; color: var(--c-green); flex-shrink: 0; }
.trust-sep { width: 1px; height: 24px; background: rgba(0,0,0,.07); }

/* ── SERVICES SVG ICONS ── */
.svc-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--c-green-light); }

/* ── TESTIMONIALS ── */
.testi { background: var(--c-sand); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.testi-card { background: var(--c-white); border-radius: var(--radius-xl); padding: 2.2rem; border: 1px solid rgba(0,0,0,.04); position: relative; transition: all .4s; }
.testi-card:hover { box-shadow: var(--shadow-med); transform: translateY(-4px); }
.testi-card::before { content: '\201C'; position: absolute; top: 1.2rem; left: 1.8rem; font-family: 'Fraunces', serif; font-size: 4rem; color: var(--c-green-whisper); line-height: 1; }
.testi-quote { font-size: .95rem; color: var(--c-text); line-height: 1.7; padding-top: 1.8rem; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .9rem; border-top: 1px solid rgba(0,0,0,.04); padding-top: 1.2rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--c-green), var(--c-green-mid)); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: .85rem; font-weight: 700; color: var(--c-white); flex-shrink: 0; }
.testi-author strong { display: block; font-size: .88rem; color: var(--c-forest); }
.testi-author span { font-size: .76rem; color: var(--c-text-soft); }
.testi-badge { display: inline-block; margin-top: .4rem; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .15rem .5rem; border-radius: 100px; background: rgba(82,183,136,.1); color: var(--c-green); }

/* ── CONTACT (unified channels) ── */
.ch.wa-ch { border: 1.5px solid rgba(37,211,102,.2); background: #f0fdf4; }
.ch.wa-ch:hover { box-shadow: 0 4px 20px rgba(37,211,102,.12); }
.ch-ic.wa { background: #bbf7d0; color: #15803d; }
.ch-ic.em { background: #e0f2fe; color: #0369a1; }
.ch-ic.lo { background: var(--c-green-whisper); color: var(--c-green); }
.ch-ic svg { width: 18px; height: 18px; }

/* ── FOOTER (3-column) ── */
footer { background: var(--c-forest); padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 4rem; }
.footer-brand .logo { display: inline-flex; color: var(--c-white); margin-bottom: 1rem; }
.footer-desc { font-size: .83rem; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem; }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.2); }
.footer-label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-green-light); margin-bottom: 1.2rem; }
.footer-nav { display: flex; flex-direction: column; gap: .7rem; }
.footer-nav a { font-size: .85rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .3s; }
.footer-nav a:hover { color: var(--c-gold); }
.footer-contact { display: flex; flex-direction: column; gap: .7rem; }
.footer-contact a, .footer-contact span { font-size: .85rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .3s; }
.footer-contact a:hover { color: var(--c-gold); }
.footer-investor { margin-top: .6rem; color: var(--c-green-light) !important; font-weight: 600; }
.footer-investor:hover { color: var(--c-gold) !important; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 1.8rem 2.5rem 0; border-top: 1px solid rgba(255,255,255,.05); margin-top: 3rem; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.2); }
.footer-bottom a { font-size: .72rem; color: rgba(255,255,255,.2); text-decoration: none; transition: color .3s; }
.footer-bottom a:hover { color: rgba(255,255,255,.4); }

/* ── RESPONSIVE (new sections) ── */
@media(max-width:1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .how-grid::before { display: none; }
}
@media(max-width:768px) {
  .how-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}
@media(max-width:480px) {
  .how-num { font-size: 3rem; }
}
