/* =========================================================
   Sowtradwes — style.css
   1. Tokens
   2. Reset & base
   3. Typography
   4. Layout primitives
   5. Buttons & links
   6. Navbar
   7. Hero
   8. Shared components (cards, chips, ticks, callouts)
   9. Sections
  10. Forms
  11. Footer
  12. Motion & responsive
   ========================================================= */

/* ---------- 1. Tokens ---------- */
/* ---------- 1. Tokens ----------
   Palette sampled from the Rare Design Studio CRM:
   espresso sidebar, warm white canvas, copper accent, one soft blue for links.
   -------------------------------- */
   .brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
:root {
  --espresso-900: #241D19;
  --espresso-800: #2F2723;
  --espresso-700: #3B312B;
  --espresso-600: #4A3E37;

  --bone:   #F8F6F4;
  --paper:  #FFFFFF;

  --copper:      #A85A2B;
  --copper-600:  #8E4A21;
  --copper-400:  #C4784A;
  --copper-300:  #D9A57C;
  --copper-tint: rgba(168, 90, 43, .10);

  --sage: #7C9E6B;          /* status only, echoing the CRM's green checks */
  --info: #3672B8;          /* the CRM's badge blue, used sparingly */

  --grad:      linear-gradient(180deg, #B4642E 0%, #9A5223 100%);
  --grad-soft: linear-gradient(180deg, rgba(168,90,43,.13), rgba(168,90,43,.07));

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shell: 1200px;
  --gut: clamp(18px, 4vw, 32px);
  --band-y: clamp(74px, 9vw, 128px);

  --ease: cubic-bezier(.22, .68, .36, 1);
  --fast: .15s var(--ease);
  --med:  .3s var(--ease);
  --slow: .55s var(--ease);

  --font: "Instrument Sans", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --bg: var(--espresso-900);
  --fg: #F2EDE8;
  --fg-dim: #BCAEA4;
  --fg-faint: #94857B;
  --surface: rgba(255,255,255,.035);
  --surface-2: rgba(255,255,255,.06);
  --chip: #332A25;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.2);
  --shadow: none;
  --accent-ink: var(--copper-300);
}

.band--dark {
  --bg: var(--espresso-900);
  --fg: #F2EDE8;
  --fg-dim: #BCAEA4;
  --fg-faint: #94857B;
  --surface: #2B231F;
  --surface-2: #332A25;
  --chip: #352C27;
  --line: #40352E;
  --line-strong: #59493F;
  --shadow: none;
  --accent-ink: var(--copper-300);
}

.band--light {
  --bg: var(--bone);
  --fg: #241D19;
  --fg-dim: #5D5048;
  --fg-faint: #7A6B63;
  --surface: var(--paper);
  --surface-2: var(--paper);
  --chip: #F4F1ED;
  --line: #E7E1DB;
  --line-strong: #D3C9C0;
  --shadow: 0 1px 2px rgba(36,29,25,.05), 0 8px 20px -14px rgba(36,29,25,.22);
  --accent-ink: var(--copper-600);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(15.5px, .95rem + .12vw, 17px);
  line-height: 1.65;
  color: #F2EDE8;
  background: var(--espresso-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

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

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1em; height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--copper);
  color: #fff;
  font-weight: 600;
  transition: top var(--fast);
}
.skip-link:focus { top: 16px; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.024em;
  color: var(--fg);
  text-wrap: balance;
}

.h2 {
  font-size: clamp(1.9rem, 1.1rem + 2.4vw, 2.95rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.h3 { font-size: clamp(1.18rem, 1.05rem + .45vw, 1.5rem); }
.h4 { font-size: clamp(1.06rem, 1rem + .25vw, 1.2rem); letter-spacing: -.015em; }
.h5 { font-size: .97rem; letter-spacing: -.01em; }

.lede {
  font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem);
  color: var(--fg-dim);
  max-width: 54ch;
}

/* ---------- 4. Layout primitives ---------- */
.band {
  position: relative;
  padding: var(--band-y) 0;
  background: var(--bg);
  color: var(--fg);
  isolation: isolate;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.shell--narrow { max-width: 880px; }

.sec-head {
  max-width: 62ch;
  margin-bottom: clamp(38px, 5vw, 62px);
}
.sec-head__sub {
  color: var(--fg-dim);
  font-size: clamp(1rem, .96rem + .28vw, 1.14rem);
  max-width: 58ch;
  margin: 0;
}

/* decorative background grid + glow */
.grid-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(46rem 30rem at 82% -10%, rgba(168,90,43,.22), transparent 64%),
    radial-gradient(38rem 28rem at 2% 102%, rgba(168,90,43,.10), transparent 66%),
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: auto, auto, 52px 52px, 52px 52px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 20%, #000 30%, transparent 92%);
          mask-image: radial-gradient(120% 90% at 50% 20%, #000 30%, transparent 92%);
}
.grid-glow--soft { opacity: .45; }

/* ---------- 5. Buttons & links ---------- */
.btn {
  --btn-pad: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--btn-pad);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  background: none;
  transition: transform var(--fast), box-shadow var(--med), background-color var(--fast), border-color var(--fast), color var(--fast);
}
.btn .icon { font-size: 1.05em; stroke-width: 2; }
.btn--sm { --btn-pad: 10px 18px; font-size: .88rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--copper);
  border-color: var(--copper-600);
  color: #FFF7F1;
}
.btn--primary:hover { background: var(--copper-600); }
.btn--primary:active { background: #7C3F1B; }

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--fg);
  background: var(--surface);
}
.btn--ghost:hover { border-color: var(--copper-400); color: var(--accent-ink); }

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--accent-ink);
}
.link-cta:hover { color: var(--copper); }
.link-cta .icon { transition: transform var(--fast); }
.link-cta:hover .icon { transform: translateX(4px); }

/* ---------- 6. Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36,29,25,.72);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background var(--med), border-color var(--med), box-shadow var(--med);
}
.site-header.is-stuck {
  background: rgba(36,29,25,.94);
  border-bottom-color: #40352E;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  display: grid;
  gap: 3px;
  padding: 9px 8px;
  border-radius: var(--radius-sm);
  background: var(--copper);
}
.brand__bar { display: block; height: 2.5px; border-radius: 1px; background: #FFF3EA; }
.brand__bar:nth-child(1) { width: 18px; }
.brand__bar:nth-child(2) { width: 18px; opacity: .8; }
.brand__bar:nth-child(3) { width: 11px; opacity: .6; }
.brand__name {
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -.03em;
  color: #F6F1EC;
}

.nav__links { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 26px); }
.nav__links > ul { display: flex; align-items: center; gap: clamp(10px, 1.3vw, 20px); }
.nav__links a {
  position: relative;
  font-size: .9rem;
  font-weight: 500;
  color: #BCAEA4;
  padding: 6px 2px;
  transition: color var(--fast);
}
.nav__links > ul a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--copper-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--med);
}
.nav__links > ul a:hover { color: #fff; }
.nav__links > ul a:hover::after,
.nav__links > ul a.is-current::after { transform: scaleX(1); }
.nav__links > ul a.is-current { color: #fff; }
.nav__cta { color: #fff !important; }

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  font-size: 1.35rem;
  border: 1px solid #4A3E37;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #F2EDE8;
  cursor: pointer;
}

/* ---------- 7. Hero ---------- */
.hero { padding-top: clamp(56px, 7vw, 96px); overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 7px 15px 7px 12px;
  border: 1px solid #40352E;
  border-radius: var(--radius-sm);
  background: #2B231F;
  font-size: .82rem;
  font-weight: 600;
  color: #C8BAB0;
}
.hero__kicker::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.hero__title {
  font-size: clamp(2.4rem, 1.1rem + 4.9vw, 4.25rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.042em;
  margin: 0 0 22px;
  color: #F7F3EF;
}

.hero__lede {
  max-width: 56ch;
  font-size: clamp(1.02rem, .97rem + .32vw, 1.18rem);
  color: #BCAEA4;
  margin-bottom: 30px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 26px; }

.hero__note {
  max-width: 48ch;
  padding-left: 16px;
  border-left: 2px solid var(--copper);
  font-size: .95rem;
  color: #A2938A;
}

/* hero system board */
.hero__visual { position: relative; }

.sysboard {
  position: relative;
  padding: 0 0 16px;
  border: 1px solid #443831;
  border-radius: var(--radius-lg);
  background: var(--espresso-800);
  overflow: hidden;
  box-shadow: 0 40px 80px -46px rgba(0,0,0,.9);
}
.sysboard__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  margin-bottom: 18px;
  background: var(--espresso-700);
  border-bottom: 1px solid #4A3E37;
}
.sysboard__crumb { font-size: .82rem; font-weight: 500; color: #C8BAB0; }
.sysboard__crumb b { font-weight: 600; color: #F2EDE8; }
.sysboard__crumb span { margin: 0 7px; color: #7C6A5F; }
.sysboard__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--sage);
}
.sysboard__live i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: blip 2.2s var(--ease) infinite;
}
@keyframes blip { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.spine { position: relative; display: grid; gap: 8px; padding: 0 18px; }
.spine::before {
  content: "";
  position: absolute;
  left: 51px; top: 20px; bottom: 20px;
  width: 1px;
  background: #56463C;
}
.spine::after {
  content: "";
  position: absolute;
  left: 48px; top: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--copper-400);
  box-shadow: 0 0 10px 2px rgba(196,120,74,.55);
  animation: travel 6.5s linear infinite;
}
@keyframes travel {
  0%   { top: 12px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: calc(100% - 20px); opacity: 0; }
}

.spine__node {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid #3D322C;
  border-radius: var(--radius-sm);
  background: #332A25;
  transition: border-color var(--med), background var(--med);
}
.spine__icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  font-size: 1rem;
  border-radius: var(--radius-xs);
  background: #453931;
  color: #CDBCB0;
  transition: background var(--med), color var(--med), box-shadow var(--med);
}
.spine__label { font-weight: 600; font-size: .92rem; color: #F0EAE5; }
.spine__meta { font-size: .75rem; color: #9A8A80; }

.spine__node.is-active {
  border-color: var(--copper);
  background: #3A2C23;
}
.spine__node.is-active .spine__icon {
  background: var(--copper);
  color: #FFF3EA;
}

.sysboard__foot {
  margin: 16px 18px 0;
  padding-top: 14px;
  border-top: 1px solid #40352E;
  text-align: center;
  font-size: .79rem;
  font-weight: 500;
  color: #9A8A80;
}

/* ---------- 8. Shared components ---------- */
.card {
  position: relative;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: border-color var(--med), background var(--med);
}

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 4px 0 18px; }
.chips li {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: var(--chip);
  font-size: .78rem;
  font-weight: 500;
  color: var(--fg-dim);
  transition: border-color var(--fast), color var(--fast);
}
.chips--grid { align-content: start; margin-bottom: 0; }

.ticks { display: grid; gap: 9px; margin: 6px 0 20px; }
.ticks li {
  position: relative;
  padding-left: 27px;
  font-size: .93rem;
  color: var(--fg-dim);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--copper-tint);
  border: 1px solid rgba(168,90,43,.35);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 3.8px; top: .8em;
  width: 6px; height: 3px;
  border-left: 1.7px solid var(--copper);
  border-bottom: 1.7px solid var(--copper);
  transform: rotate(-45deg);
}
.ticks--dense { gap: 6px; }
.ticks--dense li { font-size: .88rem; }
.ticks--two { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; }

.callout {
  margin: 0;
  padding: 15px 20px;
  border-left: 3px solid var(--copper);
  background: var(--copper-tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  font-size: .96rem;
  color: var(--fg);
}
.callout--wide { max-width: 72ch; margin-top: clamp(30px, 4vw, 48px); font-weight: 500; color: var(--fg-dim); }

.bigline {
  margin: clamp(36px, 4.5vw, 56px) 0 0;
  text-align: center;
  font-size: clamp(1.25rem, 1rem + 1.1vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -.028em;
  color: var(--fg);
}
.bigline::before {
  content: "";
  display: block;
  width: 48px; height: 2px;
  margin: 0 auto 24px;
  background: var(--copper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.split--rev .split__visual { order: -1; }

.duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

/* ---------- 9. Sections ---------- */

/* 9.1 Who we are */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  margin-bottom: clamp(38px, 5vw, 62px);
}
.intro .h2 { margin: 0; }
.intro__text { color: var(--fg-dim); font-size: 1.02rem; max-width: 56ch; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.pillar__icon,
.svc__icon,
.ind__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  margin-bottom: 18px;
  font-size: 1.22rem;
  border-radius: var(--radius-sm);
  background: var(--copper-tint);
  border: 1px solid rgba(168,90,43,.28);
  color: var(--accent-ink);
  transition: background var(--med), color var(--med);
}
.pillar p, .why p, .ind p { color: var(--fg-dim); font-size: .95rem; margin: 0; }
.pillar:hover, .why:hover, .ind:hover { border-color: var(--copper-400); }
.pillar:hover .pillar__icon, .ind:hover .ind__icon { background: var(--copper); color: #FFF3EA; }

/* growth ladder */
.ladder {
  margin-top: clamp(34px, 4.5vw, 56px);
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.ladder__lead {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: .98rem;
  color: var(--fg);
}
.ladder__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
}
.ladder__track li {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: var(--chip);
  font-size: .82rem;
  font-weight: 500;
  color: var(--fg-dim);
  transition: color var(--fast), border-color var(--fast);
}
.ladder__track li:hover { color: var(--accent-ink); border-color: var(--copper-400); }
.ladder__track li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px; top: 50%;
  width: 6px; height: 6px;
  margin-top: -3px;
  border-right: 1.6px solid var(--line-strong);
  border-top: 1.6px solid var(--line-strong);
  transform: rotate(45deg);
}

/* 9.2 Services */
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.svc { display: flex; flex-direction: column; }
.svc > p { color: var(--fg-dim); font-size: .96rem; }
.svc:hover { border-color: var(--copper-400); }
.svc:hover .svc__icon { background: var(--copper); color: #FFF3EA; }
.svc__tag {
  margin: 4px 0 16px;
  font-weight: 600;
  font-size: .94rem;
  color: var(--fg);
}
.svc--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  background:
    radial-gradient(34rem 18rem at 95% 0%, rgba(168,90,43,.14), transparent 68%),
    var(--surface);
}
.svc--wide .svc__lead { display: flex; flex-direction: column; align-items: flex-start; }
.svc--wide .link-cta { margin-top: 6px; }

/* 9.3 Roles / CMS */
.roles {
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.roles__list { position: relative; display: grid; gap: 8px; padding-left: 24px; }
.roles__list::before {
  content: "";
  position: absolute;
  left: 7px; top: 22px; bottom: 22px;
  width: 1px;
  background: var(--line-strong);
}
.role {
  position: relative;
  display: grid;
  gap: 1px;
  padding: 10px 16px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--chip);
  cursor: pointer;
  transition: border-color var(--fast), background var(--fast), transform var(--fast);
}
.role::before {
  content: "";
  position: absolute;
  left: -21px; top: 50%;
  width: 9px; height: 9px;
  margin-top: -4.5px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background var(--fast), box-shadow var(--fast);
}
.role__name { font-weight: 600; font-size: .95rem; color: var(--fg); }
.role__sub { font-size: .78rem; color: var(--fg-faint); }
.role:hover { border-color: var(--copper-400); }
.role[aria-selected="true"] {
  border-color: var(--copper);
  background: var(--copper-tint);
}
.role[aria-selected="true"]::before { background: var(--copper); }

.roles__panels { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.rolepanel .h5 { margin-bottom: 12px; color: var(--fg-dim); font-weight: 600; }
.perm { display: grid; gap: 7px; }
.perm li {
  position: relative;
  padding-left: 26px;
  font-size: .89rem;
  color: var(--fg-faint);
  text-decoration: line-through;
  text-decoration-color: var(--line-strong);
}
.perm li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 15px; height: 15px;
  border-radius: 3px;
  border: 1.5px solid var(--line-strong);
}
.perm li[data-on] { color: var(--fg); text-decoration: none; font-weight: 500; }
.perm li[data-on]::before { background: var(--copper); border-color: var(--copper-600); }
.perm li[data-on]::after {
  content: "";
  position: absolute;
  left: 4px; top: .72em;
  width: 6px; height: 3px;
  border-left: 1.8px solid #fff;
  border-bottom: 1.8px solid #fff;
  transform: rotate(-45deg);
}

/* 9.4 Workspace & workflow */
.feature { display: flex; flex-direction: column; }
.feature:hover { border-color: var(--copper-400); }
.feature:hover .svc__icon { background: var(--copper); color: #FFF3EA; }

.flowbox {
  margin-top: clamp(20px, 2.6vw, 30px);
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(40rem 20rem at 18% -12%, rgba(168,90,43,.13), transparent 70%),
    var(--surface);
  box-shadow: var(--shadow);
}
.flowbox__head { max-width: 62ch; margin-bottom: 30px; }
.flowbox__head p { color: var(--fg-dim); font-size: .96rem; margin: 0; }

.flow { position: relative; }
.flow__rail {
  position: absolute;
  left: 7.143%; right: 7.143%; top: 17px;
  height: 3px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden;
}
.flow__fill {
  display: block;
  height: 100%;
  width: 8%;
  border-radius: 3px;
  background: var(--copper);
  transition: width var(--slow) var(--ease);
}
.flow__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}
.flow__step {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
  padding: 4px 2px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--fg-faint);
  transition: color var(--fast);
}
.flow__dot {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  background: var(--bg);
  transition: all var(--med);
}
.flow__name { font-size: .82rem; font-weight: 600; text-align: center; }
.flow__step:hover { color: var(--fg-dim); }
.flow__step.is-done .flow__dot { border-color: var(--copper); background: var(--copper); }
.flow__step.is-done { color: var(--fg-dim); }
.flow__step.is-active {
  color: var(--fg);
}
.flow__step.is-active .flow__dot {
  border-color: var(--copper-600);
  background: var(--copper);
  transform: scale(1.45);
  box-shadow: 0 0 0 5px var(--copper-tint);
}
.flow__detail {
  max-width: 62ch;
  margin: 30px auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--fg-dim);
  min-height: 3em;
}

/* 9.5 Industries */
.inds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.ind__icon { width: 42px; height: 42px; font-size: 1.2rem; margin-bottom: 14px; }
.ind--ask {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px clamp(18px, 3vw, 44px);
  border-style: dashed;
  background: var(--grad-soft);
}
.ind--ask h3 { margin: 0; flex: 0 1 auto; }
.ind--ask p { margin: 0; flex: 1 1 300px; }
.ind--ask .link-cta { margin: 0; padding-top: 0; }

/* 9.6 Ecosystem */
.eco {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(36rem 22rem at 88% 112%, rgba(168,90,43,.16), transparent 66%),
    var(--surface);
  box-shadow: var(--shadow);
}
.eco__ring { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.eco__node {
  position: relative;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xs);
  background: var(--chip);
  font-size: .86rem;
  font-weight: 500;
  color: var(--fg-dim);
  cursor: pointer;
  transition: all var(--med);
}
.eco__node::after {
  content: "";
  position: absolute;
  right: -11px; top: 50%;
  width: 7px; height: 1.6px;
  background: var(--line-strong);
  transform: translateY(-50%);
}
.eco__node:last-child::after { display: none; }
.eco__node:hover { color: var(--fg); border-color: var(--copper-400); }
.eco__node.is-active {
  border-color: var(--copper-600);
  background: var(--copper);
  color: #FFF3EA;
  font-weight: 600;
}
.eco__node.is-lit { border-color: var(--copper-400); color: var(--accent-ink); }

.eco__detail {
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  min-height: 190px;
}
.eco__detail p { color: var(--fg-dim); font-size: .96rem; }
.eco__flowsto {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .84rem;
  font-weight: 600;
  color: var(--accent-ink) !important;
}

/* 9.7 Process */
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  counter-reset: step;
}
.step {
  position: relative;
  padding: 26px 20px 24px;
  border-top: 2px solid var(--line);
  transition: border-color var(--med);
}
.step::after {
  content: "";
  position: absolute;
  left: 0; top: -2px;
  width: 0; height: 2px;
  background: var(--copper);
  transition: width var(--slow) var(--ease);
}
.step.is-visible::after { width: 100%; }
.step__num {
  display: block;
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 700;
  font-feature-settings: "tnum";
  color: var(--accent-ink);
}
.step p { margin: 0; font-size: .92rem; color: var(--fg-dim); }

/* 9.8 Plans */
.planswitch {
  position: relative;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  margin-bottom: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.planswitch__glider {
  position: absolute;
  top: 5px; left: 5px;
  height: calc(100% - 10px);
  border-radius: var(--radius-xs);
  background: var(--copper);
  transition: transform var(--med), width var(--med);
}
.planswitch__btn {
  position: relative;
  z-index: 1;
  padding: 9px 22px;
  border: 0;
  border-radius: var(--radius-xs);
  background: none;
  font-size: .9rem;
  font-weight: 600;
  color: var(--fg-dim);
  cursor: pointer;
  transition: color var(--med);
}
.planswitch__btn.is-active { color: #FFF3EA; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}
.plan { display: flex; flex-direction: column; }
.plan__name {
  margin: 0 0 6px;
  font-size: 1.3rem;
  letter-spacing: -.03em;
}
.plan__for { font-size: .93rem; color: var(--fg-dim); margin-bottom: 18px; }
.plan__inherit {
  margin: 0 0 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent-ink);
}
.plan .ticks { margin-bottom: 24px; }
.plan .btn { margin-top: auto; }
.plan.is-active {
  border-color: var(--copper);
  background:
    radial-gradient(26rem 16rem at 50% -24%, rgba(168,90,43,.16), transparent 70%),
    var(--surface);
  box-shadow: inset 0 2px 0 var(--copper), var(--shadow);
}
.plans__note {
  margin-top: clamp(24px, 3vw, 34px);
  font-size: .95rem;
  color: var(--fg-dim);
}

/* 9.9 SEO / SERP visual */
.serp {
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.serp__bar {
  background: var(--chip);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .88rem;
  color: var(--fg-dim);
}
.serp__bar .icon { font-size: 1.05rem; }
.serp__result { display: grid; gap: 4px; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--bone); border: 1px solid var(--line); }
.serp__crumb { font-size: .76rem; color: var(--fg-faint); }
.serp__title { font-size: 1.02rem; font-weight: 600; color: var(--info); }
.serp__desc { font-size: .86rem; color: var(--fg-dim); }
.serp__stats { display: grid; gap: 14px; margin: 22px 0 16px; }
.stat { display: grid; grid-template-columns: 92px 1fr; align-items: end; gap: 14px; }
.stat__label { font-size: .8rem; font-weight: 600; color: var(--fg-faint); }
.stat__bars { display: flex; align-items: flex-end; gap: 6px; height: 46px; }
.stat__bars i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: var(--copper);
  opacity: .85;
  transform-origin: bottom;
}
.stat__bars i:nth-child(1) { height: 28%; }
.stat__bars i:nth-child(2) { height: 40%; }
.stat__bars i:nth-child(3) { height: 36%; }
.stat__bars i:nth-child(4) { height: 58%; }
.stat__bars i:nth-child(5) { height: 74%; }
.stat__bars i:nth-child(6) { height: 100%; }
.stat__bars--alt i { background: var(--sage); }
.stat__bars--alt i:nth-child(1) { height: 20%; }
.stat__bars--alt i:nth-child(2) { height: 30%; }
.stat__bars--alt i:nth-child(3) { height: 26%; }
.stat__bars--alt i:nth-child(4) { height: 46%; }
.stat__bars--alt i:nth-child(5) { height: 62%; }
.stat__bars--alt i:nth-child(6) { height: 86%; }
.serp__foot { font-size: .84rem; color: var(--fg-faint); margin: 0; }

/* 9.10 Projects */
.works {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.work { display: flex; flex-direction: column; }
.work > p { color: var(--fg-dim); font-size: .95rem; margin-bottom: 20px; }
.work .btn { align-self: flex-start; margin-top: auto; }
.work:hover { border-color: var(--copper-400); }
.work__frame {
  position: relative;
  display: block;
  height: 172px;
  margin-bottom: 22px;
  padding: 34px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  overflow: hidden;
}
.work__chrome { position: absolute; top: 12px; left: 14px; display: flex; gap: 5px; }
.work__chrome i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); }
.work__url {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  padding: 3px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: .72rem;
  color: var(--fg-faint);
}
.work__canvas { position: absolute; inset: 34px 0 0; }
.work__canvas--a {
  background:
    linear-gradient(90deg, rgba(196,120,74,.75) 0 34%, transparent 34%) 0 26px / 100% 12px no-repeat,
    linear-gradient(90deg, rgba(255,255,255,.2) 0 62%, transparent 62%) 0 48px / 100% 8px no-repeat,
    linear-gradient(90deg, rgba(255,255,255,.13) 0 48%, transparent 48%) 0 64px / 100% 8px no-repeat,
    radial-gradient(14rem 8rem at 84% 76%, rgba(168,90,43,.42), transparent 70%),
    linear-gradient(165deg, rgba(255,255,255,.06), transparent);
  background-position-x: 22px, 22px, 22px, center, center;
}
.work__canvas--b {
  background:
    radial-gradient(9rem 9rem at 26% 54%, rgba(124,158,107,.38), transparent 68%),
    radial-gradient(11rem 9rem at 74% 40%, rgba(168,90,43,.5), transparent 70%),
    linear-gradient(90deg, rgba(255,255,255,.16) 0 44%, transparent 44%) 22px 86px / 100% 9px no-repeat,
    linear-gradient(200deg, rgba(255,255,255,.07), transparent);
}
.work--soon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-style: dashed;
  background: transparent;
  box-shadow: none;
}
.work--soon p { margin: 0; color: var(--fg-faint); font-size: .92rem; }
.work__plus {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 16px;
  font-size: 1.2rem;
  border-radius: 50%;
  border: 1px dashed var(--line-strong);
  color: var(--fg-faint);
}

/* 9.11 Why */
.whys {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.why h3 { margin-bottom: 8px; }

/* 9.12 Custom CTA */
.cta-band { padding-block: clamp(50px, 6vw, 90px); }
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, .68fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  padding: clamp(30px, 4vw, 62px);
  border: 1px solid #4A3E37;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(44rem 26rem at 6% 0%, rgba(168,90,43,.4), transparent 64%),
    radial-gradient(34rem 24rem at 98% 100%, rgba(168,90,43,.2), transparent 66%),
    var(--espresso-800);
}
.cta-panel__copy p { color: #C3B4A9; }
.cta-panel__copy .lede { color: #F0E7DF; font-weight: 600; }
.cta-panel__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.cta-panel__viz { display: grid; justify-items: center; gap: 16px; }
.mess { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; max-width: 320px; }
.mess li {
  padding: 7px 13px;
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: var(--radius-xs);
  font-size: .78rem;
  color: #A5968B;
  transform: rotate(var(--r, 0deg));
}
.mess li:nth-child(1) { --r: -3deg; }
.mess li:nth-child(2) { --r: 2deg; }
.mess li:nth-child(3) { --r: -1.5deg; }
.mess li:nth-child(4) { --r: 3deg; }
.mess li:nth-child(5) { --r: -2deg; }
.mess li:nth-child(6) { --r: 1.5deg; }
.mess__arrow { font-size: 1.4rem; color: var(--copper-300); transform: rotate(90deg); }
.tidy {
  display: grid;
  gap: 7px;
  width: 100%;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--copper);
  color: #FFF3EA;
}
.tidy span { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.tidy i { height: 7px; border-radius: 4px; background: rgba(255,255,255,.55); }
.tidy i:nth-child(3) { width: 78%; }
.tidy i:nth-child(4) { width: 55%; }

/* 9.13 FAQ */
.faq { display: grid; gap: 10px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--med), background var(--med);
}
.faq__item h3 { margin: 0; font-size: inherit; }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--fg);
  cursor: pointer;
}
.faq__sign {
  position: relative;
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: transform var(--med), background var(--med), border-color var(--med);
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 9px; height: 1.6px;
  margin: -.8px 0 0 -4.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--med), opacity var(--med);
}
.faq__sign::after { transform: rotate(90deg); }
.faq__item.is-open { border-color: var(--copper-400); }
.faq__item.is-open .faq__sign { transform: rotate(180deg); background: var(--copper-tint); border-color: var(--copper-400); }
.faq__item.is-open .faq__sign::after { opacity: 0; transform: rotate(0deg); }
.faq__a { padding: 0 22px; }
.faq__a p { padding-bottom: 22px; }
.faq__a p { margin: 0; max-width: 72ch; color: var(--fg-dim); font-size: .95rem; }

/* ---------- 10. Contact & forms ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 4.5vw, 70px);
  align-items: start;
}
.next { display: grid; gap: 20px; margin: 30px 0; }
.next li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.next__n {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--copper-tint);
  border: 1px solid rgba(168,90,43,.3);
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent-ink);
}
.next h3 { margin: 0 0 3px; }
.next p { margin: 0; font-size: .9rem; color: var(--fg-dim); }
.contact__sign {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--copper-300);
}

.cform { display: grid; gap: 18px; }
.cform__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--fg-dim); }
.field__opt { font-weight: 400; color: var(--fg-faint); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
  color: var(--fg);
  font-size: .95rem;
  transition: border-color var(--fast), background var(--fast), box-shadow var(--fast);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, #A2938A 50%), linear-gradient(135deg, #A2938A 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 42px; }
.field select option { background: var(--espresso-800); color: #F2EDE8; }
.field input::placeholder, .field textarea::placeholder { color: #7D6E64; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--copper-400);
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(168,90,43,.22);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #C9605B; }
.field__err { margin: 0; font-size: .8rem; color: #E08C87; }

.cform__status {
  margin: 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--sage);
}
.cform__status:empty { display: none; }
.cform__fine { margin: 0; font-size: .78rem; color: var(--fg-faint); }

/* ---------- 11. Footer ---------- */
.site-footer {
  padding: clamp(50px, 6vw, 76px) 0 26px;
  background: var(--espresso-800);
  border-top: 1px solid #40352E;
  color: #BCAEA4;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: 40px;
  border-bottom: 1px solid #40352E;
}
.footer__brand p { margin-top: 16px; max-width: 38ch; font-size: .92rem; }
.footer__h { font-size: .82rem; font-weight: 600; color: #F0E7DF; margin-bottom: 16px; }
.footer__nav ul { display: grid; gap: 10px; }
.footer__nav a { font-size: .92rem; transition: color var(--fast); }
.footer__nav a:hover { color: #fff; }
.footer__cta p { font-size: .92rem; margin-bottom: 18px; max-width: 34ch; }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  font-size: .82rem;
  color: #948379;
}
.footer__base p { margin: 0; }

/* ---------- 12. Motion & responsive ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .2s; }
.reveal:nth-child(5) { transition-delay: .26s; }
.reveal:nth-child(6) { transition-delay: .3s; }
.reveal:nth-child(7) { transition-delay: .34s; }

/* --- <=1080px: hamburger --- */
@media (max-width: 1080px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    align-items: start;
    gap: 6px;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    padding: 22px var(--gut) 34px;
    background: var(--espresso-900);
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 26px 50px -30px rgba(0,0,0,1);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--med), transform var(--med), visibility var(--med);
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__links > ul { display: grid; gap: 2px; }
  .nav__links > ul a { display: block; padding: 13px 4px; font-size: 1.02rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav__links > ul a::after { display: none; }
  .nav__cta { justify-self: start; margin-top: 16px; }
}

/* --- <=980px --- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; }
  .intro { grid-template-columns: 1fr; }
  .split, .eco, .contact, .cta-panel { grid-template-columns: 1fr; }
  .split--rev .split__visual { order: 0; }
  .pillars, .inds, .whys, .works { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc--wide { grid-template-columns: 1fr; }
  .eco__detail { min-height: 0; }
  .cta-panel__viz { display: none; }
}

/* --- <=820px: plans become a single switchable panel --- */
@media (max-width: 820px) {
  .plans { grid-template-columns: 1fr; }
  .plan { display: none; }
  .plan.is-active { display: flex; transform: none; }
  .planswitch { display: flex; width: 100%; }
  .planswitch__btn { flex: 1; padding-inline: 8px; }
  .flow__steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px 6px; }
  .flow__rail { display: none; }
  .duo { grid-template-columns: 1fr; }
  .ticks--two { grid-template-columns: 1fr; }
}

/* --- <=640px --- */
@media (max-width: 640px) {
  .services, .pillars, .inds, .whys, .works { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cform__row { grid-template-columns: 1fr; }
  .flow__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__actions .btn { flex: 1 1 auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .brand__name { font-size: 1.05rem; }
  .eco__node::after { display: none; }
}

/* --- reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .spine::after, .sysboard__live i { display: none; }
  .step::after { width: 100%; }
}

/* --- print --- */
@media print {
  .site-header, .grid-glow, .hero__visual { display: none; }
  .band { padding: 24px 0; background: #fff; color: #000; }
}

/* --- anchor offset for the sticky header --- */
section[id] { scroll-margin-top: 86px; }
.faq__a { overflow: hidden; transition: height var(--med); }
