/* ═══════════════════════════════════════════════════════════════════
   DISPARE JÁ — TELEMETRIA / SISTEMA-01
   Mission-control × brutalist racing magazine
═══════════════════════════════════════════════════════════════════ */

:root {
  /* color */
  --void:        #06070A;
  --ink:         #0c0e13;
  --steel:      #14171f;
  --steel-2:    #1c2029;
  --graphite:   #3a3f4a;
  --ash:        #82889a;
  --bone:       #f4f1ea;
  --bone-soft:  #d6d2c6;

  --volt:       #1eff8e;       /* primary electric green */
  --volt-deep:  #00b86b;
  --volt-glow:  rgba(30,255,142,.45);
  --plasma:     #6effe5;       /* secondary cyan */
  --amber:      #ffb000;       /* warning */
  --blood:      #ff4848;       /* live indicator */

  /* type */
  --f-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --f-body:    'IBM Plex Sans', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* spacing & layout */
  --pad-x: clamp(20px, 5vw, 96px);
  --max:   1440px;

  /* easing */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in:  cubic-bezier(.7, 0, .84, 0);
}

/* ───── reset ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  background: var(--void);
  color: var(--bone);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em, i { font-style: normal; }
::selection { background: var(--volt); color: var(--void); }

/* page ambient texture: subtle grain + radial drift */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .14 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .55;
}
body::after {
  content: '';
  position: fixed; inset: -20%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(60% 40% at 80% 0%, rgba(30,255,142,.07), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(110,255,229,.05), transparent 60%);
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--volt); color: var(--void);
  padding: 8px 16px; font-family: var(--f-mono);
  font-size: 12px; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; z-index: 1000; }

.mono { font-family: var(--f-mono); font-weight: 500; letter-spacing: .04em; }

/* ════════════ TAPE ════════════ */
.tape {
  height: 28px;
  background: var(--ink);
  border-bottom: 1px solid var(--steel-2);
  overflow: hidden;
  position: relative;
}
.tape::before, .tape::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.tape::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.tape::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.tape__rail {
  display: flex; gap: 28px; align-items: center; height: 100%;
  white-space: nowrap;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em;
  color: var(--ash);
  animation: tape-scroll 60s linear infinite;
  width: max-content;
  padding-left: 0;
}
.tape__pip { color: var(--volt); font-weight: 700; }
.tape__sep { color: var(--graphite); }
.tape b { color: var(--bone); font-weight: 700; }

@keyframes tape-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════ NAV ════════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  padding: 16px var(--pad-x);
  background: rgba(6,7,10,.72);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--steel-2);
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; color: var(--volt); }
.nav__mark { width: 22px; height: 22px; }
.nav__word {
  font-family: var(--f-display); font-weight: 900;
  font-size: 20px; letter-spacing: .02em; color: var(--bone);
  line-height: 1;
}
.nav__word em { color: var(--volt); margin-left: 2px; }

.nav__links { display: flex; gap: clamp(14px, 2vw, 28px); }
.nav__links a {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ash); position: relative; padding: 6px 0;
  transition: color .25s var(--ease-out);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--volt);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--volt); color: var(--void);
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background .25s var(--ease-out), transform .25s var(--ease-out);
}
.nav__cta svg { width: 14px; height: 14px; }
.nav__cta:hover { background: #fff; transform: translateX(2px); }
.nav__cta:focus-visible { outline: 2px solid var(--bone); outline-offset: 4px; }

.nav__menu { display: none; }

@media (max-width: 880px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__links { display: none; }
}

/* ════════════ BUTTONS ════════════ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  font-family: var(--f-mono); font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; user-select: none;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
  border: 0;
}
.btn--primary {
  background: var(--volt); color: var(--void);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.7) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform .6s var(--ease-out);
}
.btn--primary:hover { background: var(--plasma); transform: translateX(2px); }
.btn--primary:hover::before { transform: translateX(110%); }
.btn--primary:active { transform: translateX(0); }

.btn--ghost {
  background: transparent; color: var(--bone);
  border: 1px solid var(--steel-2);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn--ghost:hover { border-color: var(--volt); color: var(--volt); }

.btn--full { width: 100%; justify-content: center; }
.btn__arrow svg { width: 16px; height: 16px; }
.btn:focus-visible { outline: 2px solid var(--volt); outline-offset: 4px; }

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) var(--pad-x) clamp(64px, 10vw, 120px);
  min-height: 90vh;
  overflow: hidden;
  display: grid;
  align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
  pointer-events: none;
}

.hero__grid {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.hero__bolt {
  position: absolute;
  top: -8%; right: -10%;
  width: clamp(360px, 55vw, 760px); height: 120%;
  opacity: .9;
}
.hero__bolt svg { width: 100%; height: 100%; }
.hero__bolt-glow { fill: var(--volt); opacity: .55; transform-origin: center; animation: bolt-pulse 4.4s var(--ease-out) infinite; }
.hero__bolt-line { fill: none; stroke: var(--volt); stroke-width: 1.5; stroke-linejoin: miter;
  filter: drop-shadow(0 0 8px var(--volt-glow)); }
.hero__sparks path { stroke-dasharray: 30; stroke-dashoffset: 30; animation: spark 2.2s var(--ease-out) infinite; }
.hero__sparks path:nth-child(2) { animation-delay: .6s; }
.hero__sparks path:nth-child(3) { animation-delay: 1.2s; }
.hero__sparks path:nth-child(4) { animation-delay: 1.8s; }
@keyframes bolt-pulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50%      { opacity: .85; transform: scale(1.02); }
}
@keyframes spark {
  0% { stroke-dashoffset: 30; opacity: 0; }
  20%, 60% { opacity: 1; }
  100% { stroke-dashoffset: -30; opacity: 0; }
}

.hero__rings {
  position: absolute;
  bottom: -120px; left: -120px;
  width: 600px; height: 600px;
  pointer-events: none;
}
.hero__rings span {
  position: absolute; inset: 0;
  border: 1px solid rgba(110,255,229,.18);
  border-radius: 50%;
  animation: ring 6s var(--ease-out) infinite;
}
.hero__rings span:nth-child(2) { animation-delay: 2s; }
.hero__rings span:nth-child(3) { animation-delay: 4s; }
@keyframes ring {
  0%   { transform: scale(.4); opacity: 0; }
  20%  { opacity: .6; }
  100% { transform: scale(1.3); opacity: 0; }
}

.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
@media (max-width: 1000px) {
  .hero__content { grid-template-columns: 1fr; }
}

.hero__meta {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; color: var(--ash);
  margin-bottom: clamp(24px, 4vw, 56px);
}
.hero__pip { color: var(--volt); animation: pip 1.6s steps(2) infinite; }
@keyframes pip { 50% { opacity: 0; } }
.hero__rule { flex: 1; height: 1px; background: var(--steel-2); }
.hero__time { color: var(--bone); }

.hero__headline {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(64px, 13vw, 220px);
  line-height: .82;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--bone);
}
.hero__line { display: block; position: relative; }
.hero__line .num {
  position: absolute; left: 0; top: -.3em;
  font-size: .16em; color: var(--volt);
  font-family: var(--f-mono); font-weight: 500;
  letter-spacing: .14em;
}
.hero__line:first-child { padding-left: clamp(36px, 6vw, 96px); }
.hero__line--shift { padding-left: clamp(64px, 12vw, 200px); color: var(--bone-soft); }
.hero__line--accent {
  color: var(--volt);
  font-style: italic;
  text-shadow: 0 0 36px rgba(30,255,142,.35);
}

.hero__lede {
  max-width: 56ch;
  margin-top: clamp(24px, 3vw, 36px);
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--bone-soft);
  line-height: 1.6;
}
.hero__lede b { color: var(--bone); font-weight: 600; }

.hero__cta {
  margin-top: clamp(24px, 3vw, 40px);
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* hero telemetry panel */
.hero__telem { position: relative; }
.telem {
  position: relative;
  background: linear-gradient(180deg, rgba(20,23,31,.85), rgba(12,14,19,.92));
  border: 1px solid var(--steel-2);
  padding: 22px 22px 18px;
  font-family: var(--f-mono);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  backdrop-filter: blur(8px);
}
.telem::before {
  content: 'TELEMETRIA · LIVE';
  position: absolute; top: -10px; left: 16px;
  background: var(--void); padding: 0 8px;
  color: var(--volt); font-size: 10px; letter-spacing: .2em; font-weight: 700;
}
.telem__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--steel-2);
  font-size: 12px;
}
.telem__row:last-of-type { border-bottom: 0; }
.telem__k { color: var(--ash); letter-spacing: .12em; }
.telem__v { color: var(--bone); font-weight: 700; font-size: 16px; font-variant-numeric: tabular-nums; }
.telem__v small { color: var(--volt); font-size: 11px; margin-left: 2px; }
.telem__bar {
  height: 4px; background: var(--steel-2); margin-top: 14px; overflow: hidden;
  position: relative;
}
.telem__bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--volt), var(--plasma));
  width: 30%;
  animation: bar-run 3.5s var(--ease-out) infinite;
}
@keyframes bar-run {
  0%   { transform: translateX(-120%); width: 30%; }
  60%  { width: 70%; }
  100% { transform: translateX(220%); width: 30%; }
}
.telem__legend {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 12px; font-size: 10px; color: var(--ash);
  letter-spacing: .14em;
}
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.dot--volt { background: var(--volt); box-shadow: 0 0 10px var(--volt-glow); }
.dot--amber { background: var(--amber); }

.hero__scroll {
  position: absolute; left: var(--pad-x); bottom: 24px; z-index: 2;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em;
  color: var(--ash);
}
.hero__scroll-line {
  display: inline-block; width: 80px; height: 1px; background: var(--steel-2);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 30%;
  background: var(--volt); animation: scroll-line 2.6s var(--ease-out) infinite;
}
@keyframes scroll-line {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(330%); }
}
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* ════════════ SECTION HEAD ════════════ */
.section__head {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; gap: 18px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section__head--split {
  grid-template-columns: 1.4fr 1fr; align-items: end; gap: clamp(24px, 4vw, 64px);
}
@media (max-width: 900px) {
  .section__head--split { grid-template-columns: 1fr; }
}
.section__tag {
  font-size: 11px; color: var(--volt);
  letter-spacing: .2em; text-transform: uppercase;
}
.section__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: .9; letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--bone);
}
.section__title em { color: var(--volt); font-style: italic; }
.section__lede {
  max-width: 60ch;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--bone-soft);
  line-height: 1.65;
}
.section__lede--right { justify-self: end; max-width: 44ch; }

/* ════════════ STAT STRIP ════════════ */
.strip {
  border-top: 1px solid var(--steel-2);
  border-bottom: 1px solid var(--steel-2);
  background: linear-gradient(180deg, rgba(28,32,41,.4), rgba(12,14,19,.4));
  padding: clamp(32px, 4vw, 56px) var(--pad-x);
  position: relative;
}
.strip::before, .strip::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: repeating-linear-gradient(90deg, var(--steel-2) 0 6px, transparent 6px 12px);
}
.strip::before { top: 6px; }
.strip::after  { bottom: 6px; }

.strip__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 2fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .strip__grid { grid-template-columns: 1fr 1fr; }
  .strip__grid .stat--wide { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .strip__grid { grid-template-columns: 1fr; }
}

.stat {
  display: grid; grid-template-columns: auto auto; column-gap: 6px; row-gap: 6px;
  align-items: baseline;
  position: relative;
}
.stat__k {
  grid-column: 1 / -1;
  font-size: 10px; letter-spacing: .22em;
  color: var(--ash);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--steel-2);
  margin-bottom: 6px;
}
.stat__v {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(54px, 7vw, 96px);
  line-height: .9; color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.stat__v--text {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05; color: var(--bone);
  letter-spacing: -.005em;
}
.stat__suffix {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 64px); color: var(--volt);
  line-height: .9;
}
.stat__d {
  grid-column: 1 / -1;
  font-size: 11px; letter-spacing: .12em;
  color: var(--ash);
  margin-top: 8px;
}

/* ════════════ FLOW ════════════ */
.flow {
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
}
.flow__list {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
  position: relative;
}
.flow__list::before {
  content: ''; position: absolute;
  left: var(--pad-x); right: var(--pad-x);
  top: 56px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--steel-2) 0 8px, transparent 8px 14px);
  z-index: 0;
}
@media (max-width: 1000px) {
  .flow__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .flow__list { grid-template-columns: 1fr; }
  .flow__list::before { display: none; }
}

.flow__step {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--steel-2);
  padding: 28px 22px 22px;
  display: grid;
  gap: 14px;
  isolation: isolate;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out);
}
.flow__step::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--volt); transform-origin: left; transform: scaleX(0);
  transition: transform .55s var(--ease-out);
}
.flow__step:hover { transform: translateY(-4px); border-color: var(--graphite); }
.flow__step:hover::before { transform: scaleX(1); }

.flow__num {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(48px, 5vw, 72px); line-height: .9;
  color: var(--volt);
  letter-spacing: -.02em;
}
.flow__body h3 {
  font-family: var(--f-display); font-weight: 800;
  font-size: 26px; line-height: 1; text-transform: uppercase;
  color: var(--bone); margin-bottom: 8px;
  letter-spacing: -.01em;
}
.flow__body p {
  font-size: 14px; color: var(--bone-soft); line-height: 1.55;
}
.flow__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.flow__chips li {
  font-size: 9.5px; letter-spacing: .16em;
  padding: 4px 8px; border: 1px solid var(--steel-2);
  color: var(--ash);
}
.flow__icon {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  color: var(--graphite);
  transition: color .35s var(--ease-out);
}
.flow__step:hover .flow__icon { color: var(--volt); }

/* ════════════ SERVICES ════════════ */
.services {
  padding: clamp(64px, 9vw, 128px) 0;
  background:
    linear-gradient(180deg, transparent, rgba(28,32,41,.3) 30%, transparent);
  position: relative;
}
.services__grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
}
.card {
  position: relative;
  grid-column: span 4;
  padding: 28px 26px 32px;
  background: var(--ink);
  border: 1px solid var(--steel-2);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 14px;
  min-height: 320px;
  overflow: hidden;
  isolation: isolate;
  transition: border-color .35s var(--ease-out), transform .35s var(--ease-out), background .35s var(--ease-out);
}
.card::after {
  content: ''; position: absolute; inset: auto -2px -2px auto;
  width: 28px; height: 28px;
  background: var(--steel-2);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: background .35s var(--ease-out);
}
.card:hover { transform: translateY(-4px); border-color: var(--volt); background: var(--steel); }
.card:hover::after { background: var(--volt); }

/* asymmetric grid pattern */
.card--01 { grid-column: span 5; }
.card--02 { grid-column: span 4; }
.card--03 { grid-column: span 3; }
.card--04 { grid-column: span 3; }
.card--05 { grid-column: span 4; }
.card--06 { grid-column: span 5; }

@media (max-width: 1100px) {
  .card, .card--01, .card--02, .card--03, .card--04, .card--05, .card--06 { grid-column: span 6; }
}
@media (max-width: 640px) {
  .card, .card--01, .card--02, .card--03, .card--04, .card--05, .card--06 { grid-column: span 12; }
}

.card__id { font-size: 10px; letter-spacing: .2em; color: var(--ash); }
.card__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 2.6vw, 40px); line-height: .9;
  text-transform: uppercase; color: var(--bone);
  letter-spacing: -.01em;
}
.card__desc { font-size: 14px; line-height: 1.55; color: var(--bone-soft); max-width: 38ch; }
.card__more {
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--volt);
  align-self: end;
  transition: letter-spacing .35s var(--ease-out);
}
.card:hover .card__more { letter-spacing: .22em; }
.card__art {
  position: absolute; right: -14px; top: 14px;
  width: 110px; height: 110px;
  color: var(--graphite); opacity: .55;
  transition: color .35s var(--ease-out), opacity .35s var(--ease-out), transform .8s var(--ease-out);
}
.card:hover .card__art { color: var(--volt); opacity: 1; transform: rotate(8deg); }

/* ════════════ PILLARS ════════════ */
.pillars {
  padding: clamp(64px, 9vw, 128px) 0;
  border-top: 1px solid var(--steel-2);
  border-bottom: 1px solid var(--steel-2);
  background: var(--ink);
}
.pillars__grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; gap: 0;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 800px) { .pillars__grid { grid-template-columns: 1fr; } }

.pillar {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--steel-2);
  border-bottom: 1px solid var(--steel-2);
  display: grid; gap: 16px;
  position: relative;
  transition: background .35s var(--ease-out);
}
.pillar:nth-child(2n) { border-right: 0; }
.pillar:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 800px) {
  .pillar { border-right: 0; border-bottom: 1px solid var(--steel-2); }
  .pillar:last-child { border-bottom: 0; }
}
.pillar:hover { background: rgba(30,255,142,.04); }

.pillar header { display: grid; gap: 8px; }
.pillar__id { font-size: 10px; letter-spacing: .22em; color: var(--volt); }
.pillar h3 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  line-height: .92; text-transform: uppercase;
  color: var(--bone); letter-spacing: -.01em;
}
.pillar p { font-size: 15px; line-height: 1.6; color: var(--bone-soft); max-width: 50ch; }

.pillar__diag {
  width: 100%; height: 110px;
  color: var(--graphite);
  margin-top: 8px;
  transition: color .35s var(--ease-out);
}
.pillar__diag .diag-label { font-family: var(--f-mono); font-size: 7px; letter-spacing: .2em; fill: var(--ash); }
.pillar:hover .pillar__diag { color: var(--volt); }

/* ════════════ CASES ════════════ */
.cases { padding: clamp(64px, 9vw, 128px) 0; }
.cases__grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; gap: clamp(16px, 2vw, 28px);
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
}
.case--lg { grid-row: 1 / -1; }
.case--tall { grid-row: 1 / -1; }
@media (max-width: 1000px) {
  .cases__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .case--lg, .case--tall { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16/9; }
  .case { aspect-ratio: 16/10; }
}
@media (max-width: 600px) {
  .cases__grid { grid-template-columns: 1fr; }
  .case--lg, .case--tall, .case { grid-column: auto; }
}

.case {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--steel-2);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  isolation: isolate;
}
.case__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: grayscale(.35) contrast(1.05) brightness(.92);
  transition: filter .6s var(--ease-out), transform .6s var(--ease-out);
}
.case:hover .case__img {
  filter: grayscale(0) contrast(1) brightness(1);
  transform: scale(1.04);
}
.case::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(6,7,10,.65) 80%, var(--ink) 100%),
    linear-gradient(135deg, rgba(30,255,142,.12), transparent 60%);
  pointer-events: none; z-index: 1;
}
.case__frame {
  position: relative;
  background:
    linear-gradient(135deg, rgba(30,255,142,.12), rgba(110,255,229,.06) 60%, transparent),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 10px, transparent 10px 20px),
    var(--steel);
  overflow: hidden;
}
.case__frame::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.case__frame::after {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em;
  color: var(--volt); content: 'IMG · ' attr(data-img);
}
.case figcaption {
  padding: 18px 20px; border-top: 1px solid var(--steel-2);
  background: var(--ink);
  position: relative; z-index: 2;
}
.case__id { font-size: 10px; color: var(--ash); letter-spacing: .2em; }
.case figcaption h3 {
  font-family: var(--f-display); font-weight: 800;
  font-size: 22px; line-height: 1; margin: 8px 0;
  text-transform: uppercase; letter-spacing: -.01em;
  color: var(--bone);
}
.case figcaption p { font-size: 13px; color: var(--bone-soft); line-height: 1.5; }

/* ════════════ FAQ ════════════ */
.faq {
  padding: clamp(64px, 9vw, 128px) 0;
  background: var(--ink);
  border-top: 1px solid var(--steel-2);
  border-bottom: 1px solid var(--steel-2);
}
.faq__list {
  max-width: 1100px; margin: 0 auto;
  padding: 0 var(--pad-x);
}
.qa {
  border-top: 1px solid var(--steel-2);
}
.qa:last-child { border-bottom: 1px solid var(--steel-2); }
.qa summary {
  list-style: none; cursor: pointer;
  padding: 22px 4px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: background .25s var(--ease-out);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { background: rgba(255,255,255,.02); }
.qa__id { font-size: 11px; letter-spacing: .2em; color: var(--volt); }
.qa__q {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  color: var(--bone);
  text-transform: uppercase; letter-spacing: -.005em;
}
.qa__icon {
  width: 18px; height: 18px;
  position: relative;
}
.qa__icon::before, .qa__icon::after {
  content: ''; position: absolute; inset: 50% 0 50% 0;
  height: 1.5px; background: var(--volt);
  transition: transform .35s var(--ease-out);
}
.qa__icon::after { transform: rotate(90deg); }
.qa[open] .qa__icon::after { transform: rotate(0); }
.qa__body {
  padding: 4px 4px 28px calc(40px + 24px);
  max-width: 80ch;
  color: var(--bone-soft);
  font-size: 15px; line-height: 1.7;
}
.qa[open] .qa__body { animation: qa-in .45s var(--ease-out); }
@keyframes qa-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .qa summary { grid-template-columns: auto 1fr auto; gap: 14px; }
  .qa__body { padding-left: 4px; }
}

/* ════════════ CONTACT ════════════ */
.contact { padding: clamp(64px, 9vw, 128px) 0; }
.contact__grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
}
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* form */
.form {
  background: var(--ink);
  border: 1px solid var(--steel-2);
  padding: clamp(24px, 3vw, 40px);
  display: grid; gap: 20px;
  position: relative;
}
.form::before {
  content: 'FORM · ENTRADA';
  position: absolute; top: -10px; left: 24px;
  background: var(--void); padding: 0 8px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em;
  color: var(--volt); font-weight: 700;
}
.form__row { display: grid; gap: 20px; }
.form__row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form__row--2 { grid-template-columns: 1fr; } }

.field { display: grid; gap: 6px; }
.field__k { font-size: 10px; letter-spacing: .2em; color: var(--ash); }
.field input, .field textarea {
  background: var(--void);
  border: 1px solid var(--steel-2);
  padding: 14px 16px;
  color: var(--bone);
  font-family: var(--f-body); font-size: 15px;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--graphite); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--volt);
  background: rgba(30,255,142,.04);
  box-shadow: 0 0 0 1px var(--volt);
}
.field[data-invalid] input, .field[data-invalid] textarea { border-color: var(--blood); }
.field__err {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em;
  color: var(--blood); min-height: 12px;
}

.consent {
  border: 0;
  display: grid; gap: 10px;
  padding: 18px 0 0; border-top: 1px dashed var(--steel-2);
}
.consent legend {
  font-size: 10px; letter-spacing: .2em; color: var(--ash);
  padding-bottom: 10px;
}
.check {
  display: grid; grid-template-columns: auto 1fr; gap: 12px;
  align-items: start; cursor: pointer;
  font-size: 13px; color: var(--bone-soft); line-height: 1.5;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check__box {
  width: 18px; height: 18px;
  border: 1px solid var(--steel-2);
  background: var(--void);
  position: relative; flex-shrink: 0;
  margin-top: 2px;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.check__box::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 8px; height: 8px;
  background: var(--volt);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .2s var(--ease-out);
}
.check input:checked + .check__box { border-color: var(--volt); }
.check input:checked + .check__box::after { transform: translate(-50%, -50%) scale(1); }
.check input:focus-visible + .check__box { outline: 2px solid var(--volt); outline-offset: 3px; }
.check a { color: var(--volt); text-decoration: underline; text-underline-offset: 3px; }

.form__status {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em;
  min-height: 16px; color: var(--volt);
}
.form__status[data-state="error"] { color: var(--blood); }

/* contact info card */
.card-info {
  background: linear-gradient(180deg, var(--steel) 0%, var(--ink) 100%);
  border: 1px solid var(--steel-2);
  padding: clamp(24px, 3vw, 36px);
  display: grid; gap: 22px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}
.card-info::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--volt);
}
.card-info__tag { font-size: 10px; letter-spacing: .22em; color: var(--volt); }
.card-info header h3 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 3vw, 42px); line-height: .9;
  text-transform: uppercase; letter-spacing: -.01em;
  color: var(--bone); margin-top: 8px;
}
.card-info__list { display: grid; gap: 18px; }
.card-info__list dt { font-size: 10px; letter-spacing: .2em; color: var(--ash); margin-bottom: 4px; }
.card-info__list dd { font-size: 14px; color: var(--bone); line-height: 1.5; }
.card-info__list a:hover { color: var(--volt); text-decoration: underline; text-underline-offset: 3px; }

.card-info__wpp {
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--volt); color: var(--void);
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background .25s var(--ease-out);
}
.card-info__wpp:hover { background: var(--plasma); }
.card-info__wpp svg { width: 14px; height: 14px; }

.card-info__hours {
  display: grid; gap: 6px;
  font-size: 10px; color: var(--ash);
  border-top: 1px dashed var(--steel-2);
  padding-top: 16px;
}

/* ════════════ FOOTER ════════════ */
.foot {
  padding: clamp(48px, 6vw, 80px) var(--pad-x) 28px;
  border-top: 1px solid var(--steel-2);
  background: var(--ink);
  position: relative;
}
.foot__top {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--steel-2);
}
.foot__brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--volt);
}
.foot__brand svg { width: 28px; height: 28px; }
.foot__brand span {
  font-family: var(--f-display); font-weight: 900;
  font-size: 28px; color: var(--bone); letter-spacing: .02em;
}
.foot__brand em { color: var(--volt); }
.foot__tag { font-size: 11px; letter-spacing: .2em; color: var(--ash); max-width: 50ch; }

.foot__grid {
  max-width: var(--max); margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 56px);
}
@media (max-width: 800px) { .foot__grid { grid-template-columns: repeat(2, 1fr); } }
.foot__grid h4 { font-size: 11px; letter-spacing: .2em; color: var(--volt); margin-bottom: 14px; }
.foot__grid ul { display: grid; gap: 10px; }
.foot__grid a, .foot__addr address {
  font-size: 13px; color: var(--bone-soft); font-style: normal; line-height: 1.6;
  transition: color .2s var(--ease-out);
}
.foot__grid a:hover { color: var(--volt); }

.foot__base {
  max-width: var(--max); margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px dashed var(--steel-2);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 10px; letter-spacing: .2em; color: var(--graphite);
}

/* ════════════ REVEAL ANIMATIONS ════════════ */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ════════════ REDUCED MOTION ════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .tape__rail { animation: none; }
}
