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

:root {
  --brown-dark:   #6B3318;
  --brown-mid:    #8B4A22;
  --brown-light:  #C8A882;
  --cream:        #F0E6D2;
  --cream-dark:   #DDD0B8;
  --tan:          #C2B49A;
  --tan-dark:     #9E8070;
  --green:        #2E6B4F;
  --green-light:  #3D8B6A;
  --white:        #FDFAF5;
  --text-dark:    #3A2010;
  --text-mid:     #6B5340;
  --text-light:   #9E8070;
  --rule:         rgba(240,230,210,0.18);
  --rule-dark:    rgba(58,32,16,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Eyebrow — thin horizontal rule prefix (from the deck) ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow.dark { color: var(--green); }

/* ─── Nav ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s;
}
nav.scrolled {
  background: rgba(107,51,24,0.97);
  box-shadow: 0 1px 0 rgba(240,230,210,0.12);
  backdrop-filter: blur(6px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links li { display: flex; align-items: center; }
/* Vertical pipe separators between nav items */
.nav-links li + li::before {
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(240,230,210,0.25);
  margin: 0 1.25rem;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  opacity: 0.78;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.15rem !important;
  border-radius: 2px !important;
  opacity: 1 !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.78rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-light) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}

/* ─── Hero ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--brown-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.5rem;
  position: relative;
  overflow: hidden;
}
/* Subtle background texture line */
#hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(240,230,210,0.06);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 10rem 0 3rem;
}
.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--brown-light);
  max-width: 480px;
  line-height: 1.78;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons — less rounded, more structured */
.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-light); }
.btn-ghost {
  border: 1px solid rgba(240,230,210,0.3);
  color: var(--cream);
  padding: 0.8rem 1.75rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(240,230,210,0.65); background: rgba(240,230,210,0.06); }

/* Hero data strip — full width, vertical rule separators */
.hero-data-strip {
  width: 100%;
  border-top: 1px solid rgba(240,230,210,0.15);
  margin-top: auto;
  display: flex;
  align-items: stretch;
  padding: 0 2.5rem;
  background: rgba(0,0,0,0.12);
}
.hero-data-strip .section-inner-strip {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: stretch;
}
.data-item {
  flex: 1;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.data-item:first-child { padding-left: 0; }
.data-item:last-child  { padding-right: 0; }
.data-vr {
  width: 1px;
  background: rgba(240,230,210,0.15);
  flex-shrink: 0;
  align-self: stretch;
}
.data-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  color: var(--cream);
  line-height: 1;
}
.data-num.green { color: var(--green-light); }
.data-num--word { font-size: 1.2rem; letter-spacing: -0.01em; }
.data-lbl { font-size: 0.75rem; color: var(--tan); line-height: 1.45; }

/* ─── Shared section ──────────────────────────────────────── */
section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-headline.dark { color: var(--text-dark); }
.section-sub {
  font-size: 0.975rem;
  color: var(--brown-light);
  max-width: 600px;
  line-height: 1.8;
}
.section-sub.dark { color: var(--text-mid); }
.body-copy { font-size: 0.975rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }

/* ─── Overview ────────────────────────────────────────────── */
#overview { background: var(--cream); padding-top: 5rem; overflow-x: hidden; }
.overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}
.overview-text { padding-right: 4rem; }
/* Column rule between the two overview columns */
.overview-table {
  border-left: 1px solid var(--rule-dark);
  padding-left: 4rem;
}
.markets-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}
.overview-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.market-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-dark);
  background: var(--cream-dark);
  border: 1px solid var(--tan);
  border-left: 3px solid var(--brown-dark);
  padding: 0.4rem 0.85rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.market-tag:hover {
  background: var(--brown-dark);
  color: var(--cream);
  border-color: var(--brown-dark);
}

/* Comparison table */
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.comp-table th {
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--tan-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.comp-table th:first-child { text-align: left; }
.comp-table th.col-us { color: var(--green); }
.comp-table td {
  padding: 0.8rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--rule-dark);
  color: var(--text-mid);
  font-size: 0.875rem;
}
.comp-table td:first-child { text-align: left; font-weight: 500; color: var(--text-dark); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table td.col-us { font-weight: 700; color: var(--green); }
/* Vertical column rules in the table */
.comp-table th + th,
.comp-table td + td { border-left: 1px solid var(--rule-dark); }
.dollar-green { color: var(--green); font-size: 1rem; font-weight: 800; }
.dollar-mid   { color: var(--text-light); font-size: 1rem; }
.dollar-high  { color: #9B3A2E; font-size: 1rem; }
.check     { color: var(--green); }
.check-dim { color: var(--tan-dark); }

/* ─── How It Works ────────────────────────────────────────── */
#how-it-works { background: var(--brown-dark); padding-bottom: 0; }

/* Vertical timeline with spine */
.timeline {
  position: relative;
  max-width: 100%;
  margin-top: 0;
  padding-left: 3rem;
}
.timeline-spine {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(240,230,210,0.2);
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  align-items: flex-start;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -3rem;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  transform: translateX(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(240,230,210,0.35);
  background: var(--brown-dark);
  padding: 2px 0;
}
/* Dot on the spine */
.timeline-marker::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--brown-dark), 0 0 0 4px rgba(46,107,79,0.4);
}
.timeline-content { padding-top: 0; }
.timeline-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.timeline-desc { font-size: 0.9rem; color: var(--brown-light); line-height: 1.72; }

/* ─── Products ────────────────────────────────────────────── */
#products { background: var(--cream-dark); }
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card--dark {
  background: var(--brown-dark);
  border-color: rgba(240,230,210,0.12);
}
/* Top accent line — editorial detail instead of generic card radius */
.product-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
}
.product-accent-line--light { background: rgba(61,139,106,0.6); }
.product-header { margin-bottom: 1rem; }
.product-tag {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}
.product-tag--light { color: var(--tan); }
.product-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.product-card--dark .product-name { color: var(--cream); }
.product-name sup {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  vertical-align: super;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--green);
  margin-left: 2px;
}
.product-card--dark .product-name sup { color: var(--green-light); }
.product-tagline {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.68;
  margin-bottom: 0;
}
.product-card--dark .product-tagline { color: var(--brown-light); }
.product-rule {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin: 1.25rem 0;
}
.product-rule--light { border-color: rgba(240,230,210,0.15); }
.product-features { display: flex; flex-direction: column; gap: 0.55rem; }
.feature-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.product-card--dark .feature-row { color: var(--brown-light); }
.feature-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.feature-check--light { color: var(--green-light); }
.product-uses-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.product-uses-label--light { color: var(--tan-dark); }
.product-uses-list {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.product-uses-list--light { color: var(--brown-light); }
.btn-product {
  display: block;
  text-align: center;
  background: var(--green);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: background 0.2s;
}
.btn-product:hover { background: var(--green-light); }
.btn-product--light {
  background: transparent;
  border: 1px solid rgba(46,107,79,0.5);
  color: var(--cream);
}
.btn-product--light:hover { background: var(--green); border-color: var(--green); }

/* ─── About ───────────────────────────────────────────────── */
#about { background: var(--brown-dark); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.team-card {
  display: flex;
  gap: 0;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(240,230,210,0.12);
  border-top: 3px solid rgba(240,230,210,0.2);
  overflow: hidden;
}
.team-avatar {
  width: 200px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.team-avatar svg { width: 100%; height: auto; }
.team-body {
  padding: 1.5rem;
  border-left: 1px solid rgba(240,230,210,0.1);
}
.team-rule {
  width: 24px;
  height: 2px;
  background: var(--green);
  margin-bottom: 0.75rem;
}
.team-name { font-weight: 700; color: var(--cream); font-size: 0.975rem; margin-bottom: 0.2rem; }
.team-role { font-size: 0.75rem; font-weight: 600; color: var(--green-light); margin-bottom: 0.6rem; letter-spacing: 0.03em; text-transform: uppercase; }
.team-bio { font-size: 0.82rem; color: var(--brown-light); line-height: 1.6; margin-bottom: 0.75rem; }
.team-grid--single { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
  transition: color 0.2s;
}
.team-linkedin:hover { color: var(--green-light); }

/* Partners — typographic list */
.partners-section {
  border-top: 1px solid var(--rule);
  padding-top: 2.5rem;
}
.partners-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tan-dark);
  margin-bottom: 1rem;
}
.partners-list {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 2;
}
.partners-sep {
  margin: 0 0.6rem;
  color: var(--brown-mid);
}
.partner-link {
  color: var(--brown-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,168,130,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.partner-link:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

/* ─── Contact ─────────────────────────────────────────────── */
#contact { background: var(--brown-dark); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  align-items: start;
}
.contact-left {
  padding-right: 4rem;
  /* Vertical rule to the right of the left column */
  border-right: 1px solid var(--rule);
}
.contact-right-pad { padding-left: 4rem; }
.contact-left .section-headline { color: var(--cream); }
.contact-sub {
  font-size: 0.925rem;
  color: var(--brown-light);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  margin-top: 0.5rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--tan);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.contact-email-link:hover { color: var(--cream); }
.contact-form {
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--tan);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.optional { font-weight: 400; text-transform: none; opacity: 0.6; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: none;
  border-bottom: 1px solid rgba(240,230,210,0.2);
  padding: 0.65rem 0;
  color: var(--cream);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(200,168,130,0.4); }
.form-group select option { background: var(--brown-dark); color: var(--cream); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--green-light); }
.btn-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--green-light); }
.form-success {
  display: none;
  font-size: 0.85rem;
  color: var(--green-light);
  padding: 0.5rem 0;
}
.form-success.visible { display: block; }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  background: #3A1A08;
  border-top: 1px solid rgba(240,230,210,0.08);
  padding: 1.5rem 2.5rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo-img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.55;
}
.footer-copy { font-size: 0.75rem; color: var(--tan-dark); }
.footer-link {
  font-size: 0.75rem;
  color: var(--tan-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--tan); }

/* ─── Hero background image ──────────────────────────────── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(50,18,6,0.78) 0%,
    rgba(60,22,8,0.68) 60%,
    rgba(30,10,2,0.88) 100%
  );
  z-index: 1;
}
/* Lift content above overlay */
#hero .hero-inner,
#hero .hero-data-strip { position: relative; z-index: 2; }
/* Remove the pseudo-element center line on hero since image is there now */
#hero::before { display: none; }

/* ─── How It Works — block flowchart ────────────────────── */
.hiw-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 3rem;
}
.hiw-step {
  border: 1px solid rgba(240,230,210,0.14);
  border-top: 3px solid rgba(240,230,210,0.2);
  padding: 2rem;
  background: rgba(255,255,255,0.05);
}
.hiw-step--accent {
  border-color: rgba(46,107,79,0.5);
  border-top: 3px solid var(--green);
  background: rgba(46,107,79,0.12);
}

.hiw-step-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--green-light);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}
.hiw-step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.hiw-step-desc {
  font-size: 0.875rem;
  color: var(--brown-light);
  line-height: 1.7;
}
.hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  color: rgba(240,230,210,0.3);
}
.hiw-arrow svg { width: 40px; height: 24px; }

/* Full-width video strip below flowchart */
.hiw-video-strip {
  margin-top: 3rem;
  /* bleed past section's horizontal padding */
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}
.hiw-video-strip video {
  width: 100%;
  display: block;
  max-height: 55vh;
  object-fit: cover;
}

/* ─── Product images ─────────────────────────────────────── */
.product-img {
  width: calc(100% + 5rem);
  margin: -2.5rem -2.5rem 1.75rem;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--green);
}
.product-card--dark .product-img {
  border-bottom-color: rgba(61,139,106,0.6);
}

/* ─── Applications showcase section ─────────────────────── */
#applications {
  background: #1A0C04;
  padding: 5rem 0 0;
}
.applications-header {
  padding: 0 2.5rem;
  margin-bottom: 3rem;
}
.applications-header .eyebrow { color: var(--green-light); }
.applications-header .section-headline { color: var(--cream); }
.applications-video-wrap {
  position: relative;
}
.applications-video {
  width: 100%;
  display: block;
}
.applications-video-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, #1A0C04, transparent);
  pointer-events: none;
}

/* ─── Team avatar — real photos ──────────────────────────── */
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ─── Scroll animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hiw-flow        { grid-template-columns: 1fr; }
  .hiw-arrow       { margin-top: 0; padding: 0.5rem 0; transform: rotate(90deg); }
  .hiw-video-strip { margin-left: -1.25rem; margin-right: -1.25rem; }
  .overview-inner  { grid-template-columns: 1fr; }
  .overview-text   { padding-right: 0; }
  .overview-table  { border-left: none; padding-left: 0; border-top: 1px solid var(--rule-dark); padding-top: 2.5rem; margin-top: 0.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comp-table      { min-width: 420px; }
  .products-grid    { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }
  .contact-inner   { grid-template-columns: 1fr; }
  .contact-left    { border-right: none; padding-right: 0; border-bottom: 1px solid var(--rule); padding-bottom: 2.5rem; margin-bottom: 0.5rem; }
  .contact-form    { padding-left: 0; }
  nav .nav-links   { display: none; flex-direction: column; gap: 0; }
  nav .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(107,51,24,0.98);
    padding: 1rem 2rem;
  }
  nav .nav-links.open li::before { display: none; }
  nav .nav-links.open li { padding: 0.6rem 0; border-bottom: 1px solid rgba(240,230,210,0.1); }
  .nav-toggle { display: flex; }
  .hero-data-strip { flex-wrap: wrap; padding: 0; }
  .data-item { padding: 1.25rem 1.5rem; min-width: 40%; }
  .data-vr { display: none; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
  .hero-inner { padding-top: 8rem; padding-bottom: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .team-avatar { width: 100%; height: 220px; }
  .team-body { border-left: none; border-top: 1px solid var(--cream-dark); }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .data-item { min-width: 100%; }
}
