/* ============ ASTORA HOLDING — LANDING PAGE ============ */

:root {
  --bg: #050505;
  --bg-2: #0b0b0c;
  --bg-3: #111113;
  --line: #1a1a1c;
  --line-2: #232326;
  --ink: #f4f4f4;
  --ink-mute: #a0a0a3;
  --ink-dim: #6b6b6e;
  --red: #d81e2a;
  --red-deep: #8a0e17;
  --red-glow: rgba(216, 30, 42, 0.55);

  --display: "Archivo Black", "Arial Black", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --max: 1480px;
  --gutter: clamp(20px, 4vw, 72px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Film grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ TYPE ============ */
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--red);
  display: inline-block;
}
.kicker.muted { color: var(--ink-mute); }
.kicker.muted::before { background: var(--ink-dim); }

.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

h1, h2, h3, h4 { margin: 0; font-weight: 400; }
.display {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
}

.section-title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0;
}

p.lede {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--ink-mute);
  max-width: 56ch;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo svg { width: 28px; height: 28px; }
.nav-logo .word {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-logo .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
}
.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(216, 30, 42, 0.08);
}
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 50%, rgba(216, 30, 42, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(216, 30, 42, 0.05) 0%, transparent 50%),
    var(--bg);
}
.hero-map-img {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  max-width: 1200px;
  opacity: 0.55;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 60% 50%, #000 28%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, #000 28%, transparent 78%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0) 50%, rgba(5,5,5,0.75) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.55) 35%, rgba(5,5,5,0) 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }

.hero-block {
  max-width: 720px;
}

/* Floaters (top corners) */
.hero-floater {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.hero-floater-tl {
  top: 96px;
  left: var(--gutter);
}
.hero-floater-tr {
  top: 96px;
  right: var(--gutter);
}
.hero-floater .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(216, 30, 42, 0.18);
  animation: pulse 2s infinite;
}
.hero-floater .sep {
  width: 1px; height: 10px;
  background: var(--line-2);
}
@media (max-width: 880px) {
  .hero-floater-tr { display: none; }
}

.hero-mark {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin: 32px 0 8px;
}
.hero-mark .a-glyph {
  width: clamp(80px, 9vw, 140px);
  height: auto;
  filter: drop-shadow(0 6px 30px rgba(216, 30, 42, 0.5));
}
.hero-mark .a-glyph-text {
  display: flex;
  flex-direction: column;
}
.hero-name {
  font-family: var(--display);
  font-size: clamp(56px, 8.8vw, 140px);
  letter-spacing: -0.015em;
  line-height: 0.86;
  text-transform: uppercase;
}
.hero-name-sub {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 22px);
  letter-spacing: 0.45em;
  color: var(--ink-mute);
  margin-top: 10px;
  text-transform: uppercase;
}

.hero-tagline {
  margin-top: 44px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.28;
  max-width: 28ch;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.hero-tagline em {
  font-style: normal;
  color: var(--red);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.78em;
}
.hero-sub {
  margin-top: 22px;
  color: var(--ink-mute);
  font-size: 15.5px;
  max-width: 56ch;
  line-height: 1.65;
}

.hero-ctas {
  margin-top: 48px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Status line */
.status-line {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  background: rgba(5,5,5,0.7);
  backdrop-filter: blur(8px);
  z-index: 3;
}
.status-line-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.status-line .live {
  display: inline-flex; align-items: center; gap: 8px; color: var(--ink-mute);
}
.status-line .live .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(216, 30, 42, 0.15);
  animation: pulse 2s infinite;
}
@media (max-width: 880px) {
  .hide-md { display: none; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 32px -10px var(--red-glow);
}
.btn-primary:hover {
  background: #ec2735;
  transform: translateY(-1px);
  box-shadow: 0 14px 40px -10px var(--red-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--ink-mute);
  background: rgba(255,255,255,0.03);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============ END HERO ============ */

/* ============ STATS RIBBON ============ */
.ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
  background: var(--bg-2);
}
.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}
@media (max-width: 880px) {
  .ribbon-grid { grid-template-columns: repeat(2, 1fr); }
}
.ribbon-item {
  padding: 36px var(--gutter);
  border-right: 1px solid var(--line);
  position: relative;
}
.ribbon-num {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ribbon-num .accent { color: var(--red); }
.ribbon-label {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}
.section-head .right { padding-bottom: 8px; }

/* Manifesto */
.manifesto {
  padding: clamp(100px, 16vw, 180px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.manifesto-text {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(40px, 5.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.manifesto-text .accent { color: var(--red); }
.manifesto-text .muted { color: var(--ink-dim); }
.manifesto-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.manifesto-meta p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 16px;
  max-width: 50ch;
  line-height: 1.6;
}
.manifesto-meta .sig {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

/* ============ UNIFIED TILE SYSTEM ============ */
.tile-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.tile-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.tile-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1080px) {
  .tile-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .tile-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tile-grid.cols-4,
  .tile-grid.cols-3 { grid-template-columns: 1fr; }
}

.tile {
  position: relative;
  padding: 38px 32px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
  overflow: hidden;
}
.tile:hover { background: var(--bg-3); }

.tile-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.2, .8, .2, 1);
}
.tile:hover .tile-stripe { transform: scaleX(1); }

.tile-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.tile-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.tile-mark {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tile-mark.glyph-mark {
  color: var(--red);
}
.tile-mark.glyph-mark svg { width: 100%; height: 100%; }

.tile h3 {
  font-family: var(--display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.05;
  color: var(--ink);
  flex: 1;
  transition: color 0.25s ease;
}
.tile:hover h3 { color: var(--red); }

.tile-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.tile p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--ink-mute);
}

.tile-corner {
  position: absolute;
  bottom: 20px;
  right: 26px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
}
.tile:hover .tile-corner { opacity: 1; transform: translateX(0); color: var(--red); }
.tile-corner.solid { opacity: 1; transform: translateX(0); color: var(--red); }

/* CTA tile variant */
.tile-cta {
  background: linear-gradient(135deg, rgba(216, 30, 42, 0.10), rgba(216, 30, 42, 0.02) 70%);
}
.tile-cta:hover {
  background: linear-gradient(135deg, rgba(216, 30, 42, 0.18), rgba(216, 30, 42, 0.04) 70%);
}
.tile-cta h3 { color: var(--ink); }
.tile-cta .tile-stripe { transform: scaleX(1); }

/* ============ GLOBAL FOOTPRINT ============ */
.global {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.global-head {
  position: relative;
  z-index: 3;
}

/* Filters */
.global-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.pill {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-mute);
  padding: 9px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pill:hover { color: var(--ink); border-color: var(--ink-dim); }
.pill.on {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px -10px var(--red-glow);
}
.filter-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-left: 12px;
}

/* World stage */
.world-stage {
  position: relative;
  margin-top: 56px;
  padding: 32px var(--gutter) 24px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(216, 30, 42, 0.05) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.world-frame {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  aspect-ratio: 880 / 580;
}
.world-base {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.95;
}
.world-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.world-hub-callout {
  position: absolute;
  top: 32px;
  left: max(var(--gutter), 32px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.world-hub-callout .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(216, 30, 42, 0.18);
  animation: pulse 2s infinite;
}

/* Arcs */
.world-arc {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: arcDraw 2.4s ease-out forwards;
  filter: drop-shadow(0 0 5px rgba(255, 56, 69, 0.75));
}
@keyframes arcDraw { to { stroke-dashoffset: 0; } }

/* City dots */
.world-city { cursor: pointer; }
.world-city-core {
  fill: #ff3845;
  filter: drop-shadow(0 0 6px rgba(255, 56, 69, 0.85));
  transition: r 0.2s ease;
}
.world-city.hub .world-city-core { fill: #fff; filter: drop-shadow(0 0 10px rgba(255,255,255,0.7)); }
.world-city.hover .world-city-core { fill: #fff; }

.world-city-pulse {
  fill: rgba(255, 56, 69, 0.55);
  animation: worldPulse 2.4s ease-out infinite;
}
@keyframes worldPulse {
  0%   { r: 4; opacity: 0.9; }
  100% { r: 22; opacity: 0; }
}

/* HTML labels */
.world-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.world-label {
  position: absolute;
  transform: translate(10px, -10px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  pointer-events: auto;
  transition: color 0.2s ease, transform 0.2s ease;
}
.world-label::before {
  content: "";
  display: inline-block;
  width: 10px; height: 1px;
  background: rgba(255, 56, 69, 0.45);
  margin-right: 6px;
  vertical-align: middle;
}
.world-label.hub {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #fff;
  transform: translate(12px, -18px);
}
.world-label.hub::before { background: var(--red); width: 16px; }
.world-label:hover, .world-label.hover { color: #fff; }

/* City hub marker (in tile) */
.hub-marker {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--red);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(216, 30, 42, 0.2);
}
.hub-marker span {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #fff;
}

/* City tile city variant */
.tile-city.is-hover {
  background: var(--bg-3);
}
.tile-city.is-hover h3 { color: var(--red); }
.tile-city.is-hover .tile-stripe { transform: scaleX(1); }

/* Regions row */
.global-regions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .global-regions { grid-template-columns: repeat(2, 1fr); } }
.region {
  padding: 28px var(--gutter);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.region:last-child { border-right: none; }
.region .name {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.region .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 880px) {
  .world-hub-callout { top: 16px; left: 16px; padding: 7px 10px; font-size: 9px; }
  .world-label { font-size: 9px; }
  .world-label.hub { font-size: 10px; }
}

/* ============ SECTION BACKGROUNDS ============ */
.group { background: var(--bg); border-bottom: 1px solid var(--line); }
.why   { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.services { background: var(--bg-2); border-bottom: 1px solid var(--line); }

/* ============ CTA ============ */
.cta {
  padding: clamp(100px, 14vw, 180px) 0;
  background: radial-gradient(ellipse at center, rgba(216, 30, 42, 0.18) 0%, transparent 60%), var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.cta h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(44px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
}
.cta h2 .accent { color: var(--red); }
.cta p {
  margin: 24px auto 44px;
  max-width: 50ch;
  color: var(--ink-mute);
  font-size: 17px;
  line-height: 1.55;
}
.cta-actions {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col li {
  font-size: 14px;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 10px;
}
.footer-col li svg { flex-shrink: 0; }
.footer-brand .word {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-brand .word-sub {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--ink-mute);
  margin-top: 6px;
}
.footer-brand p {
  margin: 24px 0 0;
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.footer-bottom .tagline { color: var(--red); }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drawDash {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}
@keyframes pulseDot {
  0% { r: 3; opacity: 1; }
  100% { r: 16; opacity: 0; }
}
@keyframes pulseDotInner {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ============ NETWORK MAP SVG (hero) ============ */
.network-svg .arc {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 4px rgba(216,30,42,0.55));
  animation: drawDash 3.5s ease-out forwards;
}
.network-svg .arc.a2 { animation-delay: 0.4s; }
.network-svg .arc.a3 { animation-delay: 0.8s; }
.network-svg .arc.a4 { animation-delay: 1.2s; }
.network-svg .arc.a5 { animation-delay: 1.6s; }
.network-svg .arc.a6 { animation-delay: 2.0s; }

.network-svg .city-pulse {
  fill: var(--red);
  transform-origin: center;
  animation: pulseDot 2.4s ease-out infinite;
}
.network-svg .city {
  fill: var(--red);
  animation: pulseDotInner 2s ease-in-out infinite;
}
.network-svg .country {
  fill: #1a1a1c;
  stroke: #232326;
  stroke-width: 0.5;
}
.network-svg .country.hot {
  fill: rgba(216, 30, 42, 0.25);
}

/* ============ FLOATING WHATSAPP FAB ============ */
.fab-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.fab {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 14px 40px -8px rgba(37, 211, 102, 0.45),
              0 4px 14px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab-whatsapp {
  background: #25d366;
  color: #fff;
}
.fab-whatsapp:hover { transform: translateY(-2px) scale(1.04); }
.fab-whatsapp svg { width: 28px; height: 28px; }
.fab-x { font-size: 32px; line-height: 1; font-weight: 300; }

.fab-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  width: 20px; height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #050505;
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.fab-card {
  width: 320px;
  background: #0f0f10;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 20px 18px 16px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  position: relative;
  animation: fabIn 0.25s ease-out;
}
@keyframes fabIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.fab-close {
  position: absolute;
  top: 8px; right: 10px;
  background: none;
  border: none;
  color: var(--ink-dim);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.fab-close:hover { color: var(--ink); }

.fab-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.fab-avatar {
  width: 38px; height: 38px;
  background: #050505;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
}
.fab-card-name {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fab-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 3px;
}
.fab-card-status .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
}

.fab-card-msg {
  background: var(--bg-3);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin-bottom: 14px;
  border: 1px solid var(--line);
}

.fab-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: #fff !important;
  padding: 13px 16px;
  border-radius: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease;
}
.fab-card-cta:hover { background: #1fbf5a; }

.fab-card-alts {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.fab-card-alts a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-mute);
  padding: 6px 4px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.fab-card-alts a:hover { color: var(--ink); background: var(--bg-3); }
.fab-card-alts svg { color: var(--red); }

@media (max-width: 640px) {
  .fab-stack { right: 14px; bottom: 14px; }
  .fab-card { width: calc(100vw - 28px); }
}
