/* ============================================================
   AGROPERFECT — Homepage design system
   Spectral (display) · Hanken Grotesk (UI) · DM Mono (labels)
   ============================================================ */

:root {
  /* Surfaces — neutral white */
  --paper:        #FFFFFF;
  --paper-2:      #FAFAFA;
  --paper-deep:   #F1F1F1;
  --card:         #FFFFFF;
  --cream:        #FBF7C4;

  /* Ink — blue-toned dark */
  --ink:          #16263D;
  --ink-soft:     #46566B;
  --ink-faint:    #7C8898;

  /* Brand — blue primary (logo pill), green accent (logo gem) */
  --forest:       #2B5D99;  /* primary blue */
  --forest-deep:  #234C7E;  /* deep blue */
  --forest-night: #16314F;  /* darkest blue */
  --sage:         #74BF44;  /* grass green */
  --green:        #2C8C43;  /* emerald (trust band) */
  --gold:         #B9D432;  /* lime accent */
  --gold-soft:    #CDE05A;  /* light lime (on dark) */

  /* Lines */
  --line:         rgba(22, 38, 61, 0.13);
  --line-soft:    rgba(22, 38, 61, 0.08);
  --line-strong:  rgba(22, 38, 61, 0.24);
  --line-dark:    rgba(255, 255, 255, 0.16);

  /* Type */
  --font-display: 'Spectral', Georgia, 'Times New Roman', serif;
  --font-sans:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'SFMono-Regular', monospace;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--gold); color: #fff; }

/* ----------------------------------------------------------
   Typographic primitives
   ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

.display {
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.h-sec {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 400;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  text-wrap: pretty;
}

/* Eyebrow / kicker */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before { background: var(--gold); }

.mono { font-family: var(--font-mono); }

/* ----------------------------------------------------------
   Layout helpers
   ---------------------------------------------------------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.band-dark   { background: var(--forest-deep); color: #EDEFE6; }
.band-paper  { background: var(--paper); }
.band-tint   { background: var(--paper-deep); }

.pad-y { padding-block: clamp(72px, 9vw, 132px); }
.pad-y-sm { padding-block: clamp(54px, 6vw, 88px); }

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
  --b: var(--forest);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.92em 1.5em;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  cursor: pointer;
  border: 1px solid var(--b);
  background: var(--b);
  color: #fff;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -12px rgba(18,44,28,.6); }

.btn--gold { --b: var(--gold); background: var(--gold); border-color: var(--gold); color: #16263D; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn--on-dark { background: var(--paper); color: var(--forest-deep); border-color: var(--paper); }
.btn--on-dark:hover { background: var(--gold); border-color: var(--gold); color: #16263D; }
.btn--ghost-dark { background: transparent; color: #EDEFE6; border-color: var(--line-dark); }
.btn--ghost-dark:hover { background: var(--forest); border-color: var(--forest); transform: translateY(-2px); }

/* Text link with arrow */
.tlink {
  font-weight: 600;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--forest);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-strong);
  transition: gap .25s, border-color .25s, color .25s;
}
.tlink svg { width: 16px; height: 16px; transition: transform .25s; }
.tlink:hover { gap: 0.85em; border-color: var(--gold); color: var(--ink); }
.tlink:hover svg { transform: translateX(3px); }
.tlink.on-dark { color: var(--gold-soft); border-color: var(--line-dark); }
.tlink.on-dark:hover { color: #fff; border-color: var(--gold); }

/* ----------------------------------------------------------
   Image placeholder
   ---------------------------------------------------------- */
.ph {
  position: relative;
  background-color: #DFE0D2;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(30,74,46,.10) 0 1px, transparent 1px 13px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(247,245,238,.86);
  padding: 5px 9px;
  margin: 12px;
  border: 1px solid var(--line);
}
.ph--dark {
  background-color: #16341F;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.06) 0 1px, transparent 1px 13px);
}
.ph--dark::after { color: var(--gold-soft); background: rgba(13,33,20,.7); border-color: rgba(255,255,255,.14); }

/* Real photo fill */
.img { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-head__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding .35s;
}
.site-head.scrolled {
  background: rgba(246,244,230,.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.site-head.scrolled .site-head__inner { padding-block: 12px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.logo__img { height: 58px; width: auto; display: block; transition: height .35s; }
.site-head.scrolled .logo__img { height: 46px; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold);
  color: var(--forest-deep);
  display: grid; place-items: center;
  flex: none;
}
.logo__mark svg { width: 19px; height: 19px; }
.logo__word { font-family: var(--font-display); font-size: 1.42rem; font-weight: 500; letter-spacing: -0.01em; }
.site-head.scrolled .logo { color: var(--ink); }
.site-head.scrolled .logo__mark { background: var(--forest); color: var(--paper); }

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255,255,255,.86);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.1); }
.site-head.scrolled .nav a { color: var(--ink-soft); }
.site-head.scrolled .nav a:hover { color: var(--ink); background: rgba(26,28,21,.05); }

.head-actions { display: flex; align-items: center; gap: 14px; }
.head-actions .btn { padding: 0.62em 1.15em; font-size: 0.88rem; }
.site-head:not(.scrolled) .head-actions .btn {
  background: transparent; border-color: rgba(255,255,255,.35); color: #fff;
}
.site-head:not(.scrolled) .head-actions .btn:hover { background: var(--forest); border-color: var(--forest); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: inherit; }
.burger svg { width: 26px; height: 26px; }
.site-head:not(.scrolled) .burger { color: #fff; }
.site-head.scrolled .burger { color: var(--ink); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80;
  background: var(--forest-deep); color: #EDEFE6;
  display: flex; flex-direction: column;
  padding: 26px var(--gutter);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu__close { background: none; border: 0; color: #fff; cursor: pointer; padding: 6px; }
.mobile-menu__close svg { width: 30px; height: 30px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 12vh; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu .btn { margin-top: 32px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--forest-night);
}
.hero__bg {
  position: absolute; inset: 0;
  background-color: #16314F;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__scrim {
  position: absolute; inset: 0;
  opacity: var(--hero-scrim, 0.82);
  background:
    linear-gradient(180deg, rgba(16,40,68,.55) 0%, rgba(16,40,68,.15) 34%, rgba(16,40,68,.84) 100%),
    linear-gradient(90deg, rgba(16,40,68,.86) 0%, rgba(16,40,68,.1) 72%);
}
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  width: 100%;
  padding: 0 var(--gutter) clamp(64px, 8vw, 120px);
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex; align-items: center; gap: .7em;
  margin-bottom: 1.6rem;
}
.hero__eyebrow::before { content:""; width: 28px; height:1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.028em;
  max-width: 16ch;
  color: #fff;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub {
  margin-top: 1.7rem;
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 1.55;
  color: rgba(237,239,230,.9);
  max-width: 56ch;
  text-wrap: pretty;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.4rem; }

/* Centered hero variant (tweakable) */
.hero--center .hero__inner { text-align: center; }
.hero--center .hero__eyebrow { justify-content: center; }
.hero--center .hero h1, .hero--center h1 { margin-inline: auto; }
.hero--center .hero__sub { margin-inline: auto; }
.hero--center .hero__cta { justify-content: center; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  position: relative;
  margin-top: -1px;
  background: var(--green);
  color: #FBF7C4;
}
.trust__grid {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust__cell {
  padding: clamp(28px, 3.4vw, 44px) var(--gutter);
  border-left: 1px solid var(--line-dark);
}
.trust__cell:first-child { border-left: 0; }
.trust__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
.trust__num .u { color: var(--gold-soft); }
.trust__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(237,239,230,.66);
  margin-top: .9rem;
  line-height: 1.4;
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.sec-head { max-width: 760px; }
.sec-head .h-sec { margin-bottom: 1.1rem; }
.sec-head .lead { max-width: 60ch; }
.sec-head--split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  max-width: none;
}
.sec-head--split .lead { margin: 0; }

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.about__media { aspect-ratio: 4/5; border-radius: var(--radius); }
.about__body p { font-size: 1.18rem; line-height: 1.62; color: var(--ink-soft); max-width: 50ch; }
.about__body .tlink { margin-top: 1.8rem; }

/* ============================================================
   PRODUCT CATEGORY CARDS
   ============================================================ */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pcard {
  background: var(--card);
  padding: clamp(26px, 2.4vw, 38px);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: background .3s;
  position: relative;
}
.pcard:hover { background: var(--paper-2); }
.pcard__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .5;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 52%, rgba(0,0,0,.92) 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 52%, rgba(0,0,0,.92) 100%);
  transition: opacity .35s, transform .5s;
  pointer-events: none;
}
.pcard:hover .pcard__bg { opacity: .6; transform: scale(1.04); }
.pcard::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, color-mix(in srgb, var(--card) 88%, transparent) 55%, var(--card) 100%);
  z-index: 0; pointer-events: none;
}
.pcard__top, .pcard h3, .pcard p, .pcard__foot { position: relative; z-index: 1; }
.pcard__top { display: flex; align-items: center; justify-content: space-between; }
.pcard__idx { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-faint); letter-spacing: .08em; }
.pcard__icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper-deep);
  color: var(--forest);
  transition: background .3s, color .3s;
}
.pcard:hover .pcard__icon { background: var(--forest); color: var(--paper); }
.pcard__icon svg { width: 23px; height: 23px; }
.pcard h3 { font-size: 1.5rem; margin: 1.7rem 0 0.7rem; font-weight: 500; }
.pcard p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.pcard__foot {
  margin-top: auto;
  padding-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pcard__stat { font-family: var(--font-mono); font-size: 0.82rem; color: var(--forest); font-weight: 500; }
.pcard__arrow {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform .3s, background .3s, color .3s, border-color .3s;
}
.pcard__arrow svg { width: 16px; height: 16px; }
.pcard:hover .pcard__arrow { background: var(--gold); border-color: var(--gold); color: #16263D; transform: translateX(3px); }

/* ============================================================
   PROGRAMS
   ============================================================ */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.crop {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 92px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.crop:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -18px rgba(18,44,28,.5); border-color: var(--line-strong); }
.crop__name { font-family: var(--font-display); font-size: 1.16rem; font-weight: 500; line-height: 1.15; }
.crop__idx { font-family: var(--font-mono); font-size: 0.66rem; color: var(--ink-faint); display: block; margin-bottom: 4px; letter-spacing: .08em; }
.crop__arrow { color: var(--ink-faint); flex: none; transition: transform .25s, color .25s; }
.crop__arrow svg { width: 17px; height: 17px; }
.crop:hover .crop__arrow { color: var(--gold); transform: translateX(2px); }
.crop--soon { background: transparent; border-style: dashed; }
.crop--soon:hover { transform: none; box-shadow: none; border-color: var(--line); }
.crop--soon .crop__name { color: var(--ink-faint); }
.crop__tag {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint); border: 1px solid var(--line); padding: 3px 7px; border-radius: 100px; flex: none;
}

/* ============================================================
   FEATURE BANNERS (seed treatment + veg catalog)
   ============================================================ */
.features-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feat {
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}
.feat--dark { background: var(--forest-deep); color: #EDEFE6; border-color: transparent; }
.feat--paper { background: var(--card); }
.feat__media { height: 220px; }
.feat__body { padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; flex: 1; }
.feat__body h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 500; margin-bottom: 1rem; }
.feat--dark h3 { color: #fff; }
.feat__body p { color: var(--ink-soft); margin: 0 0 1.6rem; line-height: 1.55; }
.feat--dark .feat__body p { color: rgba(237,239,230,.82); }
.feat__body .tlink, .feat__body .btn { margin-top: auto; align-self: flex-start; }

/* 5-phase chips */
.phases { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 1.8rem; }
.phase {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: .04em;
  white-space: nowrap;
  padding: 7px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  color: #EDEFE6;
  display: inline-flex; align-items: center; gap: 7px;
}
.phase span { color: var(--gold-soft); }

/* veg tags */
.vtags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 1.8rem; }
.vtag {
  font-size: 0.8rem; font-weight: 500;
  padding: 6px 13px; border-radius: 100px;
  background: var(--paper-deep); color: var(--ink-soft);
}

/* ============================================================
   DIFFERENTIATORS (dark)
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
  margin-top: clamp(40px, 5vw, 68px);
}
.diff {
  display: flex;
  flex-direction: column;
}
.diff__num {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: .14em;
  color: var(--gold-soft);
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}
.diff__icon { color: var(--gold-soft); margin-bottom: 18px; }
.diff__icon svg { width: 30px; height: 30px; }
.diff h3 { font-size: 1.32rem; font-weight: 500; color: #fff; margin-bottom: 0.7rem; line-height: 1.2; }
.diff p { font-size: 0.96rem; color: rgba(237,239,230,.72); line-height: 1.55; margin: 0; }

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.cta {
  position: relative;
  text-align: center;
  background-color: var(--forest-night);
  background-image:
    url('https://images.pexels.com/photos/2165688/pexels-photo-2165688.jpeg?auto=compress&cs=tinysrgb&w=1900');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,40,68,0.66) 0%, rgba(13,28,44,0.82) 100%);
  pointer-events: none;
}
.cta__inner { position: relative; max-width: 800px; margin-inline: auto; text-align: center; }
.cta .eyebrow { justify-content: center; color: var(--gold-soft); }
.cta h2 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 400; letter-spacing: -0.025em; color: #EDEFE6; }
.cta p { font-size: 1.2rem; color: rgba(237,239,230,0.78); max-width: 50ch; margin: 1.4rem auto 0; line-height: 1.55; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 2.4rem; }
.cta .btn--ghost { color: #EDEFE6; border-color: var(--line-dark); background: transparent; }
.cta .btn--ghost:hover { background: var(--forest); border-color: var(--forest); color: #fff; transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--forest-night); color: rgba(237,239,230,.7); }
.foot__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  padding-block: clamp(56px, 6vw, 84px);
}
.foot .logo { color: #fff; margin-bottom: 18px; }
.foot__intro { max-width: 34ch; font-size: 0.96rem; line-height: 1.55; }
.foot__col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 500; margin-bottom: 18px; }
.foot__col a { display: block; padding: 6px 0; font-size: 0.95rem; color: rgba(237,239,230,.7); transition: color .2s; }
.foot__col a:hover { color: #fff; }
.foot__bar {
  border-top: 1px solid var(--line-dark);
  padding-block: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: .04em;
  color: rgba(237,239,230,.5);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-d="1"] { transition-delay: .08s; }
  .reveal[data-d="2"] { transition-delay: .16s; }
  .reveal[data-d="3"] { transition-delay: .24s; }
}
body.reveals-off .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .prog-grid { grid-template-columns: repeat(3, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__cell:nth-child(3) { border-left: 0; }
  .trust__cell { border-top: 1px solid var(--line-dark); }
  .trust__cell:nth-child(-n+2) { border-top: 0; }
}

@media (max-width: 860px) {
  .nav, .head-actions .btn { display: none; }
  .burger { display: inline-flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 16/10; }
  .sec-head--split { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .features-2 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards-4 { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__cell { border-left: 0 !important; border-top: 1px solid var(--line-dark); }
  .trust__cell:first-child { border-top: 0; }
  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__col--brand { grid-column: 1 / -1; }
  .hero { min-height: 88vh; }
}
