/* SIGSAT v2 — cinematic institutional · navy + signal · fully responsive */
:root {
  --navy: #0a1628;
  --navy-deep: #050b14;
  --navy-mid: #12233a;
  --navy-soft: #1a3352;
  --signal: #c0392b;
  --signal-bright: #e74c3c;
  --signal-deep: #8e2a20;
  --steel: #e6edf5;
  --steel-soft: #f4f7fb;
  --mist: #c5d0de;
  --text: #0a1628;
  --text-soft: #33485f;
  --gray: #5a6e84;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --border: rgba(10, 22, 40, 0.1);
  --border-strong: rgba(10, 22, 40, 0.16);
  --shadow: 0 24px 64px rgba(5, 11, 20, 0.14);
  --shadow-lg: 0 40px 100px rgba(5, 11, 20, 0.22);
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Figtree", system-ui, sans-serif;
  --display: "Sora", "Figtree", system-ui, sans-serif;
  --nav-h: 92px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --container: min(1180px, calc(100% - 2.75rem));
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
main section[id],
footer#contato,
#access {
  scroll-margin-top: calc(var(--nav-h) + var(--safe-t) + 0.75rem);
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--steel-soft);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 90% 55% at -5% -5%, rgba(192, 57, 43, 0.07), transparent 50%),
    radial-gradient(ellipse 70% 50% at 105% 0%, rgba(26, 51, 82, 0.1), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }

#particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.18; }
.glow-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; opacity: 0.55; }
.glow-orb {
  position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.5;
  animation: glowDrift 22s ease-in-out infinite;
}
.glow-orb.g1 { width: min(560px, 85vw); height: min(560px, 85vw); top: -10%; left: -14%; background: rgba(26, 51, 82, 0.4); }
.glow-orb.g2 { width: min(440px, 70vw); height: min(440px, 70vw); top: 40%; right: -16%; background: rgba(192, 57, 43, 0.2); animation-delay: -8s; }
.glow-orb.g3 { width: min(380px, 60vw); height: min(380px, 60vw); bottom: 5%; left: 40%; background: rgba(18, 35, 58, 0.28); animation-delay: -14s; }
@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -18px) scale(1.07); }
}

/* —— NAV —— */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: calc(var(--nav-h) + var(--safe-t));
  padding-top: var(--safe-t);
  background: rgba(248, 250, 252, 0.55);
  backdrop-filter: saturate(170%) blur(18px);
  -webkit-backdrop-filter: saturate(170%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 36px rgba(5, 11, 20, 0.07);
}
.nav-inner {
  width: var(--container); height: var(--nav-h); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 74px; width: auto;
  display: block;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 0.1rem; flex-wrap: nowrap; }
.nav-links > a,
.nav-drop-btn {
  color: var(--text-soft); text-decoration: none; font-size: 0.88rem; font-weight: 600;
  padding: 0.55rem 0.7rem; border-radius: 12px; transition: color 0.2s, background 0.2s;
  background: transparent; border: none; cursor: pointer; font-family: inherit;
  white-space: nowrap;
}
.nav-links > a:hover, .nav-links > a.nav-active,
.nav-drop-btn:hover, .nav-drop.is-open .nav-drop-btn, .nav-drop-btn.nav-active {
  color: var(--signal); background: rgba(192, 57, 43, 0.08);
}
.nav-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.nav-drop-btn i { width: 16px; height: 16px; transition: transform 0.25s; }
.nav-drop.is-open .nav-drop-btn i { transform: rotate(180deg); }
.nav-drop-panel {
  position: absolute; top: calc(100% + 0.45rem); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: min(420px, calc(100vw - 2rem));
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(5, 11, 20, 0.14);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 220;
}
.nav-drop.is-open .nav-drop-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-all {
  display: block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--signal); text-decoration: none;
  padding: 0.55rem 0.75rem 0.7rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.35rem;
}
.nav-drop-all:hover { color: var(--signal-deep); }
.nav-drop-item {
  display: flex; flex-direction: column; gap: 0.2rem;
  text-decoration: none; color: inherit;
  padding: 0.7rem 0.75rem; border-radius: 12px;
  transition: background 0.2s;
}
.nav-drop-item:hover { background: rgba(10, 22, 40, 0.04); }
.nav-drop-item strong {
  font-size: 0.88rem; font-weight: 700; color: #1a3050; line-height: 1.3;
}
.nav-drop-item span {
  font-size: 0.76rem; color: var(--gray); line-height: 1.4; font-weight: 500;
}
.nav-right { display: flex; align-items: center; gap: 0.7rem; }

.lang-flags { display: flex; align-items: center; gap: 0.35rem; }
.lang-flag-btn {
  background: rgba(255, 255, 255, 0.75); border: 1px solid var(--border);
  cursor: pointer; padding: 0.35rem; border-radius: 10px; min-width: 42px; min-height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lang-flag-btn:hover { transform: translateY(-1px); }
.lang-flag-btn.active { box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.4); border-color: var(--signal); }
.lang-flag-btn:not(.active) .lang-flag-fi { opacity: 0.55; filter: grayscale(0.4); }
.lang-flag-fi {
  display: flex; width: 2rem; height: 1.35rem; transform-origin: 12% 88%;
  animation: langFlagFlutter 2.4s ease-in-out infinite;
}
.lang-flag-fi--delay-1 { animation-delay: 0.15s; }
.lang-flag-fi--delay-2 { animation-delay: 0.3s; }
.lang-flag-img { height: 100%; width: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,.15); }
.lang-flag-emoji { display: none; font-size: 1.05rem; }
.lang-flag-fi--fallback .lang-flag-img { display: none; }
.lang-flag-fi--fallback .lang-flag-emoji { display: block; }
@keyframes langFlagFlutter {
  0%, 100% { transform: rotate(-6deg) skewX(-3deg); }
  25% { transform: rotate(5deg) skewX(4deg) scale(1.02); }
  50% { transform: rotate(-3deg) skewX(-2deg); }
  75% { transform: rotate(7deg) skewX(3deg) scale(1.02); }
}
.lang-flags--stacked { flex-direction: column; align-items: stretch; gap: 0.4rem; }
.lang-flag-btn--stacked {
  display: flex; align-items: center; gap: 0.65rem; width: 100%;
  padding: 0.55rem 0.8rem; border-radius: 12px; justify-content: flex-start;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
}
.lang-flag-btn--stacked.active { border-color: var(--signal-bright); background: rgba(192,57,43,0.15); }
.lang-flag-lbl { font-size: 0.86rem; font-weight: 600; color: rgba(255,255,255,0.88); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  background: var(--white); border-radius: 12px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.45rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; border: none; cursor: pointer; min-height: 48px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, background 0.22s;
  font-family: inherit; position: relative; overflow: hidden;
}
.btn i { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-sm { min-height: 42px; padding: 0.65rem 1.15rem; font-size: 0.84rem; }
.btn-signal {
  background: linear-gradient(135deg, #ef5a4a 0%, var(--signal) 48%, var(--signal-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(192, 57, 43, 0.38), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-signal:hover { box-shadow: 0 16px 40px rgba(192, 57, 43, 0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45); backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(10, 22, 40, 0.28);
  border-radius: 10px;
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(192, 57, 43, 0.06);
  border-color: var(--signal);
  color: var(--signal-deep);
}
.btn-solid { background: var(--navy); color: #fff; box-shadow: 0 8px 24px rgba(10,22,40,0.25); }
.nav-cta { padding: 0.75rem 1.25rem; font-size: 0.9rem; min-height: 48px; }
.text-link {
  margin-top: auto; font-weight: 700; font-size: 0.88rem; color: var(--signal); text-decoration: none;
}
.text-link:hover { color: var(--signal-deep); }
.text-link--light { color: #fff; }
.text-link--light:hover { color: rgba(255,255,255,0.85); }

/* —— HERO —— */
main { position: relative; z-index: 1; padding-top: calc(var(--nav-h) + var(--safe-t)); }
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - var(--safe-t));
  min-height: calc(100vh - var(--nav-h) - var(--safe-t));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(4.5rem, 10vw, 6.5rem);
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
  background: #07111f;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 45% 40%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease;
}
.hero-bg.is-active {
  opacity: 1;
  z-index: 0;
  animation: heroSlow 32s ease-in-out infinite alternate;
}
@keyframes heroSlow {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-2.5%, 1%, 0); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(5,11,20,0.92) 0%, rgba(5,11,20,0.72) 38%, rgba(5,11,20,0.35) 62%, rgba(5,11,20,0.55) 100%),
    linear-gradient(0deg, rgba(5,11,20,0.88) 0%, rgba(5,11,20,0.2) 42%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 5;
  width: var(--container); margin: 0 auto;
  max-width: 42rem;
}
.hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-bright);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(231, 76, 60, 0.55);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.35rem, 5.8vw, 3.9rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.038em;
  margin-bottom: 1rem;
  max-width: 14ch;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.hero-lead {
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  color: rgba(255,255,255,0.88);
  max-width: 38ch;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Proof strip */
.proof {
  position: relative; z-index: 4;
  margin-top: -2rem;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}
.proof-inner {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: visible;
  backdrop-filter: blur(12px);
}
.proof-item:first-child { border-radius: 20px 0 0 20px; }
.proof-item:last-child { border-right: none; border-radius: 0 20px 20px 0; }
.proof-inner.is-playing .proof-item:not(.is-counting) {
  opacity: 0.42;
  filter: saturate(0.7);
}
.proof-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
  text-align: left;
  padding: 1.35rem 1.25rem 1.45rem;
  border-right: 1px solid var(--border);
  background: transparent;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.4s ease,
    filter 0.4s ease,
    transform 0.4s var(--ease-out);
}
.proof-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.proof-ico {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  color: var(--signal);
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.12);
  transition: transform 0.4s var(--ease-out), background 0.35s, color 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.proof-ico i,
.proof-ico svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}
.proof-item::before {
  content: "";
  position: absolute;
  left: 18%; right: 18%; bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
}
.proof-item.is-counting {
  opacity: 1 !important;
  filter: none !important;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 70% at 12% 0%, rgba(192,57,43,0.16), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fff7f5 100%);
  box-shadow:
    0 18px 40px rgba(10,22,40,0.12),
    inset 0 0 0 1px rgba(192,57,43,0.12);
  transform: translateY(-8px) scale(1.03);
}
.proof-item.is-counting::before {
  transform: scaleX(1);
}
.proof-item.is-counting strong {
  color: var(--signal-deep, #a93226);
  transform: scale(1.08);
  transform-origin: left center;
  text-shadow: 0 10px 24px rgba(192,57,43,0.22);
  font-variant-numeric: tabular-nums;
}
.proof-item.is-counting .proof-ico {
  transform: scale(1.08);
  color: #fff;
  background: linear-gradient(145deg, var(--signal), var(--signal-deep, #a93226));
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(192,57,43,0.28);
}
.proof-item.is-pop strong {
  animation: proofPop 0.55s var(--ease-out);
}
@keyframes proofPop {
  0% { transform: scale(1.08); }
  45% { transform: scale(1.14); color: var(--signal); }
  100% { transform: scale(1); color: var(--navy); }
}
.proof-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
  transition: color 0.35s, transform 0.4s var(--ease-out), text-shadow 0.35s;
  font-variant-numeric: tabular-nums;
}
.proof-item.is-done {
  opacity: 1;
  filter: none;
}
.proof-item.is-done strong {
  color: var(--navy);
  transform: none;
  text-shadow: none;
}
.proof-label {
  display: block;
  margin: 0;
  padding-left: calc(2.15rem + 0.7rem);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  line-height: 1.35;
  max-width: 16ch;
  transition: color 0.35s, transform 0.35s;
}
.proof-item.is-counting .proof-label {
  color: var(--navy-soft, #3d5470);
}
@media (hover: hover) and (pointer: fine) {
  .proof-inner:not(.is-playing) .proof-item:hover {
    background: linear-gradient(180deg, #ffffff, #fff8f7);
    transform: translateY(-4px);
    z-index: 1;
    box-shadow: 0 14px 32px rgba(10,22,40,0.1);
  }
  .proof-inner:not(.is-playing) .proof-item:hover::before {
    transform: scaleX(0.7);
  }
  .proof-inner:not(.is-playing) .proof-item:hover strong {
    color: var(--signal-deep, #a93226);
  }
  .proof-inner:not(.is-playing) .proof-item:hover .proof-ico {
    transform: scale(1.06);
    background: rgba(192,57,43,0.14);
    box-shadow: 0 6px 14px rgba(192,57,43,0.12);
  }
}

/* Outcomes */
.outcomes {
  width: 100%;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 3vw, 1.5rem) 0;
}
.outcomes-inner { width: var(--container); margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.outcome-card {
  padding: 1.4rem 1.25rem 1.5rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(10,22,40,0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.outcome-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(192,57,43,0.22);
}
.outcome-ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, rgba(192,57,43,0.14), rgba(10,22,40,0.06));
  color: var(--signal);
}
.outcome-ico i { width: 22px; height: 22px; }
.outcome-card h3 {
  font-family: var(--display);
  font-size: 1.05rem; font-weight: 600;
  color: #1a3050; margin-bottom: 0.45rem; letter-spacing: -0.015em;
}
.outcome-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.5; }

/* Reality / proof cards */
.reality {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(1rem, 3vw, 1.5rem);
}
.reality-head { margin-bottom: 1.75rem; max-width: 40rem; }
.reality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.reality-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(10,22,40,0.07);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.reality-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.reality-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0c1b2e;
}
.reality-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.reality-card:hover .reality-media img { transform: scale(1.05); }
.reality-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.15rem 1.3rem;
  flex: 1;
}
.reality-body span {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--signal);
}
.reality-body h3 {
  font-family: var(--display);
  font-size: 1.02rem; font-weight: 600;
  color: #1a3050; letter-spacing: -0.015em; line-height: 1.3;
}
.reality-body p {
  font-size: 0.86rem; color: var(--gray); line-height: 1.5;
  flex: 1;
}
.reality-body .btn { align-self: flex-start; margin-top: 0.35rem; }

.hero-scroll { display: none; }
.metrics { display: none; }

/* Sections */
.section { width: var(--container); margin: 0 auto; padding: clamp(4rem, 9vw, 6rem) 0; }
.section-band {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(230,237,245,0.95));
  padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 3vw, 1.5rem);
}
.section-band > .section-head,
.section-band > .sol-grid,
.section-band > .sol-extra,
.section-band > .alliance-inner,
.section-band > .bento {
  width: var(--container); margin-left: auto; margin-right: auto;
}
.section-head { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); max-width: 640px; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--signal); margin-bottom: 0.65rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.1vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.22;
  margin-bottom: 0.85rem;
  text-wrap: balance;
  max-width: 18ch;
  color: #1a3050;
  background: linear-gradient(135deg, #0f243c 0%, #1a3a5c 55%, #243f5e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 24px rgba(15, 36, 60, 0.08));
}
.section-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--gray);
  max-width: 48ch;
  line-height: 1.65;
  font-weight: 500;
}

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
}
.about-copy p { color: var(--text-soft); margin-bottom: 1rem; }
.about-values { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.35rem; }
.about-values li {
  display: flex; align-items: center; gap: 0.85rem; padding: 0.9rem 1.1rem;
  border-radius: 14px; background: var(--white); border: 1px solid var(--border);
  font-weight: 600; font-size: 0.92rem; box-shadow: 0 4px 16px rgba(10,22,40,0.04);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}
.about-values li:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(192,57,43,0.4);
  background: linear-gradient(180deg, #ffffff, #fff8f7);
  box-shadow:
    0 18px 36px rgba(10,22,40,0.12),
    0 0 0 1px rgba(192,57,43,0.08);
  z-index: 1;
}
.about-values .about-values__ico {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--signal);
  background: linear-gradient(145deg, rgba(192,57,43,0.12), rgba(10,22,40,0.04));
  border: 1px solid rgba(192,57,43,0.14);
  transition: transform 0.35s var(--ease-out), background 0.3s, box-shadow 0.3s;
}
.about-values i,
.about-values svg {
  width: 1.1rem; height: 1.1rem; color: var(--signal); flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
  display: block;
}
.about-values li:hover .about-values__ico {
  transform: scale(1.08);
  background: linear-gradient(145deg, rgba(192,57,43,0.2), rgba(192,57,43,0.06));
  box-shadow: 0 6px 14px rgba(192,57,43,0.16);
}
.about-values li:hover i,
.about-values li:hover svg {
  transform: scale(1.06);
}

.about-mosaic { position: relative; min-height: 420px; }
.mosaic-main {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; position: relative;
}
.mosaic-main img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-main figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.35rem 1.5rem;
  background: linear-gradient(transparent, rgba(5,11,20,0.9));
  color: rgba(255,255,255,0.92); font-size: 0.9rem; font-weight: 500;
}
.mosaic-float {
  position: absolute; right: -6%; bottom: -4%; width: 48%; margin: 0;
  border-radius: 18px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg); border: 3px solid #fff;
  animation: hudFloat 7s ease-in-out infinite;
}
.mosaic-float img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-badge {
  position: absolute; left: -4%; top: 12%;
  background: var(--navy); color: #fff; border-radius: 18px; padding: 1rem 1.15rem;
  box-shadow: 0 16px 40px rgba(5,11,20,0.35); border: 1px solid rgba(255,255,255,0.1);
}
.mosaic-badge strong {
  display: block; font-family: var(--display); font-size: 1.75rem; font-weight: 800;
  color: var(--signal-bright); line-height: 1;
}
.mosaic-badge span { font-size: 0.75rem; font-weight: 600; opacity: 0.8; }

/* Solutions grid — photo + elegant body */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.sol-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(10,22,40,0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  min-height: 100%;
  padding: 0;
  gap: 0;
}
.sol-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.sol-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0c1b2e;
}
.sol-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.sol-card:hover .sol-media img { transform: scale(1.05); }
.sol-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.25rem 1.25rem 1.4rem;
  flex: 1;
}
.sol-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(192,57,43,0.12), rgba(10,22,40,0.08));
  color: var(--signal);
}
.sol-icon i { width: 20px; height: 20px; }
.sol-card h3 {
  font-family: var(--display);
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: -0.018em; line-height: 1.3;
  color: #1a3050;
}
.sol-body > p {
  font-size: 0.88rem; color: var(--gray); line-height: 1.55;
  flex: 1;
}
.sol-fact {
  font-size: 0.76rem !important;
  line-height: 1.45 !important;
  color: var(--navy-soft) !important;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(10,22,40,0.04);
  border-left: 3px solid var(--signal);
  flex: 0 0 auto !important;
}
.sol-card .btn { align-self: flex-start; margin-top: 0.1rem; }
.sol-kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.1rem;
}
.sol-extra {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(10,22,40,0.05);
}
.sol-extra-copy { max-width: 62ch; }
.sol-extra-copy h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3050;
  margin: 0.35rem 0 0.5rem;
  letter-spacing: -0.018em;
}
.sol-extra-copy p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}
.sol-extra .btn { flex-shrink: 0; }

/* —— Access gate (nav) —— */
.access-gate {
  position: relative;
  font-size: 0.95rem;
}
.access-gate__summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #fff, #f0f4f9);
  user-select: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, color 0.2s;
}
.access-gate__summary::-webkit-details-marker { display: none; }
.access-gate__summary i { width: 16px; height: 16px; color: var(--signal); flex-shrink: 0; }
.access-gate__summary:hover,
.access-gate[open] .access-gate__summary {
  border-color: rgba(192, 57, 43, 0.45);
  box-shadow: 0 8px 22px rgba(10, 22, 40, 0.08);
  background: #fff;
  color: var(--signal);
}
.access-gate__chev {
  width: 0; height: 0;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
  opacity: 0.55;
  transition: transform 0.2s;
}
.access-gate[open] .access-gate__chev {
  transform: translateY(-1px) rotate(180deg);
}
.access-gate__panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(192, 57, 43, 0.2);
  background:
    linear-gradient(155deg, rgba(255,255,255,0.98), rgba(238,243,248,0.96)),
    linear-gradient(128deg, rgba(192,57,43,0.06), transparent 55%);
  box-shadow: 0 24px 56px rgba(5, 11, 20, 0.16);
  z-index: 230;
  display: grid;
  gap: 0.45rem;
  animation: accessRise 0.28s var(--ease-out);
}
@keyframes accessRise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.access-gate__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
}
.access-gate__option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.access-gate__option--client {
  background: linear-gradient(135deg, #ffffff, #e8eef6);
  border-color: rgba(192, 57, 43, 0.22);
  color: var(--navy);
}
.access-gate__option--page {
  background: rgba(10, 22, 40, 0.04);
  border-color: rgba(10, 22, 40, 0.1);
  color: var(--navy);
}
.access-gate__option--staff {
  background: linear-gradient(135deg, #12233a, #0a1628);
  border-color: rgba(192, 57, 43, 0.28);
  color: #f2f4f7;
}
.access-gate__option:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.12);
}
.access-gate__option--client:hover { border-color: rgba(192, 57, 43, 0.55); }
.access-gate__option--page:hover { border-color: rgba(192, 57, 43, 0.35); background: rgba(192, 57, 43, 0.06); }
.access-gate__option--staff:hover { border-color: rgba(231, 76, 60, 0.5); }
.access-gate__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.access-gate__option--client .access-gate__icon {
  background: rgba(192, 57, 43, 0.1);
  color: var(--signal);
}
.access-gate__option--page .access-gate__icon {
  background: rgba(10, 22, 40, 0.08);
  color: var(--navy);
}
.access-gate__option--staff .access-gate__icon {
  background: rgba(192, 57, 43, 0.18);
  color: var(--signal-bright);
}
.access-gate__icon i { width: 1.1rem; height: 1.1rem; display: block; }
.access-gate__copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
.access-gate__copy strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.access-gate__copy span {
  font-size: 0.75rem;
  line-height: 1.35;
  opacity: 0.72;
}
.access-gate__arrow {
  font-size: 1rem;
  opacity: 0.55;
  transition: transform 0.2s, opacity 0.2s;
}
.access-gate__option:hover .access-gate__arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* —— Alliance: portals (left) + partners (right) —— */
.alliance {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
  background:
    radial-gradient(ellipse 55% 45% at 8% 20%, rgba(192,57,43,0.07), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(230,237,245,0.95));
}
.alliance-portals { scroll-margin-top: calc(var(--nav-h) + 1rem); }
.alliance-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: stretch;
}
.alliance-portals {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.alliance-portals__head { margin-bottom: 1.35rem; flex-shrink: 0; }
.alliance-portals__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 600;
  color: #1a3050;
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: 16ch;
}
.alliance-portals .access-doors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  flex: 1;
  align-content: stretch;
}
.alliance-portals .access-door {
  min-height: 0;
  height: 100%;
  padding: 1.55rem 1.45rem 1.6rem;
  border-radius: 20px;
  align-content: start;
}
.alliance-portals .access-door__name {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.alliance-portals .access-door__desc {
  font-size: 0.95rem;
  max-width: 34ch;
}

.alliance-partners {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(10,22,40,0.08);
  box-shadow: 0 12px 32px rgba(10,22,40,0.05);
  box-sizing: border-box;
}
.alliance-partners__head {
  margin-bottom: 1.15rem;
  flex-shrink: 0;
}
.alliance-partners__title {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #1a3050;
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 18ch;
}
.alliance-partners__desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--gray);
  max-width: 40ch;
}
.alliance-partners .partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  flex: 1;
  align-items: stretch;
  min-height: 0;
}
.alliance-partners .partner-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(10,22,40,0.05);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.alliance-partners .partner-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(192,57,43,0.4);
  background: linear-gradient(180deg, #ffffff, #fff8f7);
  box-shadow:
    0 20px 40px rgba(10,22,40,0.14),
    0 0 0 1px rgba(192,57,43,0.1);
  z-index: 2;
}
.alliance-partners .partner-card:hover .partner-link {
  color: var(--signal-deep, #a93226);
  letter-spacing: 0.01em;
}
.alliance-partners .partner-logo {
  height: 72px;
  flex-shrink: 0;
  padding: 0.75rem 0.85rem;
}
.alliance-partners .partner-logo img { max-height: 36px; max-width: 140px; }
.alliance-partners .partner-logo--dark img {
  max-height: 40px;
  max-width: 168px;
}
.alliance-partners .partner-body {
  padding: 0.85rem 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.alliance-partners .partner-kicker {
  font-size: 0.58rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.08em;
}
.alliance-partners .partner-body h3 {
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}
.alliance-partners .partner-body p {
  font-size: 0.74rem;
  margin-bottom: 0.65rem;
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.alliance-partners .partner-link {
  font-size: 0.74rem;
  margin-top: auto;
  transition: color 0.25s, letter-spacing 0.25s;
}

.access-door {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: 16px;
  min-height: 10.5rem;
  text-decoration: none;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s;
}
.access-door--client {
  color: var(--navy);
  border: 1px solid rgba(192, 57, 43, 0.28);
  background:
    linear-gradient(145deg, #ffffff, #eef3f8 58%, #dde7f2);
  box-shadow: 0 16px 36px rgba(10, 22, 40, 0.08);
}
.access-door--staff {
  color: #eef1f5;
  border: 1px solid rgba(192, 57, 43, 0.35);
  background:
    linear-gradient(128deg, rgba(192, 57, 43, 0.28) 0%, transparent 48%),
    linear-gradient(155deg, #1a3352, #0c1b2e 55%, #050b14);
  box-shadow: 0 18px 40px rgba(5, 11, 20, 0.22);
}
.access-door__glow {
  position: absolute;
  inset: -30% auto auto -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(192,57,43,0.16), transparent 68%);
  opacity: 0.7;
}
.access-door--staff .access-door__glow {
  background: radial-gradient(circle, rgba(231,76,60,0.28), transparent 68%);
}
.access-door > *:not(.access-door__glow) { position: relative; z-index: 1; }
.access-door:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(5, 11, 20, 0.16);
}
.access-door__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.access-door__role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}
.access-door__go {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  background: rgba(192, 57, 43, 0.12);
  transition: transform 0.25s, background 0.25s;
}
.access-door--staff .access-door__go {
  background: rgba(255, 255, 255, 0.1);
}
.access-door:hover .access-door__go { transform: translateX(3px); }
.access-door__name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.access-door__desc {
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0.78;
  max-width: 26ch;
}

/* —— Manifesto (impacto Fictor → voz Sigsat) —— */
.manifesto {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
  color: #fff;
}
.manifesto-media {
  position: absolute; inset: 0;
}
.manifesto-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transform: scale(1.06);
  animation: heroSlow 36s ease-in-out infinite alternate;
}
.manifesto-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(5,11,20,0.94) 0%, rgba(5,11,20,0.78) 42%, rgba(5,11,20,0.45) 100%),
    linear-gradient(0deg, rgba(5,11,20,0.9) 0%, transparent 55%);
}
.manifesto-inner {
  position: relative; z-index: 2;
  width: var(--container); margin: 0 auto;
  max-width: 40rem;
}
.manifesto-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--signal-bright); margin-bottom: 1rem;
}
.manifesto-title {
  font-family: var(--display);
  font-size: clamp(2.35rem, 6.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 1.15rem;
  text-wrap: balance;
  max-width: 14ch;
}
.manifesto-lead {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 42ch;
  margin-bottom: 1.75rem;
  font-weight: 500;
}

/* —— Command Deck / Ops accordion —— */
.ops {
  width: 100%;
  padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 3vw, 1.5rem);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(192,57,43,0.08), transparent 55%),
    linear-gradient(180deg, #0a1628 0%, #0c1b2e 55%, #12233a 100%);
  color: #fff;
}
.ops-inner { width: var(--container); margin: 0 auto; }
.ops .section-eyebrow { color: var(--signal-bright); }
.ops .section-title {
  -webkit-text-fill-color: #fff;
  background: none;
  filter: none;
  color: #fff;
  max-width: 16ch;
}
.ops .section-desc { color: rgba(255,255,255,0.62); }
.ops-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}
.ops-acc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ops-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.4s var(--ease-out);
}
.ops-item:hover:not(.is-open) {
  border-color: color-mix(in srgb, var(--ops-accent, #38bdf8) 45%, rgba(255,255,255,0.2));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ops-accent, #38bdf8) 14%, transparent), rgba(255,255,255,0.05));
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.35),
    0 0 0 1px color-mix(in srgb, var(--ops-accent, #38bdf8) 25%, transparent),
    0 0 28px color-mix(in srgb, var(--ops-accent, #38bdf8) 18%, transparent);
  z-index: 2;
}
.ops-item:hover:not(.is-open) .ops-item__toggle {
  transform: scale(1.06);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--ops-accent, #38bdf8) 40%, transparent),
    0 8px 22px color-mix(in srgb, var(--ops-accent, #38bdf8) 28%, transparent);
}
.ops-item:hover:not(.is-open) .ops-item__label {
  color: #fff;
}
.ops-item.is-open {
  border-color: var(--ops-accent, rgba(192,57,43,0.65));
  background: linear-gradient(135deg, color-mix(in srgb, var(--ops-accent, #c0392b) 22%, transparent), rgba(192,57,43,0.06));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--ops-accent, #c0392b) 35%, transparent),
    0 18px 44px rgba(0,0,0,0.32);
  transform: translateY(-2px);
}
.ops-item[data-ops="track"] { --ops-accent: #38bdf8; }
.ops-item[data-ops="fatigue"] { --ops-accent: #f59e0b; }
.ops-item[data-ops="video"] { --ops-accent: #2dd4bf; }
.ops-item[data-ops="alco"] { --ops-accent: #e74c3c; }
.ops-item.is-open .ops-item__idx {
  color: var(--ops-accent);
  opacity: 1;
  text-shadow: 0 0 18px color-mix(in srgb, var(--ops-accent) 55%, transparent);
}
.ops-item.is-open .ops-item__label { color: #fff; }
.ops-item:not(.is-open) .ops-item__idx { color: rgba(255,255,255,0.35); }
.ops-item:not(.is-open) .ops-item__label { color: rgba(255,255,255,0.78); }
.ops-item__head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.95rem;
  padding: 1.25rem 1.25rem;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.ops-item__idx {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--signal-bright);
  opacity: 0.85;
  transition: color 0.25s, text-shadow 0.25s, opacity 0.25s;
}
.ops-item__label {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.25s;
}
.ops-item__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.6rem;
  height: 2.15rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ops-accent, #38bdf8) 35%, rgba(255,255,255,0.2));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ops-accent, #38bdf8) 28%, transparent), rgba(255,255,255,0.06));
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.35s,
    min-width 0.35s;
  animation: opsCtaPulse 2.4s ease-in-out infinite;
}
.ops-item:not(.is-open) .ops-item__toggle::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid color-mix(in srgb, var(--ops-accent, #38bdf8) 45%, transparent);
  opacity: 0.55;
  animation: opsCtaRing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes opsCtaPulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--ops-accent, #38bdf8) 0%, transparent); }
  50% { box-shadow: 0 0 18px color-mix(in srgb, var(--ops-accent, #38bdf8) 28%, transparent); }
}
@keyframes opsCtaRing {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.18); opacity: 0; }
}
.ops-item__cta,
.ops-item__cta-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.25s, transform 0.25s;
}
.ops-item__cta { color: #fff; }
.ops-item__cta i,
.ops-item__cta svg {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
}
.ops-item__cta-live {
  position: absolute;
  inset: 0;
  justify-content: center;
  color: var(--ops-accent);
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}
.ops-item__cta-live i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--ops-accent);
  box-shadow: 0 0 10px var(--ops-accent);
  animation: opsLiveDot 1.2s ease-in-out infinite;
}
@keyframes opsLiveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}
.ops-item.is-open .ops-item__toggle {
  min-width: 5.6rem;
  border-color: color-mix(in srgb, var(--ops-accent) 55%, transparent);
  background: color-mix(in srgb, var(--ops-accent) 18%, transparent);
  animation: none;
  box-shadow: none;
}
.ops-item.is-open .ops-item__toggle::before { display: none; }
.ops-item.is-open .ops-item__cta {
  opacity: 0;
  transform: scale(0.9);
  position: absolute;
  pointer-events: none;
}
.ops-item.is-open .ops-item__cta-live {
  opacity: 1;
  transform: scale(1);
}
.ops-item__body {
  display: grid;
  gap: 0.85rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s, padding 0.3s;
}
.ops-item.is-open .ops-item__body {
  max-height: 220px;
  opacity: 1;
  padding: 0 1.25rem 1.35rem;
}
.ops-item__body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  margin: 0;
}
.ops-item.is-open .text-link { color: var(--ops-accent); }
.ops .text-link { color: var(--signal-bright); margin-top: 0; }

.ops-hud {
  --hud-accent: #38bdf8;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--hud-accent) 35%, rgba(255,255,255,0.12));
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--hud-accent) 16%, transparent), transparent 42%),
    linear-gradient(180deg, rgba(18,35,58,0.95), rgba(5,11,20,0.98));
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s;
}
.ops-hud[data-mode="track"] { --hud-accent: #38bdf8; }
.ops-hud[data-mode="fatigue"] { --hud-accent: #f59e0b; }
.ops-hud[data-mode="video"] { --hud-accent: #2dd4bf; }
.ops-hud[data-mode="alco"] { --hud-accent: #e74c3c; }
.ops-hud.is-swap {
  animation: hudSwap 0.45s var(--ease-out);
}
@keyframes hudSwap {
  0% { opacity: 0.55; transform: translateY(6px) scale(0.99); }
  100% { opacity: 1; transform: none; }
}
.ops-hud__top {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.ops-hud__live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hud-accent);
}
.ops-hud__live i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hud-accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--hud-accent) 55%, transparent);
  animation: livePulse 1.6s ease-out infinite;
  display: block;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--hud-accent) 55%, transparent); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.ops-hud__mode {
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.7);
}
.ops-hud__stage { flex: 1; min-height: 0; }
.ops-hud__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid color-mix(in srgb, var(--hud-accent) 28%, rgba(255,255,255,0.08));
  background: #07111f;
}
.ops-hud__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: opacity 0.4s, transform 0.7s ease;
}
.ops-hud.is-swap .ops-hud__media img { opacity: 0.35; transform: scale(1.08); }
.ops-hud__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,11,20,0.15) 0%, rgba(5,11,20,0.55) 55%, rgba(5,11,20,0.82) 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--hud-accent) 18%, transparent), transparent 45%);
  pointer-events: none;
}
.ops-hud__model {
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  z-index: 1;
}
.ops-hud[data-mode="track"] .ops-hud__model--track,
.ops-hud[data-mode="fatigue"] .ops-hud__model--fatigue,
.ops-hud[data-mode="video"] .ops-hud__model--video,
.ops-hud[data-mode="alco"] .ops-hud__model--alco { opacity: 1; }
.ops-hud__model svg { width: 100%; height: 100%; display: block; }
.ops-route {
  fill: none;
  stroke: rgba(255,255,255,0.45);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
  animation: routeFlow 18s linear infinite;
}
.ops-route--2 { stroke: color-mix(in srgb, var(--hud-accent) 75%, #fff); animation-duration: 22s; animation-direction: reverse; }
@keyframes routeFlow {
  to { stroke-dashoffset: -200; }
}
.ops-dot {
  fill: var(--hud-accent);
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--hud-accent) 80%, transparent));
}
.ops-dot--2 { fill: #7dd3fc; }
.ops-dot--3 { fill: #86efac; }
.ops-pulse {
  fill: none;
  stroke: color-mix(in srgb, var(--hud-accent) 70%, transparent);
  stroke-width: 1.5;
  animation: mapPulse 2.4s ease-out infinite;
  transform-origin: center;
}
.ops-pulse--amber { transform-origin: 175px 70px; }
@keyframes mapPulse {
  0% { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.ops-wave {
  fill: none;
  stroke: var(--hud-accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--hud-accent) 60%, transparent));
}
.ops-alert {
  fill: #ef4444;
  filter: drop-shadow(0 0 10px rgba(239,68,68,0.9));
}
.ops-cam-grid {
  position: absolute; inset: 12% 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.ops-cam-grid span {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(5,11,20,0.25);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.ops-cam-grid span.is-hot {
  border-color: var(--hud-accent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--hud-accent) 50%, transparent),
    0 0 24px color-mix(in srgb, var(--hud-accent) 35%, transparent);
  animation: camBlink 1.8s ease-in-out infinite;
}
@keyframes camBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}
.ops-cam-rec {
  position: absolute; top: 12%; right: 10%;
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em;
  color: #fff;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(192,57,43,0.85);
}
.ops-cam-rec i {
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
  display: block; animation: livePulse 1.2s ease-out infinite;
}
.ops-lock {
  position: absolute; left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  display: grid; place-items: center; gap: 0.35rem;
  min-width: 8.5rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(5,11,20,0.78);
  border: 1px solid color-mix(in srgb, var(--hud-accent) 55%, transparent);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  text-align: center;
  backdrop-filter: blur(10px);
}
.ops-lock i { width: 28px; height: 28px; color: var(--hud-accent); }
.ops-lock strong { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em; }
.ops-lock span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.ops-hud__pin {
  position: absolute; left: 12%; bottom: 14%;
  z-index: 2;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(5,11,20,0.82);
  border: 1px solid color-mix(in srgb, var(--hud-accent) 45%, rgba(255,255,255,0.12));
  backdrop-filter: blur(8px);
  min-width: 7.5rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}
.ops-hud__pin strong {
  display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: -0.01em;
}
.ops-hud__pin span {
  font-size: 0.68rem; color: color-mix(in srgb, var(--hud-accent) 75%, #fff); font-weight: 600;
}
.ops-hud__feed {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.4rem;
  max-height: 7.5rem; overflow: hidden;
  margin: 0; padding: 0;
}
.ops-hud__feed li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.55rem;
  font-size: 0.78rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--hud-accent);
  animation: feedIn 0.45s var(--ease-out);
}
.ops-hud__feed time {
  font-variant-numeric: tabular-nums;
  color: var(--hud-accent);
  font-weight: 700;
  font-size: 0.72rem;
}
.ops-hud__feed span { color: rgba(255,255,255,0.72); line-height: 1.35; }
@keyframes feedIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.ops-hud__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: auto;
}
.ops-hud__kpis > div {
  padding: 0.65rem 0.55rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid color-mix(in srgb, var(--hud-accent) 22%, rgba(255,255,255,0.08));
  text-align: center;
  transition: border-color 0.3s;
}
.ops-hud__kpis strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.ops-hud__kpis span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--hud-accent) 55%, rgba(255,255,255,0.45));
}

@media (max-width: 980px) {
  .ops-layout { grid-template-columns: 1fr; }
  .ops-hud { min-height: 0; }
}

/* How it works — keep existing below */
.how {
  width: 100%;
  padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 3vw, 1.5rem);
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(192,57,43,0.06), transparent 55%),
    linear-gradient(180deg, #f8fafc, #eef3f8);
}
.how-inner { width: var(--container); margin: 0 auto; }
.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: none;
  padding: 0;
  margin: 0;
}
.how-steps li {
  position: relative;
  padding: 1.5rem 1.25rem 1.55rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(10,22,40,0.05);
  transition:
    transform 0.4s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}
.how-steps li:hover {
  transform: translateY(-16px) scale(1.03);
  border-color: rgba(192, 57, 43, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f7 100%);
  box-shadow:
    0 28px 56px rgba(10, 22, 40, 0.16),
    0 8px 20px rgba(192, 57, 43, 0.12),
    0 0 0 1px rgba(192, 57, 43, 0.12);
  z-index: 2;
}
.how-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.1rem; right: -0.55rem;
  width: 0.7rem; height: 2px;
  background: linear-gradient(90deg, var(--signal), transparent);
  z-index: 1;
  transition: opacity 0.35s ease;
}
.how-steps li:hover:not(:last-child)::after {
  opacity: 0.2;
}
.how-num {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--signal);
  margin-bottom: 0.65rem;
  line-height: 1;
  transition: transform 0.4s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    text-shadow 0.4s ease;
}
.how-steps li:hover .how-num {
  transform: translateY(-4px) scale(1.12);
  text-shadow: 0 8px 18px rgba(192, 57, 43, 0.28);
}
.how-steps h3 {
  font-family: var(--display);
  font-size: 1.05rem; font-weight: 600;
  color: #1a3050; margin-bottom: 0.4rem;
  transition: color 0.35s ease;
}
.how-steps li:hover h3 {
  color: var(--navy-deep, #0a1628);
}
.how-steps p { font-size: 0.88rem; color: var(--gray); line-height: 1.5; }

/* Legacy bento (unused) */
.bento { display: none; }

/* Control */
.control {
  width: 100%;
  background:
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(192,57,43,0.22), transparent 55%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  color: #fff; padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 3vw, 1.5rem);
}
.control-inner {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.control .section-title {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  filter: none;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.control .section-desc { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.control .section-eyebrow { color: var(--signal-bright); }
.control-cards { display: grid; gap: 0.85rem; }
.control-card {
  display: grid; grid-template-columns: auto auto 1fr; grid-template-rows: auto auto;
  column-gap: 0.85rem; row-gap: 0.25rem; align-items: center;
  padding: 1.15rem 1.25rem; border-radius: 18px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); transition: background 0.3s, transform 0.3s;
}
.control-card:hover { background: rgba(255,255,255,0.1); transform: translateX(6px); }
.control-num {
  grid-row: span 2; font-family: var(--display); font-size: 1.35rem; font-weight: 800;
  color: rgba(255,255,255,0.2); letter-spacing: -0.03em;
}
.control-card i { width: 22px; height: 22px; color: var(--signal-bright); }
.control-card h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
.control-card p { grid-column: 2 / -1; color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* Gallery */
.gallery { padding: clamp(3rem, 7vw, 4.5rem) 0; overflow: hidden; }
.gallery-head { width: var(--container); margin: 0 auto 1.75rem; }
.gallery-rail {
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gallery-track {
  display: flex; width: max-content; gap: 1rem;
  animation: galleryScroll 20s linear infinite;
  padding: 0 1rem;
}
.gallery-rail:hover .gallery-track { animation-play-state: paused; }
.gallery-track figure {
  margin: 0; width: min(320px, 70vw); flex-shrink: 0;
  border-radius: 18px; overflow: hidden; position: relative;
  box-shadow: var(--shadow); aspect-ratio: 16/11;
}
.gallery-track img { width: 100%; height: 100%; object-fit: cover; }
.gallery-track figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(5,11,20,0.85));
  color: #fff; font-size: 0.82rem; font-weight: 600;
}
.clients-track { gap: 1rem; align-items: center; }
.client-logo {
  flex-shrink: 0; width: 180px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(10,22,40,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.client-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(192,57,43,0.25);
  box-shadow: 0 14px 36px rgba(10,22,40,0.12);
}
.client-logo img {
  max-width: 100%; max-height: 56px; width: auto; height: auto;
  object-fit: contain; filter: grayscale(0.15);
}
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Partners */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.partner-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  text-decoration: none; box-shadow: 0 14px 40px rgba(10,22,40,0.08);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.partner-card:hover {
  transform: translateY(-8px); border-color: rgba(192,57,43,0.28);
  box-shadow: var(--shadow-lg);
}
.partner-glow {
  position: absolute; top: -40%; right: -20%; width: 220px; height: 220px;
  background: rgba(255,166,76,0.2); filter: blur(60px); pointer-events: none;
}
.partner-glow--blue { background: rgba(41,151,255,0.22); }
.partner-logo {
  height: 112px; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1.75rem; background: #fff; border-bottom: 1px solid var(--border);
}
.partner-logo img { max-height: 56px; width: auto; max-width: 200px; object-fit: contain; }
.partner-logo--dark { background: #0a0e14; }
.partner-logo--dark img { max-height: 40px; }
.partner-body { padding: 1.4rem 1.5rem 1.6rem; position: relative; }
.partner-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--signal); margin-bottom: 0.4rem;
}
.partner-body h3 {
  font-family: var(--display); font-size: 1.2rem; font-weight: 600;
  letter-spacing: -0.015em; color: #1a3050; margin-bottom: 0.45rem;
}
.partner-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 0.9rem; }
.partner-link { font-weight: 700; font-size: 0.88rem; color: var(--signal); }

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; align-content: start;
  padding: 0;
}
.form-head { grid-column: 1 / -1; margin-bottom: 0.35rem; }
.form-head .section-eyebrow { margin-bottom: 0.45rem; }
.form-head h3 {
  font-family: var(--display); font-size: 1.35rem; font-weight: 600;
  letter-spacing: -0.015em; color: #1a3050;
}
.form-head p { color: var(--gray); font-size: 0.88rem; margin-top: 0.25rem; }
.contact-form label {
  display: flex; flex-direction: column; gap: 0.35rem;
  font-size: 0.8rem; font-weight: 700; color: var(--text-soft);
}
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 0.9rem 1rem; border-radius: 14px;
  border: 1px solid var(--border-strong); background: var(--steel-soft);
  color: var(--text); font-size: 16px; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none; appearance: none;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form select {
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--signal); background: #fff;
  box-shadow: 0 0 0 4px rgba(192,57,43,0.12);
}

/* Quote modal */
.quote-modal {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center;
  padding: max(1rem, var(--safe-t)) 1rem max(1rem, var(--safe-b));
}
.quote-modal[hidden] { display: none !important; }
.quote-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 11, 20, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.quote-modal__dialog {
  position: relative; z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 880px);
  overflow: auto;
  padding: 1.5rem 1.35rem 1.5rem;
  border-radius: 22px;
  background:
    radial-gradient(ellipse 80% 40% at 100% 0%, rgba(192,57,43,0.08), transparent 50%),
    linear-gradient(180deg, #ffffff, #f5f8fc);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 40px 100px rgba(5, 11, 20, 0.45);
  animation: quoteIn 0.35s var(--ease-out);
}
@keyframes quoteIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.quote-modal__close {
  position: absolute; top: 0.85rem; right: 0.85rem;
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.quote-modal__close:hover {
  color: var(--signal); border-color: rgba(192,57,43,0.35);
  background: #fff;
}
.quote-modal__close i { width: 18px; height: 18px; }
.quote-form { gap: 0.85rem; }
.quote-form .full-btn { grid-column: 1 / -1; width: 100%; margin-top: 0.25rem; }
.quote-form .form-note {
  grid-column: 1 / -1;
  font-size: 0.88rem; font-weight: 600;
  color: var(--navy-soft);
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(10,22,40,0.05);
  border-left: 3px solid var(--signal);
}
.quote-form .form-note.is-ok {
  color: #166534;
  background: rgba(22, 163, 74, 0.08);
  border-left-color: #16a34a;
}
.quote-form .form-note.is-err {
  color: #991b1b;
  background: rgba(192,57,43,0.08);
}
body.quote-open { overflow: hidden; }

@media (max-width: 768px) {
  .quote-modal__dialog { padding: 1.25rem 1.1rem 1.35rem; border-radius: 18px; max-height: 94vh; }
}
.contact-form .check {
  flex-direction: row; align-items: flex-start; gap: 0.65rem;
  font-weight: 500; font-size: 0.82rem; color: var(--gray); cursor: pointer;
}
.contact-form .check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--signal); flex-shrink: 0; }
.full-btn { grid-column: 1 / -1; width: 100%; }
.form-note { grid-column: 1 / -1; font-size: 0.88rem; font-weight: 600; color: var(--signal); }

/* Footer */
.footer {
  position: relative; z-index: 1;
  overflow: hidden;
  color: rgba(255,255,255,0.78);
  padding: clamp(2.5rem, 6vw, 3.75rem) clamp(1.25rem, 3vw, 1.5rem) calc(1.35rem + var(--safe-b));
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(192,57,43,0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(26,51,82,0.55), transparent 50%),
    linear-gradient(165deg, #07111f 0%, #0a1628 48%, #050b14 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-glow {
  position: absolute; inset: auto 10% -40% 10%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.12), transparent 70%);
  pointer-events: none; filter: blur(40px);
}
.footer-cta {
  position: relative; z-index: 1;
  width: var(--container); margin: 0 auto 2.25rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem 1.75rem;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.85rem);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.footer-cta-kicker {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--signal-bright); margin-bottom: 0.4rem;
}
.footer-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600; letter-spacing: -0.02em; color: #fff;
  margin-bottom: 0.35rem; max-width: 24ch; line-height: 1.25;
}
.footer-cta-copy p:last-child {
  font-size: 0.9rem; color: rgba(255,255,255,0.62); max-width: 42ch; line-height: 1.5;
}
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.footer-cta-wa { border-color: rgba(255,255,255,0.35); }

.footer-inner {
  position: relative; z-index: 1;
  width: var(--container); margin: 0 auto 2rem;
  display: grid; grid-template-columns: 1.15fr 1.85fr; gap: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: 0.25rem;
}
.footer-logo-link { display: inline-block; margin-bottom: 1rem; }
.footer-brand .footer-logo {
  height: 48px; width: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s var(--ease-out);
}
.footer-logo-link:hover .footer-logo { transform: translateY(-2px); }
.footer-brand > p {
  font-size: 0.92rem; max-width: 34ch; line-height: 1.6;
  color: rgba(255,255,255,0.62); margin-bottom: 1.15rem;
}
.footer-contact-chips {
  display: flex; flex-direction: column; gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.footer-contact-chips a {
  display: inline-flex; align-items: center; gap: 0.55rem;
  width: fit-content;
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.84rem; font-weight: 600;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.footer-contact-chips a i { width: 15px; height: 15px; color: var(--signal-bright); flex-shrink: 0; }
.footer-contact-chips a:hover {
  background: rgba(192,57,43,0.18);
  border-color: rgba(231,76,60,0.4);
  color: #fff;
  transform: translateX(3px);
}

.footer-quote {
  width: 100%;
  max-width: 300px;
}
.footer-quote__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f3f6fa);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.28),
    0 0 0 1px rgba(192,57,43,0.06);
}
.footer-quote__icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(192,57,43,0.14), rgba(10,22,40,0.05));
  color: var(--signal);
}
.footer-quote__icon i { width: 18px; height: 18px; }
.footer-quote__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
}
.footer-quote__copy strong {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: #1a3050;
  line-height: 1.25;
}
.footer-quote__copy span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.4;
}
.footer-quote__copy em {
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy-soft);
  line-height: 1.4;
}
.footer-quote__btn {
  width: 100%;
  min-height: 42px;
  padding: 0.6rem 1rem;
  font-size: 0.84rem;
  justify-content: center;
}

.footer-cols {
  display: grid; grid-template-columns: 1fr 0.9fr 0.95fr 1.1fr; gap: 1.5rem 1.35rem;
}
.footer-cols h4 {
  font-family: var(--display); font-size: 0.72rem; font-weight: 700; color: #fff;
  margin-bottom: 1rem; letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; padding-bottom: 0.55rem;
}
.footer-cols h4::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 1.5rem; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--signal-bright), transparent);
}
.footer-cols a {
  display: block; text-decoration: none; color: rgba(255,255,255,0.58);
  font-size: 0.9rem; margin-bottom: 0.35rem;
  padding: 0.28rem 0 0.28rem 0;
  transition: color 0.2s, padding-left 0.25s, background 0.2s;
  border-radius: 6px;
}
.footer-cols a:hover {
  color: #fff;
  padding-left: 0.45rem;
  background: linear-gradient(90deg, rgba(192,57,43,0.12), transparent);
}

.footer .lang-flag-btn--stacked {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.footer .lang-flag-btn--stacked:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.footer .lang-flag-btn--stacked.active {
  border-color: rgba(231,76,60,0.65);
  background: rgba(192,57,43,0.18);
  box-shadow: 0 0 0 1px rgba(231,76,60,0.2);
}

.footer-copy {
  position: relative; z-index: 1;
  width: var(--container); margin: 0 auto; padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 0.55rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.42);
}
.footer-copy a {
  color: var(--signal-bright); text-decoration: none; font-weight: 700;
  transition: color 0.2s;
}
.footer-copy a:hover { color: #fff; }
.footer-brand-pulse {
  display: inline-block;
  animation: footerBrandPulse 1.8s ease-in-out infinite;
}
@keyframes footerBrandPulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 0 transparent;
    filter: brightness(1);
  }
  50% {
    opacity: 0.35;
    text-shadow: 0 0 14px rgba(231, 76, 60, 0.55);
    filter: brightness(1.25);
  }
}

/* LGPD + WA */
.lgpd-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 1.25rem calc(1rem + var(--safe-b));
  background: rgba(255,255,255,0.96); border-top: 1px solid var(--border-strong);
  backdrop-filter: blur(14px); box-shadow: 0 -10px 36px rgba(5,11,20,0.1);
}
.lgpd-bar[hidden] { display: none !important; }
.lgpd-bar p { font-size: 0.82rem; color: var(--gray); max-width: 640px; }
.lgpd-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.lgpd-actions a { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.lgpd-actions .btn { padding: 0.55rem 1.2rem; font-size: 0.82rem; min-height: 40px; }

.wa-fab {
  --wa: #25d366;
  --wa-deep: #128c7e;
  position: fixed;
  z-index: 250;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(1.25rem + var(--safe-b));
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  overflow: visible;
  isolation: isolate;
  transition:
    max-width 0.4s var(--ease-out),
    padding 0.4s var(--ease-out),
    gap 0.35s ease,
    transform 0.35s var(--ease-out),
    filter 0.35s ease;
}
.wa-fab__rings {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  pointer-events: none;
  z-index: 0;
}
.wa-fab__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: waPulse 2.4s var(--ease-out) infinite;
}
.wa-fab__ring--delay { animation-delay: 1.1s; }
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.65; }
  70% { transform: scale(1.85); opacity: 0; }
  100% { transform: scale(1.85); opacity: 0; }
}
.wa-fab__btn {
  position: relative;
  z-index: 1;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.35), transparent 42%),
    linear-gradient(145deg, #2fe574 0%, var(--wa) 48%, var(--wa-deep) 100%);
  box-shadow:
    0 14px 34px rgba(18, 140, 126, 0.42),
    0 4px 12px rgba(37, 211, 102, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.wa-fab__svg {
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.18));
  transition: transform 0.35s var(--ease-out);
}
.wa-fab__label {
  position: relative;
  z-index: 1;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  pointer-events: none;
  transition: max-width 0.4s var(--ease-out), opacity 0.3s ease, margin 0.35s ease;
}
.wa-fab:hover,
.wa-fab:focus-visible {
  max-width: 260px;
  padding-right: 1.15rem;
  gap: 0.55rem;
  outline: none;
  filter: drop-shadow(0 10px 24px rgba(18, 140, 126, 0.28));
}
.wa-fab:hover .wa-fab__btn,
.wa-fab:focus-visible .wa-fab__btn {
  transform: scale(1.06);
  box-shadow:
    0 18px 40px rgba(18, 140, 126, 0.5),
    0 6px 16px rgba(37, 211, 102, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.wa-fab:hover .wa-fab__svg,
.wa-fab:focus-visible .wa-fab__svg {
  transform: scale(1.08) rotate(-6deg);
}
.wa-fab:hover .wa-fab__label,
.wa-fab:focus-visible .wa-fab__label {
  max-width: 180px;
  opacity: 1;
  margin-left: 0.15rem;
}
.wa-fab:hover .wa-fab__ring,
.wa-fab:focus-visible .wa-fab__ring {
  animation-play-state: paused;
  opacity: 0;
}
/* chip background when expanded */
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37,211,102,0.95), rgba(18,140,126,0.98));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: right center;
  transition: opacity 0.35s ease, transform 0.4s var(--ease-out);
  box-shadow: 0 16px 36px rgba(18, 140, 126, 0.35);
}
.wa-fab:hover::before,
.wa-fab:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}
body:has(.lgpd-bar:not([hidden])) .wa-fab { bottom: calc(5.5rem + var(--safe-b)); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.wa-name {
  position: fixed; inset: 0; z-index: 320;
  display: grid; place-items: center;
  padding: 1.25rem;
}
.wa-name[hidden] { display: none !important; }
.wa-name__backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 11, 20, 0.62);
  backdrop-filter: blur(6px);
}
.wa-name__dialog {
  position: relative; z-index: 1;
  width: min(400px, 100%);
  padding: 1.45rem 1.4rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
  animation: quoteIn 0.35s var(--ease-out);
}
.wa-name__dialog .section-eyebrow { margin-bottom: 0.4rem; }
.wa-name__dialog h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a3050;
  margin: 0 0 1.1rem;
  line-height: 1.3;
  max-width: 22ch;
}
.wa-name__field { display: block; margin-bottom: 1.15rem; }
.wa-name__field input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wa-name__field input:focus {
  border-color: rgba(192,57,43,0.45);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.wa-name__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}
body.wa-name-open { overflow: hidden; }

.policy-page {
  width: min(760px, calc(100% - 2.5rem)); margin: 0 auto;
  padding: calc(var(--nav-h) + var(--safe-t) + 2.5rem) 0 4rem; position: relative; z-index: 1;
}
.policy-page h1 { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2rem); color: var(--navy); margin-bottom: 0.5rem; }
.policy-page .back { display: inline-block; margin-bottom: 1.5rem; color: var(--signal); text-decoration: none; font-weight: 700; }
.policy-page h2 { font-size: 1.05rem; margin: 1.75rem 0 0.65rem; color: var(--signal); }
.policy-page p, .policy-page li { color: var(--gray); line-height: 1.75; margin-bottom: 0.65rem; font-size: 0.95rem; }
.policy-page ul { padding-left: 1.2rem; }
.policy-page a { color: var(--signal); }

/* Article / matéria */
.article-page {
  width: min(820px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--safe-t) + 1.75rem) 0 4.5rem;
  position: relative; z-index: 1;
}
.article-page .back {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-bottom: 1.25rem; color: var(--signal); text-decoration: none; font-weight: 700; font-size: 0.92rem;
}
.article-page .back:hover { color: var(--signal-deep); }
.article-hero {
  border-radius: 22px; overflow: hidden; margin-bottom: 1.75rem;
  aspect-ratio: 21 / 10; background: #0c1b2e;
  box-shadow: var(--shadow);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center;
  margin-bottom: 0.85rem;
}
.article-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--signal);
}
.article-date { font-size: 0.82rem; color: var(--gray); font-weight: 600; }
.article-page h1 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.2;
  color: var(--navy); margin-bottom: 0.85rem; max-width: 22ch;
}
.article-lead {
  font-size: 1.08rem; line-height: 1.6; color: var(--text-soft);
  margin-bottom: 1.75rem; max-width: 58ch;
}
.article-body h2 {
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 600; color: var(--navy);
  margin: 1.85rem 0 0.65rem; letter-spacing: -0.015em;
}
.article-body p, .article-body li {
  color: var(--gray); line-height: 1.75; margin-bottom: 0.85rem; font-size: 0.98rem;
}
.article-body ul, .article-body ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.article-body li { margin-bottom: 0.4rem; }
.article-callout {
  margin: 1.5rem 0;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(10,22,40,0.04);
  border-left: 3px solid var(--signal);
}
.article-callout p { margin: 0; color: var(--navy-soft); font-size: 0.92rem; line-height: 1.6; }
.article-sources {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.article-sources h2 {
  font-family: var(--display);
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  margin-bottom: 0.85rem;
}
.article-sources ol {
  padding-left: 1.2rem; margin: 0 0 1.25rem;
}
.article-sources li {
  font-size: 0.86rem; color: var(--gray); line-height: 1.55; margin-bottom: 0.55rem;
}
.article-sources a { color: var(--signal); word-break: break-word; }
.article-cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  margin-top: 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10,22,40,0.04), rgba(192,57,43,0.06));
  border: 1px solid var(--border);
}
.article-cta p { margin: 0; flex: 1; min-width: 200px; font-size: 0.92rem; color: var(--text-soft); font-weight: 600; }

/* Matérias hub */
.materias-page {
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--safe-t) + 2.25rem) 0 4.5rem;
  position: relative; z-index: 1;
}
.materias-head { max-width: 640px; margin-bottom: 2.25rem; }
.materias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.materias-card {
  display: flex; flex-direction: column; gap: 0.65rem;
  padding: 1.35rem 1.4rem 1.5rem;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-decoration: none; color: inherit;
  box-shadow: 0 10px 28px rgba(10,22,40,0.05);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.materias-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(192,57,43,0.25);
}
.materias-card .mat-kicker {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--signal);
}
.materias-card h2 {
  font-family: var(--display);
  font-size: 1.12rem; font-weight: 600; color: #1a3050;
  letter-spacing: -0.018em; line-height: 1.3;
}
.materias-card p {
  font-size: 0.9rem; color: var(--gray); line-height: 1.55; flex: 1;
}
.materias-card .mat-ref {
  font-size: 0.78rem; color: var(--navy-soft); font-weight: 600;
  padding: 0.55rem 0.7rem; border-radius: 10px;
  background: rgba(10,22,40,0.04); border-left: 3px solid var(--signal);
}
.materias-card .mat-more {
  font-size: 0.86rem; font-weight: 700; color: var(--signal);
}

@media (max-width: 768px) {
  .materias-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .article-hero { aspect-ratio: 16 / 11; border-radius: 16px; }
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.visible:nth-child(2) { transition-delay: 0.06s; }
.reveal.visible:nth-child(3) { transition-delay: 0.12s; }
.reveal.visible:nth-child(4) { transition-delay: 0.18s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .nav-links > a, .nav-drop-btn { padding: 0.55rem 0.55rem; font-size: 0.86rem; }
  .nav-cta span { display: none; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  :root { --container: min(100%, calc(100% - 2rem)); }
  .alliance-inner { grid-template-columns: 1fr; gap: 2rem; }
  .alliance-partners { padding: 1.1rem; }
  .alliance-partners .partner-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-lang-col { grid-column: 1 / -1; max-width: 280px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 76px; --container: min(100%, calc(100% - 1.75rem)); }
  .nav-links {
    position: fixed; top: calc(var(--nav-h) + var(--safe-t)); left: 0; right: 0; bottom: 0;
    flex-direction: column; align-items: stretch; padding: 1.25rem;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    transform: translateX(100%); transition: transform 0.35s var(--ease-out);
    overflow-y: auto; gap: 0.2rem; box-shadow: -12px 0 40px rgba(5,11,20,0.12);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a, .nav-drop-btn { padding: 1rem 1.1rem; font-size: 1.1rem; width: 100%; justify-content: space-between; }
  .nav-drop { width: 100%; }
  .nav-drop-panel {
    position: static; transform: none; left: auto;
    min-width: 0; width: 100%;
    margin: 0.15rem 0 0.5rem;
    box-shadow: none; border-radius: 14px;
    opacity: 1; visibility: visible; pointer-events: auto;
    display: none; background: rgba(10, 22, 40, 0.03);
  }
  .nav-drop.is-open .nav-drop-panel { display: block; transform: none; }
  .access-gate { width: 100%; }
  .access-gate__summary { width: 100%; justify-content: space-between; padding: 1rem 1.1rem; font-size: 1.1rem; border-radius: 14px; }
  .access-gate__panel {
    position: static;
    width: 100%;
    margin-top: 0.45rem;
    box-shadow: none;
    animation: none;
  }
  .nav-toggle { display: flex; }
  .logo-img { height: 58px; }
  .hero { min-height: auto; padding-bottom: 3.5rem; }
  .hero h1 { max-width: none; }
  .hero-lead { max-width: none; }
  .cta-row .btn { flex: 1 1 auto; }
  .reality-grid, .sol-grid, .outcomes-grid, .how-steps { grid-template-columns: 1fr; }
  .sol-extra { flex-direction: column; align-items: flex-start; }
  .contact-form { grid-template-columns: 1fr; }
  .about-mosaic { min-height: 0; }
  .mosaic-float, .mosaic-badge { position: static; width: auto; margin-top: 1rem; animation: none; }
  .mosaic-badge { display: inline-flex; align-items: baseline; gap: 0.5rem; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-lang-col { max-width: none; }
  .lgpd-bar { flex-direction: column; align-items: stretch; }
  .lgpd-actions .btn { flex: 1; }
  body:has(.lgpd-bar:not([hidden])) .wa-fab { bottom: calc(8.5rem + var(--safe-b)); }
  .gallery-track { animation-duration: 26s; }
}

@media (max-width: 520px) {
  :root { --container: min(100%, calc(100% - 1.5rem)); }
  .metrics { margin-top: -1.25rem; }
  .metrics-inner { gap: 0.3rem; padding: 0.3rem; }
  .metric { padding: 0.9rem 0.35rem; }
  .metric span { font-size: 0.68rem; }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(5,11,20,0.55), rgba(5,11,20,0.78) 38%, rgba(5,11,20,0.94));
  }
  .proof { margin-top: -1.25rem; }
  .proof-inner { grid-template-columns: 1fr 1fr; }
  .alliance-partners .partner-grid { grid-template-columns: 1fr; }
  .wa-fab { max-width: 52px; height: 52px; }
  .wa-fab__rings { width: 52px; height: 52px; }
  .wa-fab__btn { flex-basis: 52px; width: 52px; height: 52px; }
  .wa-fab__svg { width: 24px; height: 24px; }
}

@media (hover: none) {
  .outcome-card:hover, .reality-card:hover, .sol-card:hover, .partner-card:hover, .btn:hover, .control-card:hover, .how-steps li:hover, .about-values li:hover, .ops-item:hover:not(.is-open) { transform: none; }
  .about-values li:hover i, .about-values li:hover svg, .about-values li:hover .about-values__ico { transform: none; }
  .ops-item:hover:not(.is-open) .ops-item__toggle { transform: none; }
  .alliance-partners .partner-card:hover { transform: none; background: var(--white); box-shadow: 0 8px 22px rgba(10,22,40,0.05); }
  .how-steps li:hover .how-num { transform: none; }
  .wa-fab:hover, .wa-fab:focus-visible { max-width: 58px; padding-right: 0; gap: 0; filter: none; }
  .wa-fab:hover::before, .wa-fab:focus-visible::before { opacity: 0; }
  .wa-fab:hover .wa-fab__label, .wa-fab:focus-visible .wa-fab__label { max-width: 0; opacity: 0; }
  .wa-fab:hover .wa-fab__btn, .wa-fab:focus-visible .wa-fab__btn { transform: none; }
  .gallery-rail:hover .gallery-track { animation-play-state: running; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .access-gate__panel { animation: none; }
  .ops-route, .ops-route--2, .ops-pulse, .ops-hud__live i, .manifesto-media img, .ops-cam-grid span.is-hot, .ops-cam-rec i, .wa-fab__ring, .proof-item.is-pop strong, .ops-item__toggle, .ops-item__toggle::before, .ops-item__cta-live i, .footer-brand-pulse { animation: none !important; }
  .lang-flag-fi, .glow-orb, .hero-bg, .gallery-track, .mosaic-float, .reality-media img {
    animation: none !important;
    transition: none !important;
  }
  .hero-bg { transform: none !important; opacity: 0; }
  .hero-bg.is-active { opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 2rem 0 3rem; }
  .hero-kicker { font-size: 0.65rem; margin-bottom: 0.55rem; }
  .hero h1 { font-size: 1.5rem; }
}
