:root {

  --bg-0: #050807;
  --bg-1: #080D0B;
  --bg-2: #0B120F;
  --bg-3: #101917;
  --bg-elev: rgba(255, 255, 255, .026);

  --brand: #009544;
  --brand-lit: #00D95F;
  --brand-soft: #7CFFB2;
  --brand-deep: #04331D;

  --txt: #E9F1EB;
  --txt-2: #9FB2A6;
  --txt-3: #75897F;

  --line: rgba(255, 255, 255, .075);
  --line-2: rgba(255, 255, 255, .14);
  --line-brand: rgba(0, 217, 95, .28);

  --f-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --t-display: clamp(2.4rem, 1.2rem + 5.6vw, 5.4rem);
  --t-h2: clamp(1.9rem, 1.1rem + 2.9vw, 3.1rem);
  --t-h3: clamp(1.05rem, .95rem + .45vw, 1.32rem);
  --t-lead: clamp(1rem, .95rem + .35vw, 1.19rem);
  --t-body: 1rem;
  --t-sm: .9rem;
  --t-xs: .78rem;

  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --pad-y: clamp(4.5rem, 9vw, 9rem);
  --maxw: 1240px;
  --maxw-narrow: 820px;

  --r-sm: 4px;
  --r: 4px;
  --r-lg: 4px;
  --r-full: 4px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .55s;

  --particle-node: 0, 217, 95;
  --particle-hub: 124, 255, 178;
  --particle-link: 0, 190, 90;
  --particle-opacity: 1;

  --header-h: 76px;
  color-scheme: dark;
}

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);

  overflow-x: clip;
}

body {
  min-height: 100svh;
  background: var(--bg-0);
  color: var(--txt);
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.65;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

::selection { background: rgba(0, 217, 95, .3); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  padding: .7rem 1.1rem; border-radius: var(--r-sm);
  background: var(--brand-lit); color: #041108;
  font-weight: 600; font-size: var(--t-sm);
  transform: translateY(-160%);
  transition: transform .25s var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); }

.gl-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.gl-sprite symbol {
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section {
  position: relative;
  padding-block: var(--pad-y);

  overflow-x: clip;
}

.section__aura {
  position: absolute;
  top: 8%;
  left: -12%;
  width: min(760px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 149, 68, .14), transparent 66%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.section__aura--right { left: auto; right: -14%; top: 14%; }
.section__aura--bottom { top: auto; bottom: -18%; left: 40%; }
.section > .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.15rem;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt-2);
}
.eyebrow--center { justify-content: center; }
.eyebrow--solo { margin-bottom: .7rem; }
.eyebrow--solo .eyebrow__index { padding-right: 0; }
.eyebrow--solo .eyebrow__index::after { display: none; }

.eyebrow__index {
  position: relative;
  padding-right: .85rem;
  color: var(--brand-lit);
}
.eyebrow__index::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: .45rem; height: 1px;
  background: var(--line-brand);
}

.section__title {
  font-size: var(--t-h2);
  max-width: 20ch;
}
.section__head--center .section__title,
.section__head--center .section__lead { margin-inline: auto; }
.section__head--center { text-align: center; }

.section__lead {
  margin-top: 1.15rem;
  max-width: 62ch;
  font-size: var(--t-lead);
  color: var(--txt-2);
}

.section__head { margin-bottom: clamp(2.5rem, 5vw, 4.25rem); }

.section__head--split {
  display: grid;
  gap: 1.75rem;
}
.section__head--split .section__title { max-width: 16ch; }
.section__head-aside { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.section__head-aside .section__lead { margin-top: 0; }

@media (min-width: 900px) {
  .section__head--split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
  }
}

.icon {
  width: 24px; height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--sm { width: 18px; height: 18px; }
.icon--xs { width: 15px; height: 15px; stroke-width: 1.7; }

.btn {
  --btn-bg: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.45rem;
  border-radius: var(--r-full);
  font-family: var(--f-display);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;

  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn .icon { transition: transform .35s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(180deg, var(--brand-lit), var(--brand));
  color: #03170C;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .28) inset,
              0 10px 30px -12px rgba(0, 217, 95, .65);
}
.btn--primary:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, .35) inset,
              0 16px 42px -14px rgba(0, 217, 95, .9);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid var(--line-2);

  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);
}
.btn--ghost:hover {
  border-color: var(--line-brand);
  background: rgba(0, 217, 95, .07);
  color: #fff;
  transform: translateY(-2px);
}

.btn--sm { padding: .58rem 1.1rem; font-size: .88rem; }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--brand-lit);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow::after {
  content: '';
  position: absolute;
}
.link-arrow:hover { gap: .85rem; color: var(--brand-soft); }

.pulse-dot {
  position: relative;
  width: 7px; height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-lit);
  box-shadow: 0 0 12px 1px rgba(0, 217, 95, .8);
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--brand-lit);
  animation: pulse-ring 2.4s var(--ease-out) infinite;
}
@keyframes pulse-ring {
  0%   { opacity: .9; transform: scale(.6); }
  70%  { opacity: 0;  transform: scale(1.9); }
  100% { opacity: 0;  transform: scale(1.9); }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  border-radius: 4px;
  background: var(--bg-1);
  overflow: hidden;
  isolation: isolate;
  backface-visibility: hidden;
  transition: background-color .4s var(--ease);
}
.card:hover { background: var(--bg-2); }

[data-spotlight] { position: relative; }
[data-spotlight]::before,
[data-spotlight]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: 0;
}

[data-spotlight]::before {
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 0%),
              rgba(0, 217, 95, .10), transparent 62%);
}

[data-spotlight]::after {
  padding: 1px;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%),
              rgba(0, 217, 95, .6), transparent 62%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
[data-spotlight]:hover::before,
[data-spotlight]:hover::after,
[data-spotlight]:focus-within::before,
[data-spotlight]:focus-within::after { opacity: 1; }

.card > * { position: relative; z-index: 1; }

.card__code {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .95rem;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .12em;
  color: var(--txt-3);
}
.card__code::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(0, 217, 95, .12), rgba(0, 217, 95, .02));
  color: var(--brand-lit);
  transition: border-color .4s var(--ease), transform .5s var(--ease);
}
.card:hover .card__icon { border-color: var(--line-brand); transform: translateY(-2px); }

.card__title { font-size: var(--t-h3); }
.card__title--sm { font-size: 1.05rem; line-height: 1.3; }

.card__text {
  margin-top: .7rem;
  font-size: var(--t-sm);
  color: var(--txt-2);
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.5rem;
  font-family: var(--f-display);
  font-size: .87rem;
  font-weight: 600;
  color: var(--txt-3);
  transition: color .35s var(--ease), gap .35s var(--ease);
}
.card:hover .card__cta,
.paper__link:hover .card__cta { color: var(--brand-lit); gap: .7rem; }

.cards { display: grid; gap: 1rem; }
@media (min-width: 700px)  { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards--3 { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; } }

.tags, .specs { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.1rem; }

.tag {
  padding: .25rem .65rem;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: transparent;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--txt-3);
}

.spec {
  position: relative;
  padding-left: .85rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--txt-3);
}
.spec::before {
  content: '';
  position: absolute;
  left: .1rem; top: .62em;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--brand);
}

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-right: clamp(1.25rem, 3vw, 2.5rem);
}

.marquee__item img {
  width: auto;
  height: clamp(40px, 5vw, 54px);
  opacity: .48;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.marquee__item:hover img { opacity: 1; transform: translateY(-2px); }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.js [data-split] .word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, .5em, 0);
  filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  transition-delay: calc(var(--i) * 70ms + var(--base, 0ms));
}
.js [data-split].is-in .word { opacity: 1; transform: none; filter: blur(0); }

.js [data-rise] {
  opacity: 0;
  transform: translate3d(0, .5em, 0);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--base, 0ms);
}
.js [data-rise].is-in { opacity: 1; transform: none; }

.site-header {
  --mega-drop: 13px;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;

}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: var(--header-h);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  transition: height .4s var(--ease);
}
.site-header__line {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 8, 7, .72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.site-header.is-stuck::before { opacity: 1; }
.site-header.is-stuck { --mega-drop: 7px; }
.site-header.is-stuck .site-header__inner { height: 64px; }
.site-header.is-stuck .site-header__line { opacity: 1; }

.brand { flex: none; display: block; }
.brand__img {
  width: auto;
  height: 50px;
  transition: opacity .3s var(--ease);
}
.brand:hover .brand__img { opacity: .82; }

.nav { display: none; margin-inline: auto; }
@media (min-width: 1120px) { .nav { display: block; } }

.nav__list { display: flex; align-items: center; gap: .15rem; }
.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .78rem;
  border-radius: var(--r-full);
  font-size: .91rem;
  font-weight: 500;
  color: var(--txt-2);
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
.nav__link span { position: relative; }
.nav__link span::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--brand-lit);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__link:hover { color: var(--txt); }
.nav__link:hover span::after,
.nav__link.is-active span::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--txt); }
.nav__caret { transition: transform .35s var(--ease); opacity: .6; }
.nav__item.has-mega:hover .nav__caret { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: calc(100% + var(--mega-drop));
  left: 50%;
  width: min(620px, 78vw);
  padding-top: .25rem;

  margin-left: var(--shift, 0px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
}
.nav__item.has-mega:hover .mega,
.nav__item.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mega__inner {
  padding: 1.5rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);

  background: rgba(7, 11, 9, .97);
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .9),
              0 0 0 1px rgba(0, 217, 95, .05);
}
.mega__title {
  margin-bottom: 1rem;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt-3);
}

.mega--wide { width: min(720px, 92vw); }

.mega__cols {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.mega__group-title {
  margin-bottom: .55rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-lit);
}

.mega__grid.mega__grid--single { grid-template-columns: 1fr; }
.mega--wide .mega__link { align-items: flex-start; }
.mega--wide .mega__sku { padding-top: .1em; }
.mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem; }
.mega__link {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .62rem .7rem;
  border-radius: var(--r-sm);
  font-size: .89rem;
  line-height: 1.35;
  color: var(--txt-2);
  transition: background-color .28s var(--ease), color .28s var(--ease);
}
.mega__link:hover { background: rgba(0, 217, 95, .07); color: var(--txt); }
.mega__icon { width: 19px; height: 19px; color: var(--brand-lit); opacity: .85; }
.mega__sku {
  flex: none;
  min-width: 4.3rem;
  font-family: var(--f-mono);
  font-size: .68rem;
  color: var(--brand-lit);
}
.mega__all {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  width: 100%;
  font-family: var(--f-display);
  font-size: .87rem;
  font-weight: 600;
  color: var(--brand-lit);
  transition: gap .3s var(--ease);
}
.mega__all:hover { gap: .7rem; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
}
@media (min-width: 1120px) { .site-header__actions { margin-left: 0; } }

.lang-switch {
  display: none;
  align-items: center;
  gap: .35rem;
  padding: .45rem .7rem;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--txt-2);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.lang-switch:hover { border-color: var(--line-brand); color: var(--txt); }
@media (min-width: 560px) { .lang-switch { display: inline-flex; } }

.site-header__cta { display: none; }
@media (min-width: 460px) { .site-header__cta { display: inline-flex; } }

.burger {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--txt);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.burger:hover { border-color: var(--line-2); background: rgba(255, 255, 255, .03); }
.burger__close { display: none; }
.burger[aria-expanded="true"] .burger__open { display: none; }
.burger[aria-expanded="true"] .burger__close { display: block; }
@media (min-width: 1120px) { .burger { display: none; } }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 490;
  padding-top: var(--header-h);
  background: rgba(5, 8, 7, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow-y: auto;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { opacity: 1; }

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem var(--pad-x) 2.5rem;
}
.mobile-nav__list { flex: 1; }
.mobile-nav__item, .mobile-nav__list > li { border-bottom: 1px solid var(--line); }

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem 0;
  font-family: var(--f-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--txt);
  text-align: left;
  opacity: 0;
  transform: translateY(14px);
}
.mobile-nav.is-open .mobile-nav__link {
  opacity: 1;
  transform: none;
  transition: opacity .5s var(--ease) calc(var(--i, 0) * 55ms + 100ms),
              transform .5s var(--ease) calc(var(--i, 0) * 55ms + 100ms);
}
.mobile-nav__link--toggle .icon { transition: transform .35s var(--ease); color: var(--brand-lit); }
.mobile-nav__link--toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }

.mobile-nav__sub { padding-bottom: 1rem; }
.mobile-nav__sub[hidden] { display: none; }
.mobile-nav__sub a {
  display: block;
  padding: .5rem 0 .5rem 1rem;
  border-left: 1px solid var(--line);
  font-size: .95rem;
  color: var(--txt-2);
}
.mobile-nav__sub a:hover { color: var(--brand-lit); border-color: var(--line-brand); }
.mobile-nav__all { color: var(--brand-lit) !important; font-weight: 600; }

.mobile-nav__group {
  padding: .8rem 0 .25rem 1rem;
  border-left: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-lit);
}

.mobile-nav__foot { display: grid; gap: 1rem; margin-top: 2rem; }
.mobile-nav__mail {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: var(--t-sm);
  color: var(--txt-2);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + clamp(2rem, 7vh, 5rem));
  padding-bottom: clamp(5rem, 10vh, 8rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;

  -webkit-mask-image: linear-gradient(180deg,
      #000 0%, #000 38%, rgba(0, 0, 0, .55) 58%, rgba(0, 0, 0, .12) 74%, transparent 86%);
          mask-image: linear-gradient(180deg,
      #000 0%, #000 38%, rgba(0, 0, 0, .55) 58%, rgba(0, 0, 0, .12) 74%, transparent 86%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 32%, #000 5%, transparent 72%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 32%, #000 5%, transparent 72%);
  opacity: .8;
}

.hero__glow {
  position: absolute;
  top: -18%;
  left: 50%;
  z-index: -5;
  width: min(1100px, 130vw);
  aspect-ratio: 1.35;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(0, 149, 68, .26), transparent 62%),
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(0, 217, 95, .12), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__scan {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 217, 95, .045) 50%, transparent 58%);
  background-size: 100% 220%;
  animation: scan 11s linear infinite;
  pointer-events: none;
}
@keyframes scan { to { background-position: 0 -220%; } }

.hero__inner { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1rem .45rem .8rem;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .025);
  backdrop-filter: blur(10px);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .05em;
  color: var(--txt-2);
}

.hero__title {
  margin-top: 0;
  font-size: var(--t-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.hero__line { display: block; }
.hero__line--accent { --base: 220ms; }

.hero__accent {
  display: block;
  background: linear-gradient(105deg, #fff 8%, var(--brand-soft) 45%, var(--brand) 92%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.hero__lead {
  margin-top: 1.6rem;
  max-width: 56ch;
  font-size: var(--t-lead);
  color: var(--txt-2);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.25rem;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--line);
}
@media (min-width: 860px) { .hero__metrics { grid-template-columns: repeat(4, 1fr); } }

.metric { position: relative; padding-left: 1rem; }
.metric::before {
  content: '';
  position: absolute;
  left: 0; top: .3rem; bottom: .3rem;
  width: 1px;
  background: linear-gradient(180deg, var(--brand-lit), transparent);
  opacity: .5;
}
.metric__value {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 1rem + 2.2vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  text-wrap: nowrap;
  color: #fff;
}
.metric__label {
  display: block;
  margin-top: .55rem;
  max-width: 22ch;
  font-size: var(--t-xs);
  line-height: 1.45;
  color: var(--txt-3);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 3vh, 2.25rem);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--txt-3);
  transition: color .3s var(--ease);
}
.hero__scroll:hover { color: var(--brand-lit); }
@media (min-height: 720px) and (min-width: 900px) { .hero__scroll { display: flex; } }
.hero__scroll-rail {
  position: relative;
  width: 1px; height: 42px;
  background: var(--line-2);
  overflow: hidden;
}
.hero__scroll-dot {
  position: absolute;
  left: -1px;
  width: 3px; height: 12px;
  border-radius: 4px;
  background: var(--brand-lit);
  box-shadow: 0 0 8px rgba(0, 217, 95, .9);
  animation: scroll-dot 2.2s var(--ease-out) infinite;
}
@keyframes scroll-dot {
  0%   { transform: translateY(-14px); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(44px); opacity: 0; }
}

.clients {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
}

.clients__partners {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  text-align: center;
}
.clients__partners-title {
  margin-bottom: 1.5rem;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--txt-3);
}
.clients__partners-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(.75rem, 2.5vw, 2rem);
}
.clients__partners-list img {
  height: clamp(32px, 4vw, 44px);
  width: auto;
  opacity: .34;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.clients__partners-list li:hover img { opacity: .9; transform: translateY(-2px); }

.steps { display: grid; gap: 1rem; counter-reset: step; }
@media (min-width: 640px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  position: relative;

  padding: 0 0 1.85rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), transparent);
  overflow: hidden;
  backface-visibility: hidden;
  transition: border-color .4s var(--ease), transform .5s var(--ease);
}
.step > *:not(.step__media):not(.step__rail) { margin-inline: 1.5rem; }
.step > .step__icon { margin-top: 1.35rem; }
.step > .step__n { display: block; padding-top: 1.75rem; }
.step:hover { border-color: var(--line-2); transform: translate3d(0, -4px, 0); }
.step > * { position: relative; z-index: 1; }

.step__n {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--brand-lit);
}
.step__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  margin-bottom: 1.1rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--brand-lit);
  background: rgba(0, 217, 95, .05);
}

.step__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.6) contrast(1.04);
  transform: scale(1.02);
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.step:hover .step__media img { transform: scale(1.07); filter: grayscale(0) contrast(1); }

.step__badge {
  position: absolute;
  top: .7rem; left: .7rem;
  padding: .2rem .6rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-full);
  background: rgba(5, 8, 7, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--brand-lit);
}
.step__title { font-size: 1.02rem; }
.step__text { margin-top: .6rem; font-size: var(--t-sm); color: var(--txt-2); }

.step__rail {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--brand-lit), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
  z-index: 2;
}
.step:hover .step__rail { transform: scaleX(1); }

.card--solution .card__title { max-width: 24ch; }

.apps { display: grid; gap: .85rem; }
@media (min-width: 640px)  { .apps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .apps { grid-template-columns: repeat(3, 1fr); } }

.app {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-1);
  transition: border-color .4s var(--ease), transform .5s var(--ease);

  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.app:hover { border-color: var(--line-brand); transform: translate3d(0, -4px, 0); }

.app__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(180deg,
      #000 0%, #000 38%, rgba(0, 0, 0, .28) 58%, transparent 74%);
          mask-image: linear-gradient(180deg,
      #000 0%, #000 38%, rgba(0, 0, 0, .28) 58%, transparent 74%);
}
.app__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.55) contrast(1.05);
  transform: scale(1.02);
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.app:hover .app__media img { transform: scale(1.07); filter: grayscale(0) contrast(1); }

.app__body {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: -3.25rem;
  padding: 0 1.35rem 1.4rem;
}
.app__title {
  display: block;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.app__text {
  display: block;
  margin-top: .4rem;
  font-size: var(--t-sm);
  color: var(--txt-2);
}
.app__arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  padding: .45rem;
  box-sizing: content-box;
  border-radius: 50%;
  background: rgba(5, 8, 7, .6);
  backdrop-filter: blur(8px);
  color: var(--txt);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), color .3s var(--ease);
}
.app:hover .app__arrow { opacity: 1; transform: none; color: var(--brand-lit); }

.cap { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 1040px) {
  .cap { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: start; }
  .cap__head { position: sticky; top: calc(var(--header-h) + 3rem); }
}

.cap__head .btn { margin-top: 2rem; }

.cap__facts {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 520px) { .cap__facts { grid-template-columns: repeat(3, 1fr); } }
.cap__fact-value {
  display: block;
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brand-lit);
}
.cap__fact-label {
  display: block;
  margin-top: .25rem;
  font-size: var(--t-xs);
  color: var(--txt-3);
}

.cap__list { position: relative; display: grid; gap: 0; }
.cap__list::before {
  content: '';
  position: absolute;
  left: 21px; top: 1.5rem; bottom: 1.5rem;
  width: 1px;
  background: var(--line-2);
}
.cap__item {
  position: relative;
  display: flex;
  gap: 1.35rem;
  padding: 1.5rem 0 1.5rem 0;
}
.cap__item + .cap__item::after {
  content: '';
  position: absolute;
  left: 4.05rem; right: 0; top: 0;
  height: 1px;
  background: var(--line);
}
.cap__item > * { position: relative; z-index: 1; }
.cap__item:hover .cap__icon { border-color: var(--brand); background: rgba(0, 217, 95, .1); transform: scale(1.08); }
.cap__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-brand);
  border-radius: 50%;
  background: var(--bg-0);
  color: var(--brand-lit);
  transition: background-color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.cap__title { font-size: 1rem; }
.cap__text { margin-top: .35rem; font-size: var(--t-sm); color: var(--txt-2); }

.cap__gallery {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 760px) { .cap__gallery { grid-template-columns: repeat(3, 1fr); } }

.shot { height: 100%; }

.shot__media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-1);
}
.shot__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(.6) contrast(1.04);
  transform: scale(1.01);
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.shot:hover .shot__media img { transform: scale(1.06); filter: grayscale(0) contrast(1); }
.shot:hover .shot__media { border-color: var(--line-brand); }

.shot__caption {
  display: block;
  margin-top: .85rem;
  padding-left: .85rem;
  border-left: 1px solid var(--line-brand);
  font-size: var(--t-xs);
  line-height: 1.5;
  color: var(--txt-3);
}

.filters {
  position: relative;
  display: inline-flex;
  gap: .2rem;
  margin-bottom: 2rem;
  padding: .3rem;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--bg-1);
}
.filter {
  position: relative;
  z-index: 1;
  padding: .5rem 1.1rem;
  border-radius: var(--r-full);
  font-family: var(--f-display);
  font-size: .87rem;
  font-weight: 600;
  color: var(--txt-3);
  transition: color .3s var(--ease);
}
.filter:hover { color: var(--txt-2); }
.filter.is-active { color: #03170C; }
.filter__pill {
  position: absolute;
  top: .3rem;
  left: 0;
  height: calc(100% - .6rem);
  border-radius: var(--r-full);
  background: linear-gradient(180deg, var(--brand-lit), var(--brand));
  box-shadow: 0 6px 20px -8px rgba(0, 217, 95, .8);
  transition: transform .45s var(--ease), width .45s var(--ease);
}

[data-filter-list] > li {
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
[data-filter-list] > li.is-hidden {
  display: none;
}

.card--product { padding-top: 0; padding-inline: 0; border: 1px solid var(--line); }
.card--product > *:not(.card__media) { padding-inline: clamp(1.5rem, 2.4vw, 2rem); }

.card__media {
  position: relative;
  display: block;
  margin-bottom: 1.35rem;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
}

.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.35) contrast(1.03);
  transform: scale(1.02);
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.card--product:hover .card__media img { transform: scale(1.07); filter: grayscale(0) contrast(1); }
.card--software .card__media img { object-fit: cover; object-position: left top; }

.card__badge {
  position: absolute;
  top: .85rem; left: .85rem;
  padding: .22rem .6rem;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: rgba(5, 8, 7, .7);
  backdrop-filter: blur(8px);
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt-2);
}

.card__sku {
  display: block;
  margin-bottom: .55rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--brand-lit);
}

.quotes { display: grid; gap: 1rem; }
@media (min-width: 760px)  { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

.quote {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.6rem, 2.4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .008));
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .5s var(--ease);
}
.quote:hover { border-color: var(--line-2); transform: translate3d(0, -4px, 0); }
.quote > * { position: relative; z-index: 1; }

.quote__mark {
  width: 30px; height: 30px;
  margin-bottom: 1.1rem;
  color: var(--brand);
  opacity: .55;
}
.quote__text { flex: 1; }
.quote__text p { font-size: .97rem; color: var(--txt); }

.quote__foot {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.quote__avatar {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}
.quote__name { display: block; font-family: var(--f-display); font-weight: 600; font-size: .92rem; }
.quote__role { display: block; margin-top: .1rem; font-size: var(--t-xs); color: var(--txt-3); }

.papers { display: grid; gap: 1rem; }
@media (min-width: 760px)  { .papers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .papers { grid-template-columns: repeat(3, 1fr); } }

.paper { height: 100%; }
.paper__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-1);
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .5s var(--ease);
}
.paper__link:hover { border-color: var(--line-brand); transform: translate3d(0, -4px, 0); }

.paper__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.paper__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.6) contrast(1.05);
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.paper__link:hover .paper__media img { transform: scale(1.05); filter: grayscale(0); }

.paper__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem clamp(1.25rem, 2vw, 1.6rem) 1.5rem;
}
.paper__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: .85rem;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--txt-3);
}
.paper__tag { color: var(--brand-lit); }
.paper__dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .5; }
.paper__title { font-size: 1.05rem; line-height: 1.32; }
.paper__text {
  display: block;
  margin-top: .6rem;
  font-size: var(--t-sm);
  color: var(--txt-2);
}
.paper__body .card__cta { margin-top: auto; }

.faq { display: grid; gap: .5rem; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent);
  transition: border-color .35s var(--ease), background-color .35s var(--ease);
}
.faq__item:hover { border-color: var(--line-2); }
.faq__item[open] { border-color: var(--line-brand); background: rgba(0, 217, 95, .035); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display);
  font-size: 1.01rem;
  font-weight: 600;
  color: var(--txt);
}
.faq__q::-webkit-details-marker { display: none; }

.faq__toggle {
  display: grid;
  place-items: center;
  flex: none;
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--brand-lit);
  transition: transform .4s var(--ease), background-color .35s var(--ease),
              border-color .35s var(--ease);
}
.faq__q > span:first-child { transition: color .3s var(--ease); }
.faq__item:hover .faq__q > span:first-child { color: var(--brand-lit); }
.faq__item:not([open]):hover .faq__toggle {
  transform: scale(1.14);
  border-color: var(--line-brand);
  background: rgba(0, 217, 95, .12);
}
.faq__item[open] .faq__toggle { transform: rotate(135deg); background: rgba(0, 217, 95, .1); }

.faq__a {
  padding: 0 1.35rem 1.35rem;
  overflow: hidden;
}
.faq__a p {
  max-width: 76ch;
  font-size: .95rem;
  color: var(--txt-2);
}
.js .faq__item[open] .faq__a { animation: faq-open .45s var(--ease); }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

.contact { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 1040px) {
  .contact { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: start; }
}

.contact__channels { display: grid; gap: .5rem; margin-top: 2.5rem; }
.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .35s var(--ease), background-color .35s var(--ease), transform .4s var(--ease);
}
a.contact__channel:hover {
  border-color: var(--line-brand);
  background: rgba(0, 217, 95, .04);
  transform: translateX(4px);
}
.contact__channel--static { opacity: .82; }
.contact__channel-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px; height: 40px;
  border-radius: 4px;
  background: rgba(0, 217, 95, .08);
  color: var(--brand-lit);
}
.contact__channel-label {
  display: block;
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt-3);
}
.contact__channel-value {
  display: block;
  margin-top: .15rem;
  font-size: .95rem;
  color: var(--txt);
}

.contact__form-wrap {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01)),
    var(--bg-1);
}

.form fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

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

.field { position: relative; }

.field__input {
  width: 100%;
  padding: 1.35rem .95rem .6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .022);
  color: var(--txt);
  font-size: .95rem;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field__input--area { resize: vertical; min-height: 118px; }
.field__input:hover { border-color: var(--line-2); }
.field__input:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(0, 217, 95, .035);
  box-shadow: 0 0 0 3px rgba(0, 217, 95, .12);
}

.field__label {
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  font-size: .95rem;
  color: var(--txt-3);
  pointer-events: none;
  transform-origin: left top;
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label {
  transform: translateY(-.72rem) scale(.76);
  color: var(--brand-lit);
}
.field__label--static {
  transform: translateY(-.72rem) scale(.76);
  color: var(--txt-3);
}

.field--select { position: relative; }
.field--select select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}
.field--select option { background: var(--bg-2); color: var(--txt); }
.field__caret {
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--txt-3);
  pointer-events: none;
}

.field__error {
  display: block;
  min-height: 0;
  margin-top: .35rem;
  font-size: var(--t-xs);
  color: #FF7A6B;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.field.has-error .field__input { border-color: rgba(255, 122, 107, .55); }
.field.has-error .field__error { opacity: 1; }

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
}
.form__privacy {
  flex: 1 1 16rem;
  font-size: var(--t-xs);
  color: var(--txt-3);
}

.form__status {
  margin: 0;
  font-size: var(--t-sm);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity .35s var(--ease), max-height .35s var(--ease), margin .35s var(--ease);
}
.form__status.is-ok, .form__status.is-error {
  max-height: 6rem;
  opacity: 1;
  margin-top: .25rem;
  padding: .75rem 1rem;
  border-radius: var(--r-sm);
}
.form__status.is-ok {
  border: 1px solid var(--line-brand);
  background: rgba(0, 217, 95, .08);
  color: var(--brand-soft);
}
.form__status.is-error {
  border: 1px solid rgba(255, 122, 107, .4);
  background: rgba(255, 122, 107, .07);
  color: #FF9C90;
}

.btn.is-busy { pointer-events: none; opacity: .7; }

.page-head {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  isolation: isolate;
  background: #050807;
  border-bottom: 1px solid var(--line);
}

:root[data-theme="light"] .page-head {
  --txt: #E9F1EB;
  --txt-2: #9FB2A6;
  --txt-3: #75897F;
  --line: rgba(255, 255, 255, .075);
  --line-2: rgba(255, 255, 255, .14);
  --line-brand: rgba(0, 217, 95, .28);
  --brand-lit: #00D95F;
  color: var(--txt);
  color-scheme: dark;
}

.page-head__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 30% 0%, #000 10%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 100% at 30% 0%, #000 10%, transparent 75%);
}
.page-head__canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.page-head__glow {
  position: absolute;
  top: -60%;
  left: 8%;
  z-index: -3;
  width: min(760px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 149, 68, .22), transparent 66%);
  filter: blur(28px);
}

.crumbs { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.crumbs li { display: flex; align-items: center; gap: .5rem; font-family: var(--f-mono); font-size: var(--t-xs); }
.crumbs li + li::before { content: '/'; color: var(--txt-3); opacity: .6; }
.crumbs a { color: var(--txt-3); transition: color .3s var(--ease); }
.crumbs a:hover { color: var(--brand-lit); }
.crumbs [aria-current] { color: var(--txt-2); }

.page-head__body { display: grid; gap: 1.75rem; }
@media (min-width: 900px) {
  .page-head__body { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 3.5rem; align-items: end; }
}
.page-head__title {
  font-size: clamp(2.1rem, 1.2rem + 3.4vw, 3.6rem);
  letter-spacing: -.03em;
  max-width: 16ch;
}
.page-head__lead { font-size: var(--t-lead); color: var(--txt-2); max-width: 52ch; }
.page-head__meta { display: flex; flex-wrap: wrap; gap: 1.75rem; margin-top: 1.5rem; }
.page-head__meta-value {
  display: block;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-lit);
}
.page-head__meta-label { display: block; margin-top: .2rem; font-size: var(--t-xs); color: var(--txt-3); }

.section--entrada { padding-block: clamp(2.5rem, 5vw, 3.75rem) clamp(.5rem, 1.5vw, 1rem); }
.entrada > p {
  max-width: 52rem;
  margin-top: 1.15rem;
  font-size: clamp(1.1rem, 1rem + .55vw, 1.45rem);
  line-height: 1.6;
  letter-spacing: -.01em;
  color: var(--txt);
  text-wrap: pretty;
}
.entrada > p:first-child { margin-top: 0; }

.entrada--doble > * { min-width: 0; }
.entrada__lead > p:first-child { margin-top: 0; }
.entrada__resto > p { margin-top: 1.15rem; font-size: var(--t-lead); line-height: 1.72; color: var(--txt-2); text-wrap: pretty; }
.entrada__resto > p:first-child { margin-top: 0; }
@media (min-width: 900px) {
  .entrada--doble {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
  }
  .entrada--doble .entrada__lead > p { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); }
}
@media (max-width: 899px) {
  .entrada__resto > p:first-child { margin-top: 1.15rem; }
}

.section--banner { padding-block: clamp(1.5rem, 3vw, 2.5rem); }
.banner {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-1);
}
.banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  filter: grayscale(.45) contrast(1.04);
  transition: filter .6s var(--ease);
}
.banner:hover img { filter: grayscale(0) contrast(1); }
@media (max-width: 640px) { .banner img { aspect-ratio: 4 / 3; } }

.doc__margen { margin-top: clamp(1.25rem, 2.5vw, 1.75rem); }
.doc__margen > .saliente,
.doc__margen > .dato { margin: 0; }
.doc__margen .saliente__texto { font-size: clamp(1.02rem, .98rem + .3vw, 1.15rem); }
.doc__margen .dato__n { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem); }

.section--doc { padding-block: 0; }
.section--papers { padding-top: 0; }

.doc {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  padding-block: clamp(2.75rem, 5.5vw, 4.5rem);
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) {
  .doc {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
  }
  .doc:not(.doc--figura) .doc__head { position: sticky; top: calc(var(--header-h) + 2.5rem); }

  .doc--figura .doc__head { align-self: stretch; display: flex; flex-direction: column; }
  .doc--figura .doc__figura { flex: 1 1 auto; min-height: 13rem; }
  .doc--figura .doc__figura img { height: 100%; aspect-ratio: auto; }
}
.doc__title {
  margin-top: .35rem;
  font-size: clamp(1.35rem, 1.1rem + .9vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -.025em;
  color: var(--txt);
  text-wrap: balance;
}
.doc__body > *:first-child { margin-top: 0; }

.doc__figura {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-1);
  transition: border-color .4s var(--ease);
}
.doc__figura img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(.45) contrast(1.04);
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
.doc:hover .doc__figura { border-color: var(--line-brand); }
.doc:hover .doc__figura img { transform: scale(1.04); filter: grayscale(0) contrast(1); }

.section--catalogo + .section--catalogo { padding-top: 0; }

.section--entrada + .section--rows,
.section--entrada + .section--cards { padding-top: clamp(2rem, 4vw, 3rem); }

.section--indice { padding-block: clamp(1.5rem, 3vw, 2.25rem) 0; }
.section--indice + .section--rows { padding-top: clamp(2.5rem, 5vw, 4rem); }

.indice__title {
  margin-bottom: .9rem;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt-3);
}
.indice__lista {
  display: grid;
  gap: .6rem;
}
@media (min-width: 600px) { .indice__lista { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 960px) { .indice__lista { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.indice__link {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  height: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: var(--t-sm);
  line-height: 1.35;
  color: var(--txt-2);
  transition: border-color .3s var(--ease), color .3s var(--ease), background-color .3s var(--ease);
}
.indice__link:hover,
.indice__link:focus-visible {
  border-color: var(--line-brand);
  background: rgba(0, 217, 95, .07);
  color: var(--txt);
}
.indice__num {
  flex: none;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--brand-lit);
}

.prosa > p,
.prosa > .eyebrow,
.prosa > .prosa__lista,
.prosa > .dato,
.prosa > .prosa__cta { max-width: 68ch; }
.prosa > p {
  margin-top: 1.15rem;
  font-size: var(--t-lead);
  line-height: 1.72;
  color: var(--txt-2);
  text-wrap: pretty;
}
.prosa > p:first-child { margin-top: 0; }

.tec {
  font-family: var(--f-mono);
  font-size: .92em;
  letter-spacing: -.01em;
  color: var(--txt);
  background: color-mix(in srgb, var(--brand-lit) 9%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--brand-lit) 32%, transparent);
  padding: .05em .3em;
  border-radius: 3px;
  white-space: nowrap;
}

.prosa__lista { margin: clamp(1.75rem, 4vw, 2.5rem) 0; }
.prosa__datos {
  display: grid;
  gap: .15rem;
  max-width: 68ch;
  margin: 1.15rem 0 0;
  padding-left: 1.1rem;
  border-left: 2px solid var(--line);
  font-style: normal;
  font-size: var(--t-lead);
  line-height: 1.6;
  color: var(--txt-2);
}
.prosa__datos a { color: var(--txt); text-decoration: underline; text-underline-offset: .2em; }
.prosa__lista li {
  position: relative;
  padding: .7rem 0 .7rem 1.9rem;
  border-top: 1px solid var(--line);
  font-size: var(--t-lead);
  line-height: 1.6;
  color: var(--txt-2);
}
.prosa__lista li:last-child { border-bottom: 1px solid var(--line); }
.prosa__lista li::before {
  content: '';
  position: absolute;
  left: .35rem; top: 1.35rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-lit);
}
.prosa__lista li::after {
  content: '';
  position: absolute;
  left: calc(.35rem + 3px); top: 1.35rem;
  width: 1px; height: 100%;
  background: var(--line-2);
}
.prosa__lista li:last-child::after { display: none; }
.prosa__lista b { color: var(--txt); font-weight: 500; }

.marca { font-weight: 600; color: var(--txt); }

.destaque {
  font-weight: 600;
  color: var(--txt);
  background-image: linear-gradient(var(--brand-lit), var(--brand-lit));
  background-size: 100% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: .06em;
}

.prosa .dato {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0 clamp(.9rem, 2vw, 1.4rem);
  margin: clamp(1.75rem, 4vw, 2.5rem) 0;
  padding-left: 1.15rem;
  border-left: 2px solid var(--brand-lit);
}
.dato__n {
  font-family: var(--f-display);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--txt);
  font-variant-numeric: tabular-nums;
}
.dato__t { font-size: var(--t-lead); line-height: 1.55; color: var(--txt-2); }

.grilla {
  display: grid;
  gap: 1px;
  margin: clamp(2rem, 4vw, 2.75rem) 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 560px) { .grilla { grid-template-columns: 1fr 1fr; } }
.grilla__item {
  position: relative;
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  background: var(--bg);
  transition: background-color .35s var(--ease);
}
.grilla__item:hover { background: var(--bg-2); }
.grilla__n {
  display: block;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .14em;
  color: var(--brand-lit);
}
.grilla__rot {
  margin-top: .55rem;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--txt);
}
.grilla__txt { margin-top: .35rem; font-size: .95rem; line-height: 1.55; color: var(--txt-2); }

.grilla--links .grilla__rot a { color: inherit; }
.grilla--links .grilla__rot a::after { content: ''; position: absolute; inset: 0; }
.grilla--links .grilla__item:hover .grilla__rot { color: var(--brand-lit); }
.grilla--links .grilla__item:focus-within { outline: 2px solid var(--brand-lit); outline-offset: -2px; }
.grilla--links .grilla__rot a:focus-visible { outline: none; }

.nf__ask { font-size: .95rem; line-height: 1.6; color: var(--txt-2); }
.nf__ask + .link-arrow { margin-top: .7rem; }

.saliente {
  position: relative;
  margin: clamp(2rem, 4vw, 2.75rem) 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  background: var(--bg-2);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.saliente__texto {
  margin: 0;
  font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem);
  line-height: 1.5;
  letter-spacing: -.015em;
  color: var(--txt);
  text-wrap: pretty;
}
.saliente__pie {
  margin-top: .9rem;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--txt-3);
}

.prosa__cta { margin-top: clamp(1.5rem, 3vw, 2rem); }

.prosa__figura {
  margin: clamp(2.25rem, 5vw, 3.5rem) 0;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-2);
}
.prosa__figura img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(.55) contrast(1.03);
  transition: filter .6s var(--ease);
}
.prosa__figura:hover img { filter: grayscale(0) contrast(1); }

.section--rows { padding-block: clamp(3.5rem, 7vw, 6rem); }

.rows { display: grid; gap: clamp(3rem, 6vw, 5.5rem); }

.row {
  display: grid;
  gap: 1.75rem;
  align-items: center;

  scroll-margin-top: calc(var(--header-h) + 2rem);
}
@media (min-width: 860px) {
  .row {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: stretch;
  }

  .row:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
  .row:nth-child(even) .row__media { order: 2; }
}

.row__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-1);
  backface-visibility: hidden;
  transition: border-color .4s var(--ease);
}
.row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.45) contrast(1.04);
  transform: scale(1.02);
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
.row:hover .row__media img { transform: scale(1.06); filter: grayscale(0) contrast(1); }
.row:hover .row__media { border-color: var(--line-brand); }

@media (min-width: 860px) {
  .row__media { aspect-ratio: auto; min-height: 19rem; }
}

.row__index {
  display: block;
  margin-bottom: .9rem;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .14em;
  color: var(--brand-lit);
}
.row__title { font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem); }
.row__title a { transition: color .3s var(--ease); }
.row__title a:hover { color: var(--brand-lit); }
.row__text { margin-top: .9rem; font-size: var(--t-lead); color: var(--txt-2); max-width: 46ch; }

.row__related { margin-top: 1.5rem; }
.row__related-title {
  margin-bottom: .6rem;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt-3);
}
.tags--links { margin-top: 0; }
.tag--link {
  display: inline-block;
  text-transform: none;
  letter-spacing: 0;
  font-size: .78rem;
  color: var(--txt-2);
  transition: border-color .3s var(--ease), color .3s var(--ease), background-color .3s var(--ease);
}
.tag--link:hover {
  border-color: var(--line-brand);
  background: rgba(0, 217, 95, .07);
  color: var(--txt);
}

.row__body .link-arrow { margin-top: 1.75rem; }

.section--product { padding-block: clamp(3rem, 6vw, 5rem); }

.product { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 900px) {
  .product { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: start; }

  .product > .product__visual { position: sticky; top: calc(var(--header-h) + 2.5rem); }
}

.product__visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-1);
}
.product__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.25) contrast(1.03);
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
.product__visual:hover img { transform: scale(1.04); filter: grayscale(0) contrast(1); }

.product__visual--software { aspect-ratio: 16 / 10; background: none; }
.product__visual--software img { object-fit: cover; object-position: left top; }
@media (min-width: 900px) {
  .product.product--software { grid-template-columns: minmax(0, 1fr); }
  .product--software > .product__visual { position: relative; top: auto; aspect-ratio: 16 / 7; }
  .product--software .product__body {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    column-gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }
  .product--software .product__lead { grid-column: 1; grid-row: 1; }
  .product--software .edge { grid-column: 2; grid-row: 1 / span 2; margin-top: 0; }
  .product--software .product__actions { grid-column: 1; grid-row: 2; }
}

.product__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: .25rem .7rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-full);
  background: rgba(5, 8, 7, .6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt-2);
}

.product__lead { font-size: var(--t-lead); color: var(--txt-2); max-width: 60ch; }

.edge { display: grid; gap: 1.1rem; margin-top: 2.25rem; }
@media (min-width: 620px) { .edge { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.edge__item { display: flex; gap: .85rem; }
.edge__mark { flex: none; margin-top: .18rem; color: var(--brand-lit); }
.edge__title { font-size: .98rem; }
.edge__text { margin-top: .3rem; font-size: var(--t-sm); color: var(--txt-2); }

.product__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.product__datasheet {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--t-sm);
  color: var(--txt-3);
}
.product__datasheet em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}

.section--specs { padding-block: clamp(3.5rem, 7vw, 6rem); }

.specsheet { display: grid; gap: 1rem; }
@media (min-width: 700px)  { .specsheet { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .specsheet { grid-template-columns: repeat(4, 1fr); } }

.specsheet__group {
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), transparent);
}
.specsheet__title {
  padding-bottom: .8rem;
  margin-bottom: .9rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-lit);
}
.specsheet__list li {
  position: relative;
  padding-left: 1rem;
  font-size: var(--t-sm);
  color: var(--txt-2);
}
.specsheet__list li + li { margin-top: .55rem; }
.specsheet__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .62em;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand);
}

.section--product-apps { padding-block: clamp(3rem, 6vw, 5rem); }

.prodrel { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 900px) { .prodrel { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); } }

.checklist { margin-top: 1.75rem; display: grid; gap: .75rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: var(--t-lead);
  color: var(--txt-2);
}
.checklist .icon { flex: none; margin-top: .3rem; color: var(--brand-lit); }

.prodrel__links { display: grid; gap: 2rem; align-content: start; }
.prodrel__title {
  margin-bottom: .9rem;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt-3);
}
.prodrel__link {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: .93rem;
  color: var(--txt-2);
  transition: border-color .35s var(--ease), background-color .35s var(--ease),
              color .35s var(--ease), transform .4s var(--ease);
}
.prodrel__block li + li { margin-top: .5rem; }
.prodrel__link .icon { flex: none; color: var(--brand-lit); }
.prodrel__link:hover {
  border-color: var(--line-brand);
  background: rgba(0, 217, 95, .05);
  color: var(--txt);
  transform: translateX(4px);
}

.section--other { padding-block: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line); }

.section--closing {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}
.section:has(+ .section--closing),
.clients:has(+ .section--closing) { padding-bottom: clamp(2rem, 3vw, 3rem); }
.closing { text-align: center; }
.closing .section__title { margin-inline: auto; }
.closing .section__lead { margin-inline: auto; }
.closing .btn { margin-top: 2rem; }

.site-footer {
  position: relative;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
}
.site-footer__aura {
  position: absolute;
  bottom: -55%;
  left: 50%;
  width: min(900px, 110vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 149, 68, .13), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }

.site-footer__top { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 900px) {
  .site-footer__top { grid-template-columns: minmax(0, .75fr) minmax(0, 2.25fr); }
}

.site-footer__brand img { height: 34px; width: auto; }
.site-footer__tagline {
  margin-top: 1.25rem;
  max-width: 30ch;
  font-size: var(--t-sm);
  color: var(--txt-2);
}

.social { display: flex; gap: .5rem; margin-top: 1.5rem; }
.social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--txt-2);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .35s var(--ease);
}
.social a:hover { border-color: var(--line-brand); color: var(--brand-lit); transform: translateY(-2px); }

.site-footer__nav { display: grid; gap: 2rem; }
@media (min-width: 560px) { .site-footer__nav { grid-template-columns: repeat(3, 1fr); } }

.site-footer__col-title {
  margin-bottom: 1rem;
  line-height: 1.12;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt-3);
}
.site-footer__col-title--mt { margin-top: 2rem; }
.site-footer__col li + li { margin-top: .55rem; }
.site-footer__col a, .site-footer__col span {
  font-size: .89rem;
  color: var(--txt-2);
  transition: color .28s var(--ease);
}
.site-footer__col a:hover { color: var(--brand-lit); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.site-footer__copy { font-size: var(--t-xs); color: var(--txt-3); }
.site-footer__credito { font-size: var(--t-xs); color: var(--txt-3); }
.site-footer__credito a {
  color: var(--txt-2);
  text-decoration: underline;
  text-decoration-color: var(--line-2);
  text-underline-offset: .2em;
  transition: color .3s var(--ease), text-decoration-color .3s var(--ease);
}
.site-footer__credito a:hover { color: var(--brand-lit); text-decoration-color: currentColor; }
.site-footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--txt-3);
  transition: color .3s var(--ease);
}
.site-footer__top-link:hover { color: var(--brand-lit); }
.site-footer__top-link .icon { transition: transform .35s var(--ease); }
.site-footer__top-link:hover .icon { transform: translateY(-3px); }

.section--band { padding-top: 0; }
.section--band .section__aura { display: none; }

.section__band {
  --txt: #fff;
  --txt-2: #fff;
  --txt-3: #fff;
  --brand-lit: #fff;
  --line: rgba(255, 255, 255, .3);
  --line-2: rgba(255, 255, 255, .42);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(6.5rem, 11vw, 9rem);
  background: linear-gradient(118deg, #00551F, #006B2E 52%, #007F38);
  color: var(--txt);
  color-scheme: dark;
}
.section__band .eyebrow__index { color: rgba(255, 255, 255, .75); }
.section__band .link-arrow:hover { color: #fff; }

.section--band .cards,
.section--band .quotes {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * clamp(5rem, 9vw, 7.5rem));
}

.section--band .quote { background: var(--bg-1); }

.section--band-solo { padding-block: 0; }
.section__band--solo { padding-block: clamp(3.25rem, 6.5vw, 5rem); }
.banda__texto {
  max-width: 46rem;
  font-size: clamp(1.25rem, 1.05rem + 1vw, 1.85rem);
  line-height: 1.42;
  letter-spacing: -.02em;
  color: #fff;
  text-wrap: pretty;
}
.section__band--solo .destaque {
  background-image: linear-gradient(rgba(255, 255, 255, .55), rgba(255, 255, 255, .55));
}

@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;
  }

  .js [data-reveal],
  .js [data-rise],
  .js [data-split] .word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .marquee__track { animation: none; }
  .hero__scan, .pulse-dot::after, .hero__scroll-dot { display: none; }
}

@media print {
  body { background: #fff; color: #000; }
  .site-header, .mobile-nav, .hero__canvas, .hero__glow, .hero__scan, .page-head__canvas,
  .hero__scroll, .section__aura, body::after { display: none !important; }
  .card, .step, .quote, .paper__link { border-color: #ccc; break-inside: avoid; }
}
