/* ============================================
   AIT — Ahmed Innovation and Technology
   Design tokens
   ============================================ */
:root {
  --bg:        #090b0e;
  --bg-raised: #11151a;
  --bg-panel:  #171d23;
  --line:      #2b333c;
  --text:      #f1f4f5;
  --text-dim:  #a5afb8;
  --text-faint:#6d7782;
  --ember:     #dc8531;
  --ember-dim: #a85f25;
  --moss:      #8ba06a;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --container: 1120px;
  --gutter: clamp(20px, 5vw, 64px);
}

:root[data-theme="light"] {
  --bg:        #dff7e8;
  --bg-raised: #cef2dc;
  --bg-panel:  #b9e9ce;
  --line:      #8acdad;
  --text:      #123d2d;
  --text-dim:  #356a53;
  --text-faint:#5b9276;
  --ember:     #147a58;
  --ember-dim: #0d5d42;
  --moss:      #55b88a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(15px, 0.95vw, 16px);
  line-height: 1.675;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-dim); max-width: 62ch; }

/* film grain overlay, whole page */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='1000'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  mix-blend-mode: normal;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.wordmark:hover {
  opacity: 0.8;
}

.logo-img {
  height: 44px;
  width: 44px;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
  background: transparent;
  mix-blend-mode: screen;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wordmark-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1;
}

.wordmark-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  line-height: 1;
}

@media (max-width: 768px) {
  .wordmark {
    gap: 10px;
  }
  .logo-img {
    height: 38px;
    width: 38px;
  }
  .wordmark-main {
    font-size: 15px;
  }
  .wordmark-sub {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .wordmark {
    gap: 8px;
  }
  .logo-img {
    height: 32px;
    width: 32px;
  }
  .wordmark-main {
    font-size: 14px;
  }
  .wordmark-sub {
    display: none;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  color: var(--text-dim);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.theme-toggle:hover {
  color: var(--text);
  border-color: var(--ember);
  background: var(--bg-panel);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-icon-moon { display: none; }
:root[data-theme="light"] .theme-icon-sun { display: none; }
:root[data-theme="light"] .theme-icon-moon { display: block; }

.site-nav a:hover { color: var(--text); }

.nav-cta {
  color: var(--text);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 2px;
}
.nav-cta:hover { border-color: var(--ember); color: var(--ember); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,11,14,0.6) 0%, rgba(9,11,14,0.34) 35%, rgba(9,11,14,0.9) 78%, #090b0e 100%),
    linear-gradient(90deg, rgba(9,11,14,0.68) 0%, rgba(9,11,14,0.1) 45%);
}
:root[data-theme="light"] .hero-scrim {
  background:
    linear-gradient(180deg, rgba(223,247,232,0.68) 0%, rgba(223,247,232,0.42) 35%, rgba(223,247,232,0.88) 78%, #dff7e8 100%),
    linear-gradient(90deg, rgba(223,247,232,0.72) 0%, rgba(223,247,232,0.12) 45%);
}
:root[data-theme="light"] .smoke-a { background: radial-gradient(circle, #8ee1b7 0%, transparent 70%); }
:root[data-theme="light"] .smoke-b { background: radial-gradient(circle, #38ae7d 0%, transparent 72%); }
:root[data-theme="light"] .smoke-c { background: radial-gradient(circle, #71c9a0 0%, transparent 70%); }

/* smoke: soft blurred blobs drifting slowly */
.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  mix-blend-mode: screen;
  opacity: 0.16;
  will-change: transform;
}
.smoke-a {
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, #a5adb7 0%, transparent 70%);
  top: -10%; left: -10%;
  animation: drift1 26s ease-in-out infinite alternate;
}
.smoke-b {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, #dc8531 0%, transparent 72%);
  bottom: -15%; right: -5%;
  opacity: 0.10;
  animation: drift2 32s ease-in-out infinite alternate;
}
.smoke-c {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, #66717d 0%, transparent 70%);
  top: 30%; right: 10%;
  opacity: 0.12;
  animation: drift3 22s ease-in-out infinite alternate;
}

@keyframes drift1 { from { transform: translate(0,0) scale(1);} to { transform: translate(6%, 4%) scale(1.08);} }
@keyframes drift2 { from { transform: translate(0,0) scale(1);} to { transform: translate(-5%, -6%) scale(1.05);} }
@keyframes drift3 { from { transform: translate(0,0) scale(1);} to { transform: translate(-4%, 5%) scale(1.1);} }
@media (prefers-reduced-motion: reduce) {
  .smoke { animation: none; }
  html { scroll-behavior: auto; }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) 96px;
  max-width: 860px;
}

.eyebrow-plate {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-bottom: 20px;
  display: inline-block;
  opacity: 0;
  animation: rise 0.7s ease-out 0.1s forwards;
}

.hero h1 {
  font-size: clamp(38px, 4.5vw, 60px);
  max-width: 15ch;
  margin-bottom: 22px;
  opacity: 0;
  animation: rise 0.8s ease-out 0.25s forwards;
}

.hero-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text-dim);
  max-width: 54ch;
  margin-bottom: 32px;
  opacity: 0;
  animation: rise 0.8s ease-out 0.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.8s ease-out 0.55s forwards;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--ember);
  color: #17130c;
}
.btn-primary:hover { background: #eb9a4c; }
:root[data-theme="light"] .btn-primary { color: #f6fff9; }
:root[data-theme="light"] .btn-primary:hover { background: #1b916a; }

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text-dim); }

/* ============================================
   Section scaffolding
   ============================================ */
section { position: relative; }

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ember);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.section-label--light { color: #f0b077; }

.about, .verticals, .contact {
  padding: 96px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.verticals {
  max-width: 100%;
  position: relative;
  background-image:
    linear-gradient(180deg, var(--bg) 0%, rgba(9,11,14,0.94) 100%),
    url("../assets/img/texture-verticals.jpg");
  background-size: cover;
  background-position: center;
}
:root[data-theme="light"] .verticals {
  background-image:
    linear-gradient(180deg, var(--bg) 0%, rgba(206,242,220,0.94) 100%),
    url("../assets/img/texture-verticals.jpg");
}
.verticals > * {
  position: relative;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section h2 {
  font-size: clamp(28px, 3vw, 40px);
  max-width: 16ch;
  margin-bottom: 24px;
}

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gutter);
  align-items: center;
}
.about-text p { font-size: 16px; }
.about-media {
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/5;
}
.about-media img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============================================
   Verticals — schematic list, not cards
   ============================================ */
.vertical-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.vertical-item {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: var(--gutter);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.v-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--text);
}
.v-desc {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 52ch;
}
/* ============================================
   OralScan AI spotlight
   ============================================ */
.oralscan {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-inline: var(--gutter);
  background: #0e1217;
}
:root[data-theme="light"] .oralscan { background: #cef2dc; }
.oralscan-content {
  position: relative; z-index: 1;
  width: min(640px, 100%);
  padding-block: 80px;
}
.oralscan h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
  max-width: none;
}
.oralscan-copy {
  max-width: 72ch;
  margin-bottom: 36px;
  font-size: 16px;
}
.report-showcase {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg);
}
.report-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.report-kicker {
  margin: 0 0 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ember);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.report-showcase h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
}
.report-document {
  width: 100%;
  height: min(75vh, 860px);
  min-height: 600px;
  display: block;
  border: 0;
  background: #fff;
}

/* ============================================
   AgriBot spotlight
   ============================================ */
.agribot {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.agribot-media {
  position: absolute; inset: 0; z-index: 0;
}
.agribot-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
}
.agribot-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,11,14,0.94) 0%, rgba(9,11,14,0.68) 55%, rgba(9,11,14,0.32) 100%),
    linear-gradient(0deg, rgba(9,11,14,0.75) 0%, transparent 30%);
}
:root[data-theme="light"] .agribot-scrim {
  background:
    linear-gradient(90deg, rgba(223,247,232,0.94) 0%, rgba(223,247,232,0.68) 55%, rgba(223,247,232,0.32) 100%),
    linear-gradient(0deg, rgba(223,247,232,0.75) 0%, transparent 30%);
}
.agribot-content {
  position: relative; z-index: 1;
  padding: 80px var(--gutter);
  max-width: 640px;
}
.agribot-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
  max-width: none;
}
.agribot-copy {
  font-size: 16px;
  margin-bottom: 32px;
}

.spec-plate {
  font-family: var(--font-mono);
  font-size: 13.5px;
  border: 1px solid var(--line);
  background: rgba(17,21,26,0.72);
  border-radius: 3px;
  padding: 4px 20px;
  margin: 0 0 32px;
}
:root[data-theme="light"] .spec-plate { background: rgba(246,255,249,0.68); }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.spec-row:last-child { border-bottom: none; }
.spec-row dt { color: var(--text-faint); }
.spec-row dd { margin: 0; color: var(--text); text-align: right; }

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
}
.contact-lede { font-size: 16px; }

.contact-details {
  border-top: 1px solid var(--line);
}
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
a.contact-row:hover .c-value { color: var(--ember); }
.c-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}
.icon-whatsapp { color: #25d366; }
.icon-gmail { color: #ea4335; }
.icon-maps { color: #4285f4; }
.icon-instagram { color: #e4405f; }
.icon-linkedin { color: #0a66c2; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.c-value {
  font-size: 16px;
  color: var(--text);
  transition: color 0.2s ease;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px var(--gutter) 40px;
  max-width: var(--container);
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-logo {
  height: 32px;
  width: 32px;
  border-radius: 3px;
  display: block;
  background: transparent;
  mix-blend-mode: screen;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

@media (max-width: 860px) {
  .footer-content {
    flex-direction: column;
    gap: 16px;
  }
  .footer-info {
    text-align: left;
  }
}

/* ============================================
   Market Opportunity
   ============================================ */
.market-opportunity {
  padding: 96px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  background: #0d0f12;
}
:root[data-theme="light"] .market-opportunity {
  background: #d9f5e7;
}

.market-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gutter);
  align-items: start;
}

.market-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  max-width: 18ch;
  margin-bottom: 24px;
}

.market-text p {
  font-size: 16px;
  margin-bottom: 18px;
}

.market-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 20px 18px;
  background: rgba(17, 21, 26, 0.5);
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
:root[data-theme="light"] .stat-card {
  background: rgba(246, 255, 249, 0.48);
}

.stat-card:hover {
  border-color: var(--ember);
  background: rgba(17, 21, 26, 0.7);
}
:root[data-theme="light"] .stat-card:hover {
  background: rgba(246, 255, 249, 0.62);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 5vw, 32px);
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.stat-unit {
  font-size: 0.65em;
  color: var(--ember);
  margin-left: 4px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   Why Choose AIT
   ============================================ */
.why-ait {
  padding: 96px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.why-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  max-width: 18ch;
  margin-bottom: 0;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.why-card {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 32px 24px;
  background: rgba(17, 21, 26, 0.5);
  transition: all 0.3s ease;
}
:root[data-theme="light"] .why-card {
  background: rgba(246, 255, 249, 0.48);
}

.why-card:hover {
  border-color: var(--ember);
  background: rgba(17, 21, 26, 0.72);
  transform: translateY(-4px);
}
:root[data-theme="light"] .why-card:hover {
  background: rgba(246, 255, 249, 0.62);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.why-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
  margin: 0 0 12px;
}

.why-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   Founder Vision
   ============================================ */
.founder-vision {
  padding: 96px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  background: rgba(220, 133, 49, 0.06);
  border: 1px solid var(--line);
  border-radius: 3px;
}
:root[data-theme="light"] .founder-vision {
  background: rgba(20, 122, 88, 0.04);
}

.founder-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gutter);
  align-items: center;
}

.founder-content {
  max-width: 72ch;
}

.founder-quote {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--ember);
  line-height: 1.8;
}

.founder-credit {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}

.founder-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  margin: 0;
}

.founder-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.founder-tag {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ember);
}

.founder-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(220, 133, 49, 0.15);
  border: 1px solid var(--ember);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
:root[data-theme="light"] .tag {
  background: rgba(20, 122, 88, 0.1);
  border-color: var(--moss);
  color: var(--text-dim);
}

/* ============================================
   Contact CTAs
   ============================================ */
.contact-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-ctas .btn {
  flex: 1;
  min-width: 160px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 860px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    z-index: 99;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-cta { border: none; margin-top: 6px; padding: 14px 0; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; aspect-ratio: 16/10; }

  .market-grid { grid-template-columns: 1fr; }
  .market-stats { grid-template-columns: 1fr; }

  .why-list { grid-template-columns: 1fr; }
  
  .founder-grid { grid-template-columns: 1fr; }
  .founder-side { display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px; }

  .vertical-item { grid-template-columns: 1fr; gap: 8px; }
  .report-showcase-header { align-items: flex-start; flex-direction: column; }
  .report-document { min-height: 460px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-ctas { flex-direction: column; }
  .contact-ctas .btn { min-width: auto; }

  .agribot-content { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-content { padding-bottom: 64px; }
  .spec-row { font-size: 12.5px; }
}
