/* =========================================================
   Resourcly — Variant 2 "INVENTORY OS"
   ========================================================= */

:root {
  /* Dark bands */
  --ink:            #1d2b2a;
  --ink-2:          #222424;
  --petrol:         #384b4a;
  --petrol-line:    #46605e;

  /* Light bands */
  --mint-0:         #f8fcfc;
  --mint-1:         #edf3f3;
  --mint-2:         #ebf5f4;
  --mint-line:      #dce5e5;
  --cream-0:        #fffbf7;
  --cream-1:        #fffaf7;
  --cream-2:        #fcefe8;
  --peach:          #fadbcd;

  /* Text */
  --text-on-dark:   #f8fcfc;
  --muted-on-dark:  #929494;
  --text-on-light:  #1d2b2a;
  --muted-on-light: #646666;

  /* Accents */
  --rust:           #c94b17;
  --rust-deep:      #a34017;
  --green:          #168404;
  --green-deep:     #115409;
  --blue:           #0099ff;
  --white:          #ffffff;

  --container: 1200px;
  --pad: 24px;

  --shadow-light: 0 1px 2px rgba(29,43,42,.04), 0 8px 24px rgba(29,43,42,.06);
  --shadow-dark:  0 8px 30px rgba(0,0,0,.35);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-light);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Type scale ---------- */
.display {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800; line-height: 1.04; letter-spacing: -0.02em;
  max-width: 18ch;
}
.h1 { font-size: clamp(32px, 4.4vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: -0.015em; max-width: 18ch; }
.h2 { font-size: clamp(26px, 3.4vw, 32px); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
.h3 { font-size: 22px; font-weight: 600; line-height: 1.25; letter-spacing: -0.005em; }
.h4 { font-size: 17px; font-weight: 600; line-height: 1.3; }
.body-lg { font-size: 19px; line-height: 1.55; max-width: 66ch; }
.body { font-size: 16px; line-height: 1.6; max-width: 66ch; }
.small { font-size: 14px; line-height: 1.5; }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; line-height: 1;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow--rust { color: var(--rust); }
.eyebrow--green { color: var(--green); }

.data-label {
  font-size: 12px; font-weight: 500; line-height: 1.2;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.stat-figure {
  display: block;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800; line-height: 1; letter-spacing: -0.02em;
  color: var(--rust); font-variant-numeric: tabular-nums;
}
.kpi-rust { color: var(--rust); font-weight: 800; font-variant-numeric: tabular-nums; }

/* color helpers */
.text-dark-band  { color: var(--text-on-dark); }
.text-light-band { color: var(--text-on-light); }
.muted-dark  { color: var(--muted-on-dark); }
.muted-light { color: var(--muted-on-light); }

.num { font-variant-numeric: tabular-nums; }

/* ---------- Bands ---------- */
.band-dark   { background: var(--ink);   color: var(--text-on-dark); }
.band-ink2   { background: var(--ink-2); color: var(--text-on-dark); }
.band-mint-1 { background: var(--mint-1); color: var(--text-on-light); }
.band-mint-2 { background: var(--mint-2); color: var(--text-on-light); }
.band-cream  { background: var(--cream-0); color: var(--text-on-light); }
.band-cream-1{ background: var(--cream-1); color: var(--text-on-light); }
.band-rust   { background: var(--rust); color: var(--white); }

section { padding-block: 96px; position: relative; }
.strip { padding-block: 64px; }

/* hairline seams */
.band-mint-1, .band-mint-2, .band-cream, .band-cream-1 { border-top: 1px solid var(--mint-line); }
.band-dark + .band-mint-1, .band-dark + .band-cream { box-shadow: inset 0 1px 0 rgba(255,255,255,.4); }

/* ---------- Dots & pills ---------- */
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }
.dot--green { background: var(--green); }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 999px; padding: 4px 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.pill--green { background: rgba(22,132,4,.12); color: var(--green); }
.pill--rust  { background: rgba(201,75,23,.12); color: var(--rust); }
.pill .dot { width: 6px; height: 6px; }

.chip {
  display: inline-flex; align-items: center; border-radius: 999px;
  padding: 8px 16px; background: var(--white);
  border: 1px solid var(--mint-line); color: var(--text-on-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; padding: 14px 22px; font-size: 15px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer; transition: all .18s ease;
  min-height: 44px;
}
.btn--rust { background: var(--rust); color: #fff; }
.btn--rust:hover { background: var(--rust-deep); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,75,23,.28); }
.btn--ghost-dark { background: transparent; border-color: var(--petrol-line); color: var(--text-on-dark); }
.btn--ghost-dark:hover { background: rgba(248,252,252,.06); }
.btn--white { background: #fff; color: var(--rust); }
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.btn--ghost-white { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost-white:hover { background: rgba(255,255,255,.12); }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }

.link-ghost { color: var(--text-on-dark); font-size: 15px; font-weight: 500; opacity: .9; }
.link-ghost:hover { opacity: 1; }

/* ---------- Cards ---------- */
.card-dark {
  background: var(--petrol); border: 1px solid var(--petrol-line);
  border-radius: 14px; box-shadow: var(--shadow-dark); transition: all .2s ease;
}
.card-dark:hover { transform: translateY(-3px); border-color: #5a7775; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink); transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(29,43,42,.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--petrol-line);
}
.nav__inner { display: flex; align-items: center; height: 68px; gap: 24px; }
.nav__logo { display: flex; align-items: center; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--text-on-dark); opacity: .85; position: relative; padding: 4px 0; }
.nav__links a:hover { opacity: 1; }
.nav__links a.active { opacity: 1; }
.nav__links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--rust);
}
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__cta .btn { padding: 10px 18px; min-height: 40px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav__burger span { width: 24px; height: 2px; background: var(--text-on-dark); transition: .25s; border-radius: 2px; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px var(--pad) 40px; transform: translateY(-100%);
  transition: transform .3s ease; visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 22px; }
.mobile-menu__links a { font-size: 22px; font-weight: 600; color: var(--text-on-dark); }
.mobile-menu__cta { position: absolute; left: var(--pad); right: var(--pad); bottom: 32px; width: auto; }

/* =========================================================
   HERO
   ========================================================= */
.hero { overflow: hidden; padding-block: 120px 96px; }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 85% 0%, rgba(56,75,74,.55), transparent 70%);
}
.hero__texture { position: absolute; inset: 0; opacity: .08; mix-blend-mode: luminosity; pointer-events: none; }
.hero__texture img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(29,43,42,.88); z-index: 0; pointer-events: none; }
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center;
}
.hero__copy .display { margin-bottom: 22px; }
.hero__copy .body-lg { margin-bottom: 32px; }
.hero__btns { display: flex; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.hero__meta { display: flex; align-items: center; gap: 12px; color: var(--muted-on-dark); }

/* ---------- Console mock ---------- */
.console {
  background: var(--petrol); border: 1px solid var(--petrol-line);
  border-radius: 16px; box-shadow: var(--shadow-dark); overflow: hidden;
}
.console__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-bottom: 1px solid var(--petrol-line);
  background: rgba(0,0,0,.12);
}
.console__dots { display: flex; gap: 6px; }
.console__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--petrol-line); display: block; }
.console__tab { color: var(--muted-on-dark); }
.console__bar .pill { margin-left: auto; }
.console__body { padding: 18px; overflow-x: auto; }

.parts { width: 100%; border-collapse: collapse; color: var(--text-on-dark); font-size: 14px; }
.parts th { text-align: left; color: var(--muted-on-dark); padding: 0 12px 12px; border-bottom: 1px solid var(--petrol-line); }
.parts td { padding: 12px; border-bottom: 1px solid rgba(70,96,94,.5); white-space: nowrap; }
.parts__row { opacity: 0; transform: translateY(8px); }
.parts__row.in { opacity: 1; transform: none; transition: all .4s cubic-bezier(.16,1,.3,1); }
.parts--compact td { padding: 10px 12px; }
.parts tr:last-child td { border-bottom: none; }

.console__chart { margin-top: 16px; }
.console__chart-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.console__chart-head .data-label { color: var(--muted-on-dark); }
.console__chart-head .kpi-rust { font-size: 22px; }
.spark { width: 100%; height: 64px; }
.spark__line { fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.spark__dot { fill: var(--blue); }

/* =========================================================
   STAT STRIP
   ========================================================= */
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tile {
  background: var(--white); border: 1px solid var(--mint-line);
  border-radius: 12px; padding: 24px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-light); transition: all .2s ease;
}
.tile::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--rust); }
.tile:hover { transform: translateY(-3px); border-color: #c6d6d6; }
.tile .data-label { color: var(--muted-on-light); }
.tile .stat-figure { margin: 14px 0 8px; }
.strip__chip { margin-top: 28px; text-align: center; color: var(--muted-on-light); display: flex; align-items: center; justify-content: center; gap: 10px; }

/* =========================================================
   PROBLEM
   ========================================================= */
.problem .eyebrow { display: block; }
.problem .h1 { margin-bottom: 48px; }
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.problem__col h3 { margin-bottom: 20px; }
.problem__list li { position: relative; padding-left: 24px; margin-bottom: 18px; color: var(--muted-on-dark); font-size: 17px; max-width: 48ch; }
.problem__list li::before { content: "–"; position: absolute; left: 0; color: var(--rust); font-weight: 700; }
.problem__solution { padding: 32px; position: relative; z-index: 1; }
.problem__solution h3 { margin-bottom: 20px; }
.dot-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: var(--text-on-dark); font-size: 17px; border-bottom: 1px solid var(--petrol-line); }
.dot-list li:last-child { border-bottom: none; }
.problem__close { margin-top: 20px; color: var(--rust); font-weight: 700; font-size: 18px; }
.problem__texture { margin-top: 24px; border-radius: 12px; opacity: .22; height: 160px; object-fit: cover; width: 100%; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how__head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.how__intro .h1 { margin: 0 0 18px; }
.how__photo { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-light); border: 1px solid var(--mint-line); }
.how__photo img { width: 100%; height: 320px; object-fit: cover; filter: grayscale(100%); }
.how__photo figcaption { padding: 12px 16px; color: var(--muted-on-light); background: var(--white); }

.pipeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.pipeline__connector { position: absolute; top: 18px; left: 8%; width: 84%; height: 4px; z-index: 0; }
.connector__line { stroke: var(--blue); stroke-width: 1.5; stroke-dasharray: 3 3; }
.pipe {
  position: relative; z-index: 1; background: var(--white);
  border: 1px solid var(--mint-line); border-radius: 14px; padding: 24px;
  box-shadow: var(--shadow-light); transition: all .2s ease;
}
.pipe:hover { transform: translateY(-3px); border-color: #c6d6d6; }
.pipe__step { color: var(--rust); display: block; margin-bottom: 14px; }
.pipe__copy { font-size: 15px; line-height: 1.5; color: var(--text-on-light); margin-bottom: 18px; }
.pipe__visual { border-radius: 10px; padding: 14px; font-size: 12px; }
.csv-snippet { background: var(--mint-1); font-family: 'JetBrains Mono', monospace; display: flex; flex-direction: column; gap: 4px; }
.csv-snippet code { color: var(--text-on-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.merge-visual { background: var(--mint-1); display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.merge-arrow { color: var(--muted-on-light); font-size: 16px; }
.std-visual { background: var(--mint-1); display: flex; flex-direction: column; gap: 8px; }
.std-row { display: flex; align-items: center; gap: 8px; color: var(--text-on-light); }
.check { color: var(--green); font-weight: 700; }
.reuse-visual { background: var(--mint-1); display: flex; align-items: center; gap: 12px; }
.match-glyph { color: var(--green); font-weight: 600; font-size: 13px; }

.integration { text-align: center; padding-top: 16px; border-top: 1px solid var(--mint-line); }
.integration__lead { font-size: 19px; font-weight: 600; margin-bottom: 16px; color: var(--text-on-light); }
.integration__chips { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }

/* =========================================================
   PRODUCT
   ========================================================= */
.product .eyebrow { display: block; }
.product__title { margin-bottom: 48px; max-width: 22ch; }
.product__grid { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: start; }
.product__dash .console__body { padding: 20px; }
.dash__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.dash__kpi { background: rgba(0,0,0,.14); border: 1px solid var(--petrol-line); border-radius: 10px; padding: 14px; }
.dash__kpi .data-label { color: var(--muted-on-dark); display: block; margin-bottom: 8px; }
.dash__kpi .kpi-rust { font-size: 22px; }
.dash__chart { margin-bottom: 20px; }
.dash__chart .data-label { color: var(--muted-on-dark); display: block; margin-bottom: 10px; }
.bars { width: 100%; height: 120px; }
.bars__axis { stroke: var(--petrol-line); stroke-width: 1; }
.bar { fill: var(--blue); }

.product__features { display: flex; flex-direction: column; gap: 8px; }
.feature { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--petrol-line); align-items: flex-start; }
.feature:last-child { border-bottom: none; }
.feature .dot { margin-top: 9px; flex-shrink: 0; }
.feature h3 { margin-bottom: 4px; }

.product__banner { position: relative; margin-top: 72px; height: 360px; overflow: hidden; }
.product__banner img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.product__banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 5%, rgba(29,43,42,.4) 50%, transparent); }
.product__banner figcaption {
  position: absolute; left: max(24px, calc((100% - var(--container)) / 2 + 24px)); top: 50%; transform: translateY(-50%);
  z-index: 2; color: var(--text-on-dark); font-size: clamp(22px, 3vw, 32px); font-weight: 700; max-width: 14ch; letter-spacing: -0.01em;
}

/* =========================================================
   TRUST
   ========================================================= */
.trust__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.trust__text .eyebrow { display: block; }
.trust__text .h2 { margin-bottom: 14px; }
.trust__badges { display: flex; gap: 24px; justify-content: flex-end; }
.badge-tile {
  background: var(--white); border: 1px solid var(--mint-line); border-radius: 14px;
  padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 16px;
  box-shadow: var(--shadow-light); flex: 1; max-width: 220px;
}
.badge-tile img { max-height: 120px; width: auto; }
.badge-tile .data-label { color: var(--muted-on-light); text-align: center; }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries .eyebrow { display: block; }
.industries .h2 { margin-bottom: 48px; }
.industries__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tag-card { padding: 28px; }
.tag-card__idx { display: flex; align-items: center; gap: 8px; color: var(--muted-on-dark); margin-bottom: 18px; }
.tag-card h3 { margin-bottom: 10px; min-height: 2.6em; }

/* =========================================================
   FOUNDERS
   ========================================================= */
.founders .eyebrow { display: block; }
.founders .h2 { margin-bottom: 48px; max-width: 24ch; }
.founders__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.founder-card {
  display: flex; gap: 24px; align-items: center;
  background: var(--white); border: 1px solid var(--mint-line); border-radius: 14px;
  padding: 28px; box-shadow: var(--shadow-light);
}
.founder-card__avatar { width: 96px; height: 96px; border-radius: 14px; overflow: hidden; flex-shrink: 0; position: relative; }
.founder-card__avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.monogram { background: var(--petrol); display: flex; align-items: center; justify-content: center; }
.monogram span:first-child { color: var(--text-on-dark); font-weight: 800; font-size: 30px; letter-spacing: -0.01em; }
.monogram__status { position: absolute; bottom: 8px; right: 8px; width: 12px; height: 12px; border: 2px solid var(--petrol); }
.founder-card h3 { margin-bottom: 2px; }
.founder-card .data-label { display: block; margin-bottom: 10px; }
.founders__note { margin-top: 32px; }

/* =========================================================
   BACKERS
   ========================================================= */
.backers__inner { text-align: center; }
.backers .eyebrow { display: block; }
.backers .h2 { margin-bottom: 36px; }
.backers__logo { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 36px; }
.backers__logo img { height: 40px; }
.backers__logo .data-label { color: var(--muted-on-dark); }
.backers__proof { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; color: var(--text-on-dark); font-size: 17px; }
.backers__proof .kpi-rust { font-size: 22px; }
.backers__proof .sep { color: var(--petrol-line); }

/* =========================================================
   CTA
   ========================================================= */
.cta__inner { text-align: center; max-width: 720px; margin-inline: auto; }
.cta__title { color: #fff; max-width: 100%; margin-inline: auto; margin-bottom: 18px; }
.cta__body { color: rgba(255,255,255,.92); margin-inline: auto; margin-bottom: 32px; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.cta__email { color: rgba(255,255,255,.85); letter-spacing: 0.06em; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding-block: 64px 32px; border-top: 1px solid var(--petrol-line); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
.footer__brand img:first-child { margin-bottom: 16px; }
.footer__brand p { margin-bottom: 20px; }
.footer__techstars { height: 24px; opacity: .85; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { margin-bottom: 4px; }
.footer__col a, .footer__col span { font-size: 15px; color: var(--text-on-dark); opacity: .8; }
.footer__col a:hover { opacity: 1; color: var(--rust); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--petrol-line); flex-wrap: wrap; gap: 12px; }
.footer__bottom a:hover { color: var(--rust); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .48s cubic-bezier(.16,1,.3,1), transform .48s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199px) {
  .container { max-width: 960px; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-block: 100px 80px; }
  .hero__texture { display: none; }
  .hero__btns .btn { flex: 1; }

  .problem__grid { grid-template-columns: 1fr; gap: 32px; }
  .how__head { grid-template-columns: 1fr; gap: 32px; }
  .product__grid { grid-template-columns: 1fr; gap: 40px; }
  .trust__inner { grid-template-columns: 1fr; gap: 32px; }
  .trust__badges { justify-content: center; }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .founders__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* pipeline -> vertical */
  .pipeline { grid-template-columns: 1fr; gap: 16px; }
  .pipeline__connector { display: none; }
}

@media (max-width: 760px) {
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .dash__kpis { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding-block: 64px; }
  .strip { padding-block: 48px; }
  .industries__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .badge-tile { max-width: none; }
  .badge-tile img { max-height: 96px; }
  .trust__badges { flex-direction: column; align-items: center; }
  .founder-card { flex-direction: column; text-align: center; align-items: center; }
  .tag-card h3 { min-height: 0; }
  .product__banner figcaption { left: 24px; right: 24px; }
}

@media (max-width: 480px) {
  .hero__meta { flex-wrap: wrap; }
  .cta__btns .btn { width: 100%; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .parts__row { opacity: 1 !important; transform: none !important; transition: none !important; }
  .spark__line { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
}
