/* ============================================================
   Do.Media group — landing
   Estética broadcast: cromo metálico, negro profundo, verde señal
   ============================================================ */

:root {
  --bg: #050606;
  --bg-2: #090b0c;
  --panel: #0d0f11;
  --panel-2: #101315;
  --steel: #d9dee4;
  --muted: #7e8893;
  --green: #1fb573;
  --green-hi: #43d68f;
  --green-dk: #0a7a48;
  --green-glow: rgba(43, 209, 130, 0.28);
  --line: #1d2125;
  --line-hi: #2c3237;

  --sans: "Archivo", "Helvetica Neue", sans-serif;
  --mono: "Space Mono", "Courier New", monospace;

  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --nav-h: 4.1rem;

  --chrome: linear-gradient(180deg,
    #fbfcfe 0%, #e8ecf0 22%, #c3cad2 38%, #7e878f 50%,
    #a9b2bb 56%, #eef1f4 74%, #b7bec6 88%, #878f98 100%);
  --chrome-green: linear-gradient(180deg,
    #b8f7d8 0%, #6fe7ae 30%, #1fb573 52%, #0a7a48 60%, #4fdd97 78%, #0e8f57 100%);
}

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

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

body {
  background: var(--bg);
  color: var(--steel);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Scanlines sutiles estilo CRT */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.5;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.012) 0px,
    rgba(255, 255, 255, 0.012) 1px,
    transparent 1px,
    transparent 3px
  );
}

::selection { background: var(--green); color: #03130b; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #24292e; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dk); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

em {
  font-style: normal;
  color: var(--green-hi);
  text-shadow: 0 0 22px var(--green-glow);
}

/* Texto cromado */
.chrome-text,
.wordmark {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.chrome-text .dot,
.wordmark .dot {
  background: var(--chrome-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Animaciones de entrada ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none !important; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ---------- Teletipo ---------- */

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030404;
  padding: 0.5rem 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: tick 60s linear infinite;
}
.ticker__item {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
  padding-right: 3rem;
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Navegación ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--nav-h);
  padding: 0 var(--pad);
  background: rgba(5, 6, 6, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.nav__logo {
  font-weight: 800;
  font-stretch: 115%;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__logo em { color: var(--muted); text-shadow: none; font-weight: 500; }

.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s, text-shadow 0.25s;
}
.nav__links a:hover { color: var(--green-hi); text-shadow: 0 0 14px var(--green-glow); }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }

.lang { display: flex; align-items: center; gap: 0.4rem; }
.lang__btn {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 0.2rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.lang__btn:hover { color: var(--steel); }
.lang__btn.is-active { color: var(--green-hi); border-color: var(--green); }
.lang__sep { color: var(--line-hi); font-size: 0.7rem; }

/* ---------- Botones ---------- */

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.8em 1.6em;
  border-radius: 5px;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-align: center;
}
.btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn:active { transform: translateY(0); filter: brightness(0.95); }

.btn--green {
  color: #04170d;
  background: linear-gradient(180deg, var(--green-hi) 0%, var(--green) 48%, var(--green-dk) 100%);
  border: 1px solid #06623a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
              inset 0 -1px 0 rgba(0, 0, 0, 0.3),
              0 6px 18px rgba(31, 181, 115, 0.22);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--steel {
  color: var(--steel);
  background: linear-gradient(180deg, #2b3036 0%, #1a1e22 55%, #121518 100%);
  border: 1px solid #000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
              inset 0 -1px 0 rgba(0, 0, 0, 0.5),
              0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn--lg { padding: 1.05em 2.1em; font-size: 0.76rem; }

/* ---------- Paneles ---------- */

.panel {
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 60%, #0a0c0d 100%);
  border: 1px solid var(--line);
  border-top-color: var(--line-hi);
  border-radius: 7px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05),
              0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Etiqueta de sección estilo "bug" de transmisión */
.bug {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.bug i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--green-hi), var(--green-dk));
  box-shadow: 0 0 12px var(--green-glow);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32em 0.8em;
  border-radius: 99px;
  color: #bff3da;
  background: linear-gradient(180deg, rgba(31, 181, 115, 0.28), rgba(10, 122, 72, 0.18));
  border: 1px solid rgba(31, 181, 115, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.chip i {
  width: 7px; height: 7px;
  background: var(--green-hi);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(67, 214, 143, 0.55); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(67, 214, 143, 0); }
}

.live-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #a5f2cf, var(--green) 55%, var(--green-dk));
  box-shadow: 0 0 16px var(--green-glow);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ---------- Menú móvil ---------- */

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.2rem;
  height: 2.2rem;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--steel);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.menu[hidden] { display: none; }
.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: radial-gradient(120% 90% at 50% 110%, #07231733 0%, transparent 60%), var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
}
.menu__links { display: flex; flex-direction: column; gap: 0.25rem; }
.menu__links a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.menu__links i {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.7rem;
  color: var(--green);
}
.menu__links b {
  font-weight: 800;
  font-stretch: 115%;
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  letter-spacing: -0.01em;
}
.menu__foot { margin-top: 3rem; color: var(--muted); }

/* ---------- Hero / Ident ---------- */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad) clamp(3.5rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 50% -10%, rgba(43, 209, 130, 0.07) 0%, transparent 60%),
    radial-gradient(120% 80% at 50% 120%, rgba(43, 209, 130, 0.05) 0%, transparent 55%);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(3.6rem, 15.5vw, 14rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.9))
          drop-shadow(0 14px 34px rgba(0, 0, 0, 0.65));
}

.hero__tagline {
  margin-top: 1.4rem;
  color: var(--steel);
  font-size: 0.82rem;
  letter-spacing: 0.34em;
}
.hero__sched {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.66rem;
}

.findbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin: 2.4rem auto 0;
  padding: 0.9rem 1.2rem;
  max-width: 880px;
  background: linear-gradient(180deg, #101315, #0a0c0d);
  border: 1px solid var(--line);
  border-top-color: var(--line-hi);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 34px rgba(0, 0, 0, 0.45);
}
.findbar__label { color: var(--muted); }
.findbar__socials { display: flex; gap: 0.55rem; }
.sq {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 6px;
  color: var(--steel);
  background: linear-gradient(180deg, #2b3036, #16191d 60%, #101316);
  border: 1px solid #000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: filter 0.2s, transform 0.2s, color 0.2s;
}
.sq svg { width: 1.05rem; height: 1.05rem; }
.sq:hover { filter: brightness(1.2); transform: translateY(-1px); color: var(--green-hi); }
.findbar__ctas { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.hero__sub {
  max-width: 52ch;
  margin: 2.2rem auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero__stats {
  display: flex;
  justify-content: center;
  max-width: 880px;
  margin: 2.6rem auto 0;
  background: linear-gradient(180deg, #0e1113, #090b0c);
  border: 1px solid var(--line);
  border-top-color: var(--line-hi);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.15rem 1rem 1rem;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat b {
  font-weight: 800;
  font-stretch: 120%;
  font-size: 1.5rem;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--muted); font-size: 0.62rem; }

/* ---------- Secciones ---------- */

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) var(--pad);
  border-top: 1px solid var(--line);
}
.section__inner { max-width: 1080px; margin: 0 auto; text-align: center; }

.statement {
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 24ch;
  margin: 0 auto 1.4rem;
  text-wrap: balance;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.8));
}
.statement em,
.statement .dot {
  background: var(--chrome-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.statement--big { font-size: clamp(2.2rem, 5.2vw, 4.4rem); max-width: 18ch; }

.lede {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 58ch;
  margin: 0 auto 2.75rem;
}

/* ---------- 01 · Pilares ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  text-align: left;
}
.pillar { padding: 1.8rem 1.6rem 2rem; transition: border-color 0.3s, transform 0.3s; }
.pillar:hover { border-color: rgba(31, 181, 115, 0.4); transform: translateY(-3px); }
.pillar__num { display: block; color: var(--muted); margin-bottom: 2.1rem; }
.pillar h3 {
  font-weight: 800;
  font-stretch: 115%;
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}
.pillar p { color: var(--muted); font-size: 0.94rem; }

/* ---------- 02 · Marcas ---------- */

.brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  text-align: left;
}
.brand {
  position: relative;
  padding: 2rem 1.9rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-height: 250px;
}
.brand--live {
  grid-column: 1 / -1;
  padding: 2.4rem 2.2rem 2.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.brand--live:hover {
  border-color: rgba(31, 181, 115, 0.5);
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 50px rgba(0, 0, 0, 0.55), 0 0 40px rgba(31, 181, 115, 0.12);
}
.brand--live:hover .brand__arrow { transform: translateX(8px); color: var(--green-hi); }

.brand__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.brand__name {
  font-weight: 900;
  font-stretch: 122%;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.85)) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.5));
}
.brand__name--ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 222, 228, 0.25);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  filter: none;
}
.brand__name--ghost .dot { -webkit-text-stroke: 0; color: var(--green); opacity: 0.6; }
.brand__name--ghost u { text-decoration: none; }

.brand__desc { color: var(--muted); max-width: 52ch; }
.brand--soon { border-style: dashed; background: transparent; box-shadow: none; }
.brand--soon .brand__desc { font-size: 0.94rem; }

.brand__arrow {
  position: absolute;
  right: 2.2rem;
  bottom: 2.1rem;
  font-size: 1.5rem;
  color: var(--muted);
  transition: transform 0.3s, color 0.3s;
}

/* ---------- 03 · Alianzas ---------- */

.section--accent {
  background:
    radial-gradient(70% 90% at 50% 50%, rgba(31, 181, 115, 0.09) 0%, transparent 65%),
    var(--bg-2);
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.cta-note { color: var(--muted); }
.cta-note a {
  color: var(--steel);
  border-bottom: 1px solid var(--green);
  transition: color 0.25s;
  text-transform: lowercase;
}
.cta-note a:hover { color: var(--green-hi); }

/* ---------- 04 · Prensa ---------- */

.press { text-align: left; overflow: hidden; }
.press__item {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.45rem 1.8rem;
  transition: background 0.3s;
}
.press__item + .press__item { border-top: 1px solid var(--line); }
a.press__item:hover { background: rgba(31, 181, 115, 0.06); }
a.press__item:hover .press__arrow { color: var(--green-hi); transform: translateX(6px); }
.press__key { color: var(--muted); }
.press__val { font-weight: 600; font-size: 1.12rem; }
.press__item--muted .press__val { color: var(--muted); font-weight: 400; }
.press__arrow { font-size: 1.4rem; color: var(--muted); transition: transform 0.3s, color 0.3s; }

/* ---------- 05 · Contacto ---------- */

.contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: start;
  text-align: left;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.2rem 2rem 2.4rem;
}
.form__mark {
  font-weight: 900;
  font-stretch: 125%;
  font-size: 3rem;
  line-height: 1;
  align-self: center;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.85));
}
.form__field { display: flex; flex-direction: column; gap: 0.55rem; }
.form__field label { color: var(--muted); }

.form input,
.form select,
.form textarea {
  font: inherit;
  color: var(--steel);
  background: linear-gradient(180deg, #08090a, #0d0f11);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.9rem 1.05rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}
.form input::placeholder,
.form textarea::placeholder { color: rgba(126, 136, 147, 0.55); }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(31, 181, 115, 0.18);
}
.form textarea { resize: vertical; min-height: 116px; }

.form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23d9dee4' stroke-width='1.5'/%3E%3C/svg%3E"), linear-gradient(180deg, #08090a, #0d0f11);
  background-repeat: no-repeat, no-repeat;
  background-position: right 1.05rem center, 0 0;
  background-size: 12px 8px, 100% 100%;
  padding-right: 2.8rem;
}
.form select option { background: var(--panel); color: var(--steel); }

.form__submit { align-self: stretch; }
.form__hint { color: var(--muted); letter-spacing: 0.08em; text-transform: none; text-align: center; }

.contact__side { display: flex; flex-direction: column; gap: 1.1rem; }
.side-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 1.6rem;
  transition: border-color 0.3s, transform 0.3s;
}
.side-card:hover { border-color: rgba(31, 181, 115, 0.45); transform: translateY(-2px); }
.side-card__key { color: var(--muted); }
.side-card__val { font-weight: 700; font-stretch: 110%; font-size: 1.14rem; }
.side-card::after {
  content: "→";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.3rem;
  transition: transform 0.3s, color 0.3s;
}
.side-card:hover::after { color: var(--green-hi); transform: translateY(-50%) translateX(5px); }

/* ---------- Footer + globo ---------- */

.footer {
  position: relative;
  border-top: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 50% 115%, rgba(31, 181, 115, 0.16) 0%, rgba(31, 181, 115, 0.05) 45%, transparent 70%),
    var(--bg);
}

.footer__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4.5rem var(--pad) 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.footer__brand {
  font-weight: 900;
  font-stretch: 120%;
  font-size: 2rem;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.85));
}
.footer__brand em { color: var(--muted); text-shadow: none; -webkit-text-fill-color: var(--muted); }
.footer__tag { color: var(--muted); letter-spacing: 0.3em; }
.footer__links { display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--muted); transition: color 0.25s, text-shadow 0.25s; }
.footer__links a:hover { color: var(--green-hi); text-shadow: 0 0 14px var(--green-glow); }

.globe {
  position: relative;
  z-index: 1;
  height: clamp(240px, 34vw, 430px);
  margin-top: 1rem;
  pointer-events: none;
}
.globe svg {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(860px, 130vw);
  height: auto;
}
.sdq__pulse { animation: sdq 2.6s ease-out infinite; transform-origin: 300px 352px; }
@keyframes sdq {
  0% { opacity: 0.9; transform: scale(0.6); }
  70% { opacity: 0; transform: scale(2.1); }
  100% { opacity: 0; transform: scale(2.1); }
}

.footer__legal {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.3rem var(--pad) 1.5rem;
  border-top: 1px solid rgba(84, 226, 153, 0.14);
  color: var(--muted);
  font-size: 0.6rem;
  background: rgba(3, 5, 4, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .press__item { grid-template-columns: 180px 1fr auto; gap: 1.25rem; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .findbar { flex-direction: column; gap: 1rem; padding: 1.3rem 1.1rem; }
  .findbar__ctas { justify-content: center; }

  .hero__stats { flex-wrap: wrap; }
  .stat { flex: 1 1 40%; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }

  .pillars { grid-template-columns: 1fr; }
  .brands { grid-template-columns: 1fr; }
  .brand { min-height: 0; }

  .contact { grid-template-columns: 1fr; }

  .press__item { grid-template-columns: 1fr auto; row-gap: 0.3rem; padding: 1.2rem 1.3rem; }
  .press__key { grid-column: 1 / -1; }

  .footer__legal { justify-content: center; text-align: center; }
}
