/* ============================================================
   CROPAITE TECHNOLOGIES — Shared Stylesheet
   Agriculture theme · Cream + Forest Green + Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Lato:wght@300;400;700&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #1A4A2E;
  --green:    #1A6B3C;
  --leaf:     #52B788;
  --leaf-lt:  #A8D5B9;
  --gold:     #C8A84B;
  --gold-dk:  #9E7E2A;
  --gold-lt:  #F0DC9A;
  --cream:    #F8F4EE;
  --cream-dk: #EDE8DF;
  --soil:     #5C3D2E;
  --text:     #1C2E21;
  --muted:    #5A7060;
  --border:   rgba(26,74,46,0.15);
  --shadow:   0 4px 24px rgba(26,74,46,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--forest);
}
p { color: var(--muted); font-weight: 300; }
a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--leaf); }
strong { font-weight: 700; color: var(--text); }

/* ── TOPBAR ANNOUNCEMENT ── */
.topbar {
  background: var(--forest);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  text-align: center;
  padding: 8px 24px;
  letter-spacing: 0.3px;
}
.topbar span { color: var(--gold); font-weight: 700; }

/* ── NAVIGATION ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(248,244,238,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,74,46,0.06);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 900;
  color: var(--forest);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-leaf {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--green), var(--leaf));
  border-radius: 50% 10% 50% 10%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(26,107,60,0.3);
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  color: var(--muted);
  padding: 8px 14px; border-radius: 8px;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--forest); background: var(--cream-dk); }
.nav-links a.active { color: var(--green); background: rgba(82,183,136,0.12); }
.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--forest)) !important;
  color: white !important;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(26,107,60,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26,107,60,0.35) !important; background: var(--forest) !important; color: white !important; }

/* Mobile hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--forest); border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--green) 60%, #2D8A52 100%);
  position: relative; overflow: hidden;
  padding: 100px 32px 80px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,168,75,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(82,183,136,0.15) 0%, transparent 40%);
}
/* SVG wave at bottom */
.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }

.hero-pilot-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,168,75,0.18);
  border: 1px solid rgba(200,168,75,0.4);
  color: #E8C96A; font-size: 0.78rem; font-weight: 700;
  padding: 6px 18px; border-radius: 999px; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 32px;
}
.hero-pilot-badge::before { content: '🌱'; }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #FFFFFF; font-weight: 900;
  margin-bottom: 24px; line-height: 1.1;
}
.hero h1 em {
  font-style: normal; color: #E8C96A;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 580px; margin: 0 auto 48px; font-weight: 300; line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero-secondary-cta {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.95rem; border-radius: 10px;
  padding: 15px 32px; cursor: pointer;
  transition: all 0.25s ease; border: none;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #E2C97E);
  color: var(--forest);
  box-shadow: 0 6px 24px rgba(200,168,75,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200,168,75,0.5);
  color: var(--forest);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--forest));
  color: white;
  box-shadow: 0 6px 24px rgba(26,74,46,0.3);
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(26,74,46,0.4); color: white; }

/* ── SECTION LAYOUT ── */
.section { padding: 96px 32px; }
.section-alt { background: var(--cream-dk); }
.section-dark { background: var(--forest); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--leaf);
  display: block; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.section-desc { font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--leaf-lt); }
.card:hover::after { transform: scaleX(1); }
.card-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--forest); }
.card p { font-size: 0.88rem; line-height: 1.7; }

/* ── PILOT STATUS BANNER ── */
.pilot-banner {
  background: linear-gradient(135deg, rgba(200,168,75,0.1), rgba(82,183,136,0.08));
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 16px; padding: 32px 40px;
  display: flex; align-items: flex-start; gap: 24px;
  margin-bottom: 48px;
}
.pilot-banner-icon { font-size: 2rem; flex-shrink: 0; margin-top: 4px; }
.pilot-banner h3 { font-size: 1.1rem; color: var(--forest); margin-bottom: 8px; }
.pilot-banner p { font-size: 0.88rem; }

/* Feature status tags */
.feature-status { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 999px;
}
.tag-live { background: rgba(82,183,136,0.15); color: var(--green); border: 1px solid rgba(82,183,136,0.3); }
.tag-building { background: rgba(200,168,75,0.12); color: var(--gold-dk); border: 1px solid rgba(200,168,75,0.3); }
.tag-roadmap { background: rgba(92,61,46,0.08); color: var(--soil); border: 1px solid rgba(92,61,46,0.2); }

/* ── STATS ROW ── */
.stats-row {
  display: flex; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: white;
}
.stat-item {
  flex: 1; min-width: 150px;
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900;
  color: var(--green); line-height: 1;
  display: block; margin-bottom: 8px;
}
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 400; }

/* ── STEPS ── */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.step-item {
  padding: 40px 28px; text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.step-item:last-child { border-right: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900;
  color: var(--leaf-lt); line-height: 1;
  margin-bottom: 8px; display: block;
}
.step-icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.step-item h3 { font-size: 1rem; color: var(--forest); margin-bottom: 8px; }
.step-item p { font-size: 0.83rem; }

/* ── CTA SECTION ── */
.cta-box {
  background: linear-gradient(135deg, var(--forest), var(--green));
  border-radius: 24px; padding: 80px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.15), transparent 70%);
  right: -80px; top: -80px; pointer-events: none;
}
.cta-box h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; position: relative; z-index:1; }
.cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 40px; position: relative; z-index:1; }

/* ── LEGAL PAGES ── */
.legal-hero {
  background: linear-gradient(135deg, var(--forest), var(--green));
  padding: 80px 32px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.legal-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 50px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.legal-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal-hero p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.legal-body { max-width: 820px; margin: 0 auto; padding: 64px 32px 96px; }

.legal-toc {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 32px; margin-bottom: 56px;
}
.legal-toc h3 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--leaf); margin-bottom: 16px;
}
.legal-toc ol { padding-left: 20px; }
.legal-toc li { font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; }
.legal-toc a { color: var(--green); font-weight: 400; }
.legal-toc a:hover { color: var(--forest); }

.legal-section {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}
.legal-section h2 {
  font-size: 1.35rem; color: var(--forest);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dk);
}
.legal-section h3 { font-size: 1.05rem; color: var(--green); margin: 24px 0 12px; }
.legal-section p { font-size: 0.93rem; margin-bottom: 16px; line-height: 1.8; }
.legal-section ul, .legal-section ol {
  padding-left: 24px; margin-bottom: 16px;
}
.legal-section li { font-size: 0.9rem; color: var(--muted); margin-bottom: 8px; line-height: 1.7; }

/* Summary table */
.summary-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 32px; font-size: 0.88rem;
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,74,46,0.06);
}
.summary-table th {
  background: var(--forest); color: white;
  padding: 14px 20px; text-align: left;
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.summary-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--muted); }
.summary-table tr:last-child td { border-bottom: none; }
.summary-table tr:nth-child(even) td { background: var(--cream); }

/* Info callout */
.callout {
  background: rgba(82,183,136,0.1);
  border-left: 4px solid var(--leaf);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px; margin: 24px 0;
}
.callout p { font-size: 0.88rem; color: var(--text); margin: 0; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 24px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(82,183,136,0.1); border: 1px solid rgba(82,183,136,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-row-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--leaf); margin-bottom: 4px; }
.contact-row-value { font-size: 0.9rem; color: var(--text); font-weight: 400; }

/* Contact Form */
.contact-form-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
}
.contact-form-card h3 { font-size: 1.1rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--forest); margin-bottom: 8px; letter-spacing: 0.3px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px; background: var(--cream);
  font-family: 'Lato', sans-serif; font-size: 0.9rem; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
  background: white;
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none; background: rgba(82,183,136,0.1);
  border: 1px solid rgba(82,183,136,0.3); border-radius: 10px;
  padding: 16px 20px; text-align: center; margin-top: 16px;
  font-size: 0.9rem; color: var(--green);
}

/* ── FOUNDER BANNER ── */
.section-founder { padding: 48px 32px; background: white; }
.founder-banner {
  background: linear-gradient(135deg, rgba(26,74,46,0.04), rgba(82,183,136,0.06));
  border: 1px solid var(--border);
  border-left: 4px solid var(--leaf);
  border-radius: 16px; padding: 28px 36px;
  display: flex; align-items: flex-start; gap: 24px;
  max-width: 860px; margin: 0 auto;
}
.founder-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 2px; }
.founder-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--leaf);
  display: block; margin-bottom: 8px;
}
.founder-text p:last-child { font-size: 0.9rem; line-height: 1.8; }

/* ── VALUE METRICS ── */
.section-metrics { background: var(--forest); }
.section-metrics .section-label { color: var(--gold); }
.section-metrics .section-title { color: white; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.metric-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px 28px;
  transition: all 0.3s ease;
}
.metric-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(200,168,75,0.3);
}
.metric-icon { font-size: 1.8rem; display: block; margin-bottom: 16px; }
.metric-card h3 { color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.metric-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; }

/* ── PILOT PROGRAM SECTION ── */
.section-pilot-program {
  background: linear-gradient(160deg, var(--forest) 0%, #1A5C35 100%);
}
.pilot-program-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 24px; padding: 64px 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
.pilot-program-box::before {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.08), transparent 70%);
  right: -100px; top: -100px; pointer-events: none;
}
.pilot-program-header { margin-bottom: 48px; }
.pilot-program-header h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.pilot-program-header p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto; font-size: 1rem; line-height: 1.8; }
.pilot-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  text-align: left; margin-bottom: 48px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.pilot-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.pilot-list { list-style: none; padding: 0; }
.pilot-list li {
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.5;
}
.pilot-list li:last-child { border-bottom: none; }
.pilot-cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #E2C97E);
  color: var(--forest);
  box-shadow: 0 6px 24px rgba(200,168,75,0.4);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200,168,75,0.5);
  color: var(--forest);
}
.btn-outline-dark {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: white; font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 0.95rem;
}
.btn-outline-dark:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }
.pilot-note {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  position: relative; z-index: 1;
}
.pilot-note a { color: var(--leaf-lt); }
.pilot-note a:hover { color: var(--gold-lt); }

/* ── CTA BADGE ── */
.cta-badge {
  display: inline-block;
  background: rgba(200,168,75,0.2);
  border: 1px solid rgba(200,168,75,0.4);
  color: #E8C96A; font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px; position: relative; z-index: 1;
}

/* ── DOWNLOAD INSTRUCTIONS ── */
.download-instructions {
  position: relative; z-index: 1;
  margin-top: 16px; font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.download-instructions strong { color: rgba(255,255,255,0.7); }

/* ── FOOTER ── */
footer {
  background: var(--forest);
  padding: 64px 32px 32px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 {
  font-family: 'Lato', sans-serif; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-col a:hover { color: var(--leaf); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--leaf); }

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

/* ── MOBILE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav .nav-links { display: none; flex-direction: column; gap: 4px; }
  nav .nav-links.open {
    display: flex; position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(248,244,238,0.99);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 48px 28px; }
  .step-item { border-right: none; border-bottom: 1px solid var(--border); }
  .step-item:last-child { border-bottom: none; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .section { padding: 64px 24px; }
  .pilot-banner { flex-direction: column; gap: 16px; padding: 24px; }
  .founder-banner { flex-direction: column; gap: 12px; padding: 24px; }
  .pilot-program-box { padding: 40px 24px; }
  .pilot-two-col { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .metrics-grid { grid-template-columns: 1fr; }
  .pilot-cta-row { flex-direction: column; align-items: center; }
}
