:root {
  color-scheme: dark;
  --bg: #03070a;
  --panel: rgba(7, 20, 26, 0.72);
  --panel-strong: rgba(9, 30, 38, 0.88);
  --line: rgba(123, 232, 216, 0.22);
  --line-strong: rgba(123, 232, 216, 0.48);
  --text: #f2fbfa;
  --muted: #91aaa8;
  --cyan: #42f5da;
  --green: #9bff72;
  --amber: #ffd166;
  --rose: #ff4d7d;
  --ink: #061014;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

img,
video,
svg {
  max-width: 100%;
}

html {
  height: 100%;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(66, 245, 218, 0.12), transparent 28rem),
    radial-gradient(circle at 80% 12%, rgba(255, 209, 102, 0.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.shell {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(123, 232, 216, 0.16);
  background: rgba(3, 7, 10, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
}

.brand-mark {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 0 0.65rem rgba(66, 245, 218, 0.22));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2.4vw, 2rem);
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0.35rem 0;
}

.nav-links button:hover,
.nav-links button.active {
  color: var(--cyan);
}

.top-action,
.primary-button,
.secondary-button,
.contact-form button {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--line-strong);
  padding: 0.75rem 1rem;
  background: rgba(66, 245, 218, 0.1);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.top-action {
  font-size: 0.86rem;
  white-space: nowrap;
}

.hero {
  position: relative;
  height: 100svh;
  display: grid;
  align-items: center;
  padding: 6.8rem clamp(1rem, 4vw, 3rem) 2rem;
  isolation: isolate;
  overflow: hidden;
}

#threatCanvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
  background: radial-gradient(circle at 50% 52%, rgba(25, 63, 70, 0.58), rgba(3, 7, 10, 0.18) 42%, rgba(3, 7, 10, 0.88) 74%);
}

.hero.dragging #threatCanvas {
  cursor: grabbing;
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 4px;
  mix-blend-mode: screen;
  opacity: 0.24;
}

.performance-optimized .topbar,
.performance-optimized .status-panel,
.performance-optimized .content-view,
.performance-optimized .visitor-ip {
  backdrop-filter: blur(8px);
}

.performance-optimized .topbar {
  background: rgba(3, 7, 10, 0.9);
}

.performance-optimized .scanlines {
  opacity: 0.12;
}

.mobile-lite .topbar,
.mobile-lite .status-panel,
.mobile-lite .content-view,
.mobile-lite .visitor-ip,
.low-power-mode .topbar,
.low-power-mode .status-panel,
.low-power-mode .content-view,
.low-power-mode .visitor-ip {
  backdrop-filter: none;
}

.mobile-lite .topbar,
.low-power-mode .topbar {
  background: rgba(3, 7, 10, 0.96);
}

.mobile-lite .content-view,
.low-power-mode .content-view {
  background:
    linear-gradient(135deg, rgba(7, 20, 26, 0.96), rgba(3, 7, 10, 0.86)),
    rgba(3, 7, 10, 0.92);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.34);
}

.mobile-lite .status-panel,
.low-power-mode .status-panel {
  background: rgba(7, 20, 26, 0.9);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.24);
}

.mobile-lite .visitor-ip,
.low-power-mode .visitor-ip {
  background: rgba(3, 7, 10, 0.78);
}

.mobile-lite .scanlines,
.low-power-mode .scanlines {
  opacity: 0.055;
}

.mobile-lite .brand-mark,
.low-power-mode .brand-mark {
  filter: none;
}

.mobile-lite .live-dot,
.mobile-lite .signal-list span,
.mobile-lite .radar span,
.low-power-mode .live-dot,
.low-power-mode .signal-list span,
.low-power-mode .radar span {
  box-shadow: 0 0 0.45rem rgba(66, 245, 218, 0.45);
}

.mobile-lite .icon-button:hover,
.mobile-lite .icon-button.active,
.low-power-mode .icon-button:hover,
.low-power-mode .icon-button.active {
  box-shadow: none;
}

.mobile-lite .radar::before,
.low-power-mode .radar::before {
  animation-duration: 10s;
}

.mobile-lite .hero.view-open .home-layer,
.low-power-mode .hero.view-open .home-layer {
  filter: none;
}

.hero-copy {
  width: min(42rem, 100%);
  margin-top: 0;
  transform: translateY(-3.5rem);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(3.7rem, 11vw, 9.8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
  width: min(35rem, 100%);
  color: #c9dbd9;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.visitor-ip {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  border: 1px solid rgba(123, 232, 216, 0.22);
  background: rgba(3, 7, 10, 0.5);
  padding: 0.65rem 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.visitor-ip strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.primary-button {
  background: var(--cyan);
  color: var(--ink);
}

.secondary-button {
  background: rgba(3, 7, 10, 0.42);
}

.status-panel {
  position: absolute;
  width: min(25rem, calc(100vw - 2rem));
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.left-panel {
  left: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 5vh, 3.4rem);
}

.right-panel {
  right: clamp(1rem, 4vw, 3rem);
  top: 8rem;
}

.panel-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 1rem;
  color: #dffbf6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 1rem var(--green);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.08fr;
}

.metric-grid article {
  min-width: 0;
  padding: 0.95rem 0.9rem;
  border-right: 1px solid var(--line);
}

.metric-grid article:last-child {
  border-right: 0;
}

.metric-grid span,
.signal-list {
  color: var(--muted);
  font-size: 0.72rem;
}

.metric-grid span {
  display: block;
  white-space: nowrap;
}

.metric-grid strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.7rem);
}

.signal-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 1rem 1rem;
}

.signal-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(123, 232, 216, 0.12);
}

.signal-list li:last-child {
  border-bottom: 0;
}

.signal-list span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0.9rem var(--rose);
}

.map-controls {
  position: absolute;
  z-index: 8;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vh, 3rem);
  display: flex;
  gap: 0.45rem;
}

.icon-button {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(7, 20, 26, 0.78);
  color: var(--muted);
  cursor: pointer;
}

.icon-button:hover,
.icon-button.active {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 1.4rem rgba(66, 245, 218, 0.18);
}

.view-stage {
  position: absolute;
  z-index: 7;
  inset: 6rem clamp(1rem, 4vw, 3rem) 5.8rem;
  pointer-events: none;
}

.content-view {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  contain: layout paint;
  padding: clamp(1rem, 3vw, 2.2rem);
  border: 1px solid rgba(123, 232, 216, 0.22);
  background:
    linear-gradient(135deg, rgba(7, 20, 26, 0.92), rgba(3, 7, 10, 0.72)),
    rgba(3, 7, 10, 0.86);
  box-shadow: 0 1.4rem 5rem rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(2rem) translateY(0.8rem) scale(0.985);
  transition:
    opacity 360ms ease,
    visibility 360ms ease,
    transform 540ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.content-view.active {
  content-visibility: auto;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.content-view:not(.active) {
  content-visibility: hidden;
}

.hero.view-open .home-layer {
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transform: translateY(-1.2rem) scale(0.98);
}

.performance-optimized .hero.view-open .home-layer,
.windows-runtime .hero.view-open .home-layer {
  filter: none;
}

.hero.view-open .view-stage {
  pointer-events: auto;
}

.about-view,
.operations-view,
.tips-view,
.contact-view {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
}

.section-heading {
  width: min(50rem, 100%);
  margin-bottom: 1.4rem;
}

h2 {
  max-width: 56rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4.7rem);
  line-height: 1;
}

.operation-strip,
.service-grid,
.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.operation-strip article,
.service-card,
.identity-grid article {
  min-width: 0;
  background: rgba(3, 7, 10, 0.86);
  padding: clamp(1.1rem, 2.8vw, 1.6rem);
}

.operation-strip span,
.identity-grid span {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
}

.operation-strip h3,
.service-card h3,
.identity-grid h3 {
  margin: 0.8rem 0 0.65rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.operation-strip p,
.service-card p,
.intel-copy p,
.identity-grid p,
.view-copy p,
.operation-intro p,
.people-intro p,
.person-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.operation-intro {
  align-self: start;
}

.operation-intro p {
  max-width: 42rem;
  margin: 0;
}

.operation-workbench {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.45rem);
  min-width: 0;
}

.operation-strip {
  position: relative;
  isolation: isolate;
}

.operation-strip::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 1.75rem;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 245, 218, 0.7), transparent);
  box-shadow: 0 0 0.95rem rgba(66, 245, 218, 0.28);
  pointer-events: none;
}

.operation-strip article {
  position: relative;
  z-index: 1;
}

.operation-strip article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 1.05rem;
  right: -0.75rem;
  z-index: 2;
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border: 1px solid rgba(66, 245, 218, 0.45);
  background: rgba(3, 7, 10, 0.92);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.8rem;
  box-shadow: 0 0 1rem rgba(66, 245, 218, 0.16);
}

.operation-panel {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.15fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.operation-deliverables,
.operation-dashboard,
.operation-differential {
  min-width: 0;
  background: rgba(3, 7, 10, 0.86);
  padding: clamp(1rem, 2.4vw, 1.35rem);
}

.operation-deliverables h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.operation-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.operation-chip-grid span {
  border: 1px solid rgba(123, 232, 216, 0.2);
  background: rgba(9, 30, 38, 0.42);
  color: var(--cyan);
  padding: 0.5rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.operation-dashboard {
  position: relative;
  display: grid;
  gap: 0.9rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(9, 30, 38, 0.58), rgba(3, 7, 10, 0.92)),
    rgba(3, 7, 10, 0.86);
  box-shadow: inset 0 0 0 1px rgba(66, 245, 218, 0.06);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.operation-dashboard::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 6%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(66, 245, 218, 0.42), transparent);
  box-shadow: 0 0 1rem rgba(66, 245, 218, 0.28);
  animation: dashboardScan 4.8s ease-in-out infinite;
  pointer-events: none;
}

.operation-dashboard:hover {
  box-shadow:
    inset 0 0 0 1px rgba(66, 245, 218, 0.18),
    0 1rem 2.4rem rgba(0, 0, 0, 0.22);
}

.dashboard-window-bar {
  display: flex;
  gap: 0.38rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(123, 232, 216, 0.14);
}

.dashboard-window-bar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0.8rem rgba(255, 77, 125, 0.5);
}

.dashboard-window-bar span:nth-child(2) {
  background: var(--amber);
  box-shadow: 0 0 0.8rem rgba(255, 209, 102, 0.42);
}

.dashboard-window-bar span:nth-child(3) {
  background: var(--green);
  box-shadow: 0 0 0.8rem rgba(155, 255, 114, 0.42);
}

.dashboard-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-heading h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.dashboard-heading p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.dashboard-live {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(155, 255, 114, 0.28);
  background: rgba(155, 255, 114, 0.08);
  color: var(--green);
  padding: 0.35rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-live::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0.8rem var(--green);
  animation: badgePulse 1.8s ease-in-out infinite;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.dashboard-metrics article {
  min-width: 0;
  border: 1px solid rgba(123, 232, 216, 0.16);
  background: rgba(3, 7, 10, 0.54);
  padding: 0.72rem;
}

.dashboard-metrics strong {
  display: block;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1;
}

.dashboard-metrics span {
  display: block;
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.dashboard-status {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
}

.dashboard-status::after {
  content: "";
  display: inline-block;
  width: 0.48rem;
  height: 1em;
  margin-left: 0.18rem;
  border-right: 1px solid var(--cyan);
  transform: translateY(0.16rem);
  animation: cursorBlink 1s steps(2, start) infinite;
}

.operation-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.operation-flow::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 245, 218, 0.68), transparent);
}

.operation-flow span {
  position: relative;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.operation-flow span::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0.9rem rgba(66, 245, 218, 0.32);
}

.dashboard-events {
  display: grid;
  gap: 0.45rem;
}

.dashboard-events button {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(123, 232, 216, 0.14);
  background: rgba(3, 7, 10, 0.48);
  color: var(--muted);
  padding: 0.62rem 0.7rem;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(0.5rem);
  animation: eventIn 420ms ease forwards;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.dashboard-events button:nth-child(2) {
  animation-delay: 80ms;
}

.dashboard-events button:nth-child(3) {
  animation-delay: 160ms;
}

.dashboard-events button:nth-child(4) {
  animation-delay: 240ms;
}

.dashboard-events button:nth-child(5) {
  animation-delay: 320ms;
}

.dashboard-events button:hover,
.dashboard-events button:focus-visible {
  border-color: var(--cyan);
  background: rgba(66, 245, 218, 0.08);
  outline: none;
  transform: translateY(-0.08rem);
}

.dashboard-events time {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
}

.event-badge {
  display: inline-flex;
  width: fit-content;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  animation: badgePulse 2.4s ease-in-out infinite;
}

.event-info {
  color: var(--cyan);
}

.event-alert {
  color: var(--amber);
}

.event-priority {
  color: var(--rose);
}

.event-action {
  color: var(--green);
}

.operation-differential {
  border-left: 0.22rem solid var(--cyan);
  background:
    linear-gradient(90deg, rgba(66, 245, 218, 0.12), rgba(3, 7, 10, 0.72)),
    rgba(3, 7, 10, 0.82);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.35;
}

.operation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.operation-actions .secondary-button {
  color: var(--cyan);
}

.operation-modal {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(3, 7, 10, 0.78);
  backdrop-filter: blur(12px);
  animation: modalFadeIn 180ms ease both;
}

.operation-modal[hidden] {
  display: none;
}

.operation-modal-card {
  position: relative;
  display: grid;
  width: min(48rem, 100%);
  max-width: 100%;
  max-height: min(84vh, 48rem);
  overflow-y: auto;
  overflow-x: hidden;
  gap: 0.9rem;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(7, 20, 26, 0.96), rgba(3, 7, 10, 0.9)),
    rgba(3, 7, 10, 0.94);
  padding: clamp(1.1rem, 3vw, 1.7rem);
  box-shadow: 0 1.4rem 5rem rgba(0, 0, 0, 0.56);
  animation: modalCardIn 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.operation-modal-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 3rem);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.operation-modal-card p,
.operation-modal-card li {
  color: var(--muted);
  line-height: 1.62;
}

.operation-modal-card ol,
.operation-modal-card ul {
  display: grid;
  gap: 0.68rem;
  margin: 0;
  padding-left: 1.25rem;
}

.operation-modal-card li::marker {
  color: var(--green);
  font-weight: 800;
}

.profile-modal-label {
  margin: 0;
  color: var(--cyan) !important;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operation-modal:has(.profile-modal-card) {
  z-index: 80;
  align-items: stretch;
  padding: clamp(0.75rem, 2vw, 1.4rem);
}

.profile-modal-card {
  width: 100%;
  max-height: none;
  min-height: calc(100svh - clamp(1.5rem, 4vw, 2.8rem));
  align-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(7, 20, 26, 0.98), rgba(3, 7, 10, 0.94)),
    radial-gradient(circle at 72% 32%, rgba(66, 245, 218, 0.12), transparent 24rem),
    rgba(3, 7, 10, 0.96);
}

.profile-modal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(123, 232, 216, 0.08) 100%),
    linear-gradient(180deg, transparent calc(100% - 1px), rgba(123, 232, 216, 0.06) 100%);
  background-size: 4rem 4rem;
  opacity: 0.22;
  pointer-events: none;
}

.profile-modal-card::after {
  content: "";
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(66, 245, 218, 0.44), transparent);
  box-shadow: 0 0 1.3rem rgba(66, 245, 218, 0.28);
  animation: dashboardScan 5.2s ease-in-out infinite;
  pointer-events: none;
}

.profile-modal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.42fr);
  width: 100%;
  max-width: 100%;
  gap: clamp(1.1rem, 4vw, 3rem);
  align-items: stretch;
}

.profile-modal-copy {
  display: grid;
  align-content: center;
  width: 100%;
  max-width: 100%;
  gap: clamp(0.9rem, 2vw, 1.2rem);
  min-width: 0;
}

.profile-modal-copy h3 {
  font-size: clamp(2rem, 6vw, 5.2rem);
  line-height: 1.05;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.profile-modal-copy > p[data-profile-description] {
  max-width: 62rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.profile-specialty-list {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.55rem !important;
  padding-left: 0 !important;
  list-style: none;
}

.profile-specialty-chip {
  display: inline-flex;
  border: 1px solid rgba(123, 232, 216, 0.22);
  background: rgba(9, 30, 38, 0.54);
  color: var(--cyan) !important;
  padding: 0.48rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  animation: chipGlow 3s ease-in-out infinite;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.profile-signal-panel {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(123, 232, 216, 0.2);
  background:
    linear-gradient(145deg, rgba(9, 30, 38, 0.62), rgba(3, 7, 10, 0.88)),
    rgba(3, 7, 10, 0.88);
  padding: clamp(1rem, 2.4vw, 1.25rem);
  box-shadow: inset 0 0 0 1px rgba(66, 245, 218, 0.06);
}

.profile-signal-panel::after {
  content: "";
  position: absolute;
  inset: -20% 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(66, 245, 218, 0.08), transparent);
  animation: photoScan 3.6s ease-in-out infinite;
  pointer-events: none;
}

.profile-signal-status {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  border: 1px solid rgba(155, 255, 114, 0.22);
  background: rgba(155, 255, 114, 0.07);
  color: var(--green) !important;
  padding: 0.45rem 0.58rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.profile-signal-status span {
  width: 0.46rem;
  height: 0.46rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0.8rem var(--green);
  animation: badgePulse 2s ease-in-out infinite;
}

.profile-signal-panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(123, 232, 216, 0.16);
  border: 1px solid rgba(123, 232, 216, 0.16);
}

.profile-signal-panel dl div {
  background: rgba(3, 7, 10, 0.72);
  padding: 0.85rem;
}

.profile-signal-panel dt {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-signal-panel dd {
  margin: 0.35rem 0 0;
  color: var(--text);
  line-height: 1.35;
}

.profile-terminal-lines {
  display: grid;
  gap: 0.6rem;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.profile-terminal-lines p {
  margin: 0;
  color: var(--muted);
  opacity: 0;
  transform: translateY(0.4rem);
  animation: eventIn 420ms ease forwards;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.profile-terminal-lines p:nth-child(2) {
  animation-delay: 100ms;
}

.profile-terminal-lines p:nth-child(3) {
  animation-delay: 200ms;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(66, 245, 218, 0.1);
  color: var(--cyan);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
}

@keyframes modalCardIn {
  from {
    opacity: 0;
    transform: translateY(0.9rem) scale(0.98);
  }
}

@keyframes dashboardScan {
  0%,
  100% {
    left: 6%;
    opacity: 0;
  }

  18%,
  72% {
    opacity: 1;
  }

  82% {
    left: 94%;
    opacity: 0;
  }
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

@keyframes badgePulse {
  50% {
    opacity: 0.58;
    filter: drop-shadow(0 0 0.45rem currentColor);
  }
}

@keyframes eventIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes peopleFieldDrift {
  to {
    transform: translate3d(0.6rem, -0.35rem, 0);
    opacity: 0.9;
  }
}

@keyframes photoScan {
  0% {
    transform: translateY(-120%);
  }

  100% {
    transform: translateY(120%);
  }
}

@keyframes chipGlow {
  50% {
    color: var(--green);
    box-shadow: 0 0 0.9rem rgba(66, 245, 218, 0.14);
  }
}

.about-view {
  align-items: start;
}

.people-section {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  gap: clamp(1rem, 2.6vw, 1.6rem);
  min-width: 0;
  isolation: isolate;
}

.people-section::before {
  content: "";
  position: absolute;
  inset: -1rem;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(66, 245, 218, 0.055) 32.2%, transparent 32.8% 68%, rgba(66, 245, 218, 0.035) 68.2%, transparent 68.8%),
    radial-gradient(circle at 70% 35%, rgba(66, 245, 218, 0.12), transparent 24rem);
  opacity: 0.72;
  pointer-events: none;
  animation: peopleFieldDrift 12s ease-in-out infinite alternate;
}

.people-intro {
  display: grid;
  gap: 0.8rem;
  max-width: 78rem;
}

.people-intro .section-kicker {
  margin-bottom: 0.2rem;
  color: var(--cyan);
}

.people-intro p {
  margin: 0;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.person-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1.15rem;
  min-width: 0;
  overflow: hidden;
  align-content: start;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  background:
    linear-gradient(155deg, rgba(9, 30, 38, 0.42), rgba(3, 7, 10, 0.9)),
    rgba(3, 7, 10, 0.86);
  box-shadow: inset 0 0 0 1px rgba(123, 232, 216, 0.04);
  opacity: 0;
  transform: translateY(1rem);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 260ms ease,
    opacity 480ms ease;
}

.person-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(66, 245, 218, 0.18), transparent 34%, rgba(155, 255, 114, 0.08)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.content-view.active .person-card {
  opacity: 1;
  transform: translateY(0);
}

.content-view.active .person-card:nth-child(2) {
  transition-delay: 80ms;
}

.content-view.active .person-card:nth-child(3) {
  transition-delay: 160ms;
}

.person-card:hover {
  background:
    linear-gradient(155deg, rgba(66, 245, 218, 0.12), rgba(9, 30, 38, 0.78)),
    rgba(3, 7, 10, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(66, 245, 218, 0.32),
    0 1.25rem 2.6rem rgba(0, 0, 0, 0.28),
    0 0 1.6rem rgba(66, 245, 218, 0.13);
  transition-delay: 0ms;
  transform: translateY(-0.28rem);
}

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

.person-photo {
  position: relative;
  width: min(13rem, 72vw);
  aspect-ratio: 2 / 3;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(123, 232, 216, 0.5);
  border-radius: 0.85rem;
  background: rgba(9, 30, 38, 0.62);
  box-shadow:
    0 0 0 0.45rem rgba(66, 245, 218, 0.045),
    0 1rem 2.2rem rgba(0, 0, 0, 0.28);
}

.person-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent, rgba(66, 245, 218, 0.16), transparent);
  box-shadow: inset 0 0 1.1rem rgba(66, 245, 218, 0.16);
  opacity: 0;
  transform: translateY(-120%);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.person-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease, filter 360ms ease;
}

.person-card:hover .person-photo::after {
  opacity: 1;
  animation: photoScan 1.45s ease-in-out;
}

.content-view.active .person-card .person-photo::after {
  opacity: 1;
  animation: photoScan 1.45s ease-in-out;
}

.content-view.active .person-card:nth-child(2) .person-photo::after {
  animation-delay: 120ms;
}

.content-view.active .person-card:nth-child(3) .person-photo::after {
  animation-delay: 240ms;
}

.content-view.active .person-card:hover .person-photo::after {
  animation-delay: 0ms;
}

.person-card:hover .person-photo img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.person-copy {
  display: flex;
  min-height: 0;
  height: 100%;
  flex-direction: column;
  gap: 0.75rem;
}

.person-heading {
  display: grid;
  gap: 0.48rem;
  text-align: center;
}

.person-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  line-height: 1.12;
}

.person-role {
  margin: 0;
  color: var(--cyan) !important;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.person-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-self: center;
  gap: 0.4rem;
  margin: 0;
  border: 1px solid rgba(155, 255, 114, 0.2);
  background: rgba(155, 255, 114, 0.06);
  color: var(--green) !important;
  padding: 0.3rem 0.48rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.person-status span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0.8rem var(--green);
  animation: badgePulse 2s ease-in-out infinite;
}

.person-terminal {
  margin: 0;
  color: var(--cyan) !important;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.person-terminal::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 1em;
  margin-left: 0.16rem;
  border-right: 1px solid var(--cyan);
  transform: translateY(0.16rem);
  animation: cursorBlink 1s steps(2, start) infinite;
}

.person-copy p:not(.person-role) {
  margin: 0;
  font-size: 0.94rem;
}

.person-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.4rem;
}

.person-specialties span {
  display: inline-flex;
  max-width: 100%;
  padding: 0.34rem 0.5rem;
  border: 1px solid rgba(123, 232, 216, 0.2);
  background: rgba(9, 30, 38, 0.48);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.person-card:hover .person-specialties span {
  border-color: rgba(66, 245, 218, 0.36);
  box-shadow: 0 0 0.65rem rgba(66, 245, 218, 0.08);
  animation: chipGlow 2.6s ease-in-out infinite;
}

.profile-button {
  width: fit-content;
  max-width: 100%;
  margin-top: 0.15rem;
  border: 1px solid var(--line-strong);
  background: rgba(66, 245, 218, 0.1);
  color: var(--cyan);
  padding: 0.62rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.profile-button:hover,
.profile-button:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.people-section blockquote {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border-left: 0.22rem solid var(--cyan);
  background:
    linear-gradient(90deg, rgba(66, 245, 218, 0.12), rgba(3, 7, 10, 0.72)),
    rgba(3, 7, 10, 0.82);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.3vw, 1.65rem);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(0.8rem);
  box-shadow:
    inset 0 0 0 1px rgba(123, 232, 216, 0.12),
    0 0 1.4rem rgba(66, 245, 218, 0.08);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 220ms ease;
}

.content-view.active .people-section blockquote {
  opacity: 1;
  transform: translateY(0);
}

.people-section blockquote span {
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

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

.service-card {
  width: 100%;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease, outline-color 220ms ease, transform 220ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  background:
    linear-gradient(135deg, rgba(66, 245, 218, 0.1), rgba(9, 30, 38, 0.74)),
    rgba(3, 7, 10, 0.9);
  outline: 1px solid var(--cyan);
  outline-offset: -1px;
  transform: translateY(-0.12rem);
}

.tip-card h3,
.service-card p {
  grid-column: 1 / -1;
}

.tip-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.3vw, 1.7rem);
  line-height: 1.1;
}

.service-icon {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--cyan);
  font-size: 1.2rem;
}

.intel-view {
  display: grid;
  grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.intel-visual {
  display: grid;
  min-height: 24rem;
  place-items: center;
}

.intel-hero-wrapper {
  display: contents;
}

.radar {
  position: relative;
  overflow: hidden;
  width: min(24rem, 78vw);
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 18%, rgba(66, 245, 218, 0.08) 19%, transparent 20% 38%, rgba(155, 255, 114, 0.08) 39%, transparent 40% 58%, rgba(66, 245, 218, 0.08) 59%, transparent 60%);
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.radar::before {
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, rgba(66, 245, 218, 0.42), rgba(66, 245, 218, 0.02) 24%, transparent 25%);
  animation: rotateRadar 6s linear infinite;
}

.radar::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), var(--line-strong) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), var(--line-strong) 50%, transparent calc(50% + 0.5px));
}

.radar-dot {
  position: absolute;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.radar-pulse {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}

.radar-dot.danger .radar-pulse { background: var(--rose); box-shadow: 0 0 1.3rem var(--rose); }
.radar-dot.warning .radar-pulse { background: var(--amber); box-shadow: 0 0 1.3rem var(--amber); }
.radar-dot.safe .radar-pulse { background: var(--green); box-shadow: 0 0 1.3rem var(--green); }

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

.intel-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 1.8rem 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.intel-copy div {
  background: var(--panel-strong);
  padding: 1rem;
}

.intel-copy dt {
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 800;
}

.intel-copy dd {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

/* Secciones Full-Width Inteligencia */
.intel-console-section,
.intel-killchain,
.intel-mitre,
.intel-flow-section,
.intel-cta {
  grid-column: 1 / -1;
  margin-top: 2rem;
  min-width: 0;
}

.intel-console-box {
  height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.intel-console-box .profile-terminal-lines {
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
}

.killchain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  width: 100%;
  max-width: 100%;
  gap: 1rem;
}

.mitre-grid {
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  width: 100%;
  max-width: 100%;
}

.intel-counter {
  display: block;
  margin-top: 0.5rem;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
}

.intel-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.intel-flow article {
  background: rgba(3, 7, 10, 0.86);
  padding: clamp(1rem, 2.4vw, 1.45rem);
  opacity: 0.35;
  transform: translateY(1rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.intel-flow article.active { opacity: 1; transform: translateY(0); }
.intel-flow span { color: var(--amber); font-family: var(--font-display); font-size: 0.86rem; font-weight: 700; }
.intel-flow h3 { margin: 0.8rem 0 0.65rem; font-size: clamp(1.1rem, 2vw, 1.45rem); }
.intel-flow p { color: var(--muted); line-height: 1.65; margin: 0; }

.tips-view {
  align-items: start;
}

.tips-intro p:not(.section-kicker),
.tip-card span:last-child,
.tip-detail p,
.tip-detail li {
  color: var(--muted);
  line-height: 1.62;
}

.tips-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.tips-summary span,
.tip-label,
.tip-audience {
  border: 1px solid rgba(123, 232, 216, 0.2);
  background: rgba(9, 30, 38, 0.42);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tips-summary span {
  padding: 0.55rem 0.7rem;
}

.tips-panel,
.tips-list {
  display: grid;
  gap: 1px;
  min-width: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.tip-card,
.tip-detail {
  min-width: 0;
  background: rgba(3, 7, 10, 0.86);
  padding: clamp(1rem, 2.5vw, 1.45rem);
}

.tips-panel {
  align-self: start;
}

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

.tip-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem 0.85rem;
  align-content: start;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.featured-tip {
  grid-column: 1 / -1;
  border-left: 0.24rem solid var(--green);
  background:
    linear-gradient(135deg, rgba(66, 245, 218, 0.12), rgba(3, 7, 10, 0.82)),
    rgba(3, 7, 10, 0.92);
}

.tip-card:hover,
.tip-card:focus-visible {
  background:
    linear-gradient(135deg, rgba(66, 245, 218, 0.1), rgba(9, 30, 38, 0.74)),
    rgba(3, 7, 10, 0.9);
  outline: 1px solid var(--cyan);
  outline-offset: -1px;
}

.tip-label,
.tip-audience {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0.38rem 0.55rem;
}

.tip-label {
  grid-column: 1 / -1;
}

.tip-card strong,
.tip-detail h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.3vw, 1.7rem);
  line-height: 1.1;
}

.tip-card strong,
.tip-card span:last-child {
  grid-column: 1 / -1;
}

.tip-card span:last-child {
  display: block;
  font-size: 0.95rem;
}

.tips-details {
  display: grid;
}

.tips-list[hidden],
.tips-details[hidden],
.news-list[hidden],
.news-details[hidden],
.tip-detail[hidden] {
  display: none;
}

.tip-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--green);
  font-size: 1.05rem;
}

.tip-audience {
  color: var(--amber);
}

.tip-detail {
  display: grid;
  gap: 0.9rem;
}

.tip-detail h3 {
  font-size: clamp(1.7rem, 4vw, 3.4rem);
}

.tip-detail p {
  margin-bottom: 0;
}

.tip-detail ol {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.25rem;
  counter-reset: tip-step;
}

.tip-detail li::marker {
  color: var(--green);
  font-weight: 800;
}

.tip-back {
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(66, 245, 218, 0.1);
  color: var(--cyan);
  padding: 0.7rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.tip-back:hover,
.tip-back:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.news-view {
  align-items: start;
}

.news-panel {
  align-self: start;
}

.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: rgba(3, 7, 10, 0.86);
  padding: clamp(0.85rem, 2vw, 1rem);
}

.news-filter,
.news-source-link {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: rgba(66, 245, 218, 0.1);
  color: var(--cyan);
  padding: 0.62rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.news-filter:hover,
.news-filter:focus-visible,
.news-filter.active,
.news-source-link:hover,
.news-source-link:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 0.45rem;
}

.news-card-meta span {
  border: 1px solid rgba(123, 232, 216, 0.16);
  background: rgba(9, 30, 38, 0.36);
  color: var(--muted);
  padding: 0.35rem 0.48rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.news-empty {
  margin: 0;
  background: rgba(3, 7, 10, 0.86);
  color: var(--muted);
  padding: clamp(1rem, 2.5vw, 1.45rem);
  line-height: 1.55;
}

.news-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.news-meta div {
  min-width: 0;
  background: var(--panel-strong);
  padding: 0.85rem;
}

.news-meta dt {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-meta dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.news-source-link {
  width: fit-content;
  max-width: 100%;
  text-decoration: none;
}

.consulting-view {
  align-items: start;
}

.consulting-list {
  max-height: min(63vh, 42rem);
  overflow: auto;
}

.exposure-view {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.exposure-panel {
  align-self: start;
}

.exposure-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(66, 245, 218, 0.12), rgba(3, 7, 10, 0.82)),
    rgba(3, 7, 10, 0.92);
  border-left: 0.24rem solid var(--green);
  padding: clamp(1rem, 2.5vw, 1.45rem);
}

.exposure-counter span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exposure-counter strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1;
  white-space: nowrap;
}

.exposure-notice p,
.exposure-note,
.exposure-recommendations li {
  color: var(--muted);
  line-height: 1.62;
}

.exposure-notice,
.exposure-note,
.exposure-recommendations {
  margin: 0;
  background: rgba(9, 30, 38, 0.36);
  border: 1px solid rgba(123, 232, 216, 0.16);
  padding: clamp(1rem, 2.5vw, 1.45rem);
}

.exposure-notice p,
.exposure-note {
  margin: 0;
}

.exposure-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.exposure-link {
  text-decoration: none;
}

.exposure-link:hover,
.exposure-link:focus-visible {
  color: inherit;
}

.exposure-recommendations h3 {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.3vw, 1.7rem);
}

.exposure-recommendations ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.15rem;
}

.exposure-recommendations li::marker {
  color: var(--green);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.quote-form {
  align-content: start;
  max-height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  contain: layout paint;
  padding-right: 0.25rem;
  scrollbar-color: rgba(66, 245, 218, 0.45) rgba(9, 30, 38, 0.44);
}

.quote-section {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(123, 232, 216, 0.2);
  background: rgba(3, 7, 10, 0.34);
  padding: clamp(0.9rem, 2.4vw, 1.25rem);
}

.mobile-lite .quote-section,
.low-power-mode .quote-section {
  content-visibility: auto;
  contain: layout paint;
  contain-intrinsic-size: 16rem;
}

.quote-section legend {
  padding: 0 0.35rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
}

.quote-grid,
.scope-grid,
.choice-grid {
  display: grid;
  gap: 0.75rem;
}

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

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

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #cbe0dd;
  font-size: 0.82rem;
  font-weight: 700;
}

.choice-grid label,
.bot-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  border: 1px solid rgba(123, 232, 216, 0.16);
  background: rgba(9, 30, 38, 0.36);
  padding: 0.7rem 0.75rem;
}

.choice-grid label input[type="checkbox"],
.bot-check input[type="checkbox"] {
  flex: 0 0 1.05rem;
  align-self: flex-start;
  margin-top: 0.1rem;
}

.bot-check,
.form-status {
  grid-column: 1 / -1;
}

.bot-trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.bot-check {
  color: #cbe0dd;
  line-height: 1.45;
}

.other-field {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--rose);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(123, 232, 216, 0.24);
  background: rgba(9, 30, 38, 0.7);
  color: var(--text);
  padding: 0.85rem 0.9rem;
  outline: none;
}

.mobile-lite .contact-form input,
.mobile-lite .contact-form select,
.mobile-lite .contact-form textarea,
.low-power-mode .contact-form input,
.low-power-mode .contact-form select,
.low-power-mode .contact-form textarea {
  background: rgba(9, 30, 38, 0.86);
}

.contact-form input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  padding: 0;
  accent-color: var(--green);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(66, 245, 218, 0.12);
}

.contact-form button {
  grid-column: 1 / -1;
  background: var(--green);
  color: var(--ink);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 0.7rem 1rem;
  }

  .top-action {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero {
    height: 100svh;
    align-items: center;
    padding-top: 8.4rem;
    padding-bottom: 1rem;
  }

  .hero-copy {
    margin-top: 0;
  }

  .right-panel {
    top: auto;
    right: auto;
    left: 1rem;
    bottom: 8rem;
  }

  .map-controls {
    right: 1rem;
    bottom: 1rem;
  }

  .view-stage {
    inset: 8rem 1rem 4.8rem;
  }

  .content-view,
  .about-view,
  .operations-view,
  .tips-view,
  .exposure-view,
  .contact-view,
  .intel-view {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .operation-strip,
  .service-grid,
  .identity-grid,
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operation-strip,
  .operation-panel {
    grid-template-columns: 1fr;
  }

  .intel-hero-wrapper {
    display: grid;
    gap: clamp(1.4rem, 4vw, 3.5rem);
  }
  .intel-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

  .operation-strip::before {
    top: 1rem;
    bottom: 1rem;
    left: 1.35rem;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(66, 245, 218, 0.7), transparent);
  }

  .operation-strip article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -0.75rem;
    left: 1rem;
    content: "↓";
  }

  h2 {
    font-size: clamp(1.9rem, 6vw, 3.4rem);
  }
}

@media (min-width: 981px) and (max-height: 900px) {
  .hero-copy {
    margin-top: 0;
    transform: translateY(-4rem);
  }

  h1 {
    font-size: clamp(3.4rem, 9vw, 7rem);
  }

  .left-panel {
    bottom: 0.75rem;
  }

  .right-panel {
    top: 6.5rem;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0.8rem 0.9rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.9rem;
    overflow: visible;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .top-action {
    width: 2.65rem;
    overflow: hidden;
    padding: 0;
    gap: 0;
    color: transparent;
    font-size: 0;
  }

  .top-action span {
    color: var(--cyan);
    font-size: 1rem;
  }

  .hero {
    display: grid;
    align-items: center;
    padding-top: 8.8rem;
    padding-bottom: 1rem;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .visitor-ip {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .status-panel {
    display: none;
  }

  .map-controls {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
  }

  .view-stage {
    inset: 8.6rem 1rem 4.8rem;
  }

  .content-view {
    padding: 1rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 1rem;
  }

  .metric-grid,
  .operation-strip,
  .service-grid,
  .identity-grid,
  .people-grid,
  .tips-list,
  .exposure-links,
  .news-meta,
  .intel-copy dl,
  .contact-form,
  .quote-grid,
  .scope-grid,
  .choice-grid,
  .killchain-grid,
  .mitre-grid {
    grid-template-columns: 1fr;
  }
  .intel-flow { grid-template-columns: 1fr; }

  .operation-actions {
    display: grid;
  }

  .dashboard-heading {
    display: grid;
  }

  .operation-flow {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .operation-flow::before {
    top: 0.35rem;
    bottom: 0.35rem;
    left: 0.35rem;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(66, 245, 218, 0.68), transparent);
  }

  .operation-flow span {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .dashboard-events button {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .dashboard-events time {
    grid-row: span 2;
  }

  .operation-modal {
    align-items: start;
    padding: 1rem;
  }

  .operation-modal:has(.profile-modal-card) {
    padding: 0.75rem;
  }

  .profile-modal-card {
    min-height: calc(100svh - 1.5rem);
    overflow-y: auto;
    overflow-x: hidden;
    align-content: start;
  }

  .profile-modal-grid {
    grid-template-columns: 1fr;
  }

  .profile-modal-copy h3 {
    padding-right: 2.4rem;
    font-size: clamp(2rem, 12vw, 3.4rem);
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .metric-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-grid article:last-child {
    border-bottom: 0;
  }

  .choice-grid label,
  .bot-check {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .consulting-list {
    max-height: none;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scanlines {
    display: none;
  }

  .radar::before {
    animation: none !important;
  }

  .hero-copy,
  .status-panel,
  .content-view,
  .person-card {
    transform: none !important;
  }
}

/* ==========================================================================
   MODAL METODOLOGÍA (PANTALLA COMPLETA)
   ========================================================================== */
div[data-operation-modal] {
  padding: 0 !important;
}

.fullscreen-methodology-modal {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: clamp(2rem, 5vw, 4rem) !important;
}

.fullscreen-methodology-modal .modal-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.methodology-fullscreen-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 84rem;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.methodology-header {
  animation: eventIn 0.6s ease forwards;
}

.methodology-header h3 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 0.5rem 0 1.5rem;
}

.methodology-header p:not(.tip-audience) {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  color: var(--muted);
}

.methodology-steps ol {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: methodology-step;
}

.methodology-steps li {
  background: rgba(3, 7, 10, 0.65);
  border: 1px solid var(--line);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0;
  transform: translateX(2rem);
  animation: slideInStep 0.5s ease forwards;
  animation-delay: calc(var(--step-delay) * 0.08s + 0.1s);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.methodology-steps li:hover {
  background: rgba(66, 245, 218, 0.06);
  border-color: var(--cyan);
  box-shadow: 0 0 1.2rem rgba(66, 245, 218, 0.12);
  transform: translateX(0.5rem);
}

.methodology-steps li::before {
  content: "0" counter(methodology-step);
  counter-increment: methodology-step;
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  opacity: 0.8;
}

@keyframes slideInStep {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .methodology-fullscreen-grid {
    grid-template-columns: 1fr;
    align-content: start;
    overflow-y: auto;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
    gap: 2.5rem;
  }
}
