/* ================================================================
   TEKNOLEET — dark-ops design system
   ================================================================ */

:root {
  --bg-0: #050a08;
  --bg-1: #0a0f0d;
  --bg-2: #0e1512;
  --line: rgba(0, 255, 136, 0.14);
  --green: #00ff88;
  --green-dim: rgba(0, 255, 136, 0.55);
  --cyan: #00d4ff;
  --red: #ff3e3e;
  --text: #e6f1ec;
  --muted: #7a8b84;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --glow-green: 0 0 24px rgba(0, 255, 136, 0.25);
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--green); color: var(--bg-0); }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}
.container--narrow { width: min(760px, 100% - 3rem); }

.accent { color: var(--green); }

.microlabel {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dim);
  margin-bottom: 1.1rem;
}

.blink { animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ================= NAV ================= */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 10, 8, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}
.nav__glyph { width: 26px; height: 26px; color: var(--green); }
.nav__wordmark {
  font-family: var(--mono);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.nav__links a:not(.btn) {
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav__links a:not(.btn)::before {
  content: "> ";
  color: var(--green);
  opacity: 0;
  transition: opacity 0.2s;
}
.nav__links a:not(.btn):hover { color: var(--green); }
.nav__links a:not(.btn):hover::before { opacity: 1; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  transition: transform 0.25s, opacity 0.25s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= BUTTONS ================= */

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.7rem;
  border: 1px solid var(--green);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn--small { padding: 0.5rem 1rem; font-size: 0.76rem; }
.btn--primary {
  background: var(--green);
  color: var(--bg-0);
}
.btn--primary:hover {
  background: transparent;
  color: var(--green);
  box-shadow: var(--glow-green);
}
.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: rgba(0, 255, 136, 0.35);
}
.btn--ghost:hover {
  border-color: var(--green);
  box-shadow: var(--glow-green);
}
.btn:active { transform: translateY(1px); }

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 3rem);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, transparent 0%, rgba(5, 10, 8, 0.55) 70%, var(--bg-0) 100%),
    linear-gradient(to bottom, rgba(5, 10, 8, 0.4), transparent 30%, transparent 70%, var(--bg-0) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  flex: 1;
}

.hero__title {
  font-family: var(--mono);
  font-weight: 800;
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
  position: relative;
}

.hero__sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 34rem;
  margin-bottom: 2.2rem;
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* glitch */
[data-glitch] { position: relative; }
[data-glitch]::before,
[data-glitch]::after {
  content: attr(data-glitch);
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  white-space: pre-line;
}
.glitching[data-glitch]::before {
  opacity: 0.8;
  color: var(--cyan);
  animation: glitch-a 0.35s steps(2) 2;
}
.glitching[data-glitch]::after {
  opacity: 0.8;
  color: var(--red);
  animation: glitch-b 0.35s steps(2) 2;
}
@keyframes glitch-a {
  0%   { transform: translate(-3px, 2px);  clip-path: inset(10% 0 62% 0); }
  50%  { transform: translate(3px, -1px);  clip-path: inset(55% 0 18% 0); }
  100% { transform: translate(-2px, 1px);  clip-path: inset(28% 0 48% 0); }
}
@keyframes glitch-b {
  0%   { transform: translate(3px, -2px);  clip-path: inset(62% 0 8% 0); }
  50%  { transform: translate(-3px, 2px);  clip-path: inset(15% 0 68% 0); }
  100% { transform: translate(2px, -1px);  clip-path: inset(42% 0 30% 0); }
}

/* terminal window */
.terminal {
  background: rgba(8, 13, 11, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.08), 0 24px 48px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.terminal::after {
  /* scanlines */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom, transparent 0 2px, rgba(0, 255, 136, 0.025) 2px 4px
  );
  pointer-events: none;
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 255, 136, 0.03);
}
.terminal__dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal__dot--r { background: #ff5f56; }
.terminal__dot--y { background: #ffbd2e; }
.terminal__dot--g { background: #27c93f; }
.terminal__title {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: 0.6rem;
  letter-spacing: 0.05em;
}
.terminal__body {
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.7;
  padding: 1rem 1.1rem 1.2rem;
  min-height: 285px;
  color: var(--green-dim);
  white-space: pre-wrap;
  word-break: break-word;
}
.terminal__body .t-prompt { color: var(--cyan); }
.terminal__body .t-ok { color: var(--green); }
.terminal__body .t-warn { color: var(--red); }
.terminal__body .t-cursor {
  display: inline-block;
  width: 8px; height: 15px;
  background: var(--green);
  vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
}

/* hero stats */
.hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(8, 13, 11, 0.8);
  backdrop-filter: blur(6px);
  margin-top: 4rem;
}
.stat {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat__num {
  display: block;
  font-family: var(--mono);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: var(--green);
  text-shadow: 0 0 18px rgba(0, 255, 136, 0.4);
}
.stat__label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================= SECTIONS ================= */

.section { padding: 7rem 0; position: relative; }
.section--alt {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 255, 136, 0.04), transparent),
    var(--bg-1);
  border-block: 1px solid var(--line);
}

.section__title {
  font-family: var(--mono);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 3rem;
}
.section__lead {
  color: var(--muted);
  max-width: 36rem;
  margin: -1.5rem 0 2.5rem;
}

/* ================= SERVICE CARDS ================= */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  position: relative;
  padding: 2.2rem 2rem;
  background: var(--bg-1);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
/* HUD corner brackets */
.card::before, .card::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--green);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.card::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.card::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.card:hover {
  border-color: rgba(0, 255, 136, 0.45);
  box-shadow: var(--glow-green);
  transform: translateY(-3px);
}
.card:hover::before, .card:hover::after { opacity: 1; }

.card__icon {
  width: 46px; height: 46px;
  color: var(--green);
  margin-bottom: 1.3rem;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}
.card__icon svg { width: 100%; height: 100%; }

.card__title {
  font-family: var(--mono);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.card__text { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.1rem; }
.card__detail {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--green-dim);
  text-transform: uppercase;
}

/* ================= PENTEST ================= */

.pentest {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.pentest__chain {
  display: flex;
  flex-direction: column;
  position: relative;
}
.pentest__chain::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--green), rgba(0, 255, 136, 0.1));
}

.chain-step {
  display: flex;
  gap: 1.6rem;
  padding: 1.25rem 0;
  position: relative;
}
.chain-step__num {
  flex: 0 0 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--green);
  background: var(--bg-0);
  border: 1px solid var(--green-dim);
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.2);
  z-index: 1;
}
.chain-step__title {
  font-family: var(--mono);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.chain-step__text { color: var(--muted); font-size: 0.93rem; }

/* radar */
.pentest__radar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.radar {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 136, 0.3);
  background:
    radial-gradient(circle, rgba(0, 255, 136, 0.06) 0%, rgba(5, 10, 8, 0.9) 75%);
  box-shadow: 0 0 60px rgba(0, 255, 136, 0.12), inset 0 0 60px rgba(0, 255, 136, 0.05);
  overflow: hidden;
}
.radar__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 136, 0.18);
}
.radar__ring--1 { inset: 16.5%; }
.radar__ring--2 { inset: 33%; }
.radar__ring--3 { inset: 41.5%; }
.radar__cross::before, .radar__cross::after {
  content: "";
  position: absolute;
  background: rgba(0, 255, 136, 0.14);
}
.radar__cross::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.radar__cross::after { top: 50%; left: 0; right: 0; height: 1px; }
.radar__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(0, 255, 136, 0.4), transparent 70deg, transparent 360deg);
  animation: radar-spin 4s linear infinite;
}
@keyframes radar-spin { to { transform: rotate(360deg); } }
.radar__blip {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: blip 4s ease-out infinite;
}
.radar__blip--d2 { animation-delay: 1s; }
.radar__blip--d3 { animation-delay: 2.2s; }
.radar__blip--d4 { animation-delay: 3.1s; }
@keyframes blip {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  12% { opacity: 1; transform: scale(1.4); }
  40% { opacity: 0.5; transform: scale(1); }
}
.radar__core {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  margin: -3px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}
.radar__readout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}
.radar__status { color: var(--green-dim); }
.radar__found { color: var(--red); }

.pentest__scopes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.scope {
  padding: 1.8rem 2rem;
  background: rgba(0, 255, 136, 0.025);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
}
.scope__title {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.7rem;
}
.scope__text { color: var(--muted); font-size: 0.93rem; }

/* ================= PROCESS ================= */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  padding-top: 1rem;
}
.process__line {
  position: absolute;
  top: 2.35rem;
  left: 3%;
  right: 3%;
  height: 1px;
  background-image: linear-gradient(to right, var(--green-dim) 55%, transparent 45%);
  background-size: 14px 1px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.6s ease-out;
}
.process__line.visible { transform: scaleX(1); }

.process__step { text-align: left; position: relative; }
.process__num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  font-family: var(--mono);
  font-weight: 800;
  color: var(--bg-0);
  background: var(--green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.35);
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.process__title {
  font-family: var(--mono);
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}
.process__text { color: var(--muted); font-size: 0.9rem; }

/* ================= WHY ================= */

.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why__col {
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(5, 10, 8, 0.5);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.why__col:hover {
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: var(--glow-green);
}
.why__badge {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--green);
  letter-spacing: 0.15em;
}
.why__title {
  font-family: var(--mono);
  font-size: 1.05rem;
  margin: 0.9rem 0 0.6rem;
}
.why__text { color: var(--muted); font-size: 0.93rem; }

/* ================= CONTACT FORM ================= */

.form { margin-top: 1rem; }
.form__body { padding: 1.8rem 1.6rem 2rem; position: relative; z-index: 1; }

.form__field { margin-bottom: 1.3rem; }
.form__field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--green);
  margin-bottom: 0.45rem;
  letter-spacing: 0.05em;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  background: rgba(0, 255, 136, 0.03);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.9rem;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
  appearance: none;
}
.form__field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%),
                    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.form__field select:invalid { color: var(--muted); }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.18);
}
.form__field .field-error {
  border-color: var(--red) !important;
  box-shadow: 0 0 12px rgba(255, 62, 62, 0.2);
}
.form__field textarea { resize: vertical; min-height: 100px; }

.form__status {
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.8;
  min-height: 1.6rem;
  margin-bottom: 1rem;
  white-space: pre-line;
}
.form__status .ok { color: var(--green); }
.form__status .err { color: var(--red); }
.form__status .dim { color: var(--muted); }

.form__submit { width: 100%; }
.form__submit[disabled] { opacity: 0.55; cursor: wait; }

/* ================= FOOTER ================= */

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  padding: 3.5rem 0 2.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer__tag { color: var(--muted); font-size: 0.88rem; margin-top: 0.8rem; max-width: 22rem; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.82rem;
}
.footer__links a { color: var(--muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--green); }
.footer__meta { font-family: var(--mono); font-size: 0.8rem; }
.footer__mail { color: var(--green); }
.footer__copy { color: var(--muted); margin-top: 0.7rem; }
.footer__secure { color: var(--green-dim); margin-top: 0.9rem; font-size: 0.72rem; letter-spacing: 0.14em; }

/* ================= REVEAL ANIMATIONS ================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
/* stagger siblings */
.cards .reveal:nth-child(2), .why .reveal:nth-child(2), .process .reveal:nth-child(3) { transition-delay: 0.12s; }
.cards .reveal:nth-child(3), .why .reveal:nth-child(3), .process .reveal:nth-child(4) { transition-delay: 0.24s; }
.cards .reveal:nth-child(4), .process .reveal:nth-child(5) { transition-delay: 0.36s; }
.chain-step:nth-child(2) { transition-delay: 0.15s; }
.chain-step:nth-child(3) { transition-delay: 0.3s; }
.chain-step:nth-child(4) { transition-delay: 0.45s; }

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__terminal { max-width: 620px; }
  .pentest { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(5, 10, 8, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.5rem 1.25rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }
  .nav__links.open { opacity: 1; transform: none; visibility: visible; }
  .nav__links a:not(.btn) { padding: 0.8rem 0; width: 100%; }
  .nav__links .btn { margin-top: 0.9rem; }
  .cards { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .process__line { display: none; }
  .why { grid-template-columns: 1fr; }
  .pentest__scopes { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; text-align: center; }
  .terminal__body { min-height: 240px; font-size: 0.72rem; }
}

/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .process__line { transform: scaleX(1); }
  .hero__canvas { display: none; }
  .hero {
    background:
      radial-gradient(ellipse 70% 55% at 30% 35%, rgba(0, 255, 136, 0.07), transparent),
      var(--bg-0);
  }
}
