/* Hallmark · genre: editorial · macrostructure: Marquee Hero (marketing) + Long Document (content)
 *           · design-system: design.md · designed-as-app
 *  AgriHub360 marketing site. Tokens live in tokens.css (OKLCH).
 *  Legacy variable names below alias the new tokens — see design.md for the system.
 */

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

:root {
  /* Aliases — legacy names map to tokens.css OKLCH values.
   * Don't introduce new raw hex/rgba below — reference the named tokens.
   */
  --bg:         var(--color-paper);
  --bg2:        var(--color-paper-2);
  --bg3:        var(--color-paper-3);
  --bg4:        var(--color-paper-4);
  --border:     var(--color-rule);
  --bhi:        var(--color-rule-strong);

  --green:      var(--color-accent-soft);
  --green-deep: var(--color-accent);
  --gdim:       var(--color-accent-tint);
  --gglow:      var(--color-accent-glow);

  --lime:       var(--color-accent-soft);
  --ldim:       var(--color-accent-tint);
  --lglow:      var(--color-accent-glow);

  --amber:      var(--color-amber);
  --adim:       var(--color-amber-tint);
  --aglow:      var(--color-amber-glow);

  --t1:         var(--color-ink);
  --t2:         var(--color-ink-2);
  --t3:         var(--color-ink-3);

  --btn-fg:     var(--color-paper-3);

  --sans:       var(--font-body);
  --serif:      var(--font-display);
  --mono:       var(--font-mono);

  /* radii + shadows reference tokens.css */
}

/* Reduced motion — universal collapse. Hallmark hard rule. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: clip; }
body {
  font-family: var(--sans);
  background: var(--bg); color: var(--t1);
  line-height: 1.55; overflow-x: clip;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-text-size-adjust: 100%;
}
::selection { background: var(--gglow); color: var(--green-deep); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--t3); }

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

.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.015em; }

/* Material Symbols base — applied to <span class="material-symbols-outlined"> */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  user-select: none;
}
.icon { display: inline-flex; align-items: center; justify-content: center; }

/* Top stripe removed (Hallmark: decorative infinite motion is slop). */

/* ── TOP BANNER ── */
.topbanner {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 350;
  background: var(--green-deep); color: var(--btn-fg);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .02em;
}
.topbanner-in {
  max-width: 1240px; margin: 0 auto;
  padding: .5rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.topbanner-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
  flex-shrink: 0;
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .35; transform: scale(.65); }
}
.topbanner-text { flex: 1; min-width: 200px; line-height: 1.5; opacity: .92; }
.topbanner-link {
  color: var(--btn-fg); text-decoration: none; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
}
.topbanner-link:hover { border-bottom-color: #fff; }

/* ── NAV ── */
.nav {
  position: fixed; top: 35px; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; padding: 0 1.5rem;
  background: rgba(250,250,246,0.85); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent; transition: background .2s, border-color .2s;
}
.nav.scrolled { background: rgba(250,250,246,0.96); border-bottom-color: var(--border); }

.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--t1); }
.logo-img { height: 22px; width: auto; display: block; }
@media (max-width: 720px) { .logo-img { height: 18px; } }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
@media (max-width: 1100px) { .nav-links { gap: 1.1rem; } }
.nav-links a {
  font-family: var(--sans); font-size: .85rem; font-weight: 500;
  color: var(--t2); text-decoration: none; letter-spacing: -0.005em;
  transition: color .15s;
}
.nav-links a:hover { color: var(--t1); }
.nav-links a[aria-current="page"] { color: var(--t1); }
.nav-links a[aria-current="page"]::after {
  content: ''; display: block; height: 2px; background: var(--green);
  margin-top: 4px; border-radius: 2px;
}

.nav-end { display: flex; align-items: center; gap: .75rem; }
.nav-app {
  font-family: var(--sans); font-size: .8rem; font-weight: 500;
  letter-spacing: -0.005em;
  padding: .5rem .9rem;
  background: var(--t1); color: var(--btn-fg);
  border-radius: var(--r-pill);
  text-decoration: none; transition: opacity .15s;
  white-space: nowrap;
}
.nav-app:hover { opacity: .85; }
.nav-mob {
  display: none; background: none; border: none; color: var(--t1);
  cursor: pointer; padding: 0;
}
.nav-mob .material-symbols-outlined {
  font-size: 1.5rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
@media (max-width: 720px) {
  .nav { top: 60px; padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-mob { display: block; }
}

main { padding-top: 95px; }

/* ── BUTTONS ── */
.btn-solid, .btn-ghost, .btn-line {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--sans); font-size: .92rem; font-weight: 500;
  padding: .75rem 1.4rem; text-decoration: none;
  border-radius: var(--r-pill);
  transition: background-color var(--dur-short) var(--ease-out),
              color var(--dur-short) var(--ease-out),
              border-color var(--dur-short) var(--ease-out),
              transform var(--dur-short) var(--ease-out);
  letter-spacing: -0.005em; line-height: 1; white-space: nowrap;
}
.btn-solid {
  background: var(--t1); color: var(--btn-fg); border: 1px solid var(--t1);
  box-shadow: var(--shadow-sm);
}
.btn-solid:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-solid.amber { background: var(--amber); border-color: var(--amber); color: #fff; }

.btn-ghost {
  background: transparent; color: var(--t1);
  border: 1px solid transparent;
}
.btn-ghost:hover { color: var(--green-deep); }

.btn-line {
  background: transparent; color: var(--t1);
  border: 1px solid var(--bhi);
}
.btn-line:hover { border-color: var(--green); color: var(--green-deep); }

/* ── SECTIONS ── */
.section { padding: 6rem 1.5rem; position: relative; }
.wrap { max-width: 1180px; margin: 0 auto; }
.page-intro { padding-top: 3rem; }

.slabel {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .7rem; font-weight: 500;
  letter-spacing: 0;
  color: var(--t3); margin-bottom: 1rem;
}
.slabel.g { color: var(--green); } .slabel.l { color: var(--lime); } .slabel.a { color: var(--amber); }

h2.D, .D {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.12; letter-spacing: -0.022em;
  color: var(--t1); max-width: 22ch;
}
h2.D.serif, .D.serif {
  font-family: var(--serif); font-weight: 500;
  letter-spacing: -0.02em;
}
h2.D .g, .D .g { color: var(--green-deep); }
h2.D .l, .D .l { color: var(--lime); }
h2.D .a, .D .a { color: var(--amber); }

.lede {
  font-family: var(--sans); font-size: 1.05rem; color: var(--t2);
  line-height: 1.6; max-width: 56ch;
  margin-top: 1.25rem;
}

.caveat {
  margin-top: 2rem; padding: .85rem 1.1rem;
  background: var(--adim);
  border-left: 3px solid var(--amber); border-radius: 0 6px 6px 0;
  font-family: var(--mono); font-size: .72rem; color: var(--t2);
  line-height: 1.6;
  max-width: 80ch;
}

/* ── HERO (left-biased, Marquee Hero macrostructure) ── */
.hero {
  position: relative; overflow: hidden;
  padding: 5rem 1.5rem 6rem;
  display: flex; align-items: flex-end;
  min-height: 58vh;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('/images/farm/sensor-wheat-hero.jpg');
  background-size: cover;
  background-position: right 35% center;
  opacity: 0.32;
  pointer-events: none;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, oklch(96.5% 0.008 90 / 0.85) 40%, oklch(96.5% 0.008 90 / 0.35) 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 60%, var(--bg) 100%);
}
@media (max-width: 720px) { .hero-photo { opacity: 0.20; background-position: center; } }
.hero-in {
  position: relative; z-index: 1;
  width: 100%; max-width: 1180px; margin: 0 auto;
  text-align: left;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 1.5rem;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .72rem; color: var(--green-deep);
  background: var(--gdim);
  padding: .35rem .75rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--color-rule-strong);
  margin-bottom: .25rem;
}

.hero-h1 {
  font-family: var(--sans); font-weight: 600;
  font-size: var(--text-display);
  line-height: 1.02; letter-spacing: -0.035em;
  color: var(--t1); max-width: 18ch;
  margin: 0;
}
.hero-h1-line { display: block; }
.hero-h1-accent {
  display: block;
  font-family: var(--serif); font-weight: 500; font-style: italic;
  color: var(--green-deep);
  letter-spacing: -0.025em;
  margin-top: .1em;
}
/* Backward compat: .hero-h1 .serif still styled the same. */
.hero-h1 .serif {
  display: block;
  font-family: var(--serif); font-weight: 500; font-style: italic;
  color: var(--green-deep);
  letter-spacing: -0.025em;
  margin-top: .1em;
}

.hero-sub {
  font-family: var(--sans); font-size: 1.1rem; color: var(--t2);
  line-height: 1.55; max-width: 52ch;
  margin: 0;
}

.hero-actions {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  align-items: center;
  margin: .25rem 0 0;
}

.hero-meta {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .7rem; color: var(--t2);
  letter-spacing: .02em;
  margin: 0;
}
.hero-meta-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-tint);
}
@media (max-width: 720px) {
  .hero { min-height: 0; padding: 3.5rem 1.25rem 4rem; align-items: flex-start; }
  .hero-h1 { max-width: 14ch; }
}

/* ── LIVE READINGS (in hero) ── */
.live-readings {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .75rem; margin-top: 4rem; width: 100%; max-width: 760px;
  animation: rise .6s .45s ease both;
}
@media (max-width: 720px) { .live-readings { grid-template-columns: repeat(2, 1fr); } }

.lr-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: .9rem 1rem;
  text-align: left;
  display: flex; flex-direction: column; gap: .35rem;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.lr-card:hover { border-color: var(--bhi); transform: translateY(-1px); }
.lr-row { display: flex; align-items: center; gap: .4rem; }
.lr-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}
.lr-amber .lr-pulse { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.lr-lime .lr-pulse { background: var(--lime); box-shadow: 0 0 6px var(--lime); }
.lr-label {
  font-family: var(--mono); font-size: .62rem; color: var(--t3);
  letter-spacing: .02em; text-transform: uppercase;
}
.lr-value {
  font-family: var(--serif); font-weight: 500; font-size: 1.45rem;
  color: var(--t1); letter-spacing: -0.02em; line-height: 1;
}
.lr-unit {
  font-family: var(--mono); font-size: .65rem; color: var(--t3);
  margin-left: .25rem; font-weight: 400; letter-spacing: 0;
}
.lr-trend {
  position: absolute; top: .9rem; right: 1rem;
  font-family: var(--mono); font-size: .8rem;
}
.trend-up { color: var(--green); }
.trend-down { color: var(--amber); }
.trend-flat { color: var(--t3); }

.lr-caption {
  margin-top: 1rem;
  font-family: var(--mono); font-size: .65rem; color: var(--t3);
  letter-spacing: .01em;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── COMPARISON TABLE (cheap) ── */
.cheap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.ctable {
  margin-top: 2.5rem;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ctable-head, .ctable-row {
  display: grid; grid-template-columns: 1.4fr 1.05fr repeat(3, 1fr);
  align-items: stretch;
}
.ctable-head .ctable-cell {
  font-family: var(--mono); font-size: .68rem; font-weight: 500;
  color: var(--t3); letter-spacing: .04em; text-transform: uppercase;
  padding: 1rem 1.1rem;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.ctable-head .ctable-us {
  color: var(--green-deep); background: var(--gdim);
}

.ctable-group {
  font-family: var(--mono); font-size: .65rem; font-weight: 500;
  color: var(--t3); letter-spacing: .08em; text-transform: uppercase;
  padding: 1rem 1.1rem .5rem;
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ctable-row { border-bottom: 1px solid var(--border); transition: background .15s; }
.ctable-row:last-child { border-bottom: none; }
.ctable-row:hover { background: var(--bg2); }

.ctable-cell {
  padding: 1rem 1.1rem;
  font-family: var(--sans); font-size: .9rem; color: var(--t1);
  line-height: 1.4;
  border-right: 1px solid var(--border);
  display: flex; align-items: center;
}
.ctable-cell:last-child { border-right: none; }

.ctable-metric {
  font-family: var(--sans); font-weight: 500; color: var(--t1); font-size: .92rem;
}
.ctable-us {
  background: var(--gdim);
  font-family: var(--sans); font-weight: 600; color: var(--green-deep);
}
.ctable-them {
  font-family: var(--sans); color: var(--t2); font-size: .88rem;
}

@media (max-width: 860px) {
  .ctable-head, .ctable-row { grid-template-columns: 1fr; }
  .ctable-head { display: none; }
  .ctable-row { padding: .5rem 0; }
  .ctable-cell {
    padding: .65rem 1.1rem; border-right: none;
    border-bottom: 1px dashed var(--border);
  }
  .ctable-row .ctable-cell:last-child { border-bottom: none; }
  .ctable-metric::after { content: ''; }
  .ctable-them::before, .ctable-us::before {
    content: attr(data-label) ' '; color: var(--t3);
    font-family: var(--mono); font-size: .65rem; margin-right: .5rem;
    text-transform: uppercase; letter-spacing: .05em;
  }
}

/* ── INSTALL STEPS (typographic list, hairline-separated rows) ── */
.install-steps {
  background: var(--bg3); border-bottom: 1px solid var(--border);
}
.steps-list {
  list-style: none; padding: 0; margin: 2.5rem 0 0;
  display: flex; flex-direction: column;
}
.step-item {
  display: grid;
  grid-template-columns: 6ch minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.step-item:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  font-family: var(--mono); font-size: .85rem; color: var(--green-deep);
  letter-spacing: .04em; font-weight: 500;
  align-self: start; padding-top: .35rem;
}
.step-body-wrap { display: flex; flex-direction: column; gap: .35rem; max-width: 56ch; }
.step-title {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.55rem; color: var(--t1); letter-spacing: -0.02em;
  line-height: 1.2;
}
.step-body {
  font-family: var(--sans); font-size: 1.02rem; color: var(--t2);
  line-height: 1.55;
}
@media (max-width: 560px) {
  .step-item { grid-template-columns: 1fr; gap: .4rem; padding: 1.5rem 0; }
  .step-num { padding-top: 0; }
  .step-title { font-size: 1.35rem; }
}

/* ── BENTO PRODUCT ── */
.bento-product { background: var(--bg); }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.b-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column;
  position: relative; transition: border-color .2s, box-shadow .2s;
}
.b-card:hover { border-color: var(--bhi); box-shadow: var(--shadow-md); }

.b-big      { grid-column: span 2; grid-row: span 2; }
.b-fullwide { grid-column: span 4; grid-row: span 2; }
.b-wide     { grid-column: span 2; grid-row: span 1; }
.b-tall     { grid-column: span 1; grid-row: span 2; }
.b-small    { grid-column: span 1; grid-row: span 1; }

@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(4, 1fr) !important; grid-auto-rows: 200px !important; }
  /* Drop explicit positioning, use size classes */
  .b-card[style] { grid-column: revert !important; grid-row: revert !important; }
  .b-big      { grid-column: span 4 !important; grid-row: span 2 !important; }
  .b-fullwide { grid-column: span 4 !important; grid-row: span 2 !important; }
  .b-wide     { grid-column: span 4 !important; grid-row: span 1 !important; }
  .b-tall     { grid-column: span 2 !important; grid-row: span 2 !important; }
  .b-small    { grid-column: span 2 !important; grid-row: span 1 !important; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr !important; grid-auto-rows: minmax(220px, auto) !important; }
  .b-card { grid-column: span 1 !important; grid-row: span 1 !important; }
}

.b-foot {
  padding: 1rem 1.25rem 1.1rem; border-top: 1px solid var(--border);
  margin-top: auto;
}
.b-title {
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  color: var(--t1); letter-spacing: -0.01em;
}
.b-copy {
  font-family: var(--sans); font-size: .82rem; color: var(--t2);
  margin-top: .25rem;
}

.b-photo-frame, .b-video-frame, .b-snap-frame {
  flex: 1; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #EFF1E8 0%, #E1E8DA 100%);
}
.b-photo-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(31,154,77,0.10) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(184,106,47,0.08) 0%, transparent 50%);
}
.b-photo-icon {
  position: relative; line-height: 1;
}
.b-photo-icon .material-symbols-outlined {
  font-size: 5rem; color: var(--green-deep); opacity: .55;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}
.b-card.b-small .b-photo-icon .material-symbols-outlined { font-size: 2.6rem; }
.b-photo-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.b-video-frame { background: linear-gradient(135deg, #1F2A20 0%, #14271B 100%); }
.b-video-iframe { width: 100%; height: 100%; border: 0; display: block; }
.b-video-frame .play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.b-video-frame .play-btn svg {
  width: 22px; height: 22px; fill: var(--green-deep); margin-left: 3px;
}
.b-video-frame:hover .play-btn { transform: scale(1.1); background: #fff; }
.vp-tag {
  position: absolute; top: .75rem; left: .75rem;
  font-family: var(--mono); font-size: .58rem; letter-spacing: .08em;
  color: var(--btn-fg); background: rgba(255,255,255,0.18);
  padding: .2rem .5rem; border-radius: 3px; backdrop-filter: blur(6px);
}

.b-snap-frame { background: var(--bg3); flex-direction: column; align-items: stretch; }
.b-snap-frame.snap-mobile {
  background: linear-gradient(135deg, #EFF1E8 0%, #DDE8D5 100%);
  align-items: center; justify-content: center; padding: 1rem;
}
.snap-phone {
  width: 130px; height: 230px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; overflow: hidden;
}
.snap-phone-bar { height: 16px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.snap-phone-body {
  flex: 1; padding: .85rem .8rem; display: flex; flex-direction: column; gap: .55rem;
  font-family: var(--sans); font-size: .65rem; color: var(--t2); line-height: 1.4;
}

/* Small snapshot — single live alert tile */
.b-snap-frame.snap-small {
  background: linear-gradient(135deg, rgba(31,154,77,0.06) 0%, rgba(95,168,46,0.04) 100%);
  align-items: center; justify-content: center; padding: 1rem;
  flex-direction: row; gap: .65rem;
}
.snap-small {
  display: flex; align-items: center; gap: .65rem;
  padding: .85rem 1rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 10px;
  box-shadow: var(--shadow-sm);
  width: 100%; max-width: 220px;
}
.snap-small-pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 8px var(--amber); flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
.snap-small-text { display: flex; flex-direction: column; gap: .15rem; }
.snap-small-line {
  font-family: var(--sans); font-weight: 600; font-size: .75rem;
  color: var(--t1); letter-spacing: -0.01em;
}
.snap-small-time {
  font-family: var(--mono); font-size: .58rem; color: var(--t3);
  letter-spacing: 0;
}

/* Mini metric tile */
.b-snap-frame.snap-metric {
  background: var(--bg3); padding: 1rem 1.1rem;
  flex-direction: column; align-items: flex-start; justify-content: center; gap: .15rem;
}
.snap-metric { display: flex; flex-direction: column; gap: .2rem; width: 100%; }
.snap-metric-v {
  font-family: var(--serif); font-weight: 500; font-size: 1.85rem;
  color: var(--t1); line-height: 1; letter-spacing: -0.025em;
}
.snap-metric-k {
  font-family: var(--mono); font-size: .58rem; color: var(--t3);
  letter-spacing: .04em; text-transform: uppercase;
}
.snap-metric-trend {
  font-family: var(--mono); font-size: .62rem; color: var(--green);
  margin-top: .25rem;
}

/* Sparkline chart tile */
.b-snap-frame.snap-chart {
  background: linear-gradient(135deg, rgba(31,154,77,0.05) 0%, rgba(95,168,46,0.07) 100%);
  flex-direction: column; padding: .85rem .9rem; gap: .35rem;
  align-items: stretch; justify-content: space-between;
}
.snap-chart { display: flex; flex-direction: column; gap: .35rem; height: 100%; }
.snap-chart-label {
  font-family: var(--mono); font-size: .58rem; color: var(--t3);
  letter-spacing: .04em; text-transform: uppercase;
}
.snap-chart-svg {
  width: 100%; height: 60px; display: block; flex: 1;
}
.snap-chart-foot {
  display: flex; align-items: center; gap: .35rem;
  font-family: var(--mono); font-size: .55rem; color: var(--green-deep);
  letter-spacing: .04em; text-transform: uppercase;
}
.snap-chart-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 5px var(--green); animation: pulse 2.4s ease-in-out infinite;
}

/* Wide status banner */
.b-snap-frame.snap-status {
  background: linear-gradient(90deg, rgba(31,154,77,0.06) 0%, rgba(95,168,46,0.03) 100%);
  flex-direction: row; padding: 0 1.25rem;
  align-items: center; justify-content: flex-start; gap: .85rem;
  flex-wrap: wrap;
}
.snap-status-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--sans); font-size: .82rem; color: var(--t1);
  background: var(--bg3); padding: .35rem .85rem;
  border: 1px solid var(--border); border-radius: var(--r-pill);
}
.snap-status-pill.alert { color: var(--amber); border-color: rgba(184,106,47,0.35); }
.snap-status-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green); animation: pulse 2.4s ease-in-out infinite;
}
.snap-status-sep { color: var(--t3); font-family: var(--mono); font-size: .85rem; }
.snap-topbar {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem .85rem; border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.db-dots { display: flex; gap: .35rem; }
.db-dot { width: 8px; height: 8px; border-radius: 50%; }
.db-dot:nth-child(1) { background: #FF5F57; }
.db-dot:nth-child(2) { background: #FEBC2E; }
.db-dot:nth-child(3) { background: #28C840; }
.db-url {
  font-family: var(--mono); font-size: .62rem; color: var(--t3);
  background: var(--bg3); padding: .2rem .55rem; border-radius: 4px;
  border: 1px solid var(--border); flex: 1;
}
.b-snap-body {
  padding: 1rem 1.1rem;
  display: flex; flex-direction: column; gap: .55rem;
  font-family: var(--sans); font-size: .76rem; color: var(--t2);
  line-height: 1.45;
}
.b-snap-row { display: flex; align-items: flex-start; gap: .5rem; }

.b-stat {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 1.5rem 1.5rem;
  background: var(--bg2);
}
.b-stat-v {
  font-family: var(--serif); font-weight: 500; font-size: 2.6rem;
  color: var(--green-deep); line-height: 1; letter-spacing: -0.025em;
}
.b-stat-k {
  margin-top: .65rem;
  font-family: var(--mono); font-size: .68rem; color: var(--t3);
  letter-spacing: .04em; text-transform: uppercase;
  max-width: 16ch; line-height: 1.4;
}

.placeholder-note {
  position: absolute; bottom: .55rem; left: .55rem; right: .55rem;
  font-family: var(--mono); font-size: .58rem; color: var(--t3);
  background: rgba(255,255,255,0.85); border: 1px dashed var(--border);
  padding: .3rem .5rem; border-radius: 4px; text-align: center;
  line-height: 1.4; backdrop-filter: blur(4px);
}
.b-video-frame .placeholder-note { background: rgba(15,31,21,0.7); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }

/* ── PIPELINE (4 cards horizontal) ── */
.how { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pipeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 1000px) { .pipeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pipeline { grid-template-columns: 1fr; } }

.pipe-step {
  padding: 1.75rem 1.5rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-card);
  display: flex; flex-direction: column; gap: .65rem;
  transition: border-color .2s;
}
.pipe-step:hover { border-color: var(--bhi); }
.pipe-num {
  font-family: var(--serif); font-weight: 500; font-size: 2.4rem;
  color: var(--green); line-height: 1; opacity: .85;
}
.pipe-icon .material-symbols-outlined {
  font-size: 1.7rem; color: var(--green);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.pipe-title {
  font-family: var(--sans); font-weight: 600; font-size: 1.1rem;
  color: var(--t1); letter-spacing: -0.015em;
}
.pipe-body {
  font-family: var(--sans); font-size: .85rem; color: var(--t2);
  line-height: 1.55;
}
.pipe-sensors { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .5rem; }
.sensor-tag {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .04em;
  padding: .25rem .55rem; background: var(--gdim); color: var(--green-deep);
  border-radius: 3px;
}

/* ── PROBLEM ── */
.problem-grid-flat {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
@media (max-width: 1024px) { .problem-grid-flat { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .problem-grid-flat { grid-template-columns: 1fr; } }
.problem-stat {
  display: flex; gap: .85rem; padding: 1.25rem;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-card);
}
.problem-icon { flex-shrink: 0; line-height: 1; }
.problem-icon .material-symbols-outlined {
  font-size: 1.6rem; color: var(--amber);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.problem-title {
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  color: var(--t1); margin-bottom: .25rem; letter-spacing: -0.01em;
}
.problem-body {
  font-family: var(--sans); font-size: .82rem; color: var(--t2);
  line-height: 1.5;
}

/* ── PRICING ── */
.biz { border-top: 1px solid var(--border); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 1.75rem 1.5rem;
  position: relative; transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.price-card:hover { border-color: var(--bhi); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--green); box-shadow: var(--shadow-md); }
.price-card.featured::before {
  content: 'Recommended'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: .6rem; letter-spacing: .04em;
  background: var(--green); color: var(--btn-fg);
  padding: .25rem .6rem; border-radius: var(--r-pill);
}
.price-tier {
  font-family: var(--mono); font-size: .68rem; color: var(--t3);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem;
}
.price-amount {
  font-family: var(--serif); font-weight: 500; font-size: 2.4rem;
  color: var(--t1); line-height: 1; letter-spacing: -0.025em;
}
.price-target {
  font-family: var(--sans); font-size: .8rem; color: var(--t2);
  margin: .55rem 0 1.25rem;
}
.price-features { list-style: none; padding: 0; margin: 0; }
.price-features li {
  font-family: var(--sans); font-size: .82rem; color: var(--t2);
  padding: .45rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: .5rem;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--green); flex-shrink: 0; }
.price-features li.dim { color: var(--t3); }
.price-features li.dim::before { content: '·'; color: var(--t3); }

.biz-extras {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 720px) { .biz-extras { grid-template-columns: 1fr; } }
.biz-extra {
  display: flex; gap: 1rem;
  padding: 1.5rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-card);
}
.biz-extra-icon { flex-shrink: 0; line-height: 1; }
.biz-extra-icon .material-symbols-outlined {
  font-size: 1.8rem; color: var(--green);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.biz-extra-title {
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  color: var(--t1); margin-bottom: .35rem;
}
.biz-extra-body {
  font-family: var(--sans); font-size: .85rem; color: var(--t2);
  line-height: 1.55;
}

.flywheel {
  display: flex; flex-wrap: wrap; gap: .65rem; align-items: center;
  justify-content: center; margin-top: 2.5rem;
  padding: 1.75rem; background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--r-card);
}
.flywheel-step {
  font-family: var(--sans); font-weight: 500; font-size: .9rem;
  padding: .5rem 1rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-pill);
  color: var(--t1);
}
.flywheel-arrow { color: var(--green); font-family: var(--mono); }
.pricing-note {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: var(--ldim); border-left: 3px solid var(--lime); border-radius: 0 6px 6px 0;
  font-family: var(--mono); font-size: .72rem; color: var(--t2); line-height: 1.6;
}

/* ── PLATFORM ROADMAP (typographic list, hairline rows) ── */
.platform-roadmap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proad-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-direction: column;
}
.proad-item {
  display: grid;
  grid-template-columns: 11ch minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.proad-item:last-child { border-bottom: 1px solid var(--border); }
.proad-status {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .06em;
  text-transform: uppercase;
  align-self: start; padding-top: .25rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.proad-status::before {
  content: ''; display: inline-block;
  width: 8px; height: 1px;
  background: var(--t3);
}
.proad-status-live::before    { background: var(--color-accent); height: 2px; }
.proad-status-pilot::before   { background: var(--color-accent); }
.proad-status-wip::before     { background: var(--color-accent-soft); }
.proad-status-backlog::before { background: var(--t3); }
.proad-status-option::before  { background: var(--t3); }
.proad-status-live    { color: var(--green-deep); }
.proad-status-pilot   { color: var(--green-deep); }
.proad-status-wip     { color: var(--color-accent-soft); }
.proad-status-backlog { color: var(--t3); }
.proad-status-option  { color: var(--t3); }
.proad-item-body { display: flex; flex-direction: column; gap: .25rem; max-width: 56ch; }
.proad-title {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.2rem; color: var(--t1); letter-spacing: -0.015em; line-height: 1.25;
}
.proad-body {
  font-family: var(--sans); font-size: .95rem; color: var(--t2); line-height: 1.55;
}
@media (max-width: 560px) {
  .proad-item { grid-template-columns: 1fr; gap: .35rem; padding: 1rem 0; }
  .proad-status { padding-top: 0; }
}

/* ── TRACTION ── */
.traction { background: var(--bg); }
.traction-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) { .traction-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .traction-steps { grid-template-columns: 1fr; } }

.tstep {
  padding: 1.5rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-card);
  display: flex; flex-direction: column; gap: .5rem;
}
.tstep-num {
  font-family: var(--serif); font-weight: 500; font-size: 2.4rem;
  color: var(--green); line-height: 1; opacity: .85;
}
.tstep-title {
  font-family: var(--sans); font-weight: 600; font-size: 1.05rem;
  color: var(--t1); letter-spacing: -0.015em;
}
.tstep-body {
  font-family: var(--sans); font-size: .85rem; color: var(--t2); line-height: 1.55;
}
.tstep-badge {
  align-self: flex-start; font-family: var(--mono); font-size: .6rem;
  padding: .2rem .55rem; border-radius: 3px; letter-spacing: .04em;
  text-transform: uppercase; margin-top: auto;
}
.tstep-badge.done { color: var(--green-deep); background: var(--gdim); border: 1px solid rgba(31,154,77,0.25); }
.tstep-badge.active { color: var(--amber); background: var(--adim); border: 1px solid rgba(184,106,47,0.30); }

/* ── TEAM ── */
.team { background: var(--bg); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  padding: 2rem 1.5rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-card);
  text-align: center; transition: border-color .2s, box-shadow .2s;
}
.team-card:hover { border-color: var(--bhi); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  border: 2px solid var(--green); background: var(--bg2);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500; font-size: 1.6rem; color: var(--green-deep);
}
.team-avatar.has-photo { padding: 0; overflow: hidden; }
.team-avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-name {
  font-family: var(--sans); font-weight: 600; font-size: 1.05rem;
  color: var(--t1); margin-bottom: .25rem;
}
.team-role {
  font-family: var(--mono); font-size: .65rem; color: var(--green);
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: .85rem;
}
.team-bio {
  font-family: var(--sans); font-size: .85rem; color: var(--t2); line-height: 1.55;
}
.parent-note {
  margin-top: 2.5rem; padding: 1rem 1.25rem;
  background: var(--bg3); border: 1px solid var(--border); border-radius: 6px;
  font-family: var(--sans); font-size: .85rem; color: var(--t2);
  line-height: 1.6; font-style: italic;
}

/* ── MARKET ── */
.market { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.market-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: center; margin-top: 2.5rem;
}
@media (max-width: 860px) { .market-layout { grid-template-columns: 1fr; } }
.market-bar-chart { display: flex; flex-direction: column; gap: 1.25rem; }
.mbar-row { display: flex; align-items: center; gap: 1rem; }
.mbar-label {
  font-family: var(--mono); font-size: .7rem; color: var(--t3);
  letter-spacing: .04em; text-transform: uppercase; width: 50px; flex-shrink: 0;
}
.mbar-bg {
  flex: 1; height: 32px; background: var(--bg4);
  border-radius: 6px; overflow: hidden; position: relative;
}
.mbar-fill { height: 100%; border-radius: 6px; display: flex; align-items: center; padding: 0 .85rem; }
.mbar-val {
  font-family: var(--sans); font-weight: 500; font-size: .85rem;
  color: var(--btn-fg); white-space: nowrap; letter-spacing: -0.005em;
}

.market-stats { display: flex; flex-direction: column; gap: 1rem; }
.mstat {
  padding: 1.25rem 1.5rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-card);
  border-left: 3px solid;
}
.mstat:nth-child(1) { border-left-color: var(--green); }
.mstat:nth-child(2) { border-left-color: var(--lime); }
.mstat:nth-child(3) { border-left-color: var(--amber); }
.mstat-v {
  font-family: var(--serif); font-weight: 500; font-size: 1.7rem;
  color: var(--t1); line-height: 1; letter-spacing: -0.02em; margin-bottom: .35rem;
}
.mstat-k {
  font-family: var(--sans); font-size: .85rem; color: var(--t2); line-height: 1.5;
}
.mstat-src {
  font-family: var(--mono); font-size: .62rem; color: var(--t3);
  margin-top: .35rem; font-style: italic;
}

/* ── QUICK FACTS (invest page) ── */
.quick-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 720px) { .quick-facts { grid-template-columns: repeat(2, 1fr); } }
.qfact {
  padding: 1.25rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-card);
  border-top: 3px solid var(--green);
}
.qfact-v {
  font-family: var(--serif); font-weight: 500; font-size: 1.65rem;
  color: var(--t1); line-height: 1; letter-spacing: -0.025em; margin-bottom: .35rem;
}
.qfact-k {
  font-family: var(--mono); font-size: .65rem; color: var(--t3);
  letter-spacing: .04em; text-transform: uppercase;
}

/* CTA section removed — closing pitch lives in the footer now (see ── FOOTER ──). */

/* ── FOOTER ── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2.5rem 1.5rem; }
.foot-in {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 1.5rem;
}
.foot-brand { display: inline-flex; align-items: center; text-decoration: none; }
.foot-logo { height: 20px; width: auto; display: block; }
.foot-copy {
  font-family: var(--mono); font-size: .65rem; color: var(--t3);
}
.foot-ereyna {
  font-family: var(--mono); font-size: .65rem; color: var(--t3);
}
.foot-ereyna a { color: var(--green-deep); text-decoration: none; }
.foot-links { display: flex; gap: 1.25rem; list-style: none; flex-wrap: wrap; padding: 0; }
.foot-links a {
  font-family: var(--sans); font-size: .82rem; color: var(--t2);
  text-decoration: none; transition: color .15s;
}
.foot-links a:hover { color: var(--green-deep); }
.foot-links.foot-legal { gap: 1rem; }
.foot-links.foot-legal a { color: var(--t3); font-size: .76rem; }

/* ── 404 ── */
.nf {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.25rem;
  text-align: center; padding: 4rem 2rem;
}
.nf-code {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(5rem, 14vw, 11rem);
  letter-spacing: -0.04em; line-height: 1; color: var(--green-deep);
}
.nf-msg {
  font-family: var(--mono); font-size: .8rem; color: var(--t2);
  letter-spacing: .02em;
}

/* ── SEE-MORE LINK ── */
.see-more {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.25rem;
  font-family: var(--sans); font-size: .9rem; font-weight: 500;
  color: var(--green-deep); text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color .15s;
}
.see-more:hover { border-bottom-color: var(--green-deep); }

/* ── PRICING · FREE-TIER INFO TOOLTIP ── */
.price-tier-row { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.price-tier-row .price-tier { margin-bottom: 0; }
.price-info {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; cursor: help;
  color: var(--t3); transition: color .15s;
  background: none; border: none; padding: 0;
}
.price-info:hover, .price-info:focus { color: var(--green-deep); outline: none; }
.price-info .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.price-info::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--t1); color: var(--btn-fg);
  padding: .65rem .85rem; border-radius: 8px;
  font-family: var(--sans); font-size: .75rem; font-weight: 400;
  line-height: 1.5; letter-spacing: 0; text-transform: none;
  width: 260px; max-width: 80vw; text-align: left;
  white-space: normal; opacity: 0; pointer-events: none;
  transition: opacity .15s ease;
  z-index: 20; box-shadow: var(--shadow-md);
}
.price-info:hover::after, .price-info:focus::after { opacity: 1; }

/* ── PRICING · DEVICES SECTION ── */
.devices { background: var(--bg2); border-top: 1px solid var(--border); }
.devices-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 720px) { .devices-row { grid-template-columns: 1fr; } }
.device-card {
  padding: 1.5rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-card);
  display: flex; flex-direction: column; gap: .55rem;
  transition: border-color .2s;
}
.device-card:hover { border-color: var(--bhi); }
.device-icon .material-symbols-outlined {
  font-size: 1.7rem; color: var(--green-deep);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.device-name {
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  color: var(--t1); letter-spacing: -0.01em;
}
.device-target {
  font-family: var(--serif); font-weight: 500; font-size: 1.55rem;
  color: var(--green-deep); letter-spacing: -0.025em; line-height: 1;
}
.device-desc {
  font-family: var(--sans); font-size: .85rem; color: var(--t2); line-height: 1.55;
}

/* ── TEAM · PHOTO PLACEHOLDER (square card, not circle avatar) ── */
.team-photo {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  border-radius: 14px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg4) 100%);
  border: 1px solid var(--border);
  margin: 0 auto 1.25rem;
  max-width: 180px;
}
.team-photo img {
  position: relative; z-index: 2;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.team-photo img.team-photo-fallback { display: none; }
.team-photo-placeholder {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .35rem; color: var(--t3);
}
.team-photo-placeholder .material-symbols-outlined {
  font-size: 3.5rem; opacity: .55;
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
}
.team-photo-initials {
  font-family: var(--serif); font-weight: 500; font-size: 1.15rem;
  letter-spacing: .04em; color: var(--t3);
}
.team-photo-green { border-color: rgba(31,154,77,0.25); }
.team-photo-lime  { border-color: rgba(95,168,46,0.25); }
.team-photo-amber { border-color: rgba(184,106,47,0.30); }

/* ── TEAM · CHRONOGRAM (horizontal timeline) ── */
.chronogram {
  position: relative; margin-top: 3rem; padding-top: 2.25rem;
}
.chrono-track {
  position: absolute; top: calc(2.25rem + 9px); left: 6%; right: 6%;
  height: 2px; background: var(--border); border-radius: 2px;
  overflow: hidden;
}
.chrono-fill {
  position: absolute; left: 0; top: 0; height: 100%;
  width: 75%;
  background: linear-gradient(90deg, var(--green-deep), var(--green), var(--lime));
}
.chrono-events {
  position: relative; display: grid;
  grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.chrono-event {
  display: flex; flex-direction: column; align-items: center;
  gap: .55rem; text-align: center;
}
.chrono-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--green);
  box-shadow: 0 0 0 4px var(--bg);
  z-index: 1;
}
.chrono-event.chrono-done .chrono-dot { background: var(--green); }
.chrono-event.chrono-active .chrono-dot {
  background: var(--green); border-color: var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}
.chrono-event.chrono-next .chrono-dot {
  background: var(--bg); border-color: var(--t3);
}
.chrono-date {
  font-family: var(--mono); font-size: .65rem; color: var(--t3);
  letter-spacing: .04em; text-transform: uppercase;
}
.chrono-title {
  font-family: var(--sans); font-weight: 600; font-size: .92rem;
  color: var(--t1); letter-spacing: -0.01em; max-width: 16ch;
}
.chrono-event.chrono-next .chrono-title { color: var(--t2); }
.chrono-body {
  font-family: var(--sans); font-size: .76rem; color: var(--t2);
  line-height: 1.5; max-width: 22ch;
}

@media (max-width: 760px) {
  .chronogram { padding-top: 0; }
  .chrono-track { display: none; }
  .chrono-events { grid-template-columns: 1fr; gap: 1rem; }
  .chrono-event {
    flex-direction: row; align-items: flex-start; text-align: left;
    padding: 1rem 1.25rem; background: var(--bg3);
    border: 1px solid var(--border); border-radius: 12px; gap: 1rem;
  }
  .chrono-event .chrono-dot { flex-shrink: 0; margin-top: .25rem; box-shadow: none; }
  .chrono-title, .chrono-body { max-width: none; }
}

/* ── MARKET · STORY BLOCKS ── */
.market-blocks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 720px) { .market-blocks { grid-template-columns: 1fr; } }
.market-block {
  padding: 1.75rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-card);
}
.mblock-title {
  font-family: var(--sans); font-weight: 600; font-size: 1.05rem;
  color: var(--t1); letter-spacing: -0.015em; margin-bottom: .75rem;
}
.mblock-body {
  font-family: var(--sans); font-size: .92rem; color: var(--t2);
  line-height: 1.6; margin-bottom: .9rem;
}
.mblock-source {
  font-family: var(--mono); font-size: .68rem; color: var(--t3);
  margin-bottom: 1rem; letter-spacing: 0;
}
.mblock-source a { color: var(--green-deep); text-decoration: none; border-bottom: 1px solid transparent; }
.mblock-source a:hover { border-bottom-color: var(--green-deep); }
.mblock-question {
  font-family: var(--serif); font-style: italic;
  font-size: .95rem; color: var(--t1);
  padding-top: .9rem; border-top: 1px dashed var(--border);
  line-height: 1.5;
}

/* ── INVEST · HERO + FLYWHEEL ── */
.invest-hero { padding-top: 5rem; padding-bottom: 5rem; }
.flywheel-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.flywheel-section .flywheel { margin-top: 2.5rem; }
.cta-fineprint {
  margin-top: 1rem;
  font-family: var(--mono); font-size: .68rem; color: var(--t3);
  letter-spacing: 0; line-height: 1.6;
}

/* ── LEGAL PAGES ── */
.legal-page { padding: 7rem 1.5rem 5rem; background: var(--bg); }
.legal-page .wrap { max-width: 760px; margin: 0 auto; }
.legal-meta {
  font-family: var(--mono); font-size: .65rem; color: var(--t3);
  letter-spacing: .04em; text-transform: uppercase; margin: .5rem 0 2.5rem;
}
.legal-h1 {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--t1);
}
.prose { font-family: var(--sans); color: var(--t1); line-height: 1.75; font-size: .98rem; }
.prose h2 {
  font-family: var(--sans); font-weight: 600;
  font-size: 1.2rem; letter-spacing: -0.015em;
  margin: 2rem 0 .85rem; color: var(--t1);
}
.prose p { margin-bottom: 1.05rem; color: var(--t2); }
.prose strong { color: var(--t1); font-weight: 600; }
.prose a { color: var(--green-deep); text-decoration: none; border-bottom: 1px solid rgba(20,97,52,0.30); }
.prose a:hover { border-bottom-color: var(--green-deep); }
.prose ul { margin: .75rem 0 1.25rem 1.25rem; color: var(--t2); }
.prose li { margin-bottom: .35rem; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 720px) {
  .section { padding: 4rem 1.25rem; }
  .hero { padding: 3rem 1.25rem 4rem; }
  main { padding-top: 100px; }
}

/* ── PIPELINE LOOP CALLOUT ── */
.pipeline-loop {
  margin: 2rem auto 0;
  max-width: 720px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(31,154,77,0.30);
  background: var(--gdim);
  border-radius: var(--r-card);
  text-align: center;
}
.pipeline-loop-title {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-deep); margin-bottom: .35rem;
}
.pipeline-loop-body {
  font-family: var(--sans); font-size: .95rem; color: var(--t1); line-height: 1.55;
}

/* ── FLYWHEEL CAPTION ── */
.flywheel-caption {
  max-width: 740px; margin: 1.75rem auto 0;
  font-family: var(--sans); font-size: .9rem; color: var(--t2);
  line-height: 1.6; text-align: center;
}
.flywheel-regulatory {
  max-width: 740px; margin: .75rem auto 0;
  font-family: var(--mono); font-size: .82rem; color: var(--green-deep);
  line-height: 1.55; text-align: center; letter-spacing: .01em;
}

/* ── TRACTION NUMBERS BLOCK ── */
.traction-numbers { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.traction-numbers-heading { font-size: 1.6rem; color: var(--t1); margin-top: .35rem; }
.traction-numbers-sub { font-family: var(--sans); color: var(--t2); margin: .5rem 0 1.5rem; }
.traction-numbers-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
@media (max-width: 1024px) { .traction-numbers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .traction-numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.tnum {
  padding: 1.25rem 1rem;
  background: var(--bg3); border: 1px dashed var(--border);
  border-radius: var(--r-card);
  display: flex; flex-direction: column; gap: .35rem;
}
.tnum-v { font-family: var(--mono); font-size: 1.4rem; color: var(--t1); letter-spacing: -0.01em; }
.tnum-k { font-family: var(--sans); font-size: .78rem; color: var(--t2); line-height: 1.4; }

/* ── PRICING PILOT CALLOUT ── */
.pricing-pilot {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-card);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
.pricing-pilot-text { flex: 1 1 380px; min-width: 0; }
.pricing-pilot-title { margin: 0 0 .35rem; font-size: 1.25rem; color: var(--t1); }
.pricing-pilot-body {
  margin: 0; font-family: var(--sans); color: var(--t2);
  font-size: .92rem; line-height: 1.55;
}
.pricing-pilot-cta { flex-shrink: 0; }


/* ── MICROCLIMATE DEMO ── */
.microclimate-demo { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.md-head { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.md-demo-tag {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .22rem .55rem; border-radius: 999px;
  background: var(--bg3); color: var(--t2);
  border: 1px dashed var(--border);
}
.md-intro {
  font-family: var(--sans); color: var(--t2); font-size: .9rem; line-height: 1.6;
  max-width: 680px; margin: .5rem 0 1.5rem;
}

.md-card {
  margin-top: 1.5rem;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* Farm tabs */
.md-farms {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem;
}
@media (max-width: 720px) { .md-farms { grid-template-columns: 1fr; } }
.md-farm {
  display: flex; align-items: center; gap: .85rem;
  padding: .9rem 1rem; text-align: left;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  cursor: pointer; transition: border-color .15s, background .15s, transform .15s;
  font-family: var(--sans);
  text-decoration: none; color: inherit;
}
.md-farm:hover { border-color: rgba(31,154,77,0.35); }
.md-farm.active {
  background: var(--gdim); border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green) inset;
}
.md-farm-icon { color: var(--green-deep); font-size: 1.4rem; }
.md-farm-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.md-farm-label { font-weight: 600; color: var(--t1); font-size: .95rem; }
.md-farm-loc { font-size: .72rem; color: var(--t3); font-family: var(--mono); }

/* Active panel context */
.md-context {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--bg); border-radius: 12px;
  border: 1px solid var(--border);
}
.md-blurb { font-family: var(--sans); color: var(--t1); font-size: .95rem; margin: 0; line-height: 1.5; }
.md-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem;
}
@media (max-width: 720px) { .md-stats { grid-template-columns: repeat(2, 1fr); } }
.md-stat {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .55rem .65rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 8px;
}
.md-stat-v { font-family: var(--mono); font-size: 1rem; color: var(--t1); letter-spacing: -0.01em; }
.md-stat-k { font-family: var(--sans); font-size: .68rem; color: var(--t3); }

/* Field tabs */
.md-fields {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem;
}
@media (max-width: 720px) { .md-fields { grid-template-columns: 1fr; } }
.md-field {
  display: flex; flex-direction: column; gap: .2rem;
  padding: .75rem 1rem; text-align: left;
  background: var(--bg); border: 1px dashed var(--border); border-radius: 10px;
  cursor: pointer; transition: border-color .15s, background .15s;
  font-family: var(--sans);
  text-decoration: none; color: inherit;
}
.md-field:hover { border-style: solid; border-color: rgba(31,154,77,0.35); }
.md-field.active {
  background: var(--bg3); border-style: solid; border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green) inset;
}
.md-field-name { font-weight: 600; font-size: .9rem; color: var(--t1); }
.md-field-meta { font-family: var(--mono); font-size: .7rem; color: var(--t2); letter-spacing: .01em; }

/* Leaderboard */
.md-leaderboard {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 1rem 1.25rem;
}
.md-lb-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid var(--border); padding-bottom: .65rem; margin-bottom: .65rem;
  flex-wrap: wrap;
}
.md-lb-title { font-family: var(--sans); font-weight: 600; color: var(--t1); font-size: .95rem; }
.md-lb-meta { font-family: var(--mono); font-size: .68rem; color: var(--t3); letter-spacing: .04em; text-transform: uppercase; }
.md-lb-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.md-lb-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .85rem; align-items: center;
  padding: .75rem .85rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 10px;
}
.md-lb-row.md-conf-high { border-color: rgba(31,154,77,0.45); }
.md-lb-rank {
  font-family: var(--mono); font-size: 1rem; font-weight: 600;
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: var(--bg2); color: var(--t1);
  display: flex; align-items: center; justify-content: center;
}
.md-lb-row.md-conf-high .md-lb-rank { background: var(--green); color: white; }
.md-lb-body { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.md-lb-line { display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; }
.md-lb-variety { font-family: var(--sans); font-weight: 600; color: var(--t1); font-size: .95rem; }
.md-lb-vendor { font-family: var(--mono); font-size: .72rem; color: var(--t2); letter-spacing: .01em; }
.md-lb-note { font-family: var(--sans); font-size: .8rem; color: var(--t2); line-height: 1.45; }
.md-lb-perf { display: flex; flex-direction: column; align-items: flex-end; gap: .15rem; }
.md-lb-delta { font-family: var(--mono); font-size: 1rem; font-weight: 600; color: var(--t1); }
.md-conf-high .md-lb-delta { color: var(--green-deep); }
.md-lb-conf {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .15rem .45rem; border-radius: 999px; border: 1px solid var(--border);
}
.md-lb-conf.md-conf-high { background: var(--gdim); color: var(--green-deep); border-color: rgba(31,154,77,0.30); }
.md-lb-conf.md-conf-med { background: var(--ldim); color: var(--lime); border-color: rgba(95,168,46,0.30); }
.md-lb-conf.md-conf-low { background: transparent; color: var(--t3); }

@media (max-width: 560px) {
  .md-lb-row { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
  .md-lb-perf { grid-column: 2; flex-direction: row; align-items: center; gap: .55rem; }
}

/* Footer */
.md-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
  padding-top: .5rem; border-top: 1px dashed var(--border);
}
.md-cta { font-size: .85rem; }
.md-footnote { font-family: var(--mono); font-size: .7rem; color: var(--t3); margin: 0; max-width: 520px; line-height: 1.5; }

/* ── "LIVE DATA COMING SOON" BANNER + PLACEHOLDER GRID ── */
.coming-soon-banner {
  margin: 1.5rem 0;
  padding: .75rem 1rem;
  background: var(--bg2);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 14px,
    rgba(95,168,46,0.06) 14px,
    rgba(95,168,46,0.06) 28px
  );
  border: 1px solid rgba(95,168,46,0.35);
  border-radius: var(--r-card);
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--mono);
  color: var(--green-deep);
  font-size: .8rem;
  letter-spacing: .01em;
}
.coming-soon-pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(95,168,46,0.6);
  animation: coming-soon-pulse 2s ease-out infinite;
}
.coming-soon-text { line-height: 1.4; }
@keyframes coming-soon-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(95,168,46,0.55); }
  60%  { box-shadow: 0 0 0 9px rgba(95,168,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(95,168,46,0); }
}

/* Placeholder grid styling — applied alongside the banner so NaN cells read as "not real yet" */
.num-grid.is-placeholder .num-v,
.traction-numbers-grid.is-placeholder .tnum-v {
  color: var(--t3);
  font-style: italic;
}
.num-grid.is-placeholder .num-cell,
.traction-numbers-grid.is-placeholder .tnum {
  border-style: dashed;
  background: var(--bg2);
}

/* ── LOOP CALCULATOR ── */
.loop-calc { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lc-head { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.lc-demo-tag {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .22rem .55rem; border-radius: 999px;
  background: var(--bg3); color: var(--t2);
  border: 1px dashed var(--border);
}
.lc-intro {
  font-family: var(--sans); color: var(--t2); font-size: .9rem; line-height: 1.6;
  max-width: 720px; margin: .5rem 0 0;
}

.lc-card {
  margin-top: 2rem;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.5rem;
}

.lc-grid {
  display: grid; grid-template-columns: minmax(280px, 1fr) 1.4fr; gap: 1.75rem;
}
@media (max-width: 900px) { .lc-grid { grid-template-columns: 1fr; } }

/* Inputs */
.lc-inputs { display: flex; flex-direction: column; gap: 1.4rem; }
.lc-input { display: flex; flex-direction: column; gap: .5rem; }
.lc-input-label {
  display: flex; justify-content: space-between; align-items: baseline; gap: .75rem;
  font-family: var(--sans);
}
.lc-input-name { color: var(--t1); font-size: .9rem; font-weight: 500; }
.lc-input-readout { font-family: var(--mono); color: var(--green-deep); font-size: .9rem; font-weight: 600; }
.lc-input-bounds {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: .65rem; color: var(--t3); letter-spacing: .02em;
}

/* Slider styling */
.lc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 999px;
  background: linear-gradient(to right, var(--green) var(--lc-progress, 0%), var(--bg2) var(--lc-progress, 0%));
  background: var(--bg2);
  outline: none; cursor: pointer;
}
.lc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--bg3);
  box-shadow: 0 1px 4px rgba(15,31,21,0.20);
  cursor: pointer; transition: transform .15s;
}
.lc-slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--bg3);
  box-shadow: 0 1px 4px rgba(15,31,21,0.20);
  cursor: pointer; transition: transform .15s;
}
.lc-slider:hover::-webkit-slider-thumb { transform: scale(1.12); }
.lc-slider:hover::-moz-range-thumb { transform: scale(1.12); }
.lc-slider:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }

/* Output cards */
.lc-outputs { display: flex; flex-direction: column; gap: 1.25rem; }
.lc-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
}
@media (max-width: 560px) { .lc-cards { grid-template-columns: 1fr; } }
.lc-cell {
  padding: 1rem 1.1rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  display: flex; flex-direction: column; gap: .25rem;
}
.lc-cell-v {
  font-family: var(--mono); font-size: 1.5rem; color: var(--t1);
  letter-spacing: -0.02em; line-height: 1.1;
  transition: color .15s;
}
.lc-cell-k { font-family: var(--sans); font-weight: 600; font-size: .82rem; color: var(--t1); }
.lc-cell-s { font-family: var(--sans); font-size: .72rem; color: var(--t3); line-height: 1.4; }

/* Revenue-mix chart */
.lc-chart {
  padding: 1.1rem 1.25rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  display: flex; flex-direction: column; gap: .75rem;
}
.lc-chart-title {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--t3);
}
.lc-chart-rows { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .85rem; }
.lc-chart-row { display: flex; flex-direction: column; gap: .35rem; }
.lc-chart-row-head { display: flex; align-items: center; gap: .55rem; }
.lc-chart-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.lc-chart-label { font-family: var(--sans); font-size: .85rem; color: var(--t1); flex: 1; }
.lc-chart-amount { font-family: var(--mono); font-size: .85rem; font-weight: 600; color: var(--t1); }
.lc-chart-track {
  width: 100%; height: 8px; background: var(--bg2); border-radius: 999px; overflow: hidden;
}
.lc-chart-fill {
  display: block; height: 100%; border-radius: 999px;
  transition: width .35s cubic-bezier(.4,0,.2,1);
}
.lc-color-green { background: var(--green); }
.lc-color-lime  { background: var(--lime); }
.lc-color-amber { background: var(--amber); }

/* Footer */
.lc-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding-top: 1rem; border-top: 1px dashed var(--border); flex-wrap: wrap;
}
.lc-footnote { font-family: var(--mono); font-size: .7rem; color: var(--t3); margin: 0; max-width: 640px; line-height: 1.55; }
.lc-cta { font-size: .85rem; flex-shrink: 0; }

/* ── METHODOLOGY PAGE ── */
.methodology h1.D { margin-top: .35rem; max-width: 880px; }
.methodology .lede { max-width: 780px; }
.meth-sections {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .meth-sections { grid-template-columns: 1fr; } }
.meth-section {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.meth-title { font-size: 1.25rem; color: var(--t1); margin: 0; }
.meth-body { font-family: var(--sans); color: var(--t2); margin: 0; line-height: 1.55; font-size: .95rem; }
.meth-bullets {
  list-style: none; padding: 0; margin: .25rem 0 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.meth-bullets li {
  font-family: var(--sans); color: var(--t1); line-height: 1.55; font-size: .9rem;
  padding-left: 1.1rem; position: relative;
}
.meth-bullets li::before {
  content: '·'; color: var(--green); font-weight: 700;
  position: absolute; left: .35rem; top: 0;
}
.meth-source { font-family: var(--mono); font-size: .72rem; color: var(--t3); margin: .35rem 0 0; }
.meth-source a { color: var(--green-deep); }

.meth-versions { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.meth-versions-title { margin: .35rem 0 .5rem; font-size: 1.5rem; color: var(--t1); }
.meth-versions-sub { font-family: var(--sans); color: var(--t2); margin: 0 0 1.25rem; font-size: .92rem; }
.meth-version-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .65rem; }
.meth-version {
  padding: 1rem 1.25rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-card);
}
.meth-version-head {
  display: flex; align-items: baseline; gap: .65rem; margin-bottom: .35rem;
}
.meth-version-tag {
  font-family: var(--mono); font-size: .8rem; font-weight: 600;
  color: var(--green-deep); background: var(--gdim);
  padding: .15rem .5rem; border-radius: 4px;
  border: 1px solid rgba(31,154,77,0.30);
}
.meth-version-date { font-family: var(--mono); font-size: .72rem; color: var(--t3); }
.meth-version-body { font-family: var(--sans); color: var(--t2); margin: 0; line-height: 1.55; font-size: .92rem; }

.meth-sources { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.meth-sources-title { margin: .35rem 0 1rem; font-size: 1.4rem; color: var(--t1); }
.meth-sources-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem;
}
@media (max-width: 720px) { .meth-sources-list { grid-template-columns: 1fr; } }
.meth-sources-list li {
  padding: .65rem .85rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 8px;
}
.meth-sources-list a {
  font-family: var(--sans); color: var(--green-deep); font-size: .9rem;
}

.meth-cta { margin-top: 3rem; }

/* ── NUMBERS PAGE ── */
.numbers h1.D { margin-top: .35rem; max-width: 820px; }
.numbers .lede { max-width: 780px; }
.num-head { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.num-asof {
  font-family: var(--mono); font-size: .7rem; color: var(--t3);
  padding: .2rem .55rem; border: 1px dashed var(--border); border-radius: 999px;
  letter-spacing: .04em; text-transform: uppercase;
}
.num-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) { .num-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .num-grid { grid-template-columns: 1fr; } }
.num-cell {
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-card);
  display: flex; flex-direction: column; gap: .35rem;
  box-shadow: var(--shadow-sm);
}
.num-v {
  font-family: var(--mono); font-size: 2.2rem; color: var(--t1);
  letter-spacing: -0.02em; line-height: 1;
}
.num-k { font-family: var(--sans); font-weight: 600; font-size: .95rem; color: var(--t1); }
.num-s { font-family: var(--sans); font-size: .82rem; color: var(--t2); line-height: 1.5; }

.num-api, .num-not, .num-cta { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.num-api-title, .num-not-title, .num-cta-title { font-size: 1.4rem; color: var(--t1); margin: .35rem 0 .65rem; }
.num-api-body, .num-cta-body { font-family: var(--sans); color: var(--t2); line-height: 1.6; max-width: 780px; }
.num-not-list {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.num-not-list li {
  font-family: var(--sans); color: var(--t1); line-height: 1.55; font-size: .92rem;
  padding-left: 1.1rem; position: relative;
}
.num-not-list li::before {
  content: '×'; color: var(--t3);
  position: absolute; left: .25rem; top: 0;
}
.num-cta { background: var(--bg2); padding: 2.5rem; border-radius: var(--r-card); border-top: 0; }
.num-cta .btn-solid { margin-top: 1rem; }

/* Footer investor cluster */
.foot-investors { /* matches .foot-links default; cluster name kept for clarity */ }

/* ──────────────────────────────────────────────────────────
 *  P1 sweep — added 2026-05
 *  trust strip, climate/soil/water tile band, /numbers two-column,
 *  /funders, /launch, case studies, contact form, /pilot, /book-call,
 *  roadmap lane heads.
 * ────────────────────────────────────────────────────────── */

/* Climate / soil / water — asymmetric: 1 wide lead + 2 narrow */
.tile-band-section { padding: 5rem 1.5rem; }
.tile-band {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.tile-card {
  padding: 2rem 1.75rem 2rem 0;
  display: flex; flex-direction: column; gap: .75rem;
  border-bottom: 1px solid var(--border);
}
.tile-card + .tile-card { padding-left: 1.75rem; border-left: 1px solid var(--border); }
.tile-card-lead { padding-left: 0; }
.tile-card-lead .tile-title { font-size: 1.45rem; }
.tile-title {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.2rem; line-height: 1.2; color: var(--t1);
  letter-spacing: -0.02em;
  margin: .25rem 0;
}
.tile-body {
  font-family: var(--sans); color: var(--t2);
  line-height: 1.6; font-size: 1rem; flex-grow: 1;
  max-width: 42ch;
}
.tile-pill-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.tile-pill {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .02em;
  padding: .25rem .55rem; border: 1px solid var(--border); border-radius: var(--r-pill);
  color: var(--t2); text-decoration: none; background: var(--bg);
  transition: color .2s, border-color .2s;
}
.tile-pill:hover { color: var(--green-deep); border-color: var(--green); }
@media (max-width: 900px) {
  .tile-band { grid-template-columns: 1fr; }
  .tile-card + .tile-card { padding-left: 0; border-left: none; }
}

/* /numbers — single after-harvest list */
.num-future {
  margin-top: 3rem; padding: 2rem 2rem 2.25rem;
  background: var(--bg2); border-radius: var(--r-card);
  border: 1px dashed var(--border);
}
.num-future-head { margin-bottom: 1.5rem; }
.num-col-sub { font-family: var(--sans); color: var(--t2); font-size: .95rem; margin-top: .5rem; line-height: 1.55; }
.num-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.num-list-row { display: grid; grid-template-columns: 1fr; gap: .25rem; }
.num-list-row-future { padding-left: 1.1rem; border-left: 2px solid var(--border); }
.num-list-body { display: flex; flex-direction: column; gap: .35rem; }
.num-list-k { font-family: var(--sans); font-weight: 600; font-size: 1.02rem; color: var(--t1); line-height: 1.35; }
.num-list-s { font-family: var(--sans); font-size: .9rem; color: var(--t2); line-height: 1.55; }

/* Roadmap lanes (P1.4) */
.proad-lane { margin-top: 2.5rem; }
.proad-lane:first-of-type { margin-top: 1.5rem; }
.proad-lane-head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.proad-lane-title { font-size: 1.15rem; color: var(--t1); margin: 0; }
.proad-lane-sub { font-family: var(--sans); font-size: .9rem; color: var(--t2); }
.proad-lane[data-lane="live"] .proad-lane-title { color: var(--green-deep); }
.proad-lane[data-lane="next"] .proad-lane-title { color: var(--lime); }
.proad-lane[data-lane="backlog"] .proad-lane-title { color: var(--t3); }

/* /funders page */
.funders-hero { padding: 4rem 1.5rem 2rem; }
.funders-why, .funders-what, .funders-stack, .funders-programmes { padding: 4rem 1.5rem; }
.funders-cta { padding: 4rem 1.5rem; background: var(--bg2); }
.funders-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .funders-2col { grid-template-columns: 1fr; } }
.funders-lines { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: .5rem; }
.funders-lines li {
  font-family: var(--serif); font-size: 1.15rem; color: var(--t1); line-height: 1.4;
  padding-left: 1.25rem; position: relative;
}
.funders-lines li::before { content: '→'; color: var(--green); position: absolute; left: 0; top: 0; }
.funders-boundary {
  font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; color: var(--t1);
  padding: 1.5rem 1.5rem 1.5rem 2rem; border-left: 3px solid var(--green);
  background: var(--bg3); border-radius: 0 var(--r-card) var(--r-card) 0;
  margin-top: 1rem;
}
.regime-list { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-direction: column; gap: 1rem; }
.regime-row {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem;
  padding: 1.25rem; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-card);
  scroll-margin-top: 100px;
}
.regime-icon {
  width: 3rem; height: 3rem; display: inline-flex; align-items: center; justify-content: center;
  background: var(--gdim); border-radius: 12px; color: var(--green);
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 40;
}
.regime-body { display: flex; flex-direction: column; gap: .5rem; min-width: 0; }
.regime-head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.regime-name { font-family: var(--serif); font-size: 1.1rem; color: var(--t1); }
.regime-deadline { font-family: var(--mono); font-size: .8rem; color: var(--green-deep); letter-spacing: .02em; }
.regime-text { font-family: var(--sans); color: var(--t2); line-height: 1.55; font-size: .95rem; }

.funders-subhead {
  font-family: var(--sans); font-weight: 600; font-size: .9rem;
  color: var(--green-deep); letter-spacing: .04em; text-transform: uppercase;
  margin: 2rem 0 .5rem;
}
.funders-table-build tbody th { color: var(--t2); }
.funders-table-build tbody td { color: var(--t3); }

/* funder tables — also reused by case-study numbers table */
.funders-table {
  width: 100%; border-collapse: collapse; margin-top: 1.5rem;
  font-family: var(--sans); font-size: .92rem;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden;
}
.funders-table th, .funders-table td {
  padding: .9rem 1.1rem; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.funders-table tbody tr:last-child th,
.funders-table tbody tr:last-child td { border-bottom: 0; }
.funders-table thead th {
  background: var(--bg2); font-weight: 600; color: var(--t1);
  font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
}
.funders-table tbody th { font-weight: 600; color: var(--t1); width: 28%; }
.funders-table tbody td { color: var(--t2); line-height: 1.55; }
.funders-pill {
  font-family: var(--mono); font-size: .76rem; letter-spacing: .02em;
  padding: .2rem .5rem; border: 1px solid var(--border); border-radius: var(--r-pill);
  color: var(--green-deep); background: var(--gdim); white-space: nowrap;
}
.funders-pill.conf-high { background: var(--gdim); color: var(--green-deep); border-color: rgba(31,154,77,0.35); }
.funders-pill.conf-medium { background: var(--ldim); color: var(--lime); border-color: rgba(95,168,46,0.35); }
.funders-pill.conf-low { background: var(--adim); color: var(--amber); border-color: rgba(184,106,47,0.35); }
@media (max-width: 720px) {
  .funders-table { display: block; overflow-x: auto; }
  .funders-table thead { display: none; }
  .funders-table tr { display: block; padding: .75rem 0; border-bottom: 1px solid var(--border); }
  .funders-table th, .funders-table td { display: block; border-bottom: 0; padding: .25rem 1rem; }
  .funders-table tbody th { width: auto; padding-top: .75rem; font-size: 1rem; }
}

/* /launch page timeline */
.launch-hero { padding: 4rem 1.5rem; }
.launch-timeline { list-style: none; padding: 0; margin: 2.5rem 0 0; display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--border); }
.launch-row { display: grid; grid-template-columns: 8rem 1fr; gap: 1.5rem; padding: 1.25rem 0 1.25rem 1.5rem; position: relative; }
.launch-row::before {
  content: ''; position: absolute; left: -7px; top: 1.5rem;
  width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 2px solid var(--bg);
}
.launch-row:first-child::before { background: var(--green-deep); box-shadow: 0 0 0 4px var(--gdim); }
.launch-date { color: var(--green-deep); font-weight: 600; padding-top: .15rem; }
.launch-title { font-family: var(--serif); font-size: 1.1rem; color: var(--t1); }
.launch-text { font-family: var(--sans); color: var(--t2); line-height: 1.55; margin-top: .35rem; }
.launch-cta { margin-top: 3rem; padding: 2.5rem; background: var(--bg2); border-radius: var(--r-card); }
.launch-cta h2 { font-size: 1.6rem; margin-bottom: 1rem; }
@media (max-width: 600px) {
  .launch-row { grid-template-columns: 1fr; gap: .25rem; }
  .launch-date { font-size: .85rem; }
}

/* Case studies */
.case-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 900px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
.case-card { display: grid; grid-template-columns: 4fr 6fr; gap: 0; overflow: hidden; padding: 0; }
@media (max-width: 720px) { .case-card { grid-template-columns: 1fr; } }
.case-card-photo { display: block; aspect-ratio: 4/3; background: var(--bg2); position: relative; overflow: hidden; }
.case-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-card-photo-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: .5rem; color: var(--t3);
  background: repeating-linear-gradient(135deg, var(--bg2), var(--bg2) 12px, var(--bg) 12px, var(--bg) 24px);
}
.case-card-photo-placeholder .material-symbols-outlined { font-size: 2rem; }
.case-card-photo-label { font-family: var(--mono); font-size: .75rem; letter-spacing: .02em; text-transform: uppercase; }
.case-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .65rem; }
.case-card-title { font-size: 1.15rem; margin: .25rem 0; color: var(--t1); }
.case-card-pills { list-style: none; padding: 0; margin: .5rem 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.case-card-pill {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  padding: .5rem .75rem; border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg);
}
.case-card-pill[data-confidence="high"] { border-color: rgba(31,154,77,0.35); }
.case-card-pill[data-confidence="medium"] { border-color: rgba(95,168,46,0.35); }
.case-card-pill[data-confidence="low"] { border-color: rgba(184,106,47,0.35); }
.case-card-pill-v { font-family: var(--serif); font-size: 1.15rem; color: var(--green-deep); }
.case-card-pill-k { font-family: var(--sans); font-size: .76rem; color: var(--t2); }
.case-card-pill-conf { font-family: var(--mono); font-size: .68rem; color: var(--t3); letter-spacing: .04em; text-transform: uppercase; margin-top: .15rem; }
.case-card-summary { font-family: var(--sans); color: var(--t2); line-height: 1.55; font-size: .95rem; }
.case-card-quote {
  font-family: var(--serif); font-size: 1.05rem; color: var(--t1);
  padding: .75rem 1rem; border-left: 3px solid var(--green); background: var(--bg2); border-radius: 0 8px 8px 0;
  margin: .5rem 0;
}
.case-card-attr { font-family: var(--sans); font-size: .82rem; color: var(--t2); display: block; margin-top: .25rem; font-style: normal; }
.case-card-link { margin-top: auto; align-self: flex-start; }
.case-card-placeholder { grid-column: 1 / -1; }

.case-hero { padding: 4rem 1.5rem 2rem; }
.case-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 900px) { .case-hero-grid { grid-template-columns: 1fr; } }
.case-hero-photo { aspect-ratio: 4/3; background: var(--bg2); border-radius: var(--r-card); overflow: hidden; }
.case-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.case-hero-pills { margin-top: 1.5rem; }
.case-section { padding: 3rem 1.5rem; }
.case-body { font-family: var(--sans); color: var(--t1); line-height: 1.65; max-width: 760px; font-size: 1.05rem; }
.case-not-claimed { background: var(--bg2); }
.case-reviewer { background: var(--bg2); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 520px; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label {
  font-family: var(--sans); font-size: .85rem; font-weight: 600; color: var(--t1);
}
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--sans); font-size: .98rem; color: var(--t1);
  padding: .7rem .85rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-row textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px var(--gglow);
}
.form-meta { color: var(--t2); }
.form-privacy { font-family: var(--sans); font-size: .82rem; color: var(--t2); line-height: 1.5; }
.form-privacy a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 2px; }
.form-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-top: .25rem; }
.form-actions .btn-solid { border: 0; cursor: pointer; }
.form-fallback { font-size: .9rem; }
.hp-wrap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-success {
  padding: 2rem; background: var(--gdim); border: 1px solid rgba(31,154,77,0.35); border-radius: var(--r-card);
  max-width: 520px;
}
.form-success h3 { font-size: 1.4rem; color: var(--green-deep); margin: .35rem 0; }
.form-success p { font-family: var(--sans); color: var(--t1); line-height: 1.55; }

/* /contact, /pilot — text + form two-column */
.contact-hero, .pilot-hero { padding: 4rem 1.5rem; }
.contact-grid, .pilot-grid {
  display: grid; grid-template-columns: 5fr 6fr; gap: 3rem; align-items: start;
}
@media (max-width: 900px) {
  .contact-grid, .pilot-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-bullets, .pilot-bullets {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-direction: column; gap: .65rem;
}
.contact-bullets li, .pilot-bullets li {
  font-family: var(--sans); color: var(--t1); line-height: 1.55; font-size: .98rem;
  padding-left: 1.25rem; position: relative;
}
.contact-bullets li::before, .pilot-bullets li::before {
  content: '✓'; color: var(--green); position: absolute; left: 0; top: 0; font-weight: 700;
}
.contact-form-wrap, .pilot-form-wrap {
  padding: 1.5rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-card);
}

/* /book-call — three meeting type cards */
.bookcall-hero { padding: 4rem 1.5rem; }
.bookcall-grid {
  list-style: none; padding: 0; margin: 2.5rem 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 900px) { .bookcall-grid { grid-template-columns: 1fr; } }
.bookcall-card { padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.bookcall-title { font-size: 1.15rem; color: var(--t1); margin: .25rem 0; }
.bookcall-body { font-family: var(--sans); color: var(--t2); line-height: 1.55; font-size: .95rem; flex-grow: 1; }
.bookcall-card .btn-solid { align-self: flex-start; margin-top: auto; }
.bookcall-fallback {
  font-family: var(--sans); color: var(--t2); line-height: 1.55; font-size: .9rem;
  margin-top: 2rem; padding: 1.25rem; background: var(--bg2); border-radius: var(--r-card);
  max-width: 720px;
}
.bookcall-fallback a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ── FARM BAND (full-bleed photo strip on home) ── */
.farm-band {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin: 4rem 0;
}
.farm-band-img {
  position: absolute; inset: 0;
  background-image: url('/images/farm/sensor-maize-context.jpg');
  background-size: cover;
  background-position: center 60%;
}
.farm-band-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,39,27,0.55) 0%, rgba(20,39,27,0.35) 50%, rgba(20,39,27,0.65) 100%);
}
.farm-band-in {
  position: relative; z-index: 1;
  padding: 3.5rem 1.5rem;
  text-align: center; max-width: 720px;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.farm-band-eyebrow {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .02em;
  color: #d8efd6;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  padding: .35rem .75rem; border-radius: var(--r-pill);
}
.farm-band-h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: #fff; margin: 0;
}
.farm-band-h2 .g { color: #a9e7a0; font-style: italic; }
.farm-band-sub {
  font-family: var(--sans); font-size: 1.05rem; line-height: 1.55;
  color: rgba(255,255,255,0.86); max-width: 48ch; margin: 0;
}
.farm-band .btn-solid {
  margin-top: .5rem;
  background: #fff; color: var(--green-deep); border-color: #fff;
}
.farm-band .btn-solid:hover { background: #e9f5e6; border-color: #e9f5e6; color: var(--green-deep); }
@media (max-width: 720px) {
  .farm-band { min-height: 340px; margin: 2rem 0; }
  .farm-band-in { padding: 2.5rem 1.25rem; }
}

/* ──────────────────────────────────────────────────────────
 *  Hallmark redesign · masthead, statement footer, editorial chrome
 * ────────────────────────────────────────────────────────── */

/* Hide legacy nav + footer rules — partials don't render them. Keep CSS as
 * tombstones in case rollback is needed. */
.nav, .topbanner, .footer:not(.foot-in *) { /* tombstone hooks; new chrome below */ }

/* ── N6 Newspaper masthead ── */
.masthead {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
  z-index: 100;
}
.masthead-wrap {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav app";
  align-items: center;
  column-gap: 2.5rem;
}
.masthead-brand { grid-area: brand; display: inline-flex; align-items: center; text-decoration: none; }
.masthead-logo { height: 24px; width: auto; display: block; }
.masthead-app {
  grid-area: app;
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  padding: .5rem 1rem;
  background: var(--t1); color: var(--btn-fg);
  border-radius: var(--r-pill);
  text-decoration: none; white-space: nowrap;
  transition: background-color var(--dur-short) var(--ease-out);
}
.masthead-app:hover { background: var(--green-deep); }
.masthead-nav {
  grid-area: nav;
  display: flex; align-items: center; justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.4rem;
}
@media (max-width: 1100px) { .masthead-nav { gap: 1.05rem; } .masthead-wrap { column-gap: 1.5rem; } }
.masthead-link {
  font-family: var(--sans); font-size: .92rem; font-weight: 500;
  color: var(--t2); text-decoration: none;
  letter-spacing: -0.005em;
  transition: color var(--dur-short) var(--ease-out);
  white-space: nowrap;
}
.masthead-link:hover { color: var(--t1); }
.masthead-link[aria-current="page"] {
  color: var(--green-deep);
  position: relative;
}
.masthead-link[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -.35rem;
  height: 2px; background: var(--color-accent);
}
/* .masthead-more removed — nav is fully primary now, no "More" sheet. */
.masthead-mob { display: none; }
@media (max-width: 780px) {
  .masthead { padding: 1rem; }
  .masthead-wrap {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand . mob";
    column-gap: 1rem;
  }
  .masthead-nav { display: none; }
  .masthead-app { display: none; }
  .masthead-mob {
    grid-area: mob;
    display: inline-flex; align-items: center; justify-content: center;
    background: none; border: 1px solid var(--border); border-radius: var(--r-pill);
    width: 38px; height: 38px;
    color: var(--t1); cursor: pointer; padding: 0;
  }
  .masthead-mob .material-symbols-outlined { font-size: 1.3rem; }
  /* Mobile-open state — toggled by main.js if present, else CSS-only via :focus-within. */
  .masthead.is-open .masthead-nav,
  .masthead.is-open .masthead-app {
    display: flex; flex-direction: column;
    grid-area: nav; grid-column: 1 / -1;
    align-items: stretch; gap: 0;
    padding: .25rem 0 0; border: none;
    margin-top: .5rem;
  }
  .masthead.is-open .masthead-link,
  .masthead.is-open .masthead-app {
    padding: .9rem 0;
    border-top: 1px solid var(--border);
    width: 100%;
    border-radius: 0; background: none;
    color: var(--t1); text-align: left;
    font-size: 1rem;
  }
  .masthead.is-open .masthead-app {
    border-radius: var(--r-pill);
    background: var(--t1); color: var(--btn-fg);
    margin-top: .8rem;
    padding: .8rem 1rem;
    text-align: center;
  }
}

/* main.js needs to add/remove .is-open on the .masthead element when the mob
 * button is clicked. The old toggleNav() helper still wires the click. */

/* Push main content below the masthead — replaces the old fixed-nav offset. */
main { padding-top: 0; }
.page-intro { padding-top: 2rem; }

/* ── btn-text (secondary CTA, hairline-underlined) ── */
.btn-text {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--sans); font-size: .95rem; font-weight: 500;
  color: var(--t1); text-decoration: none;
  border-bottom: 1px solid var(--color-rule-strong);
  padding: .2rem 0;
  transition: color var(--dur-short) var(--ease-out),
              border-color var(--dur-short) var(--ease-out);
  line-height: 1.2; white-space: nowrap;
}
.btn-text:hover { color: var(--green-deep); border-bottom-color: var(--color-accent); }

/* ── Combined footer: closing pitch (top band) + wayfinding/legal (bottom band) ── */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 5rem 1.5rem 2.5rem;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.footer::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/images/farm/wheat-panorama.jpg');
  background-size: cover;
  background-position: center 62%;
  opacity: 0.10;
  pointer-events: none;
}
.footer::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, var(--bg2) 0%, transparent 22%, transparent 78%, var(--bg2) 100%);
  pointer-events: none;
}
.footer-in {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column;
}

/* TOP BAND — pitch (left) + contacts (right) */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 4rem;
}
.footer-pitch { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; max-width: 36ch; }
.footer-wordmark { display: inline-flex; align-items: center; text-decoration: none; margin: 0 0 .25rem; }
.footer-logo { height: 28px; width: auto; display: block; }
.footer-statement {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--t1);
  margin: 0;
}
.footer-statement-accent { color: var(--green-deep); }
.footer-sub {
  font-family: var(--sans); font-size: 1rem; color: var(--t2);
  line-height: 1.6;
  margin: .25rem 0 0;
  max-width: 48ch;
}
.footer-actions {
  display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center;
  margin-top: .5rem;
}
.footer-tertiary {
  font-family: var(--mono); font-size: .78rem;
  color: var(--t2); text-decoration: none;
  letter-spacing: .02em;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-short) var(--ease-out), border-color var(--dur-short) var(--ease-out);
  padding-bottom: 1px;
}
.footer-tertiary:hover { color: var(--green-deep); border-bottom-color: var(--color-accent); }

.footer-contacts {
  list-style: none; padding: 0; margin: .5rem 0 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.footer-contact {
  font-family: var(--sans); font-size: .95rem; color: var(--t2);
  display: flex; gap: .65rem; align-items: center;
  line-height: 1.4;
}
.footer-contact-icon.material-symbols-outlined {
  font-size: 1.15rem; color: var(--green-deep);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  flex-shrink: 0;
}
.footer-contact a {
  color: var(--t1); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-short) var(--ease-out), color var(--dur-short) var(--ease-out);
}
.footer-contact a:hover { color: var(--green-deep); border-bottom-color: var(--color-accent); }

/* BOTTOM BAND — link strip + mast */
.footer-strip {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  padding: 1.5rem 0 1.2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.footer-strip a {
  font-family: var(--sans); font-size: .92rem;
  color: var(--t2); text-decoration: none;
  transition: color var(--dur-short) var(--ease-out);
}
.footer-strip a:hover { color: var(--green-deep); }
.footer-strip-sep { color: var(--t3); }
.footer-mast {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  font-family: var(--mono); font-size: .68rem;
  color: var(--t3); letter-spacing: .04em;
  margin: 1.25rem 0 0;
  justify-content: space-between;
}
.footer-mast a { color: var(--green-deep); text-decoration: none; }
.footer-mast a:hover { text-decoration: underline; }

@media (max-width: 780px) {
  .footer { padding: 3.5rem 1.25rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
  .footer-pitch { max-width: none; }
  .footer-mast { flex-direction: column; gap: .5rem; }
}

/* Farm-band copy tweak (no border on the inline button override). */
.farm-band-btn { background: var(--bg3); color: var(--green-deep); border-color: var(--bg3); }
.farm-band-btn:hover { background: var(--bg); border-color: var(--bg); color: var(--green-deep); }
.farm-band-accent { color: oklch(88% 0.13 145); font-style: italic; }
.farm-band-h2 .g { color: oklch(88% 0.13 145); font-style: italic; }

/* Section padding — vary band to band per Hallmark "every section padded the same" anti-pattern. */
.cheap { padding-block: 4.5rem; }
.tile-band-section { padding-block: 5.5rem; }
.install-steps { padding-block: 5rem; }
.platform-roadmap { padding-block: 6rem; }

/* ── Methodology · case-studies inline section ── */
.meth-cases {
  margin: 4rem 0 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.meth-cases-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-style: italic; font-weight: 500;
  color: var(--t1); letter-spacing: -0.02em;
  margin: 0 0 .75rem;
}
.meth-cases-sub {
  font-family: var(--sans); font-size: 1rem; color: var(--t2);
  line-height: 1.6; max-width: 56ch;
  margin: 0 0 2rem;
}
.meth-cases-placeholder {
  padding: 2rem 0 0;
  border-top: 1px dashed var(--color-rule-strong);
  max-width: 56ch;
}
.meth-cases-placeholder h3 {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.3rem; color: var(--t1); letter-spacing: -0.015em;
  margin: 0 0 .5rem;
}
.meth-cases-placeholder p {
  font-family: var(--sans); font-size: .98rem; color: var(--t2);
  line-height: 1.6; margin: 0;
}

