/* ============================================================
   OMNIPOST CENTER — NEAR ORBITAL
   Tema: negro + plateado
   ============================================================ */

:root {
  --black: #050506;
  --black-2: #0a0b0d;
  --black-3: #0f1113;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);

  --silver-1: #ffffff;
  --silver-2: #dfe2e7;
  --silver-3: #b4b9c1;
  --silver-4: #8b9098;
  --silver-5: #5f646c;

  --text: #d8dbe0;
  --text-dim: #9aa0a8;
  --text-faint: #6d727a;

  --metal: linear-gradient(135deg, #ffffff 0%, #e6e8ec 22%, #a8adb6 52%, #f2f3f5 74%, #7e838b 100%);
  --metal-soft: linear-gradient(135deg, #f4f5f7 0%, #b9bec6 55%, #85898f 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--silver-2); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: #fff; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: "Orbitron", "Inter", sans-serif;
  letter-spacing: .02em;
  line-height: 1.12;
  margin: 0 0 .6em;
  color: #f2f3f5;
  font-weight: 700;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* ---------- Fondo ---------- */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 78% -10%, rgba(255,255,255,.07), transparent 60%),
    radial-gradient(900px 500px at 5% 15%, rgba(190,196,205,.05), transparent 65%),
    linear-gradient(180deg, #05070a 0%, #050506 45%, #08090b 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 85% 60% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 60% at 50% 0%, #000 20%, transparent 78%);
  opacity: .7;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}
.bg-glow--one {
  width: 520px; height: 520px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(255,255,255,.20), transparent 70%);
}
.bg-glow--two {
  width: 620px; height: 620px;
  bottom: 8%; left: -220px;
  background: radial-gradient(circle, rgba(150,158,170,.16), transparent 70%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  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='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Texto metálico ---------- */
.metal {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--silver-4);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--silver-2);
  box-shadow: 0 0 12px rgba(255,255,255,.75);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(5, 5, 6, 0.55);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(5, 5, 6, 0.88);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.22));
}
.brand-mark svg { width: 100%; height: 100%; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: "Orbitron", sans-serif;
}
.brand-text strong {
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: .13em;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-text em {
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .5em;
  color: var(--text-faint);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-size: .88rem;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav ul a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--metal-soft);
  transition: width .3s var(--ease);
}
.nav ul a:hover::after,
.nav ul a.is-active::after { width: 100%; }
.nav ul a.is-active { color: #fff; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel);
  cursor: pointer;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 1.6px;
  background: var(--silver-2);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.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); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--metal-soft);
  color: #08090a;
  box-shadow: 0 10px 30px rgba(200, 206, 214, .18), inset 0 1px 0 rgba(255,255,255,.7);
}
.btn--primary:hover {
  color: #000;
  box-shadow: 0 16px 40px rgba(220, 226, 234, .3), inset 0 1px 0 rgba(255,255,255,.85);
}

.btn--outline {
  border-color: var(--line-strong);
  color: var(--silver-2);
  background: rgba(255,255,255,.02);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--silver-3);
  padding: 10px 18px;
  font-size: .82rem;
}
.btn--ghost:hover { border-color: var(--line-strong); color: #fff; }

.btn--disabled {
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: var(--text-faint);
  cursor: not-allowed;
}
.btn--disabled:hover { transform: none; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 70px);
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 7.4vw, 5.4rem);
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.hero h1 span { display: block; }
.hero h1 .metal-line {
  font-size: .42em;
  letter-spacing: .58em;
  color: var(--silver-4);
  -webkit-text-fill-color: initial;
  background: none;
  margin-top: 12px;
  font-weight: 500;
}

.lead {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--text-dim);
  max-width: 56ch;
}
.lead strong { color: #eef0f3; font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 46px);
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong {
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats span {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: var(--text-faint);
}

/* Órbitas */
.hero-visual {
  display: grid;
  place-items: center;
  min-height: 380px;
}
.orbit-system {
  position: relative;
  width: min(400px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.orbit-core {
  position: absolute;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 32% 28%, #ffffff, #c3c8d0 42%, #5e636b 100%);
  box-shadow: 0 0 50px rgba(226, 231, 238, .38), inset 0 -6px 18px rgba(0,0,0,.45);
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  color: #0a0b0d;
  font-size: 1.5rem;
  letter-spacing: .06em;
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(226,231,238,.3), inset 0 -6px 18px rgba(0,0,0,.45); }
  50% { box-shadow: 0 0 70px rgba(240,244,248,.5), inset 0 -6px 18px rgba(0,0,0,.45); }
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  inset: 0;
  animation: spin linear infinite;
}
.orbit--1 { inset: 8%;  animation-duration: 16s; }
.orbit--2 { inset: 0;   animation-duration: 26s; animation-direction: reverse; border-color: rgba(255,255,255,.09); }
.orbit--3 { inset: 18%; animation-duration: 21s; border-style: dashed; border-color: rgba(255,255,255,.10); }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.satellite {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px; height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: linear-gradient(140deg, #fff, #9ba0a8);
  box-shadow: 0 0 16px rgba(255,255,255,.6);
}
.satellite::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: -26px;
  transform: translateX(-50%);
  font-family: "Orbitron", sans-serif;
  font-size: .55rem;
  letter-spacing: .22em;
  color: var(--silver-3);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .orbit, .orbit-core { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Secciones ---------- */
.section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,0));
  border-block: 1px solid var(--line);
  pointer-events: none;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 800;
}
.section-sub { color: var(--text-dim); margin: 0; }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 12%;
  width: 76%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  opacity: .7;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.22);
  box-shadow: var(--shadow);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px 28px;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.card-index {
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
  color: rgba(255,255,255,.10);
  font-weight: 900;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
}
.badge--live { color: #e9ecf0; background: rgba(255,255,255,.07); }
.badge--live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #fff;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.badge--soon { color: var(--text-faint); border-color: var(--line); background: transparent; }

.card-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(150deg, rgba(255,255,255,.13), rgba(255,255,255,.02));
  color: #eceef1;
  margin-bottom: 20px;
}
.card-icon svg { width: 27px; height: 27px; }

.product-card h3 {
  font-size: 1.06rem;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.product-card h3 span {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.card-text { color: var(--text-dim); font-size: .95rem; }

.feature-list {
  margin: 20px 0 26px;
  display: grid;
  gap: 10px;
}
.feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: .89rem;
  color: var(--silver-3);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: .62em;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--metal-soft);
  transform: rotate(45deg);
}
.feature-list--muted li { color: var(--text-faint); }
.feature-list--muted li::before { background: rgba(255,255,255,.22); }

.card-cta { margin-top: auto; width: 100%; }
.card-link {
  margin: 12px 0 0;
  text-align: center;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.product-card--soon { background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); }
.product-card--soon .card-icon { color: var(--silver-4); }

/* ---------- Ecosistema ---------- */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.eco-card { padding: 28px 26px; }
.eco-num {
  font-family: "Orbitron", sans-serif;
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--silver-4);
  display: block;
  margin-bottom: 14px;
}
.eco-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.eco-card p { color: var(--text-dim); font-size: .92rem; margin: 0; }

/* ---------- Near Orbital ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}
.about-copy h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); letter-spacing: .12em; }
.about-copy p { color: var(--text-dim); }

.pillars {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.pillar {
  padding: 18px 22px;
  border-left: 2px solid rgba(255,255,255,.22);
  background: linear-gradient(90deg, rgba(255,255,255,.04), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.pillar h4 {
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--silver-3);
  margin-bottom: 8px;
}
.pillar p { margin: 0; font-size: .92rem; color: var(--text-dim); }

.about-panel h3 {
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver-4);
  margin-bottom: 20px;
}
.data-list { display: grid; gap: 0; margin: 0; }
.data-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.data-list > div:last-child { border-bottom: none; }
.data-list dt {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-faint);
}
.data-list dd {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: .82rem;
  color: #e9ebee;
  text-align: right;
  letter-spacing: .04em;
}
.panel-links {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
}
.panel-links a { color: var(--silver-3); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 840px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.028);
  padding: 4px 20px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq-list details[open] {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
}
.faq-list summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: .96rem;
  color: #e6e8ec;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  color: var(--silver-4);
  transition: transform .3s var(--ease);
  flex: none;
}
.faq-list details[open] summary::after { transform: rotate(45deg); color: #fff; }
.faq-list details p {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: .93rem;
  max-width: 70ch;
}

/* ---------- CTA / contacto ---------- */
.cta-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(28px, 4vw, 50px);
  padding: clamp(30px, 4.5vw, 54px);
  border-radius: 26px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(600px 240px at 12% 0%, rgba(255,255,255,.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  align-items: center;
}
.cta-panel h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.cta-copy p { color: var(--text-dim); max-width: 48ch; margin-bottom: 0; }

.cta-contact h3 {
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--silver-4);
  margin-bottom: 18px;
}
.contact-list { display: grid; gap: 16px; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-list span {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-faint);
}
.contact-list a { font-size: .95rem; color: #e6e8ec; }

/* ---------- Anuncios ---------- */
.ad-slot {
  position: relative;
  margin: clamp(26px, 4vw, 42px) 0;
  padding: 26px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.02);
  min-height: 120px;
  overflow: hidden;
}
.ad-label {
  position: absolute;
  top: 8px; left: 14px;
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.ad-slot--leaderboard { min-height: 130px; }
.ad-slot--rectangle { min-height: 260px; }
.ad-slot .adsbygoogle { width: 100%; }
.ad-placeholder {
  display: grid;
  place-items: center;
  min-height: 90px;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 10px;
  color: var(--text-faint);
  font-size: .78rem;
  letter-spacing: .1em;
  text-align: center;
  padding: 18px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.5));
  padding-top: clamp(40px, 6vw, 70px);
  margin-top: 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  padding-bottom: 44px;
}
.footer-brand p {
  color: var(--text-faint);
  font-size: .88rem;
  margin-top: 14px;
  max-width: 30ch;
}
.footer-col h4 {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver-4);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .89rem; color: var(--text-dim); }
.footer-col a:hover { color: #fff; }
.tag {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--line);
  padding: 1px 7px;
  border-radius: 999px;
  margin-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: .8rem; color: var(--text-faint); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Página legal ---------- */
.legal {
  padding: clamp(48px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
}
.legal-inner { max-width: 820px; margin-inline: auto; }
.legal h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.legal h2 {
  font-size: 1.15rem;
  margin-top: 42px;
  letter-spacing: .06em;
}
.legal p, .legal li { color: var(--text-dim); font-size: .95rem; }
.legal ul { display: grid; gap: 9px; margin: 0 0 1em; }
.legal ul li { position: relative; padding-left: 20px; }
.legal ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 7px; height: 7px;
  background: var(--metal-soft);
  transform: rotate(45deg);
  border-radius: 1px;
}
.legal-meta {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 300px; }
  .about-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset: 74px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 7, 9, .97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 10px 22px 26px;
    transform: translateY(-130%);
    transition: transform .38s var(--ease);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav ul li { border-bottom: 1px solid var(--line); }
  .nav ul a { display: block; padding: 16px 2px; font-size: 1rem; }
  .nav ul a::after { display: none; }
  .nav-cta { margin-top: 20px; justify-content: center; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .card, .product-card { padding: 24px 20px; }
  .hero-stats { gap: 22px; }
  .hero-stats strong { font-size: 1.35rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .btn { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .data-list > div { flex-direction: column; align-items: flex-start; gap: 2px; }
  .data-list dd { text-align: left; }
}
