/* ============================================================
   Artificial Farmer — Futuristic AgriTech SaaS
   Design system + components
   ============================================================ */

:root {
  /* Palette — clean white/light professional theme, green as accent */
  --bg: #ffffff;
  --bg-2: #f1f7f2;
  --panel: #ffffff;
  --panel-solid: #ffffff;
  --ink: #13241b;
  --muted: #4c5a51;
  --muted-2: #7d8a81;
  --line: rgba(18, 48, 33, 0.12);

  /* Accents (darkened so they read on white) */
  --lime: #2eb85a;
  --lime-2: #10924a;
  --teal: #0ca79c;
  --cyan: #1c93cf;
  --amber: #dd8f2a;

  --grad-a: linear-gradient(135deg, #16a34a 0%, #0ba79b 55%, #1c93cf 100%);
  --grad-b: linear-gradient(135deg, #12a150, #0ca79c);
  --glow: 0 12px 34px rgba(18, 70, 45, 0.12);

  /* Warm accents (color-coding: gold = money/CTA, sage = advice) */
  --gold: #e6a93a;
  --gold-2: #f6c552;
  --grad-gold: linear-gradient(135deg, #f6c552, #e0932f);
  --cream: #f4ecdf;
  --warm-beige: #ece2d1;
  --sage: #e3ecd9;
  --ink-dark: #2b2822;
  --muted-dark: #8a7d68;

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1200px;

  --font: "Space Grotesk", "Noto Sans Devanagari", "Noto Sans Bengali", "Noto Sans Gurmukhi", "Noto Sans Gujarati", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Kannada", "Nirmala UI", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Ambient background layers */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(1000px 520px at 85% 6%, rgba(221, 143, 42, 0.06), transparent 60%),
    radial-gradient(1000px 700px at 10% 100%, rgba(16, 163, 74, 0.05), transparent 60%),
    var(--bg);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(18, 60, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 60, 40, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 70%);
}
/* Hero 3D lives ONLY in the hero (contained), so it doesn't persist down the page */
.hero { position: relative; overflow: hidden; }
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero > .container { position: relative; z-index: 2; }
/* light sky gradient behind the hero 3D */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, #eaf5ff 0%, #f3faf2 42%, #ffffff 100%);
}
/* readability scrim: keep hero copy legible over the 3D field */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.66) 40%, rgba(255,255,255,0) 68%),
    linear-gradient(0deg, #ffffff 0%, rgba(255,255,255,0) 22%);
}
/* persistent, subtle 3D background on every page (scroll-reactive) */
#bg3d {
  position: fixed; inset: 0; z-index: -1; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.5;
}
.scene2-wrap { position: relative; }
.scene2-wrap > .container { position: relative; z-index: 2; }

/* gentle fade-in on load, so navigating between pages feels like a transition */
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
main, header.hero, section, .footer { animation: pageIn 0.5s ease both; }
@media (prefers-reduced-motion: reduce) { main, header.hero, section, .footer { animation: none; } }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(var(--maxw), 92vw); margin-inline: auto; }

/* ============================ Nav ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 48px);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(18, 60, 40, 0.05);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.2rem; letter-spacing: 0.3px; }
.brand .logo {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-a);
  display: grid; place-items: center;
  box-shadow: var(--glow);
  position: relative;
}
.brand .logo svg { width: 20px; height: 20px; }
.brand b { background: var(--grad-a); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 14px; border-radius: 10px; color: var(--muted);
  font-size: 0.95rem; font-weight: 500; transition: 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(16, 163, 74, 0.08); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--ink);
  border-radius: 10px; padding: 8px 10px; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  cursor: pointer; border: 1px solid transparent; transition: 0.25s; white-space: nowrap;
}
.btn-primary {
  background: var(--grad-a); color: #ffffff;
  box-shadow: 0 10px 26px rgba(16, 163, 74, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(16, 163, 74, 0.4); }
.btn-ghost { background: #ffffff; border-color: var(--line); color: var(--ink); box-shadow: 0 2px 10px rgba(18,60,40,0.04); }
.btn-ghost:hover { border-color: var(--lime-2); background: rgba(16, 163, 74, 0.06); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* ============================ Hero ============================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 80px;
  position: relative;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: rgba(16, 163, 74, 0.09); border: 1px solid rgba(16,163,74,0.2); color: var(--lime-2);
  margin-bottom: 26px; backdrop-filter: blur(4px);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.03; font-weight: 700; letter-spacing: -1.5px;
  max-width: 15ch;
}
.hero h1 .grad { background: var(--grad-a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead {
  margin-top: 26px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted);
  max-width: 60ch;
}
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 64px; flex-wrap: wrap; }
.hero-stats .stat b { font-size: clamp(1.8rem, 3vw, 2.6rem); background: var(--grad-b); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; font-weight: 700; }
.hero-stats .stat span { color: var(--muted-2); font-size: 0.9rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================ Sections ============================ */
section { position: relative; padding: 90px 0; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.eyebrow { color: var(--lime-2); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -1px; margin-top: 14px; line-height: 1.08; }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 1.08rem; }
.center { margin-inline: auto; text-align: center; }

/* Glass card */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.35s;
  box-shadow: 0 4px 20px rgba(18, 60, 40, 0.05);
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(16,163,74,0.07), transparent 40%);
  opacity: 0; transition: 0.4s; pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: rgba(16,163,74,0.3); box-shadow: 0 22px 50px rgba(18, 60, 40, 0.13); }
.card:hover::before { opacity: 1; }

/* Problem band */
.problem {
  background: linear-gradient(135deg, rgba(255, 100, 100, 0.06), rgba(255, 206, 77, 0.05));
  border: 1px solid rgba(255, 206, 77, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 60px);
}
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; }
.problem-grid .num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--amber); }
.problem-grid p { color: var(--muted); margin-top: 6px; font-size: 0.98rem; }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.product-card { padding: 32px; }
.product-card .ico {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(120, 255, 190, 0.1); border: 1px solid var(--line); margin-bottom: 22px;
}
.product-card .ico svg { width: 28px; height: 28px; stroke: var(--lime-2); }
.product-card .kicker { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.product-card h3 { font-size: 1.4rem; margin: 6px 0 12px; letter-spacing: -0.4px; }
.product-card p { color: var(--muted); font-size: 0.98rem; }
.product-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-size: 0.78rem; padding: 5px 11px; border-radius: 999px; background: rgba(120,255,190,0.07); border: 1px solid var(--line); color: var(--muted); }

/* Feature split (products page) */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  padding: 60px 0; border-top: 1px solid var(--line);
}
.feature-row:nth-child(even) .feature-visual { order: -1; }
.feature-num { font-size: 4rem; font-weight: 700; line-height: 1;
  background: var(--grad-a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feature-text h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 10px 0 16px; letter-spacing: -0.6px; }
.feature-text p { color: var(--muted); font-size: 1.05rem; }
.feature-list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; color: var(--muted); align-items: flex-start; }
.feature-list li svg { flex-shrink: 0; width: 20px; height: 20px; stroke: var(--lime); margin-top: 3px; }
.feature-visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(87,242,168,0.10), rgba(56,214,255,0.06));
  display: grid; place-items: center;
}
.feature-visual .orb {
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: var(--grad-a); filter: blur(30px); opacity: 0.55; animation: float 8s ease-in-out infinite;
}
.feature-visual .glyph { position: absolute; inset: 0; display: grid; place-items: center; }
.feature-visual .glyph svg { width: 40%; height: 40%; stroke: var(--ink); opacity: 0.9; }
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-18px) scale(1.05); } }

/* Accuracy callout */
.callout {
  border-left: 3px solid var(--amber); background: rgba(255, 206, 77, 0.06);
  padding: 18px 22px; border-radius: 0 12px 12px 0; margin-top: 22px; color: var(--muted);
  font-size: 0.95rem;
}
.callout b { color: var(--amber); }

/* Tech / bento */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento .card { padding: 28px; }
.b-3 { grid-column: span 3; } .b-2 { grid-column: span 2; } .b-4 { grid-column: span 4; }
.b-6 { grid-column: span 6; }
.bento h3 { font-size: 1.25rem; margin-bottom: 10px; }
.bento p { color: var(--muted); font-size: 0.95rem; }
.chip-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--grad-a); box-shadow: var(--glow); }
.chip-ico svg { width: 24px; height: 24px; stroke: #04241a; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; counter-reset: s; }
.step { padding: 28px; }
.step .n { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-weight: 700;
  background: rgba(120,255,190,0.1); border: 1px solid var(--line); color: var(--lime); margin-bottom: 18px; }
.step h4 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* CTA band */
.cta-band {
  text-align: center; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(135deg, rgba(87,242,168,0.14), rgba(56,214,255,0.08));
  border: 1px solid rgba(120,255,190,0.22); position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -1px; }
.cta-band p { color: var(--muted); margin: 18px auto 34px; max-width: 55ch; font-size: 1.1rem; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 60px 0 40px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer h5 { color: var(--muted-2); text-transform: uppercase; letter-spacing: 1px; font-size: 0.78rem; margin-bottom: 16px; }
.footer a { display: block; color: var(--muted); padding: 5px 0; font-size: 0.95rem; }
.footer a:hover { color: var(--lime-2); }
.footer .brand { margin-bottom: 16px; }
.footer .disc { color: var(--muted-2); font-size: 0.9rem; max-width: 40ch; }
.footer-bottom { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; color: var(--muted-2); font-size: 0.88rem; flex-wrap: wrap; gap: 10px; }

/* ============================ Form page ============================ */
.form-wrap { max-width: 760px; margin: 0 auto; padding-top: 130px; }
.form-card { padding: clamp(26px, 4vw, 48px); }
.progress { display: flex; gap: 10px; margin-bottom: 34px; }
.progress .seg { height: 5px; flex: 1; border-radius: 999px; background: rgba(120,255,190,0.12); overflow: hidden; }
.progress .seg i { display: block; height: 100%; width: 0; background: var(--grad-a); transition: width 0.5s; }
.progress .seg.done i, .progress .seg.active i { width: 100%; }

.step-panel { display: none; animation: fade 0.4s; }
.step-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.step-label { color: var(--lime-2); font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.step-panel h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 8px 0 6px; letter-spacing: -0.5px; }
.step-panel > p.sub { color: var(--muted); margin-bottom: 28px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 500; margin-bottom: 9px; font-size: 0.95rem; }
.field .req { color: var(--lime); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; font-family: inherit; font-size: 1rem;
  background: rgba(4, 18, 12, 0.6); border: 1px solid var(--line); color: var(--ink); transition: 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lime-2); box-shadow: 0 0 0 3px rgba(87,242,168,0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .hint { color: var(--muted-2); font-size: 0.83rem; margin-top: 6px; }
.field.error input, .field.error select { border-color: #ff6b6b; }
.field .err-msg { color: #ff8f8f; font-size: 0.82rem; margin-top: 6px; display: none; }
.field.error .err-msg { display: block; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Choice chips */
.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.choice {
  border: 1px solid var(--line); border-radius: 14px; padding: 18px; cursor: pointer; transition: 0.2s;
  background: rgba(4,18,12,0.4); position: relative;
}
.choice:hover { border-color: var(--lime-2); }
.choice input { position: absolute; opacity: 0; }
.choice.sel { border-color: var(--lime); background: rgba(120,255,190,0.08); box-shadow: 0 0 0 1px var(--lime) inset; }
.choice .ci { width: 40px; height: 40px; border-radius: 11px; background: rgba(120,255,190,0.1); display: grid; place-items: center; margin-bottom: 12px; }
.choice .ci svg { width: 22px; height: 22px; stroke: var(--lime-2); }
.choice b { display: block; font-size: 0.98rem; }
.choice small { color: var(--muted-2); font-size: 0.82rem; }

.form-actions { display: flex; justify-content: space-between; margin-top: 34px; gap: 12px; }

/* Success */
.success { text-align: center; padding: 30px 0; display: none; }
.success.show { display: block; animation: fade 0.5s; }
.success .check {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 26px; display: grid; place-items: center;
  background: var(--grad-a); box-shadow: var(--glow); animation: pop 0.6s cubic-bezier(.2,1.4,.4,1);
}
.success .check svg { width: 46px; height: 46px; stroke: #04241a; }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.success h2 { font-size: 2rem; }
.success p { color: var(--muted); margin: 14px auto 30px; max-width: 46ch; }
.summary-box { text-align: left; background: rgba(4,18,12,0.5); border: 1px solid var(--line); border-radius: 14px; padding: 22px; margin: 26px auto; max-width: 460px; }
.summary-box .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); gap: 16px; }
.summary-box .row:last-child { border: 0; }
.summary-box .row span { color: var(--muted-2); } .summary-box .row b { text-align: right; }

/* Page hero (interior pages) */
.page-hero { padding: 150px 0 40px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -1.5px; max-width: 18ch; }
.page-hero h1 .grad { background: var(--grad-a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 60ch; margin-top: 22px; }

/* ============================ Responsive ============================ */
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 62px 12px auto 12px; flex-direction: column; align-items: stretch;
    background: var(--panel-solid); border: 1px solid var(--line); border-radius: 16px; padding: 12px;
    transform: translateY(-14px); opacity: 0; pointer-events: none; transition: 0.25s; }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links .btn { justify-content: center; margin-top: 6px; }
  .nav-toggle { display: block; }
  .feature-row { grid-template-columns: 1fr; gap: 26px; }
  .feature-row:nth-child(even) .feature-visual { order: 0; }
  .bento { grid-template-columns: 1fr; }
  .b-3, .b-2, .b-4, .b-6 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px 24px; }
  .hero-stats .stat { flex: 0 0 42%; }   /* 2×2 grid on phones */
}

/* ============================================================
   ADDITIONS — rewrite: proof, demo phone, problem ladder,
   flywheel, dual CTAs, trust footer, partners
   ============================================================ */

/* Dual-path hero CTA sublabels */
.btn .sub-cta { display: block; font-weight: 400; font-size: 0.72rem; opacity: 0.75; margin-top: 1px; }
.btn.stack { flex-direction: column; align-items: flex-start; padding-top: 11px; padding-bottom: 11px; line-height: 1.15; }
.btn.stack.btn-ghost .sub-cta { color: var(--muted-2); }

/* Three-part proof */
.proof-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.proof {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; backdrop-filter: blur(10px); position: relative;
}
.proof .big { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700;
  background: var(--grad-b); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.05; }
.proof p { color: var(--muted); font-size: 0.95rem; margin-top: 8px; }
.proof .win { color: var(--lime); font-weight: 600; font-size: 0.9rem; margin-top: 10px; display: inline-block; }
@media (max-width: 820px) { .proof-row { grid-template-columns: 1fr; } }

/* ---------------- Voice demo (feature phone) ---------------- */
.demo-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .demo-wrap { grid-template-columns: 1fr; } }

.phone {
  width: 300px; max-width: 82vw; margin: 0 auto; aspect-ratio: 300/560;
  border-radius: 34px; padding: 14px;
  background: linear-gradient(160deg, #14261d, #08150f);
  border: 1px solid rgba(120,255,190,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(0,0,0,0.4), 0 0 60px rgba(87,242,168,0.15);
  position: relative;
}
.phone::before { /* front camera / speaker of a basic phone */
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 5px; border-radius: 3px; background: rgba(120,255,190,0.25);
}
.phone-screen {
  height: 100%; border-radius: 22px; background: linear-gradient(180deg, #041610, #06231a);
  border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column;
}
.phone-top { padding: 12px 14px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--muted); }
.phone-top .live { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); animation: pulse 1.6s infinite; }
.phone-top .lang { margin-left: auto; font-size: 0.68rem; padding: 3px 8px; border-radius: 999px; background: rgba(120,255,190,0.1); color: var(--lime-2); }
.phone-body { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.bubble { max-width: 85%; padding: 10px 13px; border-radius: 14px; font-size: 0.8rem; line-height: 1.4; opacity: 0; transform: translateY(10px); transition: 0.4s; }
.bubble.in { opacity: 1; transform: none; }
.bubble.farmer { align-self: flex-end; background: rgba(120,255,190,0.14); border: 1px solid var(--line); border-bottom-right-radius: 4px; }
.bubble.ai { align-self: flex-start; background: rgba(56,214,255,0.10); border: 1px solid rgba(56,214,255,0.2); border-bottom-left-radius: 4px; }
.bubble .who { display: block; font-size: 0.62rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.wave { display: flex; align-items: center; gap: 3px; height: 18px; margin-top: 6px; }
.wave i { width: 3px; border-radius: 2px; background: var(--lime); animation: wv 1s ease-in-out infinite; }
.wave i:nth-child(odd) { animation-delay: 0.15s; } .wave i:nth-child(3n) { animation-delay: 0.3s; }
@keyframes wv { 0%,100% { height: 5px; } 50% { height: 16px; } }
.phone-foot { padding: 10px 14px 14px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.mic-btn { width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; flex-shrink: 0;
  background: var(--grad-a); display: grid; place-items: center; box-shadow: var(--glow); transition: 0.2s; }
.mic-btn:hover { transform: scale(1.06); }
.mic-btn svg { width: 20px; height: 20px; stroke: #04241a; }
.mic-btn.playing { animation: micpulse 1.2s infinite; }
@keyframes micpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(157,255,90,0.5); } 50% { box-shadow: 0 0 0 12px rgba(157,255,90,0); } }
.phone-foot .cap { font-size: 0.72rem; color: var(--muted-2); }
.demo-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 0.85rem; color: var(--muted-2); }

/* ---------------- Problem ladder ---------------- */
.ladder { display: grid; gap: 18px; margin-top: 44px; }
.rung { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; transition: 0.3s; }
.rung:hover { border-color: rgba(255,206,77,0.3); }
.rung .rn { font-size: 2.4rem; font-weight: 700; color: var(--amber); line-height: 1; opacity: 0.85; }
.rung h3 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); letter-spacing: -0.4px; }
.rung p { color: var(--muted); margin-top: 10px; font-size: 0.98rem; }
.rung .fact { margin-top: 12px; font-size: 0.92rem; color: var(--muted); border-left: 2px solid var(--amber); padding-left: 12px; }
.rung .fact b { color: var(--amber); }
.built-for { text-align: center; margin-top: 44px; padding: 30px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(87,242,168,0.12), rgba(56,214,255,0.06)); border: 1px solid rgba(120,255,190,0.22); }
.built-for p { color: var(--muted); font-size: 1.05rem; max-width: 60ch; margin: 0 auto; }
.built-for b { color: var(--lime); }
.built-for .punch { display: block; font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; margin-top: 10px;
  background: var(--grad-a); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------------- Flywheel (compounding) ---------------- */
.flywheel { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; margin-top: 20px; }
@media (max-width: 900px) { .flywheel { grid-template-columns: 1fr; } }
.fly-visual { position: relative; aspect-ratio: 1; max-width: 420px; margin: 0 auto; width: 100%; }
.fly-core { position: absolute; inset: 32%; border-radius: 50%; background: var(--grad-a); display: grid; place-items: center;
  text-align: center; color: #04241a; font-weight: 700; font-size: 0.82rem; box-shadow: var(--glow); animation: float 7s ease-in-out infinite; padding: 10px; }
.fly-ring { position: absolute; inset: 0; border: 1px dashed rgba(120,255,190,0.25); border-radius: 50%; animation: spin 34s linear infinite; }
.fly-ring.r2 { inset: 14%; animation-duration: 24s; animation-direction: reverse; border-color: rgba(56,214,255,0.2); }
@keyframes spin { to { transform: rotate(360deg); } }
.fly-node { position: absolute; width: 84px; height: 84px; margin: -42px 0 0 -42px; border-radius: 16px;
  background: var(--panel-solid); border: 1px solid var(--line); display: grid; place-items: center; text-align: center;
  font-size: 0.66rem; color: var(--muted); padding: 8px; backdrop-filter: blur(8px); }
.fly-node svg { width: 20px; height: 20px; stroke: var(--lime-2); margin-bottom: 3px; }
.fly-list { list-style: none; display: grid; gap: 14px; }
.fly-list li { display: flex; gap: 12px; color: var(--muted); align-items: flex-start; }
.fly-list li svg { width: 20px; height: 20px; stroke: var(--lime); flex-shrink: 0; margin-top: 3px; }
.fly-list li b { color: var(--ink); font-weight: 600; }
.moat-tag { display: inline-block; margin-top: 22px; padding: 10px 18px; border-radius: 999px;
  background: rgba(120,255,190,0.08); border: 1px solid var(--line); color: var(--lime-2); font-weight: 600; font-size: 0.92rem; }

/* Outcome badge on product cards */
.outcome { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 7px 13px; border-radius: 999px;
  background: rgba(157,255,90,0.1); border: 1px solid rgba(157,255,90,0.25); color: var(--lime); font-weight: 600; font-size: 0.83rem; }
.honest { color: var(--muted-2); font-size: 0.8rem; margin-top: 10px; font-style: italic; }

/* ---------------- CTA paths (audience) ---------------- */
.cta-paths { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 20px; }
@media (max-width: 720px) { .cta-paths { grid-template-columns: 1fr; } }
.path { padding: 26px; display: flex; flex-direction: column; }
.path .who { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.path h3 { font-size: 1.3rem; margin: 8px 0 8px; letter-spacing: -0.3px; }
.path p { color: var(--muted); font-size: 0.93rem; flex: 1; }
.path .btn { margin-top: 18px; align-self: flex-start; }
.path .time { color: var(--lime-2); font-size: 0.82rem; margin-top: 8px; }

/* ---------------- Trust / footer additions ---------------- */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item { display: flex; gap: 14px; padding: 20px 22px; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; }
.trust-item svg { width: 24px; height: 24px; stroke: var(--lime); flex-shrink: 0; }
.trust-item b { display: block; margin-bottom: 3px; }
.trust-item p { color: var(--muted); font-size: 0.9rem; }
.partners { margin-top: 46px; text-align: center; }
.partners .lbl { color: var(--muted-2); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; }
.partner-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 20px; }
.partner-row span { padding: 12px 22px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted);
  font-weight: 600; letter-spacing: 0.5px; background: var(--bg-2); font-size: 0.9rem; }
.learn-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.learn-links a { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; transition: 0.2s; }
.learn-links a:hover { border-color: var(--lime-2); color: var(--ink); }
.learn-links a svg { width: 16px; height: 16px; stroke: var(--lime-2); }

/* ============================================================
   ADDITIONS v2 — gold CTA, language selector, cycling scripts,
   light phone card + app-screen gallery, color-coded loss cards,
   CTA path rows, pull quote
   ============================================================ */

/* High-contrast gold CTA (fixes the invisible "Try Now") */
.btn-gold {
  background: var(--grad-gold); color: #241a05; font-weight: 700;
  box-shadow: 0 8px 26px rgba(224, 147, 47, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(224, 147, 47, 0.5); color: #241a05; }
.nav-links a.btn-gold { color: #241a05; font-weight: 700; }
.nav-links a.btn-gold:hover { background: var(--grad-gold); }

/* ---------------- Language selector ---------------- */
.lang-select { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 8px 14px; border-radius: 10px; font-family: inherit; font-size: 0.92rem; font-weight: 500;
  color: var(--muted); background: #ffffff; border: 1px solid var(--line); transition: 0.2s;
}
.lang-btn:hover { color: var(--ink); border-color: var(--gold); }
.lang-btn svg { width: 17px; height: 17px; stroke: var(--gold-2); }
.lang-btn .chev { width: 12px; height: 12px; stroke: currentColor; transition: 0.2s; }
.lang-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; width: 210px; max-height: 320px; overflow-y: auto;
  background: var(--panel-solid); border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5); display: none; z-index: 200;
}
.lang-menu.open { display: block; animation: fade 0.18s; }
.lang-menu button {
  display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 10px;
  padding: 9px 12px; border-radius: 9px; background: none; border: none; cursor: pointer;
  font-family: inherit; color: var(--muted); font-size: 0.9rem; text-align: left; transition: 0.15s;
}
.lang-menu button:hover, .lang-menu button.sel { background: rgba(230,169,58,0.12); color: var(--ink); }
.lang-menu button .native { font-weight: 600; }
.lang-menu button .en { color: var(--muted-2); font-size: 0.78rem; }

/* ---------------- Cycling script text ---------------- */
.cycle { display: inline-block; transition: opacity 0.3s, transform 0.3s; }
.cycle.swap { opacity: 0; transform: translateY(6px); }
.pill .cycle { color: var(--gold-2); font-weight: 600; }

/* ---------------- Light phone card (voice demo) ---------------- */
.phone-lite {
  width: 320px; max-width: 84vw; margin: 0 auto; aspect-ratio: 320/620; position: relative;
  border-radius: 40px; padding: 12px;
  background: linear-gradient(160deg, #fbf7f0, #efe7d9);
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,0.05), inset 0 0 0 2px rgba(255,255,255,0.6),
    0 0 70px rgba(230,169,58,0.12);
}
.phone-lite::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 6px; border-radius: 4px; background: rgba(43,40,34,0.18);
}
.pl-screen {
  height: 100%; border-radius: 30px; background: #f6f0e6; overflow: hidden;
  display: flex; flex-direction: column; padding: 26px 14px 14px; position: relative;
}
.pl-body { flex: 1; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.pl-bubble { border-radius: 16px; padding: 13px 15px; opacity: 0; transform: translateY(12px); transition: 0.45s; }
.pl-bubble.in { opacity: 1; transform: none; }
.pl-bubble .lbl { display: block; font-size: 0.62rem; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.pl-bubble .txt { color: var(--ink-dark); font-size: 0.92rem; line-height: 1.5; font-weight: 500; }
.pl-farmer { background: var(--warm-beige); align-self: flex-end; border-bottom-right-radius: 5px; max-width: 92%; }
.pl-farmer .lbl { color: var(--muted-dark); }
.pl-ai { background: var(--sage); align-self: flex-start; border-bottom-left-radius: 5px; max-width: 95%; }
.pl-ai .lbl { color: #6d7d54; }
.pl-save { background: #dfeccf; align-self: flex-start; max-width: 95%; border: 1px solid rgba(120,150,70,0.25); }
.pl-save .lbl { color: #8a6d2e; }
.pl-save .txt { font-weight: 700; }
.pl-save .rupee { color: #b07d1e; }
.pl-wave { display: flex; align-items: center; gap: 3px; height: 16px; margin-top: 9px; }
.pl-wave i { width: 3px; border-radius: 2px; background: #6f9a3f; height: 5px; }
.pl-foot { display: flex; align-items: center; gap: 12px; padding-top: 12px; margin-top: 10px; border-top: 1px solid rgba(43,40,34,0.1); }
.pl-mic { width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer; flex-shrink: 0;
  background: var(--grad-gold); display: grid; place-items: center; box-shadow: 0 6px 18px rgba(224,147,47,0.4); transition: 0.2s; }
.pl-mic:hover { transform: scale(1.06); }
.pl-mic svg { width: 21px; height: 21px; stroke: #241a05; }
.pl-mic.playing { animation: micpulse 1.1s infinite; }
.pl-cap { font-size: 0.8rem; color: var(--muted-dark); font-weight: 500; }
.pl-wave.live i { animation: wv 0.9s ease-in-out infinite; }
.pl-wave.live i:nth-child(odd) { animation-delay: .12s; } .pl-wave.live i:nth-child(3n) { animation-delay: .26s; }
/* dark "call kisan" tooltip overlapping the phone */
.kisan-chip {
  position: absolute; right: -18px; bottom: 78px; width: 235px; z-index: 5;
  background: #26221d; color: #f0e9dd; border-radius: 14px; padding: 14px 16px; font-size: 0.82rem; line-height: 1.5;
  box-shadow: 0 20px 44px rgba(0,0,0,0.5); border: 1px solid rgba(230,169,58,0.25);
}
.kisan-chip b { color: var(--gold-2); }
.kisan-chip::after { content: ""; position: absolute; left: -7px; bottom: 20px; width: 14px; height: 14px;
  background: #26221d; transform: rotate(45deg); border-left: 1px solid rgba(230,169,58,0.25); border-bottom: 1px solid rgba(230,169,58,0.25); }
@media (max-width: 560px) { .kisan-chip { right: 0; bottom: -10px; width: 88%; } }

/* ---------------- App-screen gallery (UI examples) ---------------- */
.screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 760px) { .screens { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }
.screen {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--line); background: var(--panel-solid);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35); transition: 0.35s;
}
.screen:hover { transform: translateY(-6px); box-shadow: 0 28px 66px rgba(0,0,0,0.45); }
.screen-top { padding: 12px 16px; display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; color: #241a05; }
.screen-top svg { width: 16px; height: 16px; }
.screen-body { padding: 16px; background: #f6f0e6; min-height: 190px; color: var(--ink-dark); }
.screen-body .cap { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-dark); font-weight: 700; }
.screen-body h4 { font-size: 1.05rem; margin: 4px 0 10px; color: var(--ink-dark); }
.screen-body .metric { font-size: 1.6rem; font-weight: 700; }
.screen-body p { font-size: 0.85rem; color: #5c574c; line-height: 1.5; }
.screen-body .bar { height: 8px; border-radius: 5px; background: #e3dccc; overflow: hidden; margin: 8px 0; }
.screen-body .bar i { display: block; height: 100%; border-radius: 5px; }
.screen-body .row2 { display: flex; justify-content: space-between; font-size: 0.82rem; padding: 5px 0; border-bottom: 1px solid #e6dfd0; }
.screen-body .row2 b { color: var(--ink-dark); }
.tag-warn { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; background: #ffe2c2; color: #9a5a12; }
.tag-ok { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; background: #d7ecc6; color: #4f7a2b; }
.sc-diag .screen-top { background: linear-gradient(135deg,#f6c552,#e0932f); }
.sc-soil .screen-top { background: linear-gradient(135deg,#9dff5a,#22e3c3); }
.sc-weather .screen-top { background: linear-gradient(135deg,#7fd8ff,#38a0ff); color: #06263a; }

/* ---------------- Color-coded loss cards ---------------- */
.loss-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 980px) { .loss-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .loss-grid { grid-template-columns: 1fr; } }
.loss { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel);
  backdrop-filter: blur(10px); border-top: 3px solid var(--accent, var(--gold)); }
.loss .stat { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; color: var(--accent, var(--gold)); line-height: 1; }
.loss h3 { font-size: 1.08rem; margin: 12px 0 8px; letter-spacing: -0.3px; }
.loss p { color: var(--muted); font-size: 0.9rem; }
.loss.c-gold { --accent: #f6c552; } .loss.c-teal { --accent: #38d6ff; }
.loss.c-red { --accent: #ff7d6b; } .loss.c-lime { --accent: #9dff5a; }

/* ---------------- CTA path rows ---------------- */
.path-rows { display: grid; gap: 14px; margin-top: 20px; max-width: 780px; margin-inline: auto; }
.path-row { display: flex; align-items: center; gap: 20px; padding: 22px 26px; border-radius: 16px;
  border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(10px); transition: 0.25s; text-align: left; }
.path-row:hover { transform: translateX(6px); border-color: var(--gold); }
.path-row .who { font-size: 0.76rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-2); font-weight: 700; }
.path-row h3 { font-size: 1.15rem; margin-top: 4px; }
.path-row .arrow { margin-left: auto; width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: rgba(230,169,58,0.12); border: 1px solid var(--line); transition: 0.25s; }
.path-row:hover .arrow { background: var(--grad-gold); }
.path-row .arrow svg { width: 20px; height: 20px; stroke: var(--gold-2); }
.path-row:hover .arrow svg { stroke: #241a05; }
.path-row.farmer { border-left: 3px solid var(--gold-2); }

/* ---------------- Pull quote ---------------- */
.pull-quote { max-width: 760px; margin: 44px auto 0; text-align: center; padding: 0 20px; }
.pull-quote p { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; letter-spacing: -0.5px; line-height: 1.3; }
.pull-quote p .qm { color: var(--gold-2); }
.pull-quote cite { display: block; margin-top: 16px; color: var(--muted-2); font-style: normal; font-size: 0.92rem; }

/* Inline button / label icons (replacing emoji) */
.btn-ico { width: 17px; height: 17px; stroke: currentColor; flex-shrink: 0; }
.lead-ico { width: 18px; height: 18px; stroke: var(--gold-2); vertical-align: -3px; margin-right: 6px; }
.foot-leaf { width: 15px; height: 15px; stroke: var(--lime-2); vertical-align: -2px; }

/* ---------------- Flywheel diagram (the moat, shown not told) ---------------- */
.diagram-band { }
.diagram-wrap { max-width: 940px; margin: 10px auto 0; }
.diagram-wrap svg { width: 100%; height: auto; display: block; }
.dg-node rect { fill: var(--panel-solid); stroke: var(--line); }
.dg-node text { fill: var(--ink); font-family: var(--font); font-weight: 600; }
.dg-node .dg-sub { fill: var(--muted-2); font-weight: 500; }
.dg-hub { fill: url(#dgGold); }
.dg-hub-txt { fill: #241a05; font-family: var(--font); font-weight: 700; }
.dg-line { stroke: rgba(120,255,190,0.35); stroke-width: 1.5; fill: none; }
.dg-flow { stroke: var(--gold-2); stroke-width: 2; fill: none; stroke-dasharray: 6 6; }
.dg-loop { stroke: var(--gold-2); stroke-width: 2; fill: none; }
.dg-loop-txt { fill: var(--gold-2); font-family: var(--font); font-weight: 600; }
.dg-ico { stroke: var(--lime-2); stroke-width: 2; fill: none; }
@keyframes dash { to { stroke-dashoffset: -24; } }
.dg-animate .dg-flow { animation: dash 1.2s linear infinite; }

/* ---------------- Photo band (real field, human warmth) ---------------- */
.photo-band { position: relative; width: 100%; margin: 20px 0; }
.photo-band .frame {
  position: relative; width: min(1100px, 94vw); margin-inline: auto; aspect-ratio: 21/8; min-height: 240px;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  display: flex; align-items: flex-end; box-shadow: 0 22px 54px rgba(18,60,40,0.14);
}
.photo-band .frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.photo-band .frame::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(6,14,9,0.82), rgba(6,14,9,0.35) 48%, rgba(6,14,9,0) 72%);
}
.photo-band .cap { position: relative; z-index: 2; padding: clamp(22px, 4vw, 40px); max-width: 620px; }
.photo-band .cap .kick { color: var(--gold-2); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; font-size: 0.78rem; }
.photo-band .cap p { color: #fff; font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 600; letter-spacing: -0.4px; margin-top: 10px; line-height: 1.3; }

/* ---------------- Validation strip ---------------- */
.validation { text-align: center; padding: 40px 0 10px; }
.validation .lbl { color: var(--muted-2); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; }
.validation .row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 18px; }
.validation .row span { padding: 11px 20px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted);
  font-weight: 600; font-size: 0.88rem; background: var(--bg-2); }
.validation .note { color: var(--muted-2); font-size: 0.8rem; margin-top: 16px; }

/* Thesis pull-line (reframed, not a fake quote) */
.thesis { max-width: 820px; margin: 44px auto 0; text-align: center; padding: 0 20px; }
.thesis .bar { width: 46px; height: 3px; border-radius: 3px; background: var(--grad-gold); margin: 0 auto 22px; }
.thesis p { font-size: clamp(1.4rem, 3vw, 2.05rem); font-weight: 600; letter-spacing: -0.5px; line-height: 1.32; }
.thesis p b { background: var(--grad-a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.thesis .tag { display: block; margin-top: 18px; color: var(--muted-2); font-size: 0.9rem; }

/* Inline photo figure (real farmer/field) */
.media-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  margin: 34px 0 8px; border: 1px solid var(--line); box-shadow: 0 22px 54px rgba(18, 60, 40, 0.14);
}
.media-photo img {
  display: block; width: 100%; height: clamp(280px, 42vw, 440px); object-fit: cover; object-position: center 35%;
}
.media-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 28px 22px; color: #fff; font-size: 0.98rem;
  background: linear-gradient(0deg, rgba(8, 18, 10, 0.82), rgba(8, 18, 10, 0.25) 55%, transparent);
}
.media-photo figcaption b { color: var(--gold-2); }
.img-credit { color: var(--muted-2); font-size: 0.78rem; margin-top: 6px; }
.img-credit a { text-decoration: underline; }

/* ---------------- Coming-soon app lineup ---------------- */
.soon-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 920px) { .soon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .soon-grid { grid-template-columns: 1fr; } }
.soon-card {
  position: relative; border: 1.5px dashed var(--line); border-radius: var(--radius);
  padding: 28px 18px; min-height: 190px; background: var(--bg-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center;
  transition: 0.25s;
}
.soon-card:hover { border-color: var(--gold); transform: translateY(-4px); background: #fff; box-shadow: 0 16px 40px rgba(18,60,40,0.08); }
.soon-card .n { position: absolute; top: 12px; left: 14px; font-size: 0.8rem; font-weight: 700; color: var(--muted-2); }
.soon-card .lock { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); }
.soon-card .lock svg { width: 22px; height: 22px; stroke: var(--muted-2); }
.soon-card .badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.soon-card p { color: var(--muted-2); font-size: 0.85rem; }
