:root {
  --bg: #f5f8fc;
  --ink: #06162b;
  --muted: #5d6f88;
  --line: #d8e4f1;
  --panel: #ffffff;
  --gold: #d9aa1f;
  --gold-soft: #ffe9a8;
  --gold-dark: #9c7100;
  --blue: #07599f;
  --blue-deep: #05264f;
  --blue-ink: #031a36;
  --blue-soft: #eaf4ff;
  --dark: #06162a;
  --glass: rgba(255, 255, 255, .72);
  --glass-strong: rgba(255, 255, 255, .88);
  --line-blue: rgba(7, 89, 159, .16);
  --line-gold: rgba(217, 170, 31, .32);
  --circuit-line: rgba(5, 38, 79, .055);
  --glow-blue: 0 22px 70px rgba(5, 38, 79, .16);
  --glow-gold: 0 18px 42px rgba(217, 170, 31, .18);
  --shadow: 0 18px 45px rgba(5, 42, 87, .13);
  --shadow-strong: 0 28px 70px rgba(5, 42, 87, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 170, 31, .16), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(7, 89, 159, .17), transparent 32%),
    linear-gradient(90deg, var(--circuit-line) 1px, transparent 1px),
    linear-gradient(180deg, var(--circuit-line) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 86px 86px, 86px 86px, auto;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(217,170,31,.08) 18.2%, transparent 18.45% 58%, rgba(7,89,159,.06) 58.15%, transparent 58.4%),
    linear-gradient(180deg, transparent 0 34%, rgba(7,89,159,.06) 34.15%, transparent 34.4% 72%, rgba(217,170,31,.07) 72.15%, transparent 72.4%);
  opacity: .6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, .84);
  border-bottom: 1px solid rgba(7,89,159,.12);
  backdrop-filter: blur(12px);
  transition: padding .18s ease, box-shadow .18s ease, background .18s ease;
}

.scrolled .topbar {
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(5, 42, 87, .10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}


.brand-logo-site {
  width: auto;
  height: 76px;
  object-fit: contain;
  animation: logo-soft-glow 7s ease-in-out infinite;
}

.hero-logo {
  width: min(210px, 48vw);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 16px 26px rgba(5, 42, 87, .10));
  animation: logo-soft-glow 7s ease-in-out infinite;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}

.nav a:hover,
.nav a.active,
.footer a:hover {
  color: var(--blue);
}

.nav a.active {
  background: linear-gradient(135deg, rgba(234,244,255,.9), rgba(255,245,204,.55));
  box-shadow: inset 0 0 0 1px rgba(7,89,159,.08);
}

.call-link,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
}

.call-link,
.button.primary {
  color: #071833;
  background: linear-gradient(135deg, var(--gold), #f0c845);
  box-shadow: var(--glow-gold);
}

.button.primary:hover,
.call-link:hover {
  background: var(--gold-dark);
  color: #fff;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(7,89,159,.16);
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  border-color: rgba(217,170,31,.46);
  background: rgba(255,255,255,.94);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 105px);
  padding: clamp(24px, 4.4vw, 52px) clamp(18px, 5vw, 70px) 42px;
}

.hero-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255,255,255,.78), rgba(234,244,255,.58)),
    radial-gradient(circle at 82% 16%, rgba(217,170,31,.24), transparent 24%),
    radial-gradient(circle at 16% 84%, rgba(7,89,159,.13), transparent 30%);
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 18px clamp(18px, 5vw, 70px);
  z-index: -1;
  border: 1px solid rgba(10,79,147,.08);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.24)),
    linear-gradient(90deg, rgba(217,170,31,.10) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(7,89,159,.07) 0 1px, transparent 1px);
  background-size: auto, 86px 86px, 86px 86px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.hero-premium::after {
  content: "";
  position: absolute;
  inset: 12% auto auto 6%;
  z-index: -1;
  width: 220px;
  height: 220px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(217,170,31,.12), transparent 58%),
    conic-gradient(from 20deg, transparent 0 18%, rgba(217,170,31,.18) 18% 19%, transparent 19% 52%, rgba(7,89,159,.12) 52% 53%, transparent 53%);
  opacity: .55;
}

.hero-copy {
  position: relative;
}

.hero h1,
.section h2,
.split-section h2,
.cta-section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 6.4vw, 86px);
}

.hero-premium h1 {
  max-width: 1040px;
  color: #06162a;
  font-size: clamp(34px, 3.55vw, 52px);
}

.hero-premium .hero-logo {
  width: min(112px, 36vw);
  margin-bottom: 10px;
}

.hero-premium .lead {
  max-width: 780px;
  margin-top: 14px;
  font-size: clamp(16px, 1.42vw, 19px);
}

.hero-premium .hero-actions {
  margin-top: 20px;
}

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 23px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.portal-promise {
  display: grid;
  gap: 4px;
  max-width: 690px;
  margin-top: 22px;
  padding: 16px 18px 16px 20px;
  border: 1px solid rgba(7,89,159,.14);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(239,246,255,.74)),
    radial-gradient(circle at 100% 0%, rgba(217,170,31,.16), transparent 28%);
  box-shadow: 0 18px 34px rgba(12,35,58,.08);
}

.portal-promise strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
}

.portal-promise span {
  color: var(--muted);
  line-height: 1.55;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 11px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(7,89,159,.14);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 880px;
  margin-top: 26px;
}

.hero-proof-grid div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.58)),
    radial-gradient(circle at 100% 0%, rgba(217,170,31,.18), transparent 36%);
  box-shadow: 0 16px 36px rgba(5,42,87,.08);
  backdrop-filter: blur(12px);
}

.hero-proof-grid strong {
  display: block;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.hero-proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.hero-media img,
.split-section img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-console {
  position: relative;
  min-height: 520px;
  padding: 18px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 22, 42, .98), rgba(5, 38, 79, .96)),
    radial-gradient(circle at 70% 20%, rgba(217, 170, 31, .45), transparent 28%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(245, 180, 0, .36), transparent 64%);
}

.premium-console {
  min-height: 620px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(4,19,38,.98), rgba(5,38,79,.97)),
    radial-gradient(circle at 80% 10%, rgba(217,170,31,.36), transparent 28%),
    radial-gradient(circle at 20% 92%, rgba(7,89,159,.34), transparent 24%),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, auto, auto, 48px 48px, 48px 48px;
}

.premium-console::after {
  content: "";
  position: absolute;
  inset: 72px 22px auto auto;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(216,165,29,.24);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255,255,255,.025);
}

.console-top {
  position: relative;
  display: flex;
  gap: 7px;
  align-items: center;
  padding-bottom: 18px;
  color: #cbd5e1;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.console-top span:nth-child(2) { background: #f59e0b; }
.console-top span:nth-child(3) { background: #22c55e; }
.console-top strong {
  margin-left: auto;
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
}

.console-live {
  position: relative;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(34,197,94,.28);
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(34,197,94,.08);
}

.console-live span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.14);
}

.console-live small {
  font-size: 12px;
  font-weight: 800;
}

.console-status {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
}

.console-status small,
.console-grid small {
  display: block;
  color: #93a4ba;
  font-size: 12px;
  text-transform: uppercase;
}

.console-status strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.console-pill {
  align-self: start;
  padding: 7px 10px;
  color: #071833;
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.console-grid div,
.console-card {
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
}

.console-grid strong {
  display: block;
  margin-top: 4px;
}

.console-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.console-timeline span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.console-timeline .done { background: #22c55e; }
.console-timeline .active { background: var(--gold); box-shadow: 0 0 22px rgba(245, 180, 0, .45); }

.console-card p {
  margin: 8px 0 0;
  color: #cbd5e1;
}

.premium-os-card {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    radial-gradient(circle at 100% 0%, rgba(216,165,29,.2), transparent 40%);
}

.premium-os-card small {
  display: block;
  color: #93a4ba;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.premium-os-card strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.premium-os-card span {
  align-self: start;
  min-width: max-content;
  padding: 7px 9px;
  border-radius: 999px;
  color: #071833;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.premium-grid div {
  min-height: 96px;
}

.console-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.console-path::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 9%;
  width: 22%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(217,170,31,.95), transparent);
  box-shadow: 0 0 18px rgba(217,170,31,.42);
  animation: os-flow-scan 5.8s ease-in-out infinite;
  pointer-events: none;
}

.console-path div {
  position: relative;
  display: grid;
  gap: 8px;
  color: #93a4ba;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.console-path div::before {
  content: "";
  position: absolute;
  top: 8px;
  right: calc(50% + 9px);
  left: calc(-50% + 9px);
  height: 2px;
  background: rgba(255,255,255,.16);
}

.console-path div:first-child::before {
  display: none;
}

.console-path span {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border: 2px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: #071833;
}

.console-path .done span,
.console-path .active span {
  border-color: transparent;
}

.console-path .done span {
  background: #22c55e;
}

.console-path .active {
  color: #fff;
}

.console-path .active span {
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(216,165,29,.12);
  animation: status-pulse 3.2s ease-in-out infinite;
}

.reactive-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.reactive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.18), transparent 34%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

.reactive-card > * {
  position: relative;
  z-index: 1;
}

.reactive-card:hover {
  box-shadow: var(--shadow-strong);
}

.reactive-card:hover::before {
  opacity: 1;
}

.reveal {
  opacity: 0;
  translate: 0 22px;
  transition: opacity .55s ease var(--delay, 0ms), translate .55s ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

.count-up {
  font-variant-numeric: tabular-nums;
}

@keyframes logo-soft-glow {
  0%, 100% { filter: drop-shadow(0 14px 24px rgba(5, 42, 87, .10)); }
  50% { filter: drop-shadow(0 18px 32px rgba(217, 170, 31, .24)); }
}

@keyframes os-flow-scan {
  0%, 100% { left: 9%; opacity: .18; }
  35% { opacity: .85; }
  70% { left: 68%; opacity: .45; }
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(216,165,29,.10); }
  50% { box-shadow: 0 0 0 13px rgba(216,165,29,.18); }
}

.brand-carousel {
  padding: 12px 0 22px;
  overflow: hidden;
}

.brand-carousel-head {
  padding: 0 clamp(18px, 5vw, 70px) 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-track {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.84), rgba(234,244,255,.72), rgba(255,255,255,.84));
}

.brand-track::before,
.brand-track::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
}

.brand-track::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.brand-track::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.brand-strip {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 14px 0;
  animation: brand-scroll 46s linear infinite;
}

.brand-strip span {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: var(--blue-deep);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(7,89,159,.14);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(5, 42, 87, .07);
}

.brand-track:hover .brand-strip {
  animation-play-state: paused;
}

@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(7,89,159,.12);
  border-radius: 8px;
  background: rgba(7,89,159,.12);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 22px clamp(18px, 5vw, 70px) 0;
  overflow: hidden;
  border: 1px solid rgba(7,89,159,.12);
  border-radius: 14px;
  background: rgba(7,89,159,.12);
  box-shadow: var(--glow-blue);
}

.metric-band div {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.68)),
    radial-gradient(circle at 100% 0%, rgba(217,170,31,.12), transparent 38%);
  backdrop-filter: blur(12px);
}

.metric-band strong,
.metric-band span {
  display: block;
}

.metric-band strong {
  color: var(--blue-deep);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.metric-band span {
  margin-top: 7px;
  color: var(--muted);
}

.quick-contact div {
  padding: 20px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(10px);
}

.quick-contact span {
  display: block;
  color: var(--muted);
}

.section,
.split-section,
.cta-section {
  padding: clamp(48px, 8vw, 88px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section h2,
.split-section h2,
.cta-section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-showcase {
  padding: clamp(48px, 8vw, 88px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(239,246,255,.88)),
    radial-gradient(circle at 8% 20%, rgba(217,170,31,.12), transparent 26%);
  border-block: 1px solid rgba(7,89,159,.10);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  border-radius: 18px;
  background: var(--dark);
  box-shadow: var(--glow-blue);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: .78;
  transform: scale(1.02);
  transition: transform .35s ease, opacity .35s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,42,87,.08), rgba(5,18,36,.88)),
    linear-gradient(90deg, rgba(217,170,31,.12) 0 1px, transparent 1px);
  background-size: auto, 52px 52px;
}

.category-card div {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 20px;
  left: 18px;
}

.category-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.08;
}

.category-card:hover img {
  opacity: .92;
  transform: scale(1.08);
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.90), rgba(255,255,255,.68)),
    radial-gradient(circle at 100% 0%, rgba(217,170,31,.11), transparent 34%);
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 8px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  backdrop-filter: blur(12px);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(7,89,159,.45), transparent);
  opacity: .55;
}

.service-card:hover {
  border-color: rgba(217,170,31,.42);
  box-shadow: var(--glow-blue), var(--glow-gold);
}

.service-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.service-diagnostic {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(217,170,31,.22), transparent 34%),
    linear-gradient(145deg, rgba(4,19,38,.97), rgba(5,38,79,.96)),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: auto, auto, 46px 46px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}

.service-card:hover .service-diagnostic,
.service-card:focus-visible .service-diagnostic {
  opacity: 1;
  transform: translateY(0);
}

.service-diagnostic strong {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card .service-diagnostic p {
  margin: 0 0 8px;
  color: #f3f8ff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.34;
}

.service-card p,
.flow-card p,
.split-section p,
.cta-section p,
.footer p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(217,170,31,.18), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--blue-deep), #071a2f);
  background-size: auto, 64px 64px, 64px 64px, auto;
  color: #fff;
}

.split-section p {
  color: #cbd3df;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--gold);
}

.button.primary:hover,
.call-link:hover {
  background: var(--gold-dark);
  color: #fff;
}

.service-flow {
  background: rgba(255,255,255,.82);
  border-block: 1px solid rgba(7,89,159,.10);
}

.ops-section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 170, 31, .18), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(14, 165, 233, .18), transparent 24%),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(135deg, #06162a, #082f55 62%, #06162a);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.ops-section .eyebrow {
  color: var(--gold);
}

.ops-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: #cbd5e1;
}

.ops-layout {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.ops-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255,255,255,.04), rgba(255,255,255,.02)),
    radial-gradient(circle at center, rgba(245,180,0,.22), transparent 34%);
  box-shadow: var(--shadow-strong);
}

.ops-visual-live {
  min-height: 710px;
  overflow: hidden;
}

.ops-visual::before,
.ops-visual::after {
  content: "";
  position: absolute;
  inset: 50% 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
}

.ops-visual::after {
  inset: 12% 50%;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.45), transparent);
}

.ops-visual-live::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(217,170,31,.8), rgba(14,165,233,.75), transparent);
  animation: opsSignalX 3.8s ease-in-out infinite;
}

.ops-visual-live::after {
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(14,165,233,.75), rgba(217,170,31,.75), transparent);
  animation: opsSignalY 4.4s ease-in-out infinite;
}

.ops-orbit {
  position: absolute;
  inset: 78px;
  border: 1px solid rgba(217,170,31,.18);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .75;
}

.ops-orbit::before,
.ops-orbit::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 26px rgba(217,170,31,.9);
  animation: opsPulseDot 3s ease-in-out infinite;
}

.ops-orbit::before {
  top: -6px;
  left: 18%;
}

.ops-orbit::after {
  right: 12%;
  bottom: -6px;
  animation-delay: 1.4s;
}

.ops-node,
.ops-core {
  position: absolute;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.live-node {
  min-width: 164px;
  max-width: 210px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.live-node::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34,197,94,.9);
}

.live-node:hover {
  transform: translateY(-4px);
  border-color: rgba(217,170,31,.46);
  background: rgba(255,255,255,.13);
}

.ops-node small,
.ops-node span {
  display: block;
  color: #cbd5e1;
}

.ops-node strong {
  display: block;
  margin: 3px 0;
  font-size: 24px;
}

.ops-node.portal { top: 34px; left: 34px; }
.ops-node.os { top: 34px; right: 34px; }
.ops-node.telegram { bottom: 34px; left: 34px; }
.ops-node.laudo { right: 34px; bottom: 34px; }
.ops-node.etiqueta { top: 242px; left: 34px; }
.ops-node.recibo { top: 242px; right: 34px; }

.ops-core {
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  color: #071833;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 48px rgba(245, 180, 0, .38);
}

.ops-core-live {
  z-index: 1;
  width: 150px;
  height: 150px;
  opacity: .88;
  box-shadow: 0 0 70px rgba(217,170,31,.22), 0 0 58px rgba(14,165,233,.14);
  animation: opsCoreBreath 4s ease-in-out infinite;
}

.ops-core span {
  align-self: end;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
}

.ops-core strong {
  align-self: start;
  font-size: 34px;
}

.ops-core em {
  align-self: start;
  color: #10213e;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.ops-event {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 9px;
  align-items: center;
  max-width: 255px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #f8fbff;
  background: rgba(4,19,38,.78);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 800;
  animation: opsFloatEvent 5s ease-in-out infinite;
}

.ops-event span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(217,170,31,.9);
}

.event-one {
  top: 182px;
  left: 50%;
  transform: translateX(-50%);
}

.event-two {
  right: 70px;
  bottom: 238px;
  animation-delay: 1.2s;
}

.event-three {
  left: 70px;
  bottom: 238px;
  animation-delay: 2.2s;
}

.ops-stack {
  display: grid;
  gap: 14px;
}

.ops-stack article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}

.ops-stack-feature {
  position: relative;
  overflow: hidden;
}

.ops-stack-feature::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(14,165,233,.55), transparent);
  opacity: .55;
}

.ops-stack span {
  color: var(--gold);
  font-weight: 900;
}

.ops-stack h3 {
  margin: 10px 0 8px;
  font-size: 24px;
}

.ops-stack p {
  margin: 0;
  color: #cbd5e1;
}

@keyframes opsSignalX {
  0%, 100% { opacity: .35; transform: scaleX(.74); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes opsSignalY {
  0%, 100% { opacity: .28; transform: scaleY(.72); }
  50% { opacity: .95; transform: scaleY(1); }
}

@keyframes opsPulseDot {
  0%, 100% { transform: scale(.72); opacity: .55; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes opsCoreBreath {
  0%, 100% { box-shadow: 0 0 42px rgba(217,170,31,.18), 0 0 38px rgba(14,165,233,.12); }
  50% { box-shadow: 0 0 78px rgba(217,170,31,.34), 0 0 68px rgba(14,165,233,.2); }
}

@keyframes opsFloatEvent {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

.partner-section {
  background:
    linear-gradient(180deg, rgba(248,251,255,.94), rgba(238,244,251,.90)),
    radial-gradient(circle at 90% 0%, rgba(217,170,31,.12), transparent 26%);
}

.telegram-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 8vw, 88px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 12% 15%, rgba(217, 170, 31, .18), transparent 28%),
    linear-gradient(90deg, rgba(7,89,159,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7,89,159,.035) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbff, #eaf3ff);
  background-size: auto, 72px 72px, 72px 72px, auto;
  border-block: 1px solid rgba(7,89,159,.10);
}

.telegram-section h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.telegram-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.telegram-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.telegram-benefits div {
  padding: 16px;
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
}

.telegram-benefits strong,
.telegram-benefits span {
  display: block;
}

.telegram-benefits span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.telegram-demo {
  display: grid;
  gap: 14px;
}

.telegram-phone {
  overflow: hidden;
  border: 1px solid rgba(10, 79, 147, .2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,249,255,.92));
  box-shadow: var(--glow-blue);
}

.telegram-phone-head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.telegram-phone-head small {
  display: block;
  color: #cfe5ff;
}

.telegram-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #071833;
  background: var(--gold);
  font-weight: 900;
}

.telegram-messages {
  display: grid;
  gap: 10px;
  min-height: 270px;
  padding: 18px;
  background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
    radial-gradient(circle at 20% 20%, rgba(10,79,147,.16), transparent 22%),
    radial-gradient(circle at 80% 75%, rgba(217,170,31,.18), transparent 28%);
}

.msg {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(5, 42, 87, .08);
}

.msg.bot {
  justify-self: start;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.msg.user {
  justify-self: end;
  color: #fff;
  background: var(--blue);
}

.telegram-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.telegram-tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.telegram-tab.active,
.telegram-tab:hover {
  border-color: var(--gold);
  color: #071833;
  background: var(--gold);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.flow-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,251,255,.72)),
    radial-gradient(circle at 100% 0%, rgba(217,170,31,.12), transparent 34%);
  backdrop-filter: blur(12px);
}

.flow-card:hover {
  border-color: rgba(10, 79, 147, .34);
}

.flow-card span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #071833;
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.flow-card h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.jornada-premium {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 118px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,248,253,.90)),
    radial-gradient(circle at 0% 0%, rgba(217,170,31,.18), transparent 32%),
    linear-gradient(90deg, rgba(7,89,159,.04) 1px, transparent 1px);
  background-size: auto, auto, 86px 86px;
}

.jornada-premium .section-heading p:last-child {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
}

.journey-shell {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding: 4px 4px 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(7,89,159,.32) transparent;
}

.journey-shell::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 110px;
  left: 110px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
  background-size: 220% 100%;
  animation: journey-line 7s linear infinite;
}

.journey-card {
  position: relative;
  min-height: 242px;
  padding: 22px;
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.66)),
    radial-gradient(circle at 100% 0%, rgba(217,170,31,.13), transparent 34%);
  box-shadow: 0 18px 42px rgba(5,42,87,.08);
  backdrop-filter: blur(12px);
  scroll-snap-align: start;
}

.journey-card span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #071833;
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(217,170,31,.12);
}

.journey-card h3 {
  margin: 28px 0 8px;
  font-size: 21px;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

@keyframes journey-line {
  from { background-position: 0% 50%; }
  to { background-position: 220% 50%; }
}

.compact-actions {
  margin-top: 22px;
}

.muted {
  background:
    linear-gradient(180deg, #eef2f7, #f7faff),
    linear-gradient(90deg, rgba(7,89,159,.04) 1px, transparent 1px);
  background-size: auto, 86px 86px;
}

.cases-section {
  scroll-margin-top: 118px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,255,.92)),
    radial-gradient(circle at 96% 8%, rgba(217,170,31,.18), transparent 26%),
    linear-gradient(90deg, rgba(7,89,159,.04) 1px, transparent 1px);
  background-size: auto, auto, 86px 86px;
}

.cases-section .section-heading p:last-child {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 18px;
}

.proof-strip div {
  padding: 20px;
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.70)),
    radial-gradient(circle at 100% 0%, rgba(217,170,31,.12), transparent 36%);
  box-shadow: 0 14px 34px rgba(5,42,87,.07);
  backdrop-filter: blur(12px);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--blue-deep);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.social-proof-layout {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: 16px;
  margin: 20px 0 18px;
}

.google-score-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 12%, rgba(217,170,31,.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.66));
  box-shadow: var(--glow-blue);
  backdrop-filter: blur(12px);
}

.google-score-card span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(7,89,159,.12);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.google-score-card strong {
  display: block;
  margin-top: 22px;
  color: var(--blue-deep);
  font-size: clamp(58px, 9vw, 96px);
  line-height: .85;
}

.stars {
  margin-top: 14px;
  color: var(--gold);
  font-size: 24px;
  letter-spacing: .08em;
  text-shadow: 0 10px 24px rgba(217,170,31,.20);
}

.google-score-card p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.review-snapshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-snapshot {
  min-height: 310px;
  padding: 22px;
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.72)),
    linear-gradient(90deg, rgba(7,89,159,.035) 1px, transparent 1px);
  background-size: auto, 46px 46px;
  box-shadow: 0 18px 44px rgba(5,42,87,.09);
  backdrop-filter: blur(12px);
}

.review-snapshot div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.review-snapshot div span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #071833;
  background: var(--gold);
  font-weight: 900;
}

.review-snapshot div strong {
  color: var(--blue);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.review-snapshot p {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.case-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,251,255,.82)),
    radial-gradient(circle at 85% 0%, rgba(217,170,31,.18), transparent 28%),
    linear-gradient(90deg, rgba(7,89,159,.035) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.case-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 16px 0 10px;
  font-size: 25px;
  line-height: 1.08;
}

.case-card p {
  color: var(--muted);
}

.case-card strong {
  display: block;
  margin-top: 24px;
  color: var(--blue-deep);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.before-after-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(6,22,42,.96), rgba(5,38,79,.94)),
    radial-gradient(circle at 92% 0%, rgba(217,170,31,.18), transparent 34%);
  color: #fff;
  box-shadow: var(--glow-blue);
}

.before-after-card span,
.before-after-card strong {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.before-after-card span {
  color: #071833;
  background: var(--gold);
}

.before-after-card strong {
  margin-top: 16px;
  color: var(--gold-soft);
  border: 1px solid rgba(217,170,31,.32);
}

.before-after-card h3 {
  margin: 18px 0 0;
  font-size: 23px;
  line-height: 1.12;
}

.before-after-card p {
  margin: 12px 0 0;
  color: #cbd5e1;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 24px;
  background: rgba(255,255,255,.86);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: var(--dark);
  font-size: 18px;
  box-shadow: 0 14px 34px rgba(5,42,87,.07);
  backdrop-filter: blur(10px);
}

blockquote strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta-section {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(217,170,31,.13), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.80), rgba(245,248,252,.92));
}

.cta-section p,
.cta-section .hero-actions {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  max-width: 680px;
}

.service-page {
  background:
    radial-gradient(circle at 12% 7%, rgba(217,170,31,.14), transparent 26%),
    radial-gradient(circle at 88% 3%, rgba(7,89,159,.13), transparent 30%),
    linear-gradient(180deg, rgba(248,251,255,.96), rgba(238,244,251,.92));
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 440px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: 620px;
  padding: clamp(96px, 12vw, 150px) clamp(18px, 5vw, 70px) clamp(54px, 8vw, 92px);
}

.service-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 84px);
  line-height: .96;
}

.service-proof {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(7,89,159,.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(6,22,42,.96), rgba(5,38,79,.94)),
    radial-gradient(circle at 100% 0%, rgba(217,170,31,.18), transparent 34%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.service-proof strong {
  color: var(--gold-soft);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-proof span {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #e7eef8;
  font-weight: 800;
}

.service-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 70px) clamp(48px, 8vw, 88px);
}

.service-panel {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(7,89,159,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.service-panel h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 26px;
}

.service-panel p,
.service-panel li {
  color: var(--muted);
  line-height: 1.58;
}

.service-panel ul {
  margin: 0;
  padding-left: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(7,89,159,.14);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255,255,255,.78);
  font-weight: 800;
}

.service-local {
  margin: 0 clamp(18px, 5vw, 70px) clamp(28px, 5vw, 56px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(7,89,159,.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(239,246,255,.9)),
    radial-gradient(circle at 92% 12%, rgba(217,170,31,.16), transparent 26%);
  box-shadow: 0 18px 40px rgba(12,35,58,.08);
}

.service-local h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 42px);
}

.service-local p {
  max-width: 980px;
  color: var(--muted);
  line-height: 1.75;
}

.service-local-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-local-grid span {
  padding: 10px 13px;
  border: 1px solid rgba(12,35,58,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  color: #123252;
  font-size: 13px;
  font-weight: 800;
}

.service-related {
  margin: 0 clamp(18px, 5vw, 70px) clamp(28px, 5vw, 56px);
  padding: clamp(22px, 3.5vw, 36px);
  border: 1px solid rgba(7,89,159,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 36px rgba(12,35,58,.07);
}

.service-related h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(22px, 2.8vw, 34px);
}

.service-related div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-related a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(7,89,159,.14);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255,255,255,.9);
  font-weight: 800;
}

.service-related a:hover {
  border-color: rgba(217,170,31,.48);
  color: var(--ink);
}

.service-cta {
  margin: 0 clamp(18px, 5vw, 70px) clamp(48px, 8vw, 88px);
  padding: clamp(34px, 6vw, 64px);
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(217,170,31,.18), transparent 32%),
    linear-gradient(145deg, rgba(6,22,42,.96), rgba(5,38,79,.94));
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.service-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.service-cta p {
  max-width: 720px;
  margin: 14px auto 24px;
  color: #dbe7f5;
}

.service-footer {
  padding: 20px clamp(18px, 5vw, 70px);
  color: #cbd5e1;
  background: #06162a;
  font-size: 14px;
}

.service-footer a {
  color: #fff;
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: #cbd3df;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(135deg, #041326, #06162a 58%, #082b55);
  background-size: 72px 72px, 72px 72px, auto;
}

.footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: center;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .ops-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .quick-contact,
  .metric-band,
  .service-grid,
  .service-hero,
  .service-content,
  .service-local,
  .category-grid,
  .telegram-section,
  .flow-grid,
  .hero-proof-grid,
  .journey-shell,
  .proof-strip,
  .social-proof-layout,
  .review-snapshots,
  .before-after-grid,
  .review-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .footer {
    flex-direction: column;
  }

  .ops-visual {
    min-height: 1040px;
  }

  .service-card {
    min-height: auto;
    overflow: visible;
  }

  .service-diagnostic {
    position: static;
    margin-top: 18px;
    border-radius: 14px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .ops-node.portal,
  .ops-node.os,
  .ops-node.telegram,
  .ops-node.laudo,
  .ops-node.etiqueta,
  .ops-node.recibo {
    right: 24px;
    left: 24px;
    transform: none;
  }

  .ops-node.portal { top: 24px; }
  .ops-node.os { top: 160px; }
  .ops-node.etiqueta { top: 296px; }
  .ops-node.telegram { top: 432px; bottom: auto; }
  .ops-node.laudo { top: 568px; bottom: auto; }
  .ops-node.recibo { top: 704px; bottom: auto; }

  .ops-core-live {
    top: auto;
    bottom: 42px;
    width: 150px;
    height: 150px;
  }

  .ops-event {
    display: none;
  }

  .hero-premium::before,
  .journey-shell::before,
  .console-path div::before {
    display: none;
  }

  .premium-console {
    min-height: auto;
  }

  .journey-shell {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow-x: visible;
    padding-right: 0;
    padding-left: 0;
    scroll-snap-type: none;
  }

  .journey-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .call-link,
  .button {
    width: 100%;
  }

  .telegram-benefits,
  .telegram-tabs {
    grid-template-columns: 1fr;
  }

  .hero-console {
    min-height: auto;
  }

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

  .console-path {
    grid-template-columns: 1fr;
  }

  .console-path div {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .category-card,
  .category-card img {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .brand-strip,
  .brand-logo-site,
  .hero-logo,
  .console-path::after,
  .console-path .active span,
  .ops-visual-live::before,
  .ops-visual-live::after,
  .ops-orbit::before,
  .ops-orbit::after,
  .ops-core-live,
  .ops-event { animation: none; }
  .reveal,
  .reactive-card,
  .category-card img {
    transition: none;
    transform: none;
  }
}


.portal-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  padding: clamp(48px, 8vw, 88px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(217,170,31,.18), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(135deg, var(--blue-deep), #071a2f);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.portal-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.portal-section p {
  max-width: 760px;
  color: #cbd5e1;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.portal-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.portal-panel div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  backdrop-filter: blur(10px);
}

.portal-panel strong,
.portal-panel span {
  display: block;
}

.portal-panel span {
  margin-top: 4px;
  color: #cbd5e1;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,251,255,.98)),
    radial-gradient(circle at 18% 18%, rgba(198,158,75,.16), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(24,85,142,.14), transparent 28%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(12,35,58,.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(245,249,255,.88)),
    radial-gradient(circle at 100% 0, rgba(198,158,75,.14), transparent 35%);
  box-shadow: 0 18px 45px rgba(11,31,51,.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 54px 20px 22px;
  color: var(--ink);
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(198,158,75,.36);
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(255,255,255,.82);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .portal-section {
    grid-template-columns: 1fr;
  }

  .portal-panel {
    grid-template-columns: 1fr;
  }

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

/* Jarvis max experience */
body.tech-mode {
  --bg: #031120;
  --ink: #f7fbff;
  --muted: #bfd0e3;
  --panel: rgba(8, 24, 44, .86);
  --glass: rgba(9, 30, 55, .68);
  --glass-strong: rgba(9, 30, 55, .9);
  background:
    radial-gradient(circle at 12% 8%, rgba(217,170,31,.18), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(42,129,211,.24), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px),
    #031120;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.tech-mode-toggle {
  border: 1px solid rgba(217,170,31,.36);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--blue-deep);
  background: rgba(255,255,255,.72);
  font-weight: 800;
  cursor: pointer;
}

body.tech-mode .tech-mode-toggle {
  color: #ffe9a8;
  background: rgba(8,24,44,.92);
}

.hero-tech-canvas,
.hero-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-tech-canvas {
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .55;
  mix-blend-mode: screen;
}

.hero-scanline {
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(217,170,31,.13) 49%, transparent 53%);
  animation: heroScan 6s ease-in-out infinite;
}

.hero-copy,
.hero-console {
  position: relative;
  z-index: 2;
}

.diagnostic-readout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.diagnostic-readout div,
.diagnostic-meter,
.journey-live,
.portal-demo,
.symptom-result,
.symptom-picker,
.preflight-checks,
.preflight-output,
.assistant-shell,
.cinema-case {
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  backdrop-filter: blur(14px);
}

.diagnostic-readout div {
  padding: 12px;
  border-radius: 8px;
}

.diagnostic-readout span,
.diagnostic-readout strong {
  display: block;
}

.diagnostic-readout span {
  color: #93a4ba;
  font-size: 11px;
  text-transform: uppercase;
}

.diagnostic-readout strong {
  color: #ffe9a8;
}

.diagnostic-meter {
  position: relative;
  display: grid;
  gap: 7px;
  margin: 14px 0;
  padding: 10px;
  border-radius: 8px;
}

.diagnostic-meter span {
  display: block;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(7,89,159,.12);
  overflow: hidden;
}

.diagnostic-meter span::after {
  content: "";
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #07599f, #d9aa1f);
  box-shadow: 0 0 20px rgba(217,170,31,.36);
}

.diagnostic-meter em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.symptom-lab {
  background:
    radial-gradient(circle at 18% 12%, rgba(217,170,31,.15), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(235,245,255,.82));
}

.symptom-layout,
.preflight-layout,
.radar-layout,
.assistant-shell {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.symptom-picker {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
}

.symptom-chip,
.assistant-options button {
  border: 1px solid rgba(7,89,159,.14);
  border-radius: 8px;
  padding: 13px 14px;
  text-align: left;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  font-weight: 800;
  cursor: pointer;
}

.symptom-chip.active,
.assistant-options button.active {
  border-color: rgba(217,170,31,.7);
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(255,233,168,.9), rgba(255,255,255,.84));
  box-shadow: 0 14px 32px rgba(217,170,31,.16);
}

.symptom-result {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
}

.result-head span,
.preflight-output span,
.assistant-summary span,
.cinema-screen strong,
.radar-copy span {
  display: block;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.result-head strong,
.assistant-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.result-gauge {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7,89,159,.12);
}

.result-gauge span {
  display: block;
  width: var(--score);
  height: 100%;
  background: linear-gradient(90deg, #07599f, #d9aa1f);
  transition: width .35s ease;
}

.result-checks,
.portal-demo-events {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-checks span,
.portal-demo-events span {
  padding: 8px 10px;
  border: 1px solid rgba(7,89,159,.12);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255,255,255,.72);
  font-weight: 800;
}

.journey-live {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 18px;
  border-radius: 8px;
  overflow: hidden;
}

.journey-live div:not(.journey-live-bar) {
  position: relative;
  z-index: 1;
}

.journey-live span,
.journey-live strong {
  display: block;
}

.journey-live span {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-live .current strong {
  color: var(--blue);
}

.journey-live-bar {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7,89,159,.12);
}

.journey-live-bar span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #07599f, #d9aa1f);
  animation: liveBar 4.5s ease-in-out infinite;
}

.portal-demo {
  display: grid;
  grid-template-columns: minmax(270px, 380px) minmax(0, 1fr);
  gap: 24px;
  margin-top: 30px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
}

.portal-demo-phone {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(3,18,32,.96), rgba(5,38,79,.82));
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.05);
}

.phone-top,
.assistant-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-top span,
.assistant-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #45ffad;
  box-shadow: 0 0 18px rgba(69,255,173,.75);
}

.phone-top em,
.assistant-header em {
  margin-left: auto;
  color: #93a4ba;
  font-size: 12px;
  font-style: normal;
}

.phone-card {
  padding: 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}

.phone-card.active {
  border-color: rgba(217,170,31,.55);
  background: linear-gradient(135deg, rgba(217,170,31,.18), rgba(255,255,255,.08));
}

.phone-card small,
.phone-card strong,
.phone-card span {
  display: block;
}

.phone-card span,
.portal-demo-copy p {
  color: #cbd5e1;
}

.portal-demo-copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.preflight-section,
.local-radar-section,
.assistant-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,251,255,.98)),
    radial-gradient(circle at 80% 18%, rgba(7,89,159,.11), transparent 32%);
}

.preflight-checks,
.preflight-output {
  padding: 20px;
  border-radius: 8px;
}

.preflight-checks {
  display: grid;
  gap: 12px;
}

.preflight-checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(7,89,159,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  font-weight: 800;
}

.preflight-checks input {
  accent-color: var(--gold-dark);
  width: 18px;
  height: 18px;
}

.preflight-output p {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.local-radar {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(217,170,31,.16) 0 2px, transparent 3px),
    linear-gradient(135deg, #06162a, #05264f);
  color: #fff;
}

.local-radar strong {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(217,170,31,.6);
  border-radius: 50%;
  background: rgba(5,38,79,.88);
  box-shadow: 0 0 42px rgba(217,170,31,.2);
}

.radar-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.radar-ring.r1 { width: 160px; height: 160px; }
.radar-ring.r2 { width: 270px; height: 270px; }
.radar-ring.r3 { width: 390px; height: 390px; }

.radar-sweep {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 210px;
  height: 210px;
  transform-origin: 0 0;
  background: conic-gradient(from 0deg, rgba(217,170,31,.36), transparent 42deg);
  animation: radarSweep 5s linear infinite;
}

.radar-point {
  position: absolute;
  z-index: 4;
  padding: 8px 10px;
  border: 1px solid rgba(217,170,31,.32);
  border-radius: 999px;
  color: #ffe9a8;
  background: rgba(3,18,32,.72);
  font-size: 12px;
  font-weight: 900;
}

.radar-point::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #45ffad;
  box-shadow: 0 0 14px rgba(69,255,173,.8);
}

.radar-point.p1 { top: 18%; left: 18%; }
.radar-point.p2 { top: 22%; right: 16%; }
.radar-point.p3 { bottom: 20%; left: 14%; }
.radar-point.p4 { right: 12%; bottom: 24%; }
.radar-point.p5 { left: 42%; bottom: 10%; }

.radar-copy {
  display: grid;
  gap: 14px;
}

.radar-copy article {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(7,89,159,.1);
}

.radar-copy strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
}

.cinema-case {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 18px;
  margin: 18px 0;
  padding: 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(217,170,31,.14), transparent 36%),
    linear-gradient(135deg, rgba(6,22,42,.98), rgba(5,38,79,.9));
  color: #fff;
}

.cinema-screen {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px),
    rgba(255,255,255,.05);
  background-size: 28px 28px;
}

.scan-dot {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #45ffad;
  box-shadow: 0 0 28px rgba(69,255,173,.8);
}

.cinema-screen p {
  max-width: 620px;
  margin-top: 24px;
  color: #dce8f6;
  font-size: 24px;
  line-height: 1.35;
}

.cinema-steps {
  display: grid;
  gap: 12px;
}

.cinema-steps article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.cinema-steps span,
.cinema-steps strong {
  display: block;
}

.cinema-steps span {
  color: #ffe9a8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.assistant-shell {
  padding: 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(217,170,31,.13), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(234,244,255,.86));
}

.assistant-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(155deg, #06162a, #05264f);
}

.assistant-chat {
  display: grid;
  gap: 10px;
  min-height: 168px;
  align-content: start;
}

.assistant-msg {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.45;
}

.assistant-msg.bot {
  background: rgba(255,255,255,.1);
}

.assistant-msg.user {
  justify-self: end;
  color: #06162a;
  background: #ffe9a8;
}

.assistant-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.assistant-summary {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
}

body.tech-mode .symptom-lab,
body.tech-mode .preflight-section,
body.tech-mode .local-radar-section,
body.tech-mode .assistant-section,
body.tech-mode .faq-section {
  background:
    radial-gradient(circle at 20% 12%, rgba(217,170,31,.1), transparent 32%),
    linear-gradient(135deg, rgba(3,17,32,.98), rgba(5,38,79,.86));
}

body.tech-mode .symptom-chip,
body.tech-mode .result-checks span,
body.tech-mode .preflight-checks label,
body.tech-mode .radar-copy article,
body.tech-mode .assistant-shell,
body.tech-mode .faq-item {
  color: #f7fbff;
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}

body.tech-mode .result-head strong,
body.tech-mode .assistant-summary strong,
body.tech-mode .radar-copy strong,
body.tech-mode .preflight-output p {
  color: #f7fbff;
}

@keyframes heroScan {
  0%, 100% { transform: translateY(-18%); opacity: 0; }
  35%, 60% { opacity: 1; }
  50% { transform: translateY(54%); }
}

@keyframes liveBar {
  0%, 100% { width: 48%; }
  50% { width: 76%; }
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .hero-premium {
    overflow: hidden;
  }

  .hero-tech-canvas {
    max-height: 980px;
  }

  .hero-proof-grid div {
    min-height: auto;
    padding: 14px;
  }

  .hero-proof-grid {
    display: none;
  }

  .trust-row {
    margin-top: 14px;
  }

  .console-card {
    display: none;
  }

  .symptom-layout,
  .preflight-layout,
  .radar-layout,
  .assistant-shell,
  .portal-demo,
  .cinema-case,
  .journey-live {
    grid-template-columns: 1fr;
  }

  .local-radar {
    min-height: 360px;
  }

  .diagnostic-readout,
  .assistant-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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