


:root {

  --ink:        #0B141F;
  --navy:       #0F2942;
  --navy-700:   #14314F;
  --navy-500:   #1D4269;
  --red:        #E8223C;
  --red-700:    #C2172E;


  --paper:      #FFFFFF;
  --bone:       #F5F7F9;
  --bone-200:   #E7ECF1;
  --slate-500:  #5A6B7D;
  --slate-300:  #93A2B2;


  --bg:            var(--paper);
  --text:          var(--navy);
  --text-muted:    var(--slate-500);
  --rule:          rgba(15, 41, 66, 0.12);
  --rule-on-dark:  rgba(255, 255, 255, 0.14);


  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3:  clamp(1.95rem, 1.6rem + 1.8vw, 2.9rem);
  --step-4:  clamp(2.4rem, 1.8rem + 3vw, 4.2rem);


  --gutter:        clamp(1.25rem, 4vw, 2.5rem);
  --section:       clamp(3.5rem, 6.5vw, 5.75rem);
  --section-major: clamp(3.75rem, 6.8vw, 6rem);
  --section-tight: clamp(2.75rem, 5vw, 4.5rem);
  --measure: 62ch;

  --radius:    4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}


*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 650;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


.wrap {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--tight { max-width: 940px; }

.section { padding-block: var(--section); }


.section.ground-navy,
.section.ground-ink { padding-block: var(--section-major); }


.section--tight    { padding-block: var(--section-tight); }
.section--tight-top    { padding-top: var(--section-tight); }
.section--tight-bottom { padding-bottom: var(--section-tight); }


.ground-light { background: var(--paper); }
.ground-bone  { background: var(--bone); }
.ground-navy  { background: var(--navy); color: #fff; }
.ground-ink   { background: var(--ink);  color: #fff; }

.ground-navy .lede,
.ground-ink .lede { color: rgba(255,255,255,0.66); }


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--red);
  flex: none;
}

.ground-navy .eyebrow,
.ground-ink  .eyebrow { color: #FF6076; }
.ground-navy .eyebrow::before,
.ground-ink  .eyebrow::before { background: #FF6076; }

.h1 { font-size: var(--step-4); }
.h2 { font-size: var(--step-3); }
.h3 { font-size: var(--step-2); }
.h4 { font-size: var(--step-1); }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 54ch;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.body-copy { color: var(--text-muted); max-width: var(--measure); }


.sec-head { max-width: 46rem; margin-bottom: clamp(1.9rem, 3.4vw, 2.9rem); }
.sec-head .h2 + .lede { margin-top: 1.1rem; }


.sec-head--tight { margin-bottom: clamp(1.4rem, 2.4vw, 2rem); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-size: var(--step-0);
  font-weight: 560;
  letter-spacing: -0.01em;
  padding: 0.95em 1.7em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
              color 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-700); }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }

.btn--ghost {
  border-color: var(--rule);
  color: var(--navy);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--navy); background: rgba(15,41,66,0.04); }


.ground-navy .btn--ghost,
.ground-ink  .btn--ghost,
.hero        .btn--ghost,
.page-hero   .btn--ghost {
  border-color: var(--rule-on-dark);
  color: #fff;
  background: transparent;
}
.ground-navy .btn--ghost:hover,
.ground-ink  .btn--ghost:hover,
.hero        .btn--ghost:hover,
.page-hero   .btn--ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }


.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 560;
  font-size: var(--step--1);
  color: var(--navy);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease), gap 0.2s var(--ease);
}
.link-arrow:hover { border-color: var(--red); gap: 0.75em; color: var(--red); }
.ground-navy .link-arrow, .ground-ink .link-arrow { color: #fff; border-color: var(--rule-on-dark); }
.ground-navy .link-arrow:hover, .ground-ink .link-arrow:hover { color: #FF6076; border-color: #FF6076; }


.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 84px;
}


.brand { display: flex; align-items: center; gap: 0.82rem; flex: none; }

.brand__mark {
  height: 48px;
  width: auto;
  aspect-ratio: 583 / 619;
  flex: none;
}

.brand__name {
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1;
  color: var(--navy);
  white-space: nowrap;
}
.brand__name small {
  display: block;
  font-size: 0.605rem;
  font-weight: 600;
  letter-spacing: 0.207em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: 5px;
}


.site-footer .brand__mark {
  background: var(--paper);
  border-radius: 7px;
  padding: 5px;
  height: 52px;
}
.site-footer .brand__name { color: #fff; }
.site-footer .brand__name small { color: rgba(255,255,255,0.5); }

.nav { display: flex; gap: 0.35rem; margin-inline-start: auto; }

.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.nav a:hover { background: rgba(15,41,66,0.05); }
.nav a[aria-current="page"] { color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 1rem; flex: none; }

.header-phone {
  font-size: 0.92rem;
  font-weight: 560;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.header-phone:hover { color: var(--red); }

.burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
}
.burger span {
  display: block; width: 17px; height: 1.5px;
  background: var(--navy); position: relative;
  transition: background 0.2s var(--ease);
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0;
  width: 17px; height: 1.5px; background: var(--navy);
  transition: transform 0.24s var(--ease);
}
.burger span::before { top: -5.5px; }
.burger span::after  { top: 5.5px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.5rem 0 1.5rem;
  border-top: 1px solid var(--rule);
}
.mobile-nav[data-open="true"] { display: flex; }
.mobile-nav a {
  padding: 0.9rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav .btn { margin-top: 1.25rem; }


.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}


.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-position: 50% 15%;

}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:

    linear-gradient(90deg,

      rgba(11,20,31,0.55) 0%,
      rgba(11,20,31,0.80) 10%,
      rgba(11,20,31,0.80) 30%,
      rgba(11,20,31,0.58) 46%,
      rgba(11,20,31,0.26) 62%,
      rgba(11,20,31,0.06) 78%,
      rgba(11,20,31,0) 100%),

    linear-gradient(100deg,
      rgba(11,20,31,0.88) 0%,
      rgba(15,41,66,0.80) 24%,
      rgba(15,41,66,0.46) 50%,
      rgba(15,41,66,0.38) 72%,
      rgba(15,41,66,0.52) 100%),

    radial-gradient(122% 104% at 50% 48%, transparent 40%, rgba(11,20,31,0.46) 100%);
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 30% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 30% 40%, #000 20%, transparent 78%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;

  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  align-items: center;

  gap: clamp(2rem, 3.2vw, 2.75rem);

  padding-block: clamp(3.25rem, 7vw, 5.8rem);
}


.hero__caps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1.9rem;
}
.hero__caps i {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--red);
  font-style: normal;
  flex: none;
}

.hero h1 {
  font-size: var(--step-4);
  font-weight: 640;
  letter-spacing: -0.034em;
  max-width: 20ch;
  text-wrap: balance;
}

.hero .lede {
  color: rgba(255,255,255,0.66);
  margin-top: 1.7rem;
  max-width: 50ch;
}

.hero .btn-row { margin-top: 2.6rem; }


.hero__device {
  margin-top: clamp(2.75rem, 5vw, 3.75rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule-on-dark);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.15rem);
  font-weight: 560;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.42);
}
.hero__device b { color: #fff; font-weight: 620; }
.hero__device span { color: rgba(255,255,255,0.62); font-weight: 560; }


.schematic { width: 100%; height: auto; overflow: visible; }




.schematic .frame  { stroke: rgba(255,255,255,0.20); stroke-width: 1; fill: rgba(11,20,31,0.46); }
.schematic .dome   { stroke: rgba(255,255,255,0.105); stroke-width: 1; fill: none; }
.schematic .tick   { stroke: rgba(255,255,255,0.30); stroke-width: 1; }


.schematic .path   { stroke: rgba(255,255,255,0.50); stroke-width: 1.4; fill: none; }
.schematic .flow   { stroke: rgba(255,255,255,0.58); stroke-width: 1.4; fill: none; }
.schematic .arrow  { fill: rgba(255,255,255,0.58); }

.schematic .node   { fill: var(--navy); stroke: rgba(255,255,255,0.74); stroke-width: 1.4; }
.schematic .dot    { fill: rgba(255,255,255,0.85); }

.schematic .dot--a {
  fill: var(--red);
  stroke: rgba(232, 34, 60, 0.30);
  stroke-width: 3.4;
  paint-order: stroke;
}


.schematic .lbl {
  fill: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
}
.schematic .num {
  fill: rgba(255,255,255,0.50);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.schematic .cap {
  fill: rgba(255,255,255,0.50);
  font-size: 11px;
  font-weight: 660;
  letter-spacing: 0.18em;
}
.schematic .cap--accent { fill: rgba(255,255,255,0.64); }




.schematic .path,
.schematic .dome {
  stroke-dasharray: var(--len, 900);
  stroke-dashoffset: var(--len, 900);
  animation: draw 2.1s var(--ease) forwards;
}
.schematic .dome { animation-duration: 2.6s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.schematic .grp {
  opacity: 0;
  animation: fadeNode 0.7s var(--ease) forwards;
}
@keyframes fadeNode { to { opacity: 1; } }

.schematic .pulse { animation: pulseDot 3.4s ease-in-out infinite; }
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.28; }
}

@media (prefers-reduced-motion: reduce) {
  .schematic .path, .schematic .dome {
    stroke-dashoffset: 0;
    animation: none;
  }
  .schematic .grp { opacity: 1; animation: none; }
  .schematic .pulse { animation: none; }
}


.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 2.5rem;
  padding-block: 1.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.trust-strip__inner span { display: inline-flex; align-items: center; gap: 0.55rem; }
.trust-strip__inner svg { color: var(--red); flex: none; }
.trust-strip__inner strong { color: var(--navy); font-weight: 580; }


.eco {
  --mark: 54px;
  position: relative;

  margin-top: clamp(1.1rem, 2.2vw, 1.6rem);
  padding: clamp(2.1rem, 3.4vw, 2.75rem) clamp(1.5rem, 3vw, 3rem) clamp(1.6rem, 2.4vw, 2rem);
}


.eco::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,41,66,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,41,66,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 78% 88% at 50% 45%, #000 30%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 78% 88% at 50% 45%, #000 30%, transparent 82%);
  pointer-events: none;
}


.eco__bracket {
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
.eco__bracket--tl { top: 0; left: 0;  border-right: 0; border-bottom: 0; }
.eco__bracket--tr { top: 0; right: 0; border-left: 0;  border-bottom: 0; }
.eco__bracket--bl { bottom: 0; left: 0;  border-right: 0; border-top: 0; }
.eco__bracket--br { bottom: 0; right: 0; border-left: 0;  border-top: 0; }

.eco__tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  padding: 0 0.9rem;
  font-size: 0.66rem;
  font-weight: 660;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-500);
  white-space: nowrap;
}
.eco__tag::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 0.6rem;
  vertical-align: middle;
}


.eco__flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}


.eco__flow::before,
.eco__flow::after {
  content: "";
  position: absolute;
  top: calc(var(--mark) / 2);

  left: calc(var(--mark) / 2);
  right: calc((100% / 6) - (var(--mark) / 2));
  height: 1px;
}
.eco__flow::before { background: var(--rule); }
.eco__flow::after {
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.85;
}
[data-reveal].is-in .eco__flow::after {
  animation: ecoPath 1.9s var(--ease) 0.25s forwards;
}
@keyframes ecoPath {
  0%   { transform: scaleX(0); opacity: 0.85; }
  70%  { transform: scaleX(1); opacity: 0.85; }
  100% { transform: scaleX(1); opacity: 0.32; }
}

.eco__node {
  position: relative;
  padding-right: clamp(0.75rem, 1.6vw, 1.4rem);
  opacity: 0;
  transform: translateY(10px);
}
[data-reveal].is-in .eco__node {
  animation: ecoNode 0.6s var(--ease) forwards;
}
@keyframes ecoNode { to { opacity: 1; transform: none; } }

.eco__node:nth-child(1) { animation-delay: 0.30s; }
.eco__node:nth-child(2) { animation-delay: 0.55s; }
.eco__node:nth-child(3) { animation-delay: 0.80s; }
.eco__node:nth-child(4) { animation-delay: 1.05s; }
.eco__node:nth-child(5) { animation-delay: 1.30s; }
.eco__node:nth-child(6) { animation-delay: 1.55s; }


[data-reveal].is-in .eco__mark { animation: ecoTouch 0.85s var(--ease); }
@keyframes ecoTouch {
  0%, 100% { border-color: var(--rule); }
  32%      { border-color: var(--red); }
}

[data-reveal].is-in .eco__node:nth-child(1) .eco__mark { animation-delay: 0.30s; }
[data-reveal].is-in .eco__node:nth-child(2) .eco__mark { animation-delay: 0.55s; }
[data-reveal].is-in .eco__node:nth-child(3) .eco__mark { animation-delay: 0.80s; }
[data-reveal].is-in .eco__node:nth-child(4) .eco__mark { animation-delay: 1.05s; }
[data-reveal].is-in .eco__node:nth-child(5) .eco__mark { animation-delay: 1.30s; }
[data-reveal].is-in .eco__node:nth-child(6) .eco__mark { animation-delay: 1.55s; }


.eco__mark {
  width: var(--mark);
  height: var(--mark);
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: border-color 0.28s var(--ease), color 0.28s var(--ease),
              background 0.28s var(--ease), transform 0.28s var(--ease);
}
.eco__mark svg { width: 21px; height: 21px; }

.eco__num {
  display: block;
  font-size: 0.66rem;
  font-weight: 660;
  letter-spacing: 0.18em;
  color: var(--slate-300);
  margin: 1.35rem 0 0.4rem;
  transition: color 0.28s var(--ease);
}

.eco__node h3 {
  font-size: 0.98rem;
  font-weight: 640;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.eco__node p {
  font-size: 0.845rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 22ch;
}


.eco__node:hover .eco__mark {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.eco__node:hover .eco__num { color: var(--red); }

@media (prefers-reduced-motion: reduce) {
  .eco__node { opacity: 1; transform: none; animation: none !important; }
  .eco__mark { animation: none !important; }
  .eco__flow::after { transform: scaleX(1); opacity: 0.32; animation: none !important; }
}


.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-on-dark);
}

.plr {
  position: relative;
  padding: clamp(2rem, 3.2vw, 2.9rem) clamp(1.25rem, 2.2vw, 2rem);
  border-left: 1px solid var(--rule-on-dark);
  overflow: hidden;
  transition: background 0.3s var(--ease);
}
.plr:first-child { border-left: 0; }
.plr:hover, .plr:focus-within { background: rgba(255,255,255,0.022); }


.plr__motif {
  position: absolute;
  top: clamp(1.5rem, 2.4vw, 2.2rem);
  right: clamp(1rem, 1.8vw, 1.6rem);
  width: 74px;
  height: 74px;
  color: #fff;
  opacity: 0.085;
  pointer-events: none;
  transition: opacity 0.32s var(--ease), color 0.32s var(--ease);
}
.plr:hover .plr__motif,
.plr:focus-within .plr__motif { opacity: 0.2; color: #FF6076; }

.plr__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.2em;
  color: #FF6076;
  margin-bottom: 1.15rem;
}

.plr h3 {
  font-size: clamp(1.12rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 620;
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.18;
  max-width: 15ch;
  margin-bottom: 0.85rem;
}

.plr > p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.58);
  max-width: 30ch;
  margin-bottom: 1.5rem;
}


.plr__caps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.plr__caps li {
  font-size: 0.845rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.plr__caps li::before {
  content: "";
  flex: none;
  width: 4px; height: 1px;
  background: rgba(255,255,255,0.45);
}


.plr__more {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.42s var(--ease), opacity 0.28s var(--ease);
}
.plr__more > div { overflow: hidden; }
.plr:hover .plr__more,
.plr:focus-within .plr__more { grid-template-rows: 1fr; opacity: 1; }

.plr__more .plr__caps { padding-top: 0.5rem; }
.plr__more .plr__caps li { color: rgba(255,255,255,0.55); }

.plr__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 1.6rem;
  font-size: 0.845rem;
  font-weight: 580;
  color: rgba(255,255,255,0.62);
  transition: color 0.24s var(--ease), gap 0.24s var(--ease);
}
.plr:hover .plr__link,
.plr:focus-within .plr__link,
.plr__link:hover { color: #fff; gap: 0.68em; }
.plr__link svg { transition: transform 0.24s var(--ease); }
.plr:hover .plr__link svg { transform: translateX(2px); }

@media (prefers-reduced-motion: reduce) {
  .plr__more { transition: none; }
}


.problems { border-top: 1px solid var(--rule); }

.problem {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1rem, 5vw, 4rem);
  padding-block: clamp(1.6rem, 3vw, 2.35rem);
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.problem__q {
  font-size: var(--step-1);
  font-weight: 580;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.problem__a { color: var(--text-muted); font-size: 0.98rem; }




.scen { border-top: 1px solid var(--rule); }

.scen__item { border-bottom: 1px solid var(--rule); }

.scen__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: none;
  border: 0;
  padding: 1.35rem 0;
  cursor: pointer;
  text-align: left;
  color: var(--slate-500);
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem);
  font-weight: 560;
  letter-spacing: -0.018em;
  line-height: 1.3;
  transition: color 0.25s var(--ease);
}


.scen__q::before {
  content: "";
  flex: none;
  width: 18px;
  height: 1px;
  margin-top: 0.72em;
  background: var(--slate-300);
  transition: background 0.28s var(--ease), width 0.28s var(--ease);
}

.scen__q:hover { color: var(--navy); }

.scen__item[data-active="true"] .scen__q {
  color: var(--navy);
  font-weight: 600;
}
.scen__item[data-active="true"] .scen__q::before {
  background: var(--red);
  width: 30px;
}


.scen__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s var(--ease);
}

.scen__card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}
.scen__card p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 44ch;
}
.scen__card .scen__cap {
  display: block;
  font-size: 0.64rem;
  font-weight: 660;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 1.15rem;
}
.scen__card .scen__cap b { color: #FF6076; font-weight: 660; }


.scen__fig { margin-top: 1.6rem; width: 100%; height: auto; overflow: visible; }
.scen__fig .ln   { stroke: rgba(255,255,255,0.34); stroke-width: 1.3; fill: none; }
.scen__fig .ln--a{ stroke: var(--red); stroke-width: 1.5; fill: none; }
.scen__fig .ln--g{ stroke: rgba(255,255,255,0.14); stroke-width: 1; fill: none; }
.scen__fig .nd   { fill: var(--navy); stroke: rgba(255,255,255,0.55); stroke-width: 1.3; }
.scen__fig .nd--a{ fill: var(--navy); stroke: var(--red); stroke-width: 1.5; }
.scen__fig .pt   { fill: rgba(255,255,255,0.6); }
.scen__fig .pt--a{ fill: var(--red); }
.scen__fig .tx {
  fill: rgba(255,255,255,0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}


@media (min-width: 900px) {
  .scen {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    border-top: 0;
  }


  .scen__item { display: contents; }

  .scen__q {
    grid-column: 1;
    border-bottom: 1px solid var(--rule);
    padding: 1.15rem 0;
  }
  .scen__item:first-child .scen__q { border-top: 1px solid var(--rule); }


  .scen__panel {
    grid-column: 2;
    grid-row: 1 / span 6;
    display: block;
    max-height: none;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
    align-self: start;
    position: sticky;
    top: 108px;
  }
  .scen__panel > .scen__inner { overflow: visible; }
  .scen__item[data-active="true"] .scen__panel {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .scen__card { margin-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scen__panel { transition: none; }
}


.projects {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}

.proj { display: flex; flex-direction: column; }


.proj--feature { grid-column: span 7; }
.proj--tall    { grid-column: span 5; }
.proj--wide    { grid-column: span 5; }
.proj--pano    { grid-column: span 7; }

.proj__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bone);
  border: 1px solid var(--rule);
}
.proj--feature .proj__frame { aspect-ratio: 16 / 11; }
.proj--tall    .proj__frame { aspect-ratio: 3 / 4; }
.proj--wide    .proj__frame { aspect-ratio: 4 / 3; }
.proj--pano    .proj__frame { aspect-ratio: 16 / 9; }

.proj__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.proj:hover .proj__frame img { transform: scale(1.03); }


.proj__frame::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  border-left: 1px solid rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.proj:hover .proj__frame::after { opacity: 1; }


.proj__meta {
  display: block;
  font-size: 0.66rem;
  font-weight: 660;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin: 1.1rem 0 0.5rem;
  transition: color 0.25s var(--ease);
}
.proj:hover .proj__meta { color: var(--red); }

.proj__title {
  font-size: 1.06rem;
  font-weight: 620;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.proj__note {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 42ch;
}


.proj--empty .proj__frame {
  display: none;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  background: repeating-linear-gradient(
    -45deg, var(--bone), var(--bone) 11px, #EDF1F5 11px, #EDF1F5 22px);
  border: 1px dashed #C6D2DE;
}
[data-draft="true"] .proj--empty .proj__frame { display: grid; }
[data-draft="true"] .proj--empty .proj__frame span {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--slate-500);
  max-width: 30ch;
}
[data-draft="true"] .proj--empty .proj__frame span::before {
  content: "PHOTO NEEDED";
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 0.55rem;
}

.proj--empty .proj__meta,
.proj--empty .proj__title,
.proj--empty .proj__note { display: none; }
[data-draft="true"] .proj--empty .proj__meta,
[data-draft="true"] .proj--empty .proj__title,
[data-draft="true"] .proj--empty .proj__note { display: block; }

@media (max-width: 900px) {
  .proj--feature, .proj--pano { grid-column: span 12; }
  .proj--tall, .proj--wide { grid-column: span 6; }
  .proj--tall .proj__frame { aspect-ratio: 4 / 5; }
}

@media (max-width: 600px) {
  .proj--tall, .proj--wide { grid-column: span 12; }
  .proj--tall .proj__frame { aspect-ratio: 4 / 3; }
}


.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-700);
  isolation: isolate;
}

.cap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cap:hover img { transform: scale(1.035); }

.cap figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.4rem 1.25rem;
  background: linear-gradient(to top, rgba(11,20,31,0.88) 15%, rgba(11,20,31,0) 100%);
  color: #fff;
}
.cap figcaption strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.cap figcaption span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}


.cap--product {
  padding: clamp(1.25rem, 3.5vw, 2.5rem);
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(255,255,255,0.055) 0%, transparent 62%),
    linear-gradient(158deg, #133048 0%, var(--ink) 100%);
  border: 1px solid rgba(255,255,255,0.11);
}
.cap--product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cap--product:hover img { transform: none; }


.cap--reserved {
  position: relative;
  display: grid;
  place-items: center;

  width: 100%;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(255,255,255,0.055) 0%, transparent 62%),
    linear-gradient(158deg, #133048 0%, var(--ink) 100%);
  border: 1px solid rgba(255,255,255,0.11);
}


.cap--reserved::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 2px;
  pointer-events: none;
}

.cap--reserved::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  --tick: linear-gradient(90deg, rgba(255,255,255,0.30) 0 18px, transparent 18px);
  --tickv: linear-gradient(180deg, rgba(255,255,255,0.30) 0 18px, transparent 18px);
  --tickr: linear-gradient(270deg, rgba(255,255,255,0.30) 0 18px, transparent 18px);
  --ticku: linear-gradient(0deg, rgba(255,255,255,0.30) 0 18px, transparent 18px);
  background:
    var(--tick)  0    0    / 100% 1px no-repeat,
    var(--tickv) 0    0    / 1px 100% no-repeat,
    var(--tickr) 100% 0    / 100% 1px no-repeat,
    var(--tickv) 100% 0    / 1px 100% no-repeat,
    var(--tick)  0    100% / 100% 1px no-repeat,
    var(--ticku) 0    100% / 1px 100% no-repeat,
    var(--tickr) 100% 100% / 100% 1px no-repeat,
    var(--ticku) 100% 100% / 1px 100% no-repeat;
}

.cap__reserve {
  position: relative;
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  line-height: 1.95;

  color: rgba(255,255,255,0.58);
  max-width: 24ch;
}
.cap__reserve b {
  display: block;
  font-weight: 680;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.45rem;
}
.cap__reserve::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--red);
  margin: 0 auto 1.15rem;
}


.cap--empty { display: none; }

[data-draft="true"] .cap--empty {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    -45deg, var(--bone), var(--bone) 11px,
    #EDF1F5 11px, #EDF1F5 22px);
  border: 1px dashed #C6D2DE;
  color: var(--slate-500);
  text-align: center;
  padding: 1.5rem;
}
.cap--empty span { font-size: 0.82rem; line-height: 1.5; }
.cap--empty span::before {
  content: "PHOTO NEEDED";
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
  margin-bottom: 0.5rem;
}


.bob {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}


.bob__figure {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  aspect-ratio: auto;
  overflow: visible;
}


.bob__figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 72% 78% at 50% 50%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 72% 78% at 50% 50%, #000 25%, transparent 80%);
  pointer-events: none;
}

.bob__brackets { position: absolute; inset: 0; pointer-events: none; }
.bob__brackets i {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--rule-on-dark);
}
.bob__brackets i:nth-child(1) { top: 0; left: 0;  border-right: 0; border-bottom: 0; }
.bob__brackets i:nth-child(2) { top: 0; right: 0; border-left: 0;  border-bottom: 0; }
.bob__brackets i:nth-child(3) { bottom: 0; left: 0;  border-right: 0; border-top: 0; }
.bob__brackets i:nth-child(4) { bottom: 0; right: 0; border-left: 0;  border-top: 0; }

.bob__cap {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  padding: 0 0.85rem;
  font-size: 0.62rem;
  font-weight: 660;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}


.bob__stack { position: relative; width: min(268px, 74%); }

.pass {
  position: relative;
  aspect-ratio: 900 / 1575;
  background: #16283C;
  border: 1px solid rgba(255,255,255,0.14);

  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem 1.25rem;
  box-shadow: 0 22px 44px -20px rgba(0,0,0,0.6);
}


.pass--behind {
  position: absolute;
  inset: 0;
  transform: translate(-13px, 11px) rotate(-4deg);
  background: #12212F;
  z-index: 0;
  box-shadow: none;
}
.pass--front { z-index: 1; }

.pass__dots { display: flex; gap: 7px; position: absolute; }
.pass__dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.pass__dots--tl { top: 15px; left: 16px; }
.pass__dots--br { bottom: 15px; right: 16px; }


.pass__mark {
  display: block;
  width: 74%;
  max-width: 148px;
  height: auto;
  aspect-ratio: 1;
}

.pass__name {
  font-size: 0.6rem;
  font-weight: 660;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  text-align: center;
}


.pass__code {
  width: 72%;
  height: 30px;
  background-image: repeating-linear-gradient(90deg,
    #fff 0 2px, transparent 2px 4px,
    #fff 4px 5px, transparent 5px 9px,
    #fff 9px 12px, transparent 12px 14px,
    #fff 14px 15px, transparent 15px 18px);
  opacity: 0.85;
}


.bob__note {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 620;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bob__note::before {
  content: "";
  width: 22px; height: 1px;
  background: rgba(255,255,255,0.28);
}
.bob__note--a { top: 26%; right: 4%; }
.bob__note--b { bottom: 26%; left: 4%; flex-direction: row-reverse; }

@media (max-width: 900px) {
  .bob__stack { width: min(240px, 62%); }
  .bob__note { display: none; }
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.75rem 0 0.5rem;
}
.price b {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 640;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price span { color: rgba(255,255,255,0.55); font-size: 0.95rem; }

.spec-list { list-style: none; padding: 0; margin-top: 1.75rem; display: grid; gap: 0.75rem; }
.spec-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule-on-dark);
}
.spec-list li::before { content: "—"; color: #FF6076; flex: none; }


.ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  margin-top: clamp(1.4rem, 2.6vw, 2rem);
}

.ledger__item {
  padding: 1.5rem clamp(1rem, 2vw, 1.75rem) 1.6rem 0;
  border-right: 1px solid var(--rule);
}
.ledger__item:last-child { border-right: 0; padding-right: 0; }

.ledger__n {
  display: block;
  font-size: 0.64rem;
  font-weight: 660;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 0.85rem;
}
.ledger__item h3 {
  font-size: 1.02rem;
  font-weight: 620;
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
}
.ledger__item p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 26ch;
}


.proof {
  margin-top: clamp(2rem, 3.6vw, 3rem);
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  position: relative;
}
.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 90% at 20% 50%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 20% 50%, #000 20%, transparent 78%);
  pointer-events: none;
}
.proof > * { position: relative; }

.proof__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FF6076;
  margin-bottom: 1.1rem;
}
.proof__label::before {
  content: "";
  width: 22px; height: 1px;
  background: #FF6076;
}

.proof h3 {
  font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2.1rem);
  font-weight: 640;
  letter-spacing: -0.028em;
  margin-bottom: 0.85rem;
}
.proof p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 40ch;
}

.proof__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  margin-top: 1.5rem;
  font-size: 0.6rem;
  font-weight: 660;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}


.proof__shot {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: #fff;
  box-shadow: 0 26px 50px -26px rgba(0,0,0,0.65);
}
.proof__shot img { width: 100%; height: auto; display: block; }

.proof__cap {
  position: absolute;
  top: 14px; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  padding: 0 0.8rem;
  font-size: 0.58rem;
  font-weight: 660;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  z-index: 2;
}

@media (max-width: 980px) {
  .ledger { grid-template-columns: repeat(2, 1fr); }
  .ledger__item:nth-child(2) { border-right: 0; padding-right: 0; }
  .ledger__item:nth-child(n+3) { border-top: 1px solid var(--rule); }
  .proof { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ledger { grid-template-columns: 1fr; }
  .ledger__item { border-right: 0; padding-right: 0; }
  .ledger__item + .ledger__item { border-top: 1px solid var(--rule); }
  .ledger__item p { max-width: 34ch; }
}


.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}
.step {
  background: var(--paper);
  padding: clamp(1.6rem, 3vw, 2.25rem) clamp(1.1rem, 2vw, 1.6rem);
}
.step b {
  display: block;
  font-size: 0.78rem;
  font-weight: 660;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.05rem; font-weight: 620; margin-bottom: 0.35rem; }
.step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }


.inds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2.5rem, 5vw, 5rem);
}

.ind {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--rule);
  transition: border-color 0.3s var(--ease);
}
.ind:hover { border-color: var(--navy); }

.ind__code {
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.18em;
  color: var(--slate-300);
  padding-top: 0.42em;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.ind:hover .ind__code { color: var(--red); }

.ind h3 {
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.3rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}
.ind p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 40ch;
}


.ind-note {
  margin-top: clamp(1.9rem, 3vw, 2.6rem);
  padding-top: clamp(1.5rem, 2.4vw, 1.9rem);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: baseline;
}
.ind-note h3 {
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  max-width: 20ch;
}
.ind-note p { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); max-width: 52ch; }

@media (max-width: 820px) {
  .inds { grid-template-columns: 1fr; }
  .ind-note { grid-template-columns: 1fr; gap: 0.85rem; }
}


.flow {
  --dot: 46px;
  position: relative;
  margin-top: clamp(1.5rem, 2.8vw, 2.1rem);
  padding-bottom: 2.9rem;
}

.flow__track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(var(--steps, 5), 1fr);
  position: relative;
}

.flow--4 { --steps: 4; }


.flow__track::before,
.flow__track::after {
  content: "";
  position: absolute;
  top: calc(var(--dot) / 2);
  left: calc(var(--dot) / 2);
  right: calc((100% / var(--steps, 5)) - (var(--dot) / 2));
  height: 1px;
}
.flow__track::before { background: var(--rule); }
.flow__track::after {
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.85;
}
[data-reveal].is-in .flow__track::after {
  animation: flowPath 1.7s var(--ease) 0.2s forwards;
}
@keyframes flowPath {
  0%   { transform: scaleX(0); opacity: 0.85; }
  72%  { transform: scaleX(1); opacity: 0.85; }
  100% { transform: scaleX(1); opacity: 0.3; }
}

.flow__step { position: relative; padding-right: clamp(0.75rem, 1.5vw, 1.5rem); }

.flow__dot {
  width: var(--dot);
  height: var(--dot);
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--paper);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

[data-reveal].is-in .flow__dot { animation: flowTouch 0.8s var(--ease); }
@keyframes flowTouch {
  0%, 100% { border-color: var(--rule); }
  34%      { border-color: var(--red); }
}
.flow__step:nth-child(1) .flow__dot { animation-delay: 0.25s; }
.flow__step:nth-child(2) .flow__dot { animation-delay: 0.55s; }
.flow__step:nth-child(3) .flow__dot { animation-delay: 0.85s; }
.flow__step:nth-child(4) .flow__dot { animation-delay: 1.15s; }
.flow__step:nth-child(5) .flow__dot { animation-delay: 1.45s; }

.flow__step h3,
.flow__step h4 {
  font-size: 0.95rem;
  font-weight: 640;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 1.25rem 0 0.4rem;
}
.flow__step p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 26ch;
}


.flow__return {
  position: absolute;

  left: calc(var(--dot) / 2);
  right: calc((100% / var(--steps, 5)) - (var(--dot) / 2));
  bottom: 0;
  height: 46px;
  overflow: visible;
}
.flow__return path {
  fill: none;
  stroke: var(--rule);
  stroke-width: 1;
  stroke-dasharray: 5 5;
}
.flow__loop-label {
  position: absolute;
  bottom: -0.55em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  padding: 0 0.85rem;
  font-size: 0.62rem;
  font-weight: 660;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--slate-300);
  white-space: nowrap;
}


@media (max-width: 420px) {
  .flow__loop-label {
    white-space: normal;
    max-width: calc(100vw - 2.5rem);
    text-align: center;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow__track::after { transform: scaleX(1); opacity: 0.3; animation: none !important; }
  .flow__dot { animation: none !important; }
}


@media (max-width: 860px) {
  .flow { --dot: 40px; padding-bottom: 0; }
  .flow__track { grid-template-columns: 1fr; }

  .flow__track::before,
  .flow__track::after {
    top: calc(var(--dot) / 2);
    bottom: calc(var(--dot) / 2);
    left: calc(var(--dot) / 2);
    right: auto;
    width: 1px;
    height: auto;
  }
  .flow__track::after { transform: scaleY(0); transform-origin: center top; }
  [data-reveal].is-in .flow__track::after { animation: flowPathV 1.7s var(--ease) 0.2s forwards; }
  @keyframes flowPathV {
    0%   { transform: scaleY(0); opacity: 0.85; }
    72%  { transform: scaleY(1); opacity: 0.85; }
    100% { transform: scaleY(1); opacity: 0.3; }
  }

  .flow__step {
    display: grid;
    grid-template-columns: var(--dot) 1fr;
    column-gap: 1.25rem;
    padding: 0 0 2rem 0;
    align-items: start;
  }
  .flow__step:last-child { padding-bottom: 0; }


  .flow__step > .flow__dot { grid-column: 1; grid-row: 1; }
  .flow__step > :not(.flow__dot) { grid-column: 2; }


  .flow__step p { max-width: none; }
  .flow__step h3,
  .flow__step h4 { margin-top: 0.1rem; }
  .flow__step h3,
.flow__step h4 { margin: 0.5rem 0 0.35rem; }
  .flow__step p { max-width: 36ch; }
  .flow__return { display: none; }

  @media (prefers-reduced-motion: reduce) {
    .flow__track::after { transform: scaleY(1); }
  }
}


.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split__figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 2; }



.split__fig-end { justify-self: end; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split .svc-dia { max-width: 470px; margin-inline: auto; }
  .split__fig-end { justify-self: start; }
}
.split__figure img { width: 100%; height: 100%; object-fit: cover; }

.pull {
  font-size: var(--step-2);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.22;
  max-width: 20ch;
}




.contact-lines {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  border-top: 1px solid var(--rule-on-dark);
}
.contact-lines__row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-on-dark);
}
.contact-lines__k {
  font-size: 0.62rem;
  font-weight: 660;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.contact-lines__v { font-size: 1.02rem; color: rgba(255,255,255,0.86); }
.contact-lines__v a {
  color: #fff;
  font-weight: 560;
  border-bottom: 1px solid rgba(255,255,255,0.24);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.contact-lines__v a:hover { color: #FF6076; border-color: #FF6076; }
.contact-lines__v small {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}


.form { display: grid; gap: 1.25rem; }

.field { display: grid; gap: 0.5rem; }

.field label {
  font-size: 0.8rem;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}
.field label .req { color: #FF6076; margin-left: 0.15em; }

.field input,
.field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--rule-on-dark);
  border-radius: var(--radius);
  color: #fff;
  padding: 0.9em 1.05em;
  width: 100%;
  font-size: 0.98rem;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.28); }
.field input:hover, .field textarea:hover { border-color: rgba(255,255,255,0.26); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: #FF6076;
  background: rgba(255,255,255,0.085);
  box-shadow: 0 0 0 3px rgba(232,34,60,0.16);
}
.field textarea { min-height: 122px; resize: vertical; }


.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #FF6076;
  background: rgba(232,34,60,0.07);
}
.field__err {
  font-size: 0.8rem;
  color: #FF8B9C;
  min-height: 0;
  display: none;
}
.field__err.is-shown { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }


.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}


.form__submit { width: 100%; margin-top: 0.35rem; }
.form__submit[aria-busy="true"] { opacity: 0.72; cursor: progress; }

.form__status {
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 0.9rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  display: none;
}
.form__status.is-shown { display: block; }
.form__status.is-ok {
  color: #D8F5E3;
  background: rgba(38,166,109,0.14);
  border-color: rgba(38,166,109,0.42);
}
.form__status.is-err {
  color: #FFD3DA;
  background: rgba(232,34,60,0.12);
  border-color: rgba(232,34,60,0.45);
}
.form__status a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); }

@media (max-width: 620px) {
  .contact-lines__row { grid-template-columns: 1fr; gap: 0.3rem; padding: 0.9rem 0; }
  .field-row { grid-template-columns: 1fr; }


  .contact-lines__v a {
    display: inline-block;
    padding: 0.62rem 0;
    font-size: 1.1rem;
  }
}


.site-footer { background: var(--ink); color: #fff; padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.25rem; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2.25rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--rule-on-dark);
}


.footer-brand .brand { margin-bottom: 1.35rem; }
.footer-brand__tag {
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.82);
  max-width: 26ch;
}


.footer-col__h {
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.2rem;
}
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: 0.72rem; }
.footer-grid a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s var(--ease);
}
.footer-grid a:hover { color: #fff; }

.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.36);
}
.footer-bottom nav { display: flex; gap: 1.25rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }


@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
}


.nav__item { position: relative; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: background 0.18s var(--ease);
}
.nav__toggle:hover { background: rgba(15,41,66,0.05); }
.nav__toggle svg { transition: transform 0.2s var(--ease); }
.nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(560px, 84vw);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px -12px rgba(11,20,31,0.22);
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.nav__item:hover .nav__panel,
.nav__panel:focus-within,
.nav__toggle[aria-expanded="true"] + .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__panel a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  line-height: 1.35;
}
.nav__panel a strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 580;
  color: var(--navy);
}
.nav__panel a span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.nav__panel a:hover { background: var(--bone); }


.page-hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 70% at 25% 45%, #000 15%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 25% 45%, #000 15%, transparent 76%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;

  padding-block: clamp(3rem, 7vw, 5.7rem);
  max-width: 46rem;
}
.page-hero h1 { font-size: var(--step-3); letter-spacing: -0.03em; }
.page-hero .lede { color: rgba(255,255,255,0.68); margin-top: 1.25rem; }
.page-hero .btn-row { margin-top: 2.25rem; }


.crumbs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1.75rem;
}
.crumbs a { color: rgba(255,255,255,0.78); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs svg { opacity: 0.45; }




.page-hero--split .page-hero__inner {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 566px);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.page-hero--split .page-hero__copy { max-width: 35rem; }


.page-hero--split .svc-dia { max-width: 566px; }


.page-hero--photo { position: relative; overflow: hidden; }

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-position: 42% 46%;

}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:

    linear-gradient(90deg,
      rgba(11,20,31,0.10) 0%,
      rgba(11,20,31,0.46) 14%,
      rgba(11,20,31,0.74) 26%,
      rgba(11,20,31,0.78) 50%,
      rgba(11,20,31,0.74) 74%,
      rgba(11,20,31,0.34) 88%,
      rgba(11,20,31,0.10) 100%),
    linear-gradient(100deg,
      rgba(11,20,31,0.86) 0%,
      rgba(15,41,66,0.78) 26%,
      rgba(15,41,66,0.48) 52%,
      rgba(15,41,66,0.40) 74%,
      rgba(15,41,66,0.52) 100%),
    radial-gradient(122% 104% at 50% 48%, transparent 40%, rgba(11,20,31,0.46) 100%);
}


.page-hero--photo-side .page-hero__inner {
  max-width: 1280px;

  padding-block: clamp(4.25rem, 8vw, 7rem);
}
.page-hero--photo-side .page-hero__copy { max-width: 33rem; }


.page-hero--photo-side .page-hero__bg img { object-position: 50% 50%; }

.page-hero--photo-side .page-hero__bg::after {
  background:

    linear-gradient(90deg,
      rgba(11,20,31,0.90) 0%,
      rgba(11,20,31,0.86) 26%,
      rgba(11,20,31,0.68) 42%,
      rgba(11,20,31,0.34) 56%,
      rgba(11,20,31,0.12) 70%,
      rgba(11,20,31,0.06) 100%),

    linear-gradient(100deg,
      rgba(15,41,66,0.34) 0%,
      rgba(15,41,66,0.22) 45%,
      rgba(15,41,66,0.16) 70%,
      rgba(15,41,66,0.24) 100%),
    radial-gradient(120% 110% at 62% 48%, transparent 42%, rgba(11,20,31,0.30) 100%);
}



.page-hero--photo-split .page-hero__bg img { object-position: 50% 25%; }
.page-hero--photo-split .page-hero__bg::after {
  background:
    linear-gradient(90deg,
      rgba(11,20,31,0.60) 0%,
      rgba(11,20,31,0.76) 8%,
      rgba(11,20,31,0.74) 34%,
      rgba(11,20,31,0.56) 52%,
      rgba(11,20,31,0.34) 70%,
      rgba(11,20,31,0.20) 88%,
      rgba(11,20,31,0.16) 100%),
    linear-gradient(100deg,
      rgba(15,41,66,0.58) 0%,
      rgba(15,41,66,0.44) 30%,
      rgba(15,41,66,0.36) 60%,
      rgba(15,41,66,0.46) 100%),
    radial-gradient(122% 108% at 46% 40%, transparent 34%, rgba(11,20,31,0.44) 100%);
}


.page-hero--photo .svc-dia .fr { fill: rgba(11,20,31,0.46); stroke: rgba(255,255,255,0.22); }
.page-hero--photo .svc-dia .ln { stroke: rgba(255,255,255,0.44); }
.page-hero--photo .svc-dia .tk { stroke: rgba(255,255,255,0.30); }

.page-hero--photo::before { z-index: 1; }
.page-hero--photo .page-hero__inner { position: relative; z-index: 2; }


@media (max-width: 900px) {
  .page-hero__bg img { object-position: 48% 44%; }
  .page-hero__bg::after {
    background:
      linear-gradient(180deg,
        rgba(11,20,31,0.90) 0%,
        rgba(11,20,31,0.84) 40%,
        rgba(15,41,66,0.62) 74%,
        rgba(15,41,66,0.52) 100%),
      radial-gradient(126% 92% at 50% 56%, transparent 34%, rgba(11,20,31,0.48) 100%);
  }


  .page-hero--photo-side .page-hero__copy { max-width: none; }
  .page-hero--photo-side .page-hero__bg img { object-position: 64% 48%; }
  .page-hero--photo-side .page-hero__bg::after {
    background:
      linear-gradient(180deg,
        rgba(11,20,31,0.86) 0%,
        rgba(11,20,31,0.80) 44%,
        rgba(11,20,31,0.44) 74%,
        rgba(11,20,31,0.22) 100%),
      linear-gradient(100deg,
        rgba(15,41,66,0.30) 0%,
        rgba(15,41,66,0.20) 55%,
        rgba(15,41,66,0.26) 100%),
      radial-gradient(126% 104% at 58% 64%, transparent 40%, rgba(11,20,31,0.30) 100%);
  }
}


@media (max-width: 620px) {
  .page-hero--photo-side .page-hero__bg img { object-position: 68% 50%; }


  .page-hero--photo-artdir .page-hero__bg img { object-position: 50% 50%; }
  .page-hero--photo-side .page-hero__bg::after {
    background:
      linear-gradient(180deg,
        rgba(11,20,31,0.86) 0%,
        rgba(11,20,31,0.78) 46%,
        rgba(11,20,31,0.38) 76%,
        rgba(11,20,31,0.16) 100%),
      linear-gradient(100deg,
        rgba(15,41,66,0.30) 0%,
        rgba(15,41,66,0.20) 55%,
        rgba(15,41,66,0.28) 100%),
      radial-gradient(130% 100% at 60% 68%, transparent 38%, rgba(11,20,31,0.32) 100%);
  }
}


.cta-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
}


.svc-dia { width: 100%; height: auto; overflow: visible; }
.svc-dia .fr   { stroke: rgba(255,255,255,0.12); stroke-width: 1; fill: none; }
.svc-dia .tk   { stroke: rgba(255,255,255,0.2); stroke-width: 1; }
.svc-dia .ln   { stroke: rgba(255,255,255,0.34); stroke-width: 1.3; fill: none; }
.svc-dia .spine{ stroke: rgba(255,255,255,0.5); stroke-width: 1.6; fill: none; }
.svc-dia .acc  { stroke: var(--red); stroke-width: 1.6; fill: none; }
.svc-dia .nd   { fill: var(--navy); stroke: rgba(255,255,255,0.6); stroke-width: 1.3; }
.svc-dia .nd-a { fill: var(--navy); stroke: var(--red); stroke-width: 1.6; }
.svc-dia .pt   { fill: rgba(255,255,255,0.7); }
.svc-dia .pt-a { fill: var(--red); }
.svc-dia .lb   { fill: #fff; font-size: 15px; font-weight: 600; }

.svc-dia .lb--sm { font-size: 13px; }
.svc-dia .cp   { fill: rgba(255,255,255,0.42); font-size: 11px; font-weight: 660; letter-spacing: 0.18em; }
.svc-dia .cp-a { fill: rgba(255,255,255,0.6); }

.svc-dia .draw {
  stroke-dasharray: var(--len, 800);
  stroke-dashoffset: var(--len, 800);
  animation: draw 1.9s var(--ease) forwards;
}


.svc-dia .trace {
  fill: none;
  stroke: var(--red);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 52 460;
  stroke-dashoffset: 512;
  opacity: 0;
  animation: trace 2.8s cubic-bezier(0.4, 0, 0.3, 1) 1.5s forwards;
}
@keyframes trace {
  0%   { stroke-dashoffset: 512; opacity: 0; }
  10%  { opacity: 0.95; }
  82%  { opacity: 0.95; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-dia .trace { display: none; }
}
.svc-dia .fade { opacity: 0; animation: fadeNode 0.6s var(--ease) forwards; }
@media (prefers-reduced-motion: reduce) {
  .svc-dia .draw { stroke-dashoffset: 0; animation: none; }
  .svc-dia .fade { opacity: 1; animation: none; }
}


.ledger--3 { grid-template-columns: repeat(3, 1fr); }
.ledger--3 .ledger__item p { max-width: 30ch; }
.ledger__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}
.ledger__list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.ledger__list li::before {
  content: "";
  flex: none;
  width: 5px; height: 1px;
  background: var(--red);
  position: relative;
  top: -0.3em;
}


.domains {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.domain {
  padding: 1.5rem clamp(1rem, 2vw, 1.75rem) 1.6rem 0;
  border-right: 1px solid var(--rule);
}
.domain:last-child { border-right: 0; padding-right: 0; }

.domain__k {
  display: block;
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}
.domain h3 {
  font-size: 1.06rem;
  font-weight: 620;
  letter-spacing: -0.015em;
  margin-bottom: 0.9rem;
}
.domain ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.domain li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}


.spanning {
  position: relative;
  margin-top: 0;
  border-top: 1px solid var(--red);
  padding-top: 1.6rem;
}
.spanning__k {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  background: var(--paper);
  padding-right: 0.9rem;
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.ground-bone .spanning__k { background: var(--bone); }

.spanning__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.spanning__row h4 {
  font-size: 0.98rem;
  font-weight: 620;
  margin-bottom: 0.35rem;
}
.spanning__row p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 30ch;
}


.spanning__ticks {
  position: absolute;
  inset: -1px 0 auto 0;
  height: 1px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}
.spanning__ticks i {
  width: 1px;
  height: 14px;
  background: var(--rule);
  transform: translateY(-14px);
}

@media (max-width: 900px) {
  .domains { grid-template-columns: repeat(2, 1fr); }
  .domain:nth-child(2) { border-right: 0; padding-right: 0; }
  .domain:nth-child(n+3) { border-top: 1px solid var(--rule); }
  .spanning__row { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .spanning__ticks { display: none; }
}
@media (max-width: 560px) {
  .domains { grid-template-columns: 1fr; }
  .domain { border-right: 0; padding-right: 0; }
  .domain + .domain { border-top: 1px solid var(--rule); }
  .spanning__row { grid-template-columns: 1fr; }
}



.principles {
  --pn: 44px;
  list-style: none;
  padding: 0;
  margin: clamp(1.5rem, 2.8vw, 2rem) 0 0;
  position: relative;
}


.principles::before {
  content: "";
  position: absolute;
  left: calc(var(--pn) / 2);
  top: calc(var(--pn) / 2);
  bottom: calc(var(--pn) / 2);
  width: 1px;
  background: var(--rule);
}

.principles::after {
  content: "";
  position: absolute;
  left: calc(var(--pn) / 2);
  top: calc(var(--pn) / 2);
  bottom: calc(var(--pn) / 2);
  width: 1px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: center top;
  opacity: 0.85;
}
[data-reveal].is-in .principles::after {
  animation: ecoPathV 1.8s var(--ease) 0.2s forwards;
}

.principle {
  display: grid;
  grid-template-columns: var(--pn) minmax(0, 1fr);
  column-gap: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.4rem, 2.4vw, 2rem);
  align-items: start;
}
.principle:last-child { padding-bottom: 0; }

.principle__n {
  width: var(--pn);
  height: var(--pn);
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--paper);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.05em;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
[data-reveal].is-in .principle__n { animation: flowTouch 0.85s var(--ease); }
.principle:nth-child(1) .principle__n { animation-delay: 0.3s; }
.principle:nth-child(2) .principle__n { animation-delay: 0.65s; }
.principle:nth-child(3) .principle__n { animation-delay: 1s; }
.principle:nth-child(4) .principle__n { animation-delay: 1.35s; }

.principle__k {
  display: block;
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0.55rem 0 0.5rem;
}
.principle h3 {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.22rem);
  font-weight: 620;
  letter-spacing: -0.018em;
  margin-bottom: 0.5rem;
}
.principle p {
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-muted);
  max-width: 56ch;
}

@media (prefers-reduced-motion: reduce) {
  .principles::after { transform: scaleY(1); opacity: 0.3; animation: none !important; }
  .principle__n { animation: none !important; }
}

@media (max-width: 620px) {
  .principles { --pn: 38px; }
  .principle { column-gap: 1.1rem; }
}


.baseline { position: relative; }

.baseline__cap {
  display: block;
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: 1.1rem;
}

.baseline__row {
  display: grid;
  grid-template-columns: 8.75rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-top: 1px solid var(--rule);
  transition: border-color 0.28s var(--ease);
}
.baseline__row:hover { border-color: var(--navy); }

.baseline__k {
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.baseline__k::before {
  content: "";
  flex: none;
  width: 10px;
  height: 1px;
  background: var(--red);
  transition: width 0.28s var(--ease);
}
.baseline__row:hover .baseline__k::before { width: 18px; }

.baseline__v {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.baseline__v em {
  font-style: normal;
  color: var(--slate-300);
  padding: 0 0.25em;
}


.baseline__rule {
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
}
[data-reveal].is-in .baseline__rule {
  animation: ecoPath 1.5s var(--ease) 0.35s forwards;
}
.baseline__foot {
  display: block;
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .baseline__rule { transform: scaleX(1); opacity: 0.32; animation: none !important; }
}

@media (max-width: 560px) {
  .baseline__row { grid-template-columns: 1fr; gap: 0.35rem; }
}


.prj-list { border-top: 1px solid var(--rule); }

.prj {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding: clamp(1.7rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.prj__meta { display: grid; gap: 0.4rem; }
.prj__type {
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--red);
}
.prj__ind { font-size: 0.86rem; color: var(--slate-300); }

.prj__body h2 { margin-bottom: 0.6rem; }
.prj__hint { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); max-width: 44ch; }

.prj__spec { display: grid; grid-template-columns: 7rem 1fr; gap: 0.5rem 1rem; margin-top: 1rem; }
.prj__spec dt {
  font-size: 0.66rem; font-weight: 680; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--slate-300); padding-top: 0.2em;
}
.prj__spec dd { margin: 0; font-size: 0.94rem; line-height: 1.55; color: var(--text-muted); }

.prj__shot { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.prj__shot img { width: 100%; height: 100%; object-fit: cover; }


.prj--empty { display: none; }
[data-draft="true"] .prj--empty { display: grid; }
.prj--empty .prj__hint { color: var(--slate-500); }


.prj-list__pending {
  padding: clamp(2rem, 5vw, 3rem) 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
[data-draft="true"] .prj-list__pending { display: none; }




.case__head {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.case__head .ind__code { padding-top: 0.5em; }
.case__head .h2 { max-width: 18ch; }


.case__id {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.case__id dt {
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: 0.3rem;
}
.case__id dd {
  font-size: 0.97rem;
  font-weight: 560;
  color: var(--navy);
  line-height: 1.4;
}


.case__plate {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.case__ui {
  max-width: 698px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
}
.case__ui img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.case__ui figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.case__ui figcaption strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 0.2rem;
}


.case__h {
  font-size: var(--step-2);
  font-weight: 580;
  letter-spacing: -0.02em;
  line-height: 1.15;
}


.case__close {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: clamp(1.75rem, 3vw, 2.25rem);
  border-top: 1px solid var(--rule);
  font-size: var(--step-1);
  font-weight: 560;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 34ch;
}


.stageline {
  list-style: none;
  padding: 0;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0;
}
.stageline li {
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.stageline li + li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin: 0 0.75rem;
  vertical-align: 0.28em;
  background: var(--red);
}


.case__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}


.split .svc-dia { max-width: 480px; margin-inline: auto; }

@media (max-width: 860px) {
  .case__head,
  .case__grid { grid-template-columns: 1fr; }
  .case__head { gap: 0.75rem; }
  .case__head .ind__code { padding-top: 0; }
  .case__grid { gap: clamp(1.5rem, 4vw, 2rem); }
}

@media (max-width: 620px) {

  .case__id { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case__close { max-width: none; }


  .split .svc-dia { max-width: 360px; }
  .split .svc-dia .lb { font-size: 20px; }
  .split .svc-dia .lb--sm { font-size: 17px; }
  .split .svc-dia .cp { font-size: 14px; letter-spacing: 0.12em; }
  .split .svc-dia .ln, .split .svc-dia .acc { stroke-width: 1.8; }
}
.prj__shot--empty { display: none; }
[data-draft="true"] .prj__shot--empty {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  background: repeating-linear-gradient(-45deg, var(--bone), var(--bone) 11px, #EDF1F5 11px, #EDF1F5 22px);
  border: 1px dashed #C6D2DE;
  border-radius: var(--radius-lg);
}
[data-draft="true"] .prj__shot--empty span {
  font-size: 0.8rem; color: var(--slate-500);
}
[data-draft="true"] .prj__shot--empty span::before {
  content: "PLACEHOLDER — NOT A REAL PROJECT";
  display: block;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--red); margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .prj { grid-template-columns: 1fr; gap: 1rem; }
  .prj__meta { display: flex; gap: 1rem; align-items: baseline; }
  .prj__shot, .prj__shot--empty { max-width: 460px; }
}


.ind-block__head {
  max-width: 46rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.ind-block__head .ind__code { display: block; margin-bottom: 0.9rem; }
.ind-block__head .h2 { margin-bottom: 0.9rem; }
.ind-block .domain__k { color: var(--slate-300); }


.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.5rem 1.15rem 0;
  position: relative;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  font-weight: 580;
  letter-spacing: -0.015em;
  color: var(--navy);
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 11px; height: 11px;
  border-right: 1.5px solid var(--slate-300);
  border-bottom: 1.5px solid var(--slate-300);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.faq details[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
  border-color: var(--red);
}
.faq__a {
  padding: 0 2.5rem 1.3rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 68ch;
}


@media (max-width: 1080px) {
  .page-hero--split .page-hero__inner { grid-template-columns: 1fr; gap: 2.75rem; max-width: 1220px; }
  .page-hero--split .page-hero__copy { max-width: none; }
  .page-hero--split .svc-dia { max-width: 470px; margin-inline: auto; }


  .page-hero--photo-split .page-hero__bg::after {
    background:
      linear-gradient(180deg,
        rgba(11,20,31,0.82) 0%,
        rgba(11,20,31,0.78) 38%,
        rgba(11,20,31,0.58) 70%,
        rgba(11,20,31,0.44) 100%),
      linear-gradient(100deg,
        rgba(15,41,66,0.48) 0%,
        rgba(15,41,66,0.34) 50%,
        rgba(15,41,66,0.44) 100%),
      radial-gradient(126% 100% at 50% 45%, transparent 32%, rgba(11,20,31,0.44) 100%);
  }


  .svc-dia .lb { font-size: 16.5px; }
  .svc-dia .cp { font-size: 13px; letter-spacing: 0.15em; }
}

@media (max-width: 980px) {
  .ledger--3 { grid-template-columns: 1fr; }
  .ledger--3 .ledger__item { border-right: 0; padding-right: 0; }
  .ledger--3 .ledger__item + .ledger__item { border-top: 1px solid var(--rule); }
}


@media (max-width: 620px) {
  .page-hero--split .svc-dia { max-width: 100%; }
  .svc-dia .lb { font-size: 20px; }
  .svc-dia .cp { font-size: 17px; letter-spacing: 0.11em; }
  .svc-dia .ln { stroke-width: 1.7; }
  .svc-dia .spine, .svc-dia .acc { stroke-width: 2; }
  .svc-dia .nd, .svc-dia .nd-a { stroke-width: 1.7; }
}


.checks { list-style: none; padding: 0; display: grid; gap: 0.8rem; margin-top: 1.6rem; }

.checks li {
  position: relative;
  padding-left: calc(6px + 0.8rem);
  font-size: 0.97rem;
  color: var(--text-muted);
}

.footer-grid ul a,
.footer-bottom a,
.crumbs a,
.baseline__v a,
.contact-lines__v a,
.plr__link {
  position: relative;
}
.footer-grid ul a::after,
.footer-bottom a::after,
.crumbs a::after,
.baseline__v a::after,
.contact-lines__v a::after,
.plr__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 24px;
  transform: translateY(-50%);

}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.ground-navy .checks li, .ground-ink .checks li { color: rgba(255,255,255,0.7); }


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.card:hover { border-color: var(--navy); transform: translateY(-2px); }
.card h3 { font-size: 1.06rem; font-weight: 620; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }
.card__ico {
  width: 34px; height: 34px;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.ground-bone .card { background: var(--paper); }


.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.related a {
  background: var(--paper);
  padding: 1.4rem 1.35rem;
  transition: background 0.2s var(--ease);
}
.related a:hover { background: var(--bone); }
.related strong { display: block; font-size: 0.98rem; font-weight: 600; margin-bottom: 0.25rem; }
.related span { font-size: 0.84rem; color: var(--text-muted); }


[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}



@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.75rem; }
  .hero h1 { max-width: 19ch; }


  .schematic { max-width: 430px; margin-inline: auto; }
  .schematic .path,
  .schematic .flow,
  .schematic .node { stroke-width: 1.55; }



  .hero__bg img { object-position: 50% 42%; }
  .hero__bg::after {
    background:
      linear-gradient(180deg,
        rgba(11,20,31,0.90) 0%,
        rgba(11,20,31,0.84) 32%,
        rgba(15,41,66,0.62) 62%,
        rgba(15,41,66,0.50) 100%),
      radial-gradient(126% 92% at 50% 56%, transparent 34%, rgba(11,20,31,0.48) 100%);
  }
}


@media (max-width: 620px) {
  .hero__bg img { object-position: 50% 38%; }
  .hero__bg::after {
    background:
      linear-gradient(180deg,
        rgba(11,20,31,0.92) 0%,
        rgba(11,20,31,0.86) 36%,
        rgba(15,41,66,0.66) 66%,
        rgba(15,41,66,0.54) 100%),
      radial-gradient(130% 90% at 50% 58%, transparent 30%, rgba(11,20,31,0.50) 100%);
  }
}


@media (max-width: 1080px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .plr:nth-child(3) { border-left: 0; }
  .plr:nth-child(n+3) { border-top: 1px solid var(--rule-on-dark); }
}

@media (max-width: 720px) {
  .pillars { grid-template-columns: 1fr; }
  .plr { border-left: 0; padding-inline: 0; }
  .plr:nth-child(n+2) { border-top: 1px solid var(--rule-on-dark); }
  .plr h3, .plr > p { max-width: 34ch; }
  .plr__motif { width: 58px; height: 58px; opacity: 0.11; }


  .plr__more { display: none; }
}


@media (max-width: 1080px) {
  .eco__flow { grid-template-columns: repeat(3, 1fr); row-gap: 2.75rem; }
  .eco__flow::before,
  .eco__flow::after { left: calc(var(--mark) / 2); right: calc((100% / 3) - (var(--mark) / 2)); }
}


@media (max-width: 760px) {
  .eco { --mark: 46px; padding-inline: clamp(1rem, 4vw, 1.75rem); }

  .eco__flow { grid-template-columns: 1fr; row-gap: 0; }


  .eco__flow::before,
  .eco__flow::after {
    top: calc(var(--mark) / 2);
    bottom: calc(var(--mark) / 2);
    left: calc(var(--mark) / 2);
    right: auto;
    width: 1px;
    height: auto;
  }
  .eco__flow::after {
    transform: scaleY(0);
    transform-origin: center top;
  }
  [data-reveal].is-in .eco__flow::after {
    animation: ecoPathV 1.9s var(--ease) 0.25s forwards;
  }
  @keyframes ecoPathV {
    0%   { transform: scaleY(0); opacity: 0.85; }
    70%  { transform: scaleY(1); opacity: 0.85; }
    100% { transform: scaleY(1); opacity: 0.32; }
  }

  .eco__node {
    display: grid;
    grid-template-columns: var(--mark) 1fr;
    column-gap: 1.35rem;
    padding: 0 0 2.25rem 0;
    align-items: start;
  }
  .eco__node:last-child { padding-bottom: 0; }
  .eco__num { margin: 0 0 0.3rem; }
  .eco__node p { max-width: 34ch; }

  @media (prefers-reduced-motion: reduce) {
    .eco__flow::after { transform: scaleY(1); }
  }
}

@media (max-width: 980px) {
  .nav, .header-cta .header-phone { display: none; }
  .burger { display: flex; }
}


@media (max-width: 560px) {
  .site-header__inner { min-height: 72px; gap: 1rem; }
  .brand { gap: 0.65rem; }
  .brand__mark { height: 42px; }
  .brand__name { font-size: 1.06rem; }
  .brand__name small { font-size: 0.55rem; letter-spacing: 0.17em; }
}


@media (max-width: 430px) {
  .header-cta > .btn { display: none; }
}


@media (max-width: 335px) {
  .brand__name { display: none; }
  .brand__mark { height: 44px; }
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .hero h1 { max-width: 17ch; }
  .bob { grid-template-columns: 1fr; }
  .bob__figure { aspect-ratio: 16 / 11; }
  .problem { grid-template-columns: 1fr; gap: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


@media (max-width: 620px) {

  .schematic { max-width: 380px; }
  .schematic .lbl { font-size: 19px; }
  .schematic .num,
  .schematic .cap { font-size: 13px; }
  .schematic .path,
  .schematic .flow,
  .schematic .node { stroke-width: 1.9; }
  .schematic .dot { r: 4.2; }
}


@media (max-width: 430px) {
  .schematic .num,
  .schematic .cap { font-size: 15px; }
}

@media (max-width: 620px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .hero__meta { gap: 1rem 1.5rem; }
}


.legal-draft { display: none; }
[data-draft="true"] .legal-draft {
  display: block;
  border: 1px dashed var(--red);
  border-radius: var(--radius-lg);
  background: rgba(232,34,60,0.05);
  padding: 1.25rem 1.4rem;
}
.legal-draft__flag {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.legal-draft p { font-size: 0.93rem; color: var(--text-muted); }
