/* Grupo Garga — production redesign (arts-faithful, not template SaaS) */
:root {
  --ink: #000b18;
  --navy: #00122a;
  --navy-mid: #0a2d4d;
  --navy-lift: #123a5c;
  --cyan: #00b7e0;
  --cyan-hot: #5ef0ff;
  --cyan-glow: rgba(0, 183, 224, 0.55);
  --gold: #c9a227;
  --gold-bright: #f0d060;
  --gold-grad: linear-gradient(135deg, #f3d978 0%, #c9a227 45%, #8a6a12 100%);
  --paper: #f3f7fb;
  --mist: #9eb6cb;
  --text: #e6f2f8;
  --glass: rgba(6, 24, 44, 0.72);
  --line: rgba(0, 183, 224, 0.28);
  --font-display: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  letter-spacing: 0;
  font-stretch: normal;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
em { font-style: normal; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

.noise {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 9999; opacity: .035;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ——— Header (mockup 02 white tab + gold nav) ——— */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 80;
  pointer-events: none;
}
.nav-shell {
  width: min(100% - 1.25rem, 1280px);
  margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem;
  pointer-events: auto;
}
.brand-tab {
  display: flex; align-items: center; gap: .85rem;
  background: #fff;
  color: var(--navy);
  padding: .7rem 1.15rem .85rem;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.8);
  border-top: 0;
  transform: translateY(0);
  transition: transform .25s var(--ease);
}
.brand-tab:hover { transform: translateY(2px); }
.brand-tab img { width: 48px; height: 48px; flex-shrink: 0; }
.brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.05;
}
.brand-copy em { color: #00a4c4; }
.brand-copy small {
  display: block;
  margin-top: 3px;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #5a738a;
}
.nav-gold {
  display: flex; flex-wrap: wrap; justify-content: flex-end;
  gap: .35rem 1.35rem;
  padding: 1.15rem 1rem 0 0;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.nav-gold a {
  color: var(--gold-bright);
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
  position: relative;
  transition: color .2s;
}
.nav-gold a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
  box-shadow: 0 0 10px var(--cyan-glow);
}
.nav-gold a:hover { color: var(--cyan-hot); }
.nav-gold a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  margin: .85rem .25rem 0 0;
  width: 44px; height: 40px;
  background: rgba(0,18,42,.65);
  border: 1px solid var(--cyan);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  box-shadow: 0 0 16px rgba(0,183,224,.25);
}
.nav-toggle span:not(.sr-only) {
  display: block; width: 18px; height: 2px;
  background: var(--cyan-hot); border-radius: 2px;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/hero-cinematic.jpg") center/cover no-repeat;
  transform: scale(1.03);
  animation: heroDrift 28s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(0,0,0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(0,11,24,.15) 0%,
      rgba(0,18,42,.25) 38%,
      rgba(0,18,42,.72) 62%,
      rgba(0,11,24,.88) 100%),
    radial-gradient(ellipse at 72% 42%, rgba(0,183,224,.18), transparent 42%);
}
.hero-circuit {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(0,183,224,.12), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(0,183,224,.04) 46px 47px),
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(0,183,224,.03) 46px 47px);
  mask-image: linear-gradient(90deg, transparent 45%, #000 78%);
  pointer-events: none;
  opacity: .7;
}
.hero-hud {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hud-chip {
  position: absolute;
  backdrop-filter: blur(10px);
  background: linear-gradient(145deg, rgba(8,30,55,.55), rgba(0,18,42,.35));
  border: 1px solid rgba(94,240,255,.35);
  border-radius: 12px;
  padding: .65rem .8rem;
  box-shadow: 0 0 24px rgba(0,183,224,.2), inset 0 0 20px rgba(0,183,224,.06);
  animation: floatY 7s ease-in-out infinite;
}
.hud-a { left: 6%; top: 28%; width: min(220px, 28vw); animation-delay: 0s; }
.hud-b { left: 18%; top: 52%; width: min(180px, 24vw); animation-delay: -2.2s; }
.hud-c { left: 32%; bottom: 18%; width: min(160px, 22vw); animation-delay: -4s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hud-label {
  display: block;
  font-family: var(--font-display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--cyan-hot);
  margin-bottom: .45rem;
}
.hud-bar {
  display: block; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 12px var(--cyan-glow);
}
.hud-pulse {
  display: inline-block; margin-top: .4rem;
  font-size: .55rem; font-weight: 800; letter-spacing: .04em;
  color: #ff5a5a;
  animation: blink 1.6s step-end infinite;
}
@keyframes blink { 50% { opacity: .35; } }
.hud-map {
  display: block; height: 48px; border-radius: 8px;
  background:
    radial-gradient(circle at 55% 45%, rgba(0,183,224,.45), transparent 40%),
    linear-gradient(160deg, rgba(0,80,120,.4), rgba(0,20,40,.2));
  border: 1px solid rgba(94,240,255,.2);
}
.hud-bars { display: flex; align-items: flex-end; gap: 4px; height: 36px; }
.hud-bars i {
  display: block; width: 8px; border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--cyan-hot), var(--gold));
  box-shadow: 0 0 8px rgba(0,183,224,.4);
  animation: barPulse 2.4s ease-in-out infinite;
}
.hud-bars i:nth-child(1) { height: 40%; animation-delay: 0s; }
.hud-bars i:nth-child(2) { height: 70%; animation-delay: .15s; }
.hud-bars i:nth-child(3) { height: 55%; animation-delay: .3s; }
.hud-bars i:nth-child(4) { height: 90%; animation-delay: .45s; }
.hud-bars i:nth-child(5) { height: 65%; animation-delay: .6s; }
@keyframes barPulse {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(.72); }
}

.hero-layout {
  position: relative; z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: min(100vh, 900px);
  padding: 7.5rem 0 4.5rem;
}
.hero-copy {
  text-align: right;
  justify-self: end;
  max-width: 560px;
}
.hero-kicker {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: .04em;
  color: #fff;
}
.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.8vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.gold-word {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(201,162,39,.35));
}
.hero-sub {
  margin: 0 0 1.85rem;
  color: #c5d8e8;
  font-size: clamp(.95rem, 1.5vw, 1.12rem);
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.cta-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, rgba(10,40,70,.85), rgba(0,18,42,.92));
  border: 1.5px solid var(--cyan-hot);
  box-shadow:
    0 0 0 1px rgba(0,183,224,.15),
    0 0 22px rgba(0,183,224,.45),
    0 0 48px rgba(0,183,224,.18),
    inset 0 0 18px rgba(0,183,224,.08);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.cta-pill:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(0,183,224,.25),
    0 0 32px rgba(0,183,224,.65),
    0 0 64px rgba(0,183,224,.28),
    inset 0 0 22px rgba(0,183,224,.12);
}
.cta-gold {
  border-color: var(--gold-bright);
  box-shadow: 0 0 22px rgba(201,162,39,.35), inset 0 0 14px rgba(201,162,39,.08);
  margin-bottom: 1.25rem;
}
.cta-gold:hover {
  box-shadow: 0 0 34px rgba(201,162,39,.55), inset 0 0 18px rgba(201,162,39,.12);
}
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 22px; height: 36px;
  border: 1.5px solid rgba(94,240,255,.45);
  border-radius: 999px;
}
.hero-scroll span {
  display: block; width: 4px; height: 8px; margin: 6px auto 0;
  border-radius: 999px; background: var(--cyan-hot);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ——— Pillars ——— */
.pillars {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  isolation: isolate;
}
.pillars-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,11,24,.92), rgba(0,18,42,.88) 40%, rgba(0,11,24,.95)),
    url("../img/pillars-banner.jpg") center top / cover no-repeat;
  filter: saturate(1.1);
  z-index: -1;
}
.block-head {
  text-align: center;
  margin-bottom: 2.75rem;
}
.hex-float {
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 22px rgba(0,183,224,.55));
  animation: floatY 6s ease-in-out infinite;
}
.eyebrow {
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cyan-hot);
}
.eyebrow.gold { color: var(--gold-bright); }
.block-head h2 {
  margin: 0 0 .65rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: .04em;
}
.lede {
  margin: 0 auto;
  max-width: 560px;
  color: var(--mist);
}
.pillar-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  position: relative;
}
.pillar-rail::before {
  content: "";
  position: absolute;
  top: 58px; left: 7%; right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .55;
  z-index: 0;
}
.pillar-card {
  position: relative; z-index: 1;
  padding: 1.6rem 1.1rem 1.45rem;
  text-align: center;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(18,58,92,.72), rgba(0,18,42,.88));
  border: 1px solid rgba(0,183,224,.22);
  box-shadow: 0 24px 50px rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,.55);
  box-shadow: 0 28px 60px rgba(0,0,0,.5), 0 0 30px rgba(201,162,39,.12);
}
.pillar-orb {
  width: 84px; height: 84px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 25%, #4a3810, #1a1206 70%);
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 4px rgba(201,162,39,.12),
    0 0 28px rgba(201,162,39,.28),
    inset 0 0 18px rgba(243,217,120,.15);
}
.pillar-card h3 {
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #fff;
}
.pillar-card h3 span { color: var(--mist); font-weight: 700; }
.pillar-card p {
  margin: 0;
  font-size: .84rem;
  color: var(--mist);
}
.sub-brands {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .4rem; margin-top: .9rem;
}
.sub-brands li {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: .28rem .55rem;
  border-radius: 999px;
  color: var(--cyan-hot);
  background: rgba(0,183,224,.1);
  border: 1px solid rgba(0,183,224,.4);
}
.sub-brand-link { color: inherit; }
.sub-brand-link:hover { color: #fff; }
.mission-band {
  margin: 2.85rem 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(.95rem, 2.1vw, 1.2rem);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  padding: 1.35rem 1rem;
  border-top: 1px solid rgba(201,162,39,.4);
  border-bottom: 1px solid rgba(201,162,39,.4);
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.06), transparent);
}

/* ——— Cinema strips (arts 03 / 05) ——— */
.cinema {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.1fr;
  min-height: 460px;
  background: var(--navy-mid);
  border-block: 1px solid var(--line);
}
.cinema-flip { direction: rtl; }
.cinema-flip > * { direction: ltr; }
.cinema-shot {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(90deg, transparent 30%, rgba(10,45,77,.35)),
    var(--shot) center/cover no-repeat;
}
.cinema-flip .cinema-shot {
  background:
    linear-gradient(270deg, transparent 30%, rgba(10,45,77,.35)),
    var(--shot) center/cover no-repeat;
}
.cinema-shot::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,183,224,.18), transparent 45%),
    linear-gradient(180deg, transparent 60%, rgba(0,11,24,.35));
  pointer-events: none;
}
.cinema-panel {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 4.5vw, 3.5rem);
  background:
    linear-gradient(155deg, #0c3558 0%, #00122a 55%, #000b18 100%);
}
.accent-bar {
  width: 3px; height: 2.6rem;
  margin-bottom: 1rem;
  background: var(--cyan-hot);
  box-shadow: 0 0 16px var(--cyan-glow);
}
.cinema-panel h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.25;
}
.cyan { color: var(--cyan-hot); }
.pipe-line {
  margin: 0 0 1.4rem;
  color: var(--mist);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pipe-line i { color: var(--cyan); margin: 0 .35rem; font-style: normal; }
.pipe-line.subtle { letter-spacing: .04em; text-transform: none; font-weight: 600; }
.glow-list { margin: 0 0 1.1rem; }
.glow-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: .45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.glow-list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan-hot);
  box-shadow: 0 0 10px var(--cyan-glow);
}
.ticker {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #b7c9d8;
}
.spark { color: var(--gold-bright); font-size: 1.05rem; text-shadow: 0 0 12px rgba(201,162,39,.5); }

/* ——— Filosofía ——— */
.filosofia {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,183,224,.1), transparent 40%),
    linear-gradient(180deg, #000b18, #0a2d4d 50%, #000b18);
}
.filo-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}
.filo-portrait {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,183,224,.3);
  box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 40px rgba(0,183,224,.12);
}
.filo-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}
.filo-portrait figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,11,24,.92));
}
.filo-copy h2 {
  margin: 0 0 .5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.legal-name {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: .92rem;
}
.filo-copy > p { color: var(--mist); margin: 0 0 1rem; }
.chip-row {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 1.25rem 0 1.5rem;
}
.chip-row span {
  padding: .4rem .75rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cyan-hot);
  background: rgba(0,183,224,.1);
  border: 1px solid rgba(0,183,224,.35);
}
.lockup-row {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.lockup-row > img:first-child {
  filter: drop-shadow(0 0 18px rgba(0,183,224,.4));
}
.lockup-photo {
  border-radius: 12px;
  border: 1px solid rgba(0,183,224,.25);
  max-width: 240px;
}

/* ——— Ecosistema ——— */
.ecosystem {
  padding: 5.5rem 0 5.75rem;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(201,162,39,.11), transparent 34%),
    linear-gradient(180deg, #071d35, #000b18 72%);
  border-top: 1px solid rgba(201,162,39,.18);
}
.ecosystem-head { margin-bottom: 2.4rem; }
.ecosystem-head h2 { letter-spacing: .04em; }
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.network-card {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.45rem 1.35rem 1.25rem;
  border: 1px solid rgba(0,183,224,.25);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(18,58,92,.76), rgba(0,11,24,.9));
  box-shadow: 0 20px 45px rgba(0,0,0,.28), inset 0 0 24px rgba(0,183,224,.035);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.network-card::before {
  content: "";
  position: absolute;
  top: 0; left: 1.35rem; right: 1.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), transparent);
  opacity: .8;
}
.network-card:hover {
  transform: translateY(-7px);
  border-color: rgba(94,240,255,.65);
  box-shadow: 0 28px 55px rgba(0,0,0,.42), 0 0 26px rgba(0,183,224,.13);
}
.network-index {
  margin-bottom: 1.1rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.network-card h3 {
  margin: 0 0 .2rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.network-domain {
  color: var(--cyan-hot);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.network-card p {
  margin: .9rem 0 1.15rem;
  color: var(--mist);
  font-size: .82rem;
  line-height: 1.55;
}
.network-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  color: #fff;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.network-link span { color: var(--gold-bright); font-size: 1rem; transition: transform .25s var(--ease); }
.network-card:hover .network-link span { transform: translate(3px, -3px); }

/* ——— Contact ——— */
.contact {
  padding: 5rem 0 5.5rem;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(0,183,224,.12), transparent 42%),
    var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.25rem;
  align-items: start;
}
.contact-intro h2 {
  margin: 0 0 .85rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-intro > p { color: var(--mist); margin: 0 0 .85rem; }
.mail-line a {
  color: var(--cyan-hot);
  font-weight: 800;
  border-bottom: 1px solid rgba(94,240,255,.4);
}
.geo { font-weight: 700; letter-spacing: .04em; }
.contact-pillars {
  margin-top: 1.5rem;
  display: grid; gap: .45rem;
}
.contact-pillars li {
  padding-left: .9rem;
  position: relative;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #cfe0ec;
}
.contact-pillars li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,162,39,.5);
}
.glass-form {
  padding: 1.85rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(18,58,92,.75), rgba(0,18,42,.92));
  border: 1px solid rgba(0,183,224,.28);
  box-shadow: 0 28px 60px rgba(0,0,0,.45), 0 0 40px rgba(0,183,224,.08);
  backdrop-filter: blur(12px);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.glass-form label { display: block; margin-bottom: 1rem; }
.glass-form label span {
  display: block;
  margin-bottom: .4rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mist);
}
.glass-form input,
.glass-form textarea,
.glass-form select {
  width: 100%;
  padding: .8rem .95rem;
  border-radius: 12px;
  border: 1px solid rgba(0,183,224,.3);
  background: rgba(0,11,24,.7);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.glass-form input:focus,
.glass-form textarea:focus,
.glass-form select:focus {
  border-color: var(--cyan-hot);
  box-shadow: 0 0 0 3px rgba(0,183,224,.16);
}
.glass-form textarea { min-height: 130px; resize: vertical; }
.form-hint {
  margin: .85rem 0 0;
  font-size: .78rem;
  color: var(--mist);
}

/* ——— Footer ——— */
.site-footer {
  padding: 2.4rem 0 2.8rem;
  border-top: 1px solid rgba(0,183,224,.18);
  background: #00060f;
  text-align: center;
}
.footer-inner { display: grid; gap: .35rem; justify-items: center; }
.footer-brand {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-bottom: .55rem;
}
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: .04em;
  font-size: .95rem;
}
.footer-brand em { color: var(--cyan); }
.footer-brand small {
  display: block;
  font-size: .7rem;
  color: var(--mist);
  letter-spacing: .04em;
}
.site-footer p {
  margin: 0;
  font-size: .78rem;
  color: var(--mist);
}
.site-footer .copy { margin-top: .7rem; opacity: .85; }
.footer-network { width: 100%; margin: 1.1rem 0 .25rem; padding-top: 1rem; border-top: 1px solid rgba(0,183,224,.14); }
.footer-label { margin-bottom: .55rem !important; color: var(--gold-bright) !important; font-family: var(--font-display); font-size: .65rem !important; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .35rem .9rem; }
.footer-links a { color: var(--mist); font-size: .72rem; font-weight: 700; transition: color .2s; }
.footer-links a:hover { color: var(--cyan-hot); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ——— Responsive ——— */
@media (max-width: 1020px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-spacer { display: none; }
  .hero-copy {
    text-align: left;
    justify-self: start;
    max-width: 640px;
    background: linear-gradient(90deg, rgba(0,11,24,.55), transparent);
    padding: 1rem;
    border-radius: 16px;
  }
  .hud-chip { opacity: .55; }
  .pillar-rail { grid-template-columns: repeat(2, 1fr); }
  .pillar-rail::before { display: none; }
  .cinema, .filo-grid, .contact-grid { grid-template-columns: 1fr; }
  .cinema-flip { direction: ltr; }
  .cinema-shot { min-height: 280px; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-gold {
    display: none;
    position: absolute;
    top: 64px; right: .75rem; left: .75rem;
    flex-direction: column;
    gap: .9rem;
    padding: 1.1rem 1.2rem;
    background: rgba(0,11,24,.96);
    border: 1px solid rgba(0,183,224,.3);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
  }
  .nav-gold.open { display: flex; }
  .brand-copy small { display: none; }
  .pillar-rail { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .network-card { min-height: 0; }
  .row-2 { grid-template-columns: 1fr; }
  .hud-a, .hud-b, .hud-c { display: none; }
  .hero { min-height: 86vh; }
  .hero-layout { min-height: 86vh; padding-top: 6.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hud-chip, .hex-float, .hud-bars i, .hero-scroll span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Scrolled header becomes a slim bar for readability past hero */
.site-header.scrolled {
  position: fixed;
  background: rgba(0, 11, 24, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 183, 224, 0.18);
  pointer-events: auto;
}
.site-header.scrolled .nav-shell { align-items: center; padding: 0.35rem 0; }
.site-header.scrolled .brand-tab {
  border-radius: 12px;
  padding: 0.4rem 0.85rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.site-header.scrolled .brand-tab img { width: 36px; height: 36px; }
.site-header.scrolled .nav-gold { padding-top: 0; }
