/* =========================================================
   BW Software Development
   Palette: warm bone / ink / deep petrol green / muted gold
   Motion rule: only transform + opacity are ever animated.
   ========================================================= */

:root {
  /* colour */
  --bone:       #F7F4EE;
  --bone-2:     #EFEAE1;
  --paper:      #FFFDFA;
  --ink:        #14181A;
  --ink-2:      #3E464A;
  --ink-3:      #6E7780;
  --rule:       #E2DCD1;
  --green:      #0E4F49;
  --green-700:  #0A3B36;
  --green-100:  #DCE9E6;
  --gold:       #B0873E;
  --gold-soft:  #E8D9BC;

  /* type */
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* space */
  --wrap: 1200px;
  --gut: clamp(20px, 5vw, 48px);
  --sec-y: clamp(72px, 10vw, 136px);

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ── reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
p { margin: 0 0 1em; }
a { color: inherit; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--green); color: var(--paper); padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 3px; }

/* ── shared type ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 20px;
}
.section-head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.12;
  letter-spacing: -.015em;
}
.section-lede { margin-top: 22px; color: var(--ink-2); max-width: 60ch; }

.section { padding-block: var(--sec-y); position: relative; }
.section-tint { background: var(--bone-2); }
.section-dark { background: var(--green); color: var(--bone); }
.section-dark .eyebrow { color: #9DBDB7; }
.section-dark .section-lede { color: #C4D8D4; }

/* ── buttons ─────────────────────────────────────────── */
.btn {
  --btn-y: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--btn-y) 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px; font-weight: 550; letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform .35s var(--ease-out), background-color .25s, border-color .25s, color .25s, box-shadow .35s var(--ease-out);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .08s; }

.btn-primary { background: var(--green); color: var(--paper); box-shadow: 0 1px 2px rgba(14,79,73,.24); }
.btn-primary:hover { background: var(--green-700); box-shadow: 0 10px 24px -8px rgba(14,79,73,.5); }

.btn-ghost { background: transparent; border-color: var(--rule); color: var(--ink); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.section-dark .btn-ghost { border-color: rgba(247,244,238,.28); color: var(--bone); }
.section-dark .btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

.btn-sm { --btn-y: 10px; padding-inline: 18px; font-size: 14px; }
.btn-block { width: 100%; }
.arr { display: inline-block; transition: transform .35s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

/* ── header ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,238,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s;
}
.site-header.is-stuck { border-bottom-color: var(--rule); background: rgba(247,244,238,.9); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-mark {
  flex: none;
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--green); color: var(--bone);
  font-family: var(--serif); font-weight: 700; font-size: 15px; letter-spacing: .01em;
  display: grid; place-items: center;
  transition: transform .4s var(--ease-out);
}
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.brand-text em {
  font-style: normal; font-family: var(--mono);
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3);
}

.nav { display: flex; gap: 30px; }
.nav a {
  position: relative;
  font-size: 15px; color: var(--ink-2); text-decoration: none;
  padding-block: 6px;
  transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--green);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.burger { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .2s;
}
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  padding: 8px var(--gut) 26px;
  border-top: 1px solid var(--rule);
  background: var(--bone);
}
.mobile-nav a {
  padding: 15px 0; text-decoration: none; font-size: 17px;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav .mobile-cta {
  margin-top: 18px; border: 0; text-align: center;
  background: var(--green); color: var(--paper); border-radius: 4px; padding: 15px;
}

/* ── hero ────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding-top: clamp(64px, 9vw, 108px); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px);          /* static: never animated */
  opacity: .5;
  will-change: transform;
}
.blob-a {
  width: 620px; height: 620px; top: -230px; right: -150px;
  background: radial-gradient(circle at 30% 30%, #BFD8D3, transparent 68%);
  animation: drift-a 26s var(--ease) infinite alternate;
}
.blob-b {
  width: 520px; height: 520px; top: 190px; left: -190px;
  background: radial-gradient(circle at 60% 40%, var(--gold-soft), transparent 66%);
  opacity: .45;
  animation: drift-b 32s var(--ease) infinite alternate;
}
@keyframes drift-a { to { transform: translate3d(-56px, 46px, 0) scale(1.08); } }
@keyframes drift-b { to { transform: translate3d(48px, -38px, 0) scale(1.06); } }

.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(20,24,26,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,24,26,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, #000 20%, transparent 78%);
}

.hero-inner { position: relative; z-index: 1; padding-bottom: clamp(56px, 8vw, 96px); }

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.06;
  letter-spacing: -.028em;
  margin: 0 0 28px;
}
/* each line is its own block, so the break points are ours, not the browser's */
.hero-title .line { display: block; text-wrap: balance; }
.hero-title em {
  font-style: italic;
  color: var(--green);
}
.hero-lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); max-width: 58ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: clamp(52px, 7vw, 84px);
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
.stats > div { background: var(--bone); padding: 22px 24px; }
.stats dt {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px;
}
.stats dd { font-size: 15px; font-weight: 550; letter-spacing: -.01em; }

/* ticker */
.hero-strip {
  border-block: 1px solid var(--rule);
  background: var(--paper);
  overflow: hidden;
  position: relative; z-index: 1;
}
.ticker {
  display: flex; align-items: center; gap: 18px;
  padding-block: 15px;
  width: max-content;
  animation: slide 46s linear infinite;
  will-change: transform;
}
.ticker span {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3); white-space: nowrap;
}
.ticker i { color: var(--gold); font-style: normal; }
@keyframes slide { to { transform: translate3d(-50%, 0, 0); } }
.hero-strip:hover .ticker { animation-play-state: paused; }

/* ── services cards ──────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s var(--ease-out);
  will-change: transform;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--green-100), transparent 55%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: #CFC7B8; box-shadow: 0 22px 44px -26px rgba(20,24,26,.34); }
.card:hover::before { opacity: .55; }
.card > * { position: relative; }

.card-no {
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: var(--gold);
  display: block; margin-bottom: 18px;
}
.card h3 { font-size: clamp(21px, 2vw, 26px); margin-bottom: 14px; letter-spacing: -.02em; }
.card p { color: var(--ink-2); font-size: 16px; margin-bottom: 22px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags li {
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
  padding: 5px 10px; border-radius: 3px;
  background: var(--bone-2); color: var(--ink-2);
  border: 1px solid var(--rule);
}

/* ── steps ───────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: s; }
.step {
  padding: 34px 28px 34px 0;
  border-top: 1px solid rgba(247,244,238,.22);
  position: relative;
}
.step + .step { padding-left: 28px; border-left: 1px solid rgba(247,244,238,.22); }
.step::after {
  content: ""; position: absolute; top: -1px; left: 0; height: 2px; width: 100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--ease-out);
}
.step.is-in::after { transform: scaleX(1); }
.step-no {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  color: var(--gold-soft); display: block; margin-bottom: 16px;
}
.step h3 { font-size: 20px; margin-bottom: 12px; }
.step p { color: #C4D8D4; font-size: 15px; margin: 0; }

/* ── split / principles ──────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.split-rev .split-text { order: 2; }
.split-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.14; margin-bottom: 24px;
}
.split-text p { color: var(--ink-2); }
.section-dark .split-text p { color: #C4D8D4; }
.split-text .btn { margin-top: 12px; }

.principles { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
.principles li { background: var(--paper); padding: 26px 28px; transition: background-color .35s; }
.principles li:hover { background: var(--bone); }
.principles h3 { font-size: 17px; margin-bottom: 8px; }
.principles p { margin: 0; font-size: 15px; color: var(--ink-2); }

.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 28px; margin-top: 34px; }
.facts dt {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: #9DBDB7; margin-bottom: 6px;
}
.facts dd { font-size: 15px; color: var(--bone); }

/* ── industries ──────────────────────────────────────── */
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
.ind {
  background: var(--bone-2);
  padding: clamp(26px, 3vw, 36px);
  position: relative;
  transition: background-color .4s var(--ease);
}
.ind::before {
  content: ""; position: absolute; left: 0; top: 0; width: 2px; height: 100%;
  background: var(--green);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s var(--ease-out);
}
.ind:hover { background: var(--paper); }
.ind:hover::before { transform: scaleY(1); transform-origin: top; }
.ind h3 { font-size: 18px; margin-bottom: 10px; }
.ind p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ── plans ───────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: clamp(28px, 3vw, 38px);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  will-change: transform;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(20,24,26,.3); }
.plan-feature {
  position: relative;
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.plan-flag {
  position: absolute; top: -11px; left: clamp(28px, 3vw, 38px);
  background: var(--green); color: var(--paper);
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
}
.plan h3 { font-size: 22px; margin-bottom: 6px; }
.plan-meta {
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em;
  color: var(--gold); margin-bottom: 18px;
}
.plan > p:not(.plan-meta) { font-size: 15px; color: var(--ink-2); }
.ticks { display: grid; gap: 10px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--rule); }
.ticks li { position: relative; padding-left: 22px; font-size: 14px; color: var(--ink-2); }
.ticks li::before {
  content: ""; position: absolute; left: 2px; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}

/* ── portrait ────────────────────────────────────────── */
.portrait { margin: 0; }
.portrait-img {
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(247,244,238,.18);
  aspect-ratio: 4 / 5;
}
.portrait-img svg { width: 100%; height: 100%; }
.portrait figcaption {
  margin-top: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: #9DBDB7;
}

/* ── contact ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 84px); align-items: start; }
.contact-intro h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.12; margin-bottom: 20px;
}
.contact-intro > p { color: var(--ink-2); max-width: 46ch; }

.contact-list { margin-top: 38px; display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
.contact-list li {
  background: var(--paper);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 20px;
}
.cl-label { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.contact-list a { color: var(--green); text-decoration: none; font-weight: 550; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 3px; }

.form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: clamp(26px, 3.4vw, 42px);
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block; margin-bottom: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
}
.opt { font-weight: 400; color: var(--ink-3); }

.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 5px;
  font-size: 15px;
  transition: border-color .25s, box-shadow .25s, background-color .25s;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: #A9A296; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(14,79,73,.12);
}
.field.has-err input, .field.has-err textarea, .field.has-err select { border-color: #B4483C; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 15px; top: 50%;
  width: 7px; height: 7px; margin-top: -5px;
  border-right: 1.5px solid var(--ink-3); border-bottom: 1.5px solid var(--ink-3);
  transform: rotate(45deg);
  pointer-events: none;
}
.select-wrap select { padding-right: 38px; cursor: pointer; }

.err { margin: 7px 0 0; font-size: 12.5px; color: #B4483C; min-height: 0; }
.field-foot { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.counter { font-family: var(--mono); font-size: 11px; color: var(--ink-3); flex: none; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent { display: flex; gap: 11px; align-items: flex-start; margin: 6px 0 4px; cursor: pointer; }
.consent input {
  flex: none; width: 17px; height: 17px; margin-top: 3px;
  accent-color: var(--green); cursor: pointer;
}
.consent span { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }

#submit-btn { margin-top: 20px; }
#submit-btn[disabled] { opacity: .65; pointer-events: none; }
.spinner {
  display: none;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35); border-top-color: var(--paper);
  animation: spin .7s linear infinite;
}
.is-sending .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-note { margin: 16px 0 0; font-size: 13px; color: var(--ink-3); text-align: center; }
.form-note a { color: var(--green); }

.form-status {
  margin: 16px 0 0; padding: 0; font-size: 14px; border-radius: 5px;
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .4s var(--ease-out);
}
.form-status.show { max-height: 200px; padding: 13px 15px; }
.form-status.ok { background: var(--green-100); color: var(--green-700); }
.form-status.bad { background: #F7E2DF; color: #8E3529; }

/* ── footer ──────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #B9C0C4; padding-top: clamp(56px, 7vw, 80px); }
.footer-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(36px, 5vw, 72px);
  padding-bottom: 52px;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand .brand-mark { background: var(--green); color: var(--bone); }
.footer-brand p { margin: 0; font-size: 14px; line-height: 1.7; }
.footer-brand strong { color: var(--bone); font-weight: 600; }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-nav h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: #6E7780; margin-bottom: 14px; font-weight: 400;
}
.footer-nav a, .footer-nav span { display: block; font-size: 14px; text-decoration: none; padding-block: 5px; }
.footer-nav a { transition: color .25s; }
.footer-nav a:hover { color: var(--gold-soft); }

.footer-base {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-base p { margin: 0; font-size: 12.5px; color: #6E7780; }

/* ── reveal on scroll ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }
/* if JS never runs, show everything */
.no-js .reveal { opacity: 1; transform: none; }

/* ── responsive ──────────────────────────────────────── */
@media (max-width: 1000px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step + .step { padding-left: 0; border-left: 0; }
  .steps .step:nth-child(even) { padding-left: 28px; border-left: 1px solid rgba(247,244,238,.22); }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .plan-feature { order: -1; }
  .contact-grid, .split { grid-template-columns: 1fr; }
  .split-rev .split-text { order: 0; }
  .portrait-img { aspect-ratio: 16 / 9; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; margin-left: auto; }
  .mobile-nav { display: flex; }
  .mobile-nav[hidden] { display: none; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps .step:nth-child(even) { padding-left: 0; border-left: 0; }
  .industries { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .facts { gap: 18px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .hero-title { max-width: none; }
}

@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .brand-text em { display: none; }
  .contact-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ── motion & print ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .blob { animation: none; }
  .ticker { animation: none; }
}

@media print {
  .site-header, .hero-bg, .hero-strip, .form, .burger { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
