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

:root {
  --bg-dark: #070C14;
  --bg-light: #F3F5F9;
  --bg-soft-blue: #EAF6FF;
  --bg-white: #FFFFFF;
  --blue: #09A8C9;
  --blue-glow: #19CFF5;
  --blue-soft: #53DBF7;
  --blue-pale: #8CE7FA;
  --purple: #2F435E;
  --text-light: #C1CFE0;
  --text-dark: #0F172A;
  --white: #FFFFFF;
  --max-w: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-white);
  color: #475569;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

#cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(25,207,245,0.26) 0%, rgba(83,219,247,0.18) 34%, rgba(16,23,32,0) 70%);
  filter: blur(28px);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

#cursor-glow.is-hidden { opacity: 0; }

header, main { position: relative; z-index: 2; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Exo 2', sans-serif;
  letter-spacing: -0.018em;
  font-weight: 600;
}

#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: rgba(16, 23, 32, 0.45);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}

#header.scrolled { background: rgba(16, 23, 32, 0.82); }

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

.logo {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  display: block;
  height: 46px;
  width: auto;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.logo-name { font-size: 1.55rem; font-weight: 600; }
.logo-name em { color: var(--blue-glow); font-style: normal; }

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

nav a:hover { color: var(--white); }

.nav-btn {
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(9,168,201,0.24);
  border: 1px solid rgba(25,207,245,0.35);
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger span { width: 24px; height: 2px; background: var(--white); }

.section-dark {
  position: relative;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(9,168,201,0.10), transparent 62%),
    radial-gradient(700px 420px at 85% 10%, rgba(47,67,94,0.18), transparent 65%),
    linear-gradient(160deg, #070C14 0%, #101720 55%, #070C14 100%);
}
.section-light { background: var(--bg-light); color: var(--text-dark); }

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  overflow: hidden;
}

.hero-bg, .metrics-bg, .services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(25,207,245,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,207,245,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-tech-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-tech-particle {
  position: absolute;
  bottom: -60px;
  color: rgba(148,163,184,0.18);
  font-weight: 600;
  font-size: 14px;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-115vh); opacity: 0; }
}

.blob {
  position: absolute;
  filter: blur(92px);
  border-radius: 999px;
  opacity: 0.3;
}

.blob-a { width: 440px; height: 440px; background: #09A8C9; top: -120px; left: -100px; }
.blob-b { width: 420px; height: 420px; background: #334155; right: -140px; top: 80px; }
.blob-c { width: 380px; height: 380px; background: #101720; left: 45%; bottom: -180px; }

.hud-corner {
  position: absolute;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(25,207,245,0.5);
  border-radius: 14px;
  opacity: 0.7;
  box-shadow: 0 0 22px rgba(25,207,245,0.18), inset 0 0 18px rgba(25,207,245,0.08);
}

.hud-corner::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--blue-glow);
  border-radius: 2px;
  right: -4px;
  bottom: -4px;
  box-shadow: 0 0 10px rgba(25,207,245,0.7);
}

.hud-corner-tl { top: 14%; left: 5%; animation: floatHud 8s ease-in-out infinite; }
.hud-corner-br { right: 8%; bottom: 16%; animation: floatHud 9s ease-in-out infinite reverse; }
.hud-corner-mid { right: 6%; top: 25%; width: 62px; height: 62px; opacity: 0.55; animation: floatHud 11s ease-in-out infinite; }

.hud-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(25,207,245,0), rgba(25,207,245,0.9), rgba(25,207,245,0));
  filter: drop-shadow(0 0 8px rgba(25,207,245,0.55));
}

.hud-line::after {
  content: "";
  position: absolute;
  right: 14%;
  top: -2px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--blue-glow);
  box-shadow: 0 0 8px rgba(25,207,245,0.8);
}

.hud-line-a { width: 200px; left: 12%; top: 62%; animation: pulseLine 4.8s ease-in-out infinite; }
.hud-line-b { width: 170px; right: 9%; top: 30%; animation: pulseLine 5.4s ease-in-out infinite reverse; }
.hud-line-c { width: 220px; right: 12%; top: 22%; animation: pulseLine 5s ease-in-out infinite; }

.light-streak {
  position: absolute;
  width: 240px;
  height: 36px;
  background: linear-gradient(90deg, rgba(25,207,245,0), rgba(25,207,245,0.6), rgba(140,231,250,0));
  filter: blur(8px);
  transform: rotate(-14deg);
  opacity: 0.4;
  animation: driftStreak 12s ease-in-out infinite;
}

.streak-a { top: 22%; left: 18%; animation-duration: 12s; }
.streak-b { bottom: 24%; right: 12%; animation-duration: 14s; animation-delay: -3s; }
.streak-c { top: 65%; left: 8%; animation-duration: 13s; }
.streak-d { top: 18%; right: 14%; animation-duration: 15s; }

@keyframes floatHud {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseLine {
  0%, 100% { opacity: 0.45; transform: translateX(0); }
  50% { opacity: 0.95; transform: translateX(8px); }
}

@keyframes driftStreak {
  0%, 100% { transform: rotate(-14deg) translateX(0); opacity: 0.25; }
  50% { transform: rotate(-14deg) translateX(24px); opacity: 0.55; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 20px;
  color: #D5FBF5;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

#hero h1 { color: var(--white); font-size: clamp(2rem, 5.4vw, 4rem); line-height: 1.1; font-weight: 600; }
.hero-line-2 { margin-top: 8px; margin-bottom: 22px; }

#hero-cycle {
  color: var(--blue-glow);
  text-shadow: 0 0 24px rgba(25,207,245,0.62);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: inline-block;
}

#hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.02rem;
}

.hero-actions { margin-top: 34px; display: flex; justify-content: center; gap: 14px; }

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 500;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-glow));
  box-shadow: 0 10px 28px rgba(9,168,201,0.38);
}

.btn-primary:hover { transform: translateY(-3px); }

.btn-ghost {
  color: #E6ECF3;
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}

#metrics {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--bg-white);
  border-top: 0;
  border-bottom: 0;
}

.metrics-title {
  max-width: 1120px;
  margin: 0 auto 46px;
  text-align: center;
  color: #334155;
  font-size: clamp(1.28rem, 2.5vw, 1.9rem);
  font-weight: 500;
}

.metrics-break { display: inline; }

.metrics-title strong { color: var(--blue); }

.metrics-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

.metric-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 22px 12px 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: transform 0.35s ease;
  position: relative;
}

.metric-card::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(25,207,245,0), rgba(25,207,245,0.7), rgba(25,207,245,0));
}

.metric-card::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-glow);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(25,207,245,0.55);
}

.metric-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.metric-card:hover {
  transform: translateY(-8px);
}

.metric-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #0f172a;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.metric-value .suffix { color: var(--blue-glow); margin-left: 2px; }

.metric-label {
  margin-top: 10px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

#presence {
  position: relative;
  padding: 98px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #088aa6 0%, #09a8c9 52%, #33c3de 100%);
}

.presence-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(9,168,201,0.56), rgba(9,168,201,0.24)),
    url('../images/fundo-mapa-1024x608.webp') center/50% auto no-repeat;
  opacity: 0.2;
}

.presence-wrap {
  position: relative;
  z-index: 2;
}

.presence-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.presence-content h2 {
  color: #073244;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.presence-content p {
  color: rgba(244,252,255,0.9);
  font-size: 1.02rem;
}

.presence-badges {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.presence-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  color: #ecfcff;
  background: linear-gradient(150deg, rgba(7,12,20,0.28), rgba(7,12,20,0.14));
  border: 1px solid rgba(193,207,224,0.34);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(7,12,20,0.16);
}

.presence-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c7f8ff;
  box-shadow: 0 0 10px rgba(199,248,255,0.8);
  flex-shrink: 0;
}

.presence-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.presence-particle {
  position: absolute;
  bottom: -18px;
  border-radius: 50%;
  background: rgba(140,231,250,0.8);
  box-shadow: 0 0 12px rgba(25,207,245,0.6);
  animation: presenceFloat linear infinite;
}

@keyframes presenceFloat {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: 0.9; }
  88% { opacity: 0.8; }
  100% { transform: translateY(-115%); opacity: 0; }
}

#about {
  padding: 120px 0;
  background: #070c14;
}

.about-wrap {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.about-text-block p + p { margin-top: 10px; }

.about-text-block {
  padding: 0;
}

.about-text-block h2 {
  color: #f3f5f9;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.about-highlight {
  color: var(--blue);
}

.about-mini-stats {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.about-mini-stats div {
  background: rgba(15,23,42,0.04);
  border-radius: 12px;
  padding: 14px 16px;
  min-width: 130px;
}

.about-mini-stats strong {
  display: block;
  font-size: 1.25rem;
  color: #1e293b;
}

.about-mini-stats span { font-size: 0.82rem; color: #64748b; }

.about-orbit-panel {
  position: relative;
  min-height: 470px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  perspective: 1100px;
  transform-style: preserve-3d;
  transition: none;
}

.about-orbit-panel:hover { box-shadow: none; }

.about-orbit-panel::before { display: none; }

.about-orbit-panel::after {
  display: none;
}

@keyframes holoSweep {
  0%, 100% { transform: translateX(-35%) rotate(8deg); opacity: 0.35; }
  50% { transform: translateX(30%) rotate(8deg); opacity: 0.75; }
}

.orbit-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 65%, rgba(25,207,245,0.24), transparent 60%),
    radial-gradient(circle at 70% 35%, rgba(83,219,247,0.14), transparent 65%);
  filter: blur(30px);
  transition: none;
}

.orbit-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.orbit-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(140,231,250,0.35);
  box-shadow: inset 0 0 26px rgba(25,207,245,0.08);
}

.ring-1 { width: 220px; height: 220px; transform: translateZ(16px); }
.ring-2 { width: 160px; height: 160px; opacity: 0.75; transform: translateZ(30px); }
.ring-3 { width: 108px; height: 108px; opacity: 0.55; transform: translateZ(44px); }

.orbit-core {
  width: 136px;
  height: 136px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25,207,245,0.18), rgba(9,168,201,0.08));
  display: grid;
  place-items: center;
  transform: translateZ(70px);
  box-shadow: 0 18px 38px rgba(9,168,201,0.35), inset 0 0 24px rgba(230,252,255,0.25);
  transition: none;
}

.orbit-image {
  width: 108px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(25,207,245,0.5));
  animation: imageFloat 5s ease-in-out infinite;
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}

.orbit-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #19CFF5;
  box-shadow: 0 0 16px rgba(25,207,245,0.85);
  transition: none;
}

.node-a { transform: translate(-95px, 40px) translateZ(48px); animation: orbitMoveA 8s linear infinite; }
.node-b { transform: translate(88px, -10px) translateZ(30px); animation: orbitMoveB 11s linear infinite; }
.node-c { transform: translate(62px, 72px) translateZ(56px); animation: orbitMoveC 9s linear infinite; }

@keyframes orbitMoveA {
  from { transform: rotate(0deg) translateX(110px) translateZ(48px); }
  to { transform: rotate(360deg) translateX(110px) translateZ(48px); }
}

@keyframes orbitMoveB {
  from { transform: rotate(0deg) translateX(82px) translateZ(30px); }
  to { transform: rotate(-360deg) translateX(82px) translateZ(30px); }
}

@keyframes orbitMoveC {
  from { transform: rotate(0deg) translateX(64px) translateZ(56px); }
  to { transform: rotate(360deg) translateX(64px) translateZ(56px); }
}


.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

#about p { color: rgba(193,207,224,0.82); font-size: 1rem; max-width: 720px; }

#services {
  padding: 120px 0;
  position: relative;
  background: #070c14;
}
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head h2 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.7rem); }

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

.glass-card {
  background: rgba(10,17,30,0.9);
  border: 1px solid rgba(9,168,201,0.2);
  backdrop-filter: blur(10px);
  border-radius: 14px;
}

.service-clean {
  background: rgba(10,17,30,0.9);
  border: 1px solid rgba(9,168,201,0.2);
  border-radius: 14px;
  padding: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-clean {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-clean:hover {
  transform: translateY(-8px);
  border-color: rgba(25,207,245,0.45);
  box-shadow: 0 14px 24px rgba(7,12,20,0.2), inset 0 0 0 1px rgba(25,207,245,0.1);
}

.icon-box {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: rgba(9,168,201,0.24);
  border: 1px solid rgba(25,207,245,0.5);
  color: #daf6fd;
}

.icon-box svg {
  width: 15px;
  height: 15px;
}

.service-title {
  color: #f3f5f9;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.2;
}

.service-desc {
  color: rgba(193,207,224,0.82);
  font-size: 0.95rem;
  min-height: 38px;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 9px;
  text-decoration: none;
  color: #e6ecf3;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(193,207,224,0.28);
  background: rgba(193,207,224,0.04);
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #ffffff;
  border-color: rgba(25,207,245,0.6);
  background: rgba(9,168,201,0.16);
}

#manifesto {
  padding: 100px 0;
  background: var(--bg-white);
  border-top: 0;
  border-bottom: 0;
}

.manifesto-wrap {
  text-align: center;
}

.manifesto-wrap h2 {
  color: #0f172a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.manifesto-wrap p {
  color: #475569;
  margin: 10px auto 26px;
  max-width: 700px;
}

.manifesto-video {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.manifesto-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.manifesto-mask {
  position: absolute;
  inset: 0;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(7,12,20,0.1), rgba(7,12,20,0.5));
  display: grid;
  place-items: center;
  transition: opacity 0.25s ease;
}

.manifesto-mask.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.manifesto-play {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-glow));
  box-shadow: 0 16px 30px rgba(9,168,201,0.35);
  position: relative;
}

.manifesto-play::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

#contact {
  padding: 110px 0;
  background: #070c14;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.contact-info {
  padding: 0;
}

.contact-wrap h2 {
  color: #f3f5f9;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  margin-bottom: 10px;
}

.contact-wrap p { color: rgba(193,207,224,0.82); }

.contact-item a {
  color: #e6ecf3;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,23,42,0.2);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact-item a:hover {
  color: #0a8eaa;
  border-color: rgba(10,142,170,0.45);
}

.contact-list {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.contact-list p {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
}

.contact-item-address {
  align-items: flex-start;
}

.contact-item-address .contact-icon {
  margin-top: 2px;
}

.contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #0a8eaa;
  background: rgba(9,168,201,0.16);
  box-shadow: inset 0 0 0 1px rgba(9,168,201,0.22);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 15px;
  height: 15px;
}

.contact-list strong { color: #f3f5f9; }

.contact-card {
  position: relative;
  padding: 0;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(9,168,201,0.28);
  box-shadow: 0 20px 34px rgba(15,23,42,0.14), 0 0 0 1px rgba(255,255,255,0.2) inset;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(170deg, rgba(9,168,201,0.22), transparent 42%),
    linear-gradient(0deg, rgba(7,12,20,0.2), rgba(7,12,20,0.04));
}

.contact-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.05) brightness(0.94);
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.contact-card:hover .contact-image {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.08) brightness(0.9);
}

footer {
  background: #070b12;
  padding: 60px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-wrap h4 {
  color: #f1f5f9;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.footer-wrap p { color: #7b8ba0; max-width: 320px; }

.footer-wrap a {
  display: block;
  text-decoration: none;
  color: #9fb0c6;
  margin-bottom: 8px;
}

.footer-wrap a:hover { color: #C6F3FC; }

.footer-logo { margin-bottom: 10px; }

.footer-logo .logo-img {
  height: 38px;
}

.footer-brand p {
  margin-top: 10px;
  line-height: 1.5;
}

.privacy-seal {
  width: 168px;
  max-width: 100%;
  margin-top: 12px;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(148,163,184,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  color: #6b7d93;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #b8c9db;
  text-decoration: none;
  background: rgba(159,176,198,0.1);
  border: 1px solid rgba(159,176,198,0.22);
  transition: all 0.28s ease;
}

.social-links a:hover {
  color: #c6f3fc;
  border-color: rgba(25,207,245,0.55);
  background: rgba(9,168,201,0.2);
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.section-cta {
  padding: 120px 0;
  background: var(--bg-white);
}

.cta-wrap {
  text-align: center;
  color: #334155;
  padding: 0;
}

.cta-wrap h2 {
  max-width: 860px;
  margin: 0 auto 24px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #0f172a;
}

.parallax-layer { will-change: transform; transition: transform 0.2s ease-out; }

.legal-main {
  background: #f8fafc;
  min-height: 100vh;
  padding-top: 120px;
}

.legal-section {
  padding: 34px 0 80px;
}

.legal-content {
  max-width: 980px;
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.24);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 14px 28px rgba(15,23,42,0.08);
}

.legal-content h1 {
  color: #0f172a;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.legal-content h2 {
  color: #1e293b;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  margin: 14px 0 8px;
}

.legal-content h3 {
  color: #0f172a;
  font-size: 1.08rem;
  margin: 22px 0 8px;
}

.legal-content p,
.legal-content li {
  color: #475569;
}

.legal-content ol {
  margin: 14px 0 8px 20px;
  display: grid;
  gap: 8px;
}

.legal-download {
  margin-top: 22px;
  display: inline-flex;
}

@media (max-width: 960px) {
  .metrics-grid, .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-wrap,
  .contact-wrap { grid-template-columns: 1fr; }

  .presence-content { max-width: 100%; }

  .footer-wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-orbit-panel { min-height: 390px; }
  .ring-1 { width: 180px; height: 180px; }
  .ring-2 { width: 130px; height: 130px; }
  .ring-3 { width: 90px; height: 90px; }
  .orbit-core { width: 94px; height: 94px; }
  .orbit-image { width: 72px; height: 72px; }

  nav {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: rgba(11,15,25,0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  nav.open { display: flex; }
  .hamburger { display: inline-flex; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  #hero { padding-top: 130px; }
  .hero-actions { flex-direction: column; }
  .metrics-grid, .services-grid { grid-template-columns: 1fr; }
  .metrics-title { margin-bottom: 28px; }
  .metrics-break { display: none; }
  #cursor-glow { width: 340px; height: 340px; }
  .manifesto-video iframe { min-height: 210px; }
  .service-title { font-size: 1.05rem; }

  .about-orbit-panel { min-height: 320px; }

  #presence { padding: 74px 0; }
  .presence-bg { background-size: 78% auto; }
  .presence-content p { font-size: 0.96rem; }
  .presence-badges { grid-template-columns: 1fr; gap: 8px; }
  .presence-badge { font-size: 0.84rem; padding: 9px 12px; }

  .footer-wrap { grid-template-columns: 1fr; }
}
