:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --ink: #f5f5f5;
  --muted: #9a9a9a;
  --line: #1f1f1f;
  --white: #ffffff;
  --wa: #25d366;
  --header-h: 4.25rem;
  --font: "Space Grotesk", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --glow: 0.55;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button,
body.has-cursor input {
  cursor: none;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
a:hover { text-decoration: underline; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  mix-blend-mode: difference;
}

.cursor {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, opacity .2s ease;
}

.cursor.is-on { opacity: 1; }
.cursor.is-hover { width: 56px; height: 56px; }

.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.cursor-dot.is-on { opacity: 1; }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 60;
  background: transparent;
}

.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,calc(var(--glow) * 0.8));
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 120;
  background: #fff;
  color: #000;
  padding: .5rem 1rem;
  font-weight: 700;
  text-decoration: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: .7rem 1.4rem;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.brand-mini {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  font-size: .85rem;
  flex: 0 1 auto;
  min-width: 0;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  padding: .18rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  min-height: 32px;
  min-width: 34px;
  padding: 0 .45rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn:hover { color: #fff; }

.lang-btn.is-active {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .7rem 1.15rem;
  background: var(--wa);
  color: #04150a;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 0;
  font: inherit;
  transition: transform .2s ease, filter .2s ease;
}

.btn-wa:hover {
  text-decoration: none;
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-lg {
  min-height: 52px;
  padding: .9rem 1.45rem;
  font-size: 1.02rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .7rem 1.15rem;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font: inherit;
  cursor: pointer;
  transition: background .2s ease;
}

.btn-ghost:hover {
  text-decoration: none;
  background: rgba(255,255,255,.08);
}

/* HERO — top aligned, logo visible on first paint */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 42%, #000 18%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 42%, #000 18%, transparent 78%);
}

.hero-grid {
  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: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
  animation: grid-drift 28s linear infinite;
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 64px 64px, 64px 64px; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-stage {
  position: relative;
  width: min(96vw, 880px);
  max-width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: -.4rem auto .2rem;
  overflow: hidden;
  /* soft dissolve into page — no hard plate/box */
  -webkit-mask-image: radial-gradient(ellipse 74% 70% at 50% 48%, #000 28%, rgba(0,0,0,.85) 52%, transparent 78%);
  mask-image: radial-gradient(ellipse 74% 70% at 50% 48%, #000 28%, rgba(0,0,0,.85) 52%, transparent 78%);
}

.logo-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.logo-core {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  /* black leftovers vanish into page; white traces stay */
  mix-blend-mode: screen;
  animation: logo-breathe 4.5s ease-in-out infinite;
  filter:
    drop-shadow(0 0 calc(14px * var(--glow)) rgba(255,255,255,calc(.28 * var(--glow))))
    drop-shadow(0 0 calc(36px * var(--glow)) rgba(255,255,255,calc(.14 * var(--glow))));
}

@keyframes logo-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.022); }
}

.logo-ring {
  position: absolute;
  inset: 10%;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  animation: ring-spin 22s linear infinite;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

.logo-ring-2 {
  inset: 3%;
  border-style: dashed;
  opacity: .28;
  animation-duration: 38s;
  animation-direction: reverse;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.logo-scan {
  position: absolute;
  left: 8%;
  right: 8%;
  width: auto;
  z-index: 3;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,.05) 35%,
    rgba(255,255,255,.12) 50%,
    rgba(255,255,255,.05) 65%,
    transparent 100%
  );
  height: 14%;
  animation: scan 3.8s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
  border-radius: 40%;
}

@keyframes scan {
  0% { top: 12%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 72%; opacity: 0; }
}

.hero-line {
  max-width: 38rem;
  margin: .2rem auto 1.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.hero-scroll {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  max-width: 100%;
  padding: 0 .75rem;
  box-sizing: border-box;
}

.hero-scroll [data-i18n="hero_scroll"] {
  white-space: normal;
  text-align: left;
  line-height: 1.3;
}

.hero-scroll-line {
  width: 1px;
  height: 2rem;
  background: #fff;
  display: block;
  flex-shrink: 0;
  animation: scroll-line 1.6s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(.4); opacity: .35; }
  50% { transform: scaleY(1); opacity: 1; }
}

.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 .7rem;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.display {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
  max-width: 22ch;
}

.display em {
  font-style: normal;
  background: linear-gradient(90deg, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 42rem;
  font-size: 1.05rem;
}

.strip {
  padding: 1.4rem 0;
  background: var(--bg-2);
}

.strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.4rem;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--muted);
}

.strip-row span {
  position: relative;
}

.strip-row span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: rgba(255,255,255,.35);
  transform: scaleX(0);
  transition: transform .35s ease;
}

.strip-row span:hover::after { transform: scaleX(1); }

.power-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.power-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem 1.15rem 1.3rem;
  transform-style: preserve-3d;
  transition: border-color .25s ease;
}

.power-card:hover { border-color: #3a3a3a; }

.power-card h3 {
  margin: .85rem 0 .35rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.power-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.power-visual {
  height: 120px;
  border-radius: 12px;
  background: #050505;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.orbit-demo span {
  position: absolute;
  inset: 28%;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  animation: orbit 6s linear infinite;
}

.orbit-demo span:nth-child(2) { inset: 18%; animation-duration: 9s; animation-direction: reverse; }
.orbit-demo span:nth-child(3) {
  inset: auto;
  width: 10px;
  height: 10px;
  left: 50%;
  top: 18%;
  background: #fff;
  border: 0;
  border-radius: 50%;
  transform-origin: 0 42px;
  animation: orbit 6s linear infinite;
  box-shadow: 0 0 12px #fff;
}

@keyframes orbit { to { transform: rotate(360deg); } }

.type-demo {
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .95rem;
}

.pulse-demo {
  display: grid;
  place-items: center;
}

.fake-wa {
  background: var(--wa);
  color: #04150a;
  border: 0;
  border-radius: 999px;
  padding: .65rem 1.1rem;
  font-weight: 800;
  animation: wa-pulse 2.2s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.35); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

.catalog-demo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: .45rem;
  padding: .8rem;
}

.mini-card {
  flex: 1;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: .55rem;
  text-align: center;
  animation: card-up 2.8s ease-in-out infinite;
}

.mini-card:nth-child(2) { animation-delay: .2s; }
.mini-card:nth-child(3) { animation-delay: .4s; }

.mini-card b { display: block; font-size: .78rem; }
.mini-card i {
  display: block;
  height: 28px;
  margin-top: .35rem;
  background: linear-gradient(180deg, #333, #111);
  border-radius: 6px;
}

@keyframes card-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.map-demo {
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.12), transparent 35%),
    repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(255,255,255,.05) 15px),
    repeating-linear-gradient(90deg, transparent, transparent 14px, rgba(255,255,255,.05) 15px),
    #050505;
}

.pin {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  animation: pin-bounce 1.6s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(255,255,255,.45);
}

@keyframes pin-bounce {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

.speed-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .45rem;
  padding: 1.2rem;
}

.bar {
  height: 8px;
  background: #1a1a1a;
  border-radius: 999px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
  animation: fill-bar 2.4s ease-in-out infinite;
}

.bar:nth-child(2) i { animation-delay: .2s; }
.bar:nth-child(3) i { animation-delay: .4s; }

@keyframes fill-bar {
  0% { width: 18%; }
  50% { width: 92%; }
  100% { width: 55%; }
}

.lab {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.05), transparent 45%),
    var(--bg);
}

.lab-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: start;
}

.lab-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lab-list li {
  padding: .8rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.lab-stage {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.2rem;
}

.stat {
  background: #050505;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .9rem .75rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
}

.stat span {
  display: block;
  margin-top: .25rem;
  color: var(--muted);
  font-size: .75rem;
}

.slider-lab label {
  display: block;
  margin-bottom: .45rem;
  color: var(--muted);
  font-size: .85rem;
}

.slider-lab input[type="range"] {
  width: 100%;
  accent-color: #fff;
}

.slider-preview {
  margin-top: .9rem;
  display: grid;
  place-items: center;
  min-height: 180px;
  background: #000;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.slider-preview img {
  width: min(70%, 220px);
  filter: drop-shadow(0 0 calc(20px * var(--glow)) rgba(255,255,255,calc(.4 * var(--glow))));
  transition: filter .15s ease;
}

.portfolio-sec {
  padding-bottom: 2.5rem;
  overflow-x: hidden;
}

.portfolio-rail {
  overflow: hidden;
  margin-top: 1.5rem;
  cursor: grab;
  max-width: 100%;
}

.portfolio-rail.is-dragging { cursor: grabbing; }

.portfolio-track {
  display: flex;
  gap: 1rem;
  padding: 0 1.5rem 1rem;
  width: max-content;
  will-change: transform;
}

.shot {
  width: min(78vw, 420px);
  flex: 0 0 auto;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.shot:hover {
  border-color: #444;
  transform: translateY(-4px);
}

.shot-chrome {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .7rem;
  background: #151515;
  border-bottom: 1px solid var(--line);
}

.shot-chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}

.shot-chrome i:nth-child(1) { background: #ff5f57; }
.shot-chrome i:nth-child(2) { background: #febc2e; }
.shot-chrome i:nth-child(3) { background: #28c840; }

.shot-chrome b {
  margin-left: .4rem;
  font-size: .68rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.shot-meta {
  padding: .85rem .9rem 1rem;
}

.shot-meta h3 {
  margin: 0 0 .2rem;
  font-family: var(--display);
  font-size: 1.05rem;
}

.shot-meta p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.portfolio-actions {
  display: flex;
  gap: .6rem;
  margin-top: .5rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.steps li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.step-num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.steps h3 {
  margin: 0 0 .3rem;
  font-family: var(--display);
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.contact {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.07), transparent 55%),
    #000;
}

.pricing {
  border-top: 1px solid var(--line);
}

.price-fx {
  margin: -.4rem 0 1.4rem;
  color: var(--muted);
  font-size: .82rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.price-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.35rem 1.2rem 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0c0c0c, #050505);
  min-height: 100%;
}

.price-plan.is-featured {
  border-color: rgba(255,255,255,.42);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 42%),
    linear-gradient(180deg, #101010, #050505);
}

.price-badge {
  position: absolute;
  top: .85rem;
  right: .85rem;
  margin: 0;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #04150a;
  background: var(--wa);
  padding: .28rem .5rem;
}

.price-name {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.price-tag {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  min-height: 2.6em;
}

.price-value {
  margin: .15rem 0 .2rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
  flex: 1;
}

.price-list li {
  position: relative;
  padding-left: 1rem;
  color: #cfcfcf;
  font-size: .92rem;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .35rem;
  height: .35rem;
  background: #fff;
}

.price-plan .btn-wa,
.price-plan .btn-ghost {
  width: 100%;
  margin-top: .4rem;
  text-align: center;
}

@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-tag { min-height: 0; }
}

.contact-panel {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 2rem;
}

.contact-panel .display { max-width: 18ch; }

.contact-panel .lead { text-align: center; }

.contact-phone {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.contact-phone a { text-decoration: none; }
.contact-phone a:hover { text-decoration: underline; }

.footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer strong {
  font-family: var(--display);
  color: #fff;
  letter-spacing: .08em;
}

.footer a {
  color: var(--wa);
  font-weight: 700;
  text-decoration: none;
}

.footer .flags {
  display: inline-flex;
  gap: .32rem;
  margin-left: .35rem;
  align-items: center;
  vertical-align: middle;
}

.footer .flag {
  display: block;
  width: 18px;
  height: 13px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav { display: none; }
  .power-grid,
  .lab-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .logo-stage { width: min(96vw, 560px); }
  .hero { min-height: auto; padding-top: 1.5rem; }
  body.has-cursor { cursor: auto; }
  .cursor,
  .cursor-dot { display: none !important; }

  .header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand lang"
      "cta cta";
    align-items: center;
    gap: .55rem .7rem;
    padding: .65rem 1rem;
    min-height: 0;
  }
  .brand-mini {
    grid-area: brand;
    font-size: .78rem;
    letter-spacing: .06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-actions {
    display: contents;
  }
  .lang-switch {
    grid-area: lang;
    justify-self: end;
  }
  .header-actions .btn-wa {
    grid-area: cta;
    width: 100%;
    max-width: none;
    justify-content: center;
    min-height: 42px;
    padding: .65rem 1rem;
    font-size: .85rem;
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .wrap { padding: 0 1rem; }
  .header {
    padding: .55rem .85rem .7rem;
    gap: .45rem .55rem;
  }
  .brand-mini {
    font-size: .72rem;
  }
  .lang-btn {
    min-width: 28px;
    min-height: 28px;
    font-size: .65rem;
    padding: 0 .3rem;
  }
  .header-actions .btn-wa {
    font-size: .82rem;
    min-height: 44px;
  }
  .display {
    max-width: none;
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: -.01em;
  }
  .lead {
    font-size: .95rem;
  }
  .hero-cta { width: 100%; flex-direction: column; }
  .hero-cta .btn-wa,
  .hero-cta .btn-ghost { width: 100%; }
  .steps li { grid-template-columns: 3rem 1fr; }
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
