@media (max-width: 768px) {
  .matrix-feature-close-btn {
    display: none;
    position: relative;
    margin: 2rem auto 0 auto;
    width: 90%;
    max-width: 340px;
    height: 44px;
    border-radius: 999px;
    border: 1.5px solid color-mix(in srgb, var(--sol-accent, #39ff14) 42%, transparent);
    background: rgba(5, 14, 25, 0.86);
    color: color-mix(in srgb, var(--sol-accent, #39ff14) 84%, #f3fbff 16%);
    font-size: 1.1rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 18px color-mix(in srgb, var(--sol-accent, #39ff14) 18%, transparent);
    transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s, background 0.18s;
  }
  .matrix-feature-panel.focused .matrix-feature-close-btn {
    display: flex !important;
  }
  .matrix-feature-close-btn:hover,
  .matrix-feature-close-btn:focus-visible {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--sol-accent, #39ff14) 72%, transparent);
    background: rgba(8, 20, 35, 0.96);
    box-shadow: 0 0 22px color-mix(in srgb, var(--sol-accent, #39ff14) 26%, transparent);
  }
}
/* XPTO Security - Stylesheet */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap");

/* CSS Variables */
:root {
  --background: hsl(195, 50%, 8%);
  --foreground: hsl(180, 20%, 95%);
  --card: hsl(195, 45%, 12%);
  --card-foreground: hsl(180, 20%, 95%);
  --primary: hsl(45, 100%, 50%);
  --primary-foreground: hsl(195, 50%, 8%);
  --secondary: hsl(195, 35%, 20%);
  --secondary-foreground: hsl(180, 20%, 95%);
  --muted: hsl(195, 30%, 25%);
  --muted-foreground: hsl(180, 15%, 70%);
  --border: hsl(195, 30%, 20%);
  --radius: 0.5rem;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Work Sans', ui-sans-serif, system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* PRIMEIRA SESSAO */
  /* ===== HERO WRAPPER ===== */
  .hero {
    background: #020d1a;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== GRID BACKGROUND ===== */
  .hero__grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0, 255, 180, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 255, 180, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridShift 20s linear infinite;
    pointer-events: none;
  }

  @keyframes gridShift {
    0%   { background-position: 0 0; }
    100% { background-position: 40px 40px; }
  }

  /* ===== SCANLINES ===== */
  .hero__scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0, 255, 180, 0.015) 3px,
      rgba(0, 255, 180, 0.015) 4px
    );
    pointer-events: none;
  }

  /* ===== GLOW ORBS ===== */
  .hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
  }
  .hero__orb--green {
    width: 400px;
    height: 400px;
    background: #00ffb4;
    top: -120px;
    left: -100px;
    animation: orbFloat 8s ease-in-out infinite;
  }
  .hero__orb--blue {
    width: 280px;
    height: 280px;
    background: #0055ff;
    bottom: -80px;
    right: -60px;
    animation: orbFloat 10s ease-in-out infinite reverse;
  }

  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(20px, -30px); }
  }

  /* ===== CORNER BRACKETS ===== */
  .hero__corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border-color: #00ffb4;
    border-style: solid;
    opacity: 0.5;
    pointer-events: none;
  }
  .hero__corner--tl { top: 16px;    left: 16px;  border-width: 2px 0 0 2px; }
  .hero__corner--tr { top: 16px;    right: 16px; border-width: 2px 2px 0 0; }
  .hero__corner--bl { bottom: 16px; left: 16px;  border-width: 0 0 2px 2px; }
  .hero__corner--br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

  /* ===== STATUS BAR ===== */
  .hero__status {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 255, 180, 0.45);
    white-space: nowrap;
  }
  .hero__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ffb4;
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 180, 0.4); }
    50%       { opacity: 0.6; box-shadow: 0 0 0 5px rgba(0, 255, 180, 0); }
  }

  /* ===== LEFT SECTION MENU ===== */
  .hero-side-menu {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 280px;
    padding: 12px 10px;
    border-radius: 14px;
    border: 1px solid rgba(0, 255, 180, 0.24);
    background:
      linear-gradient(180deg, rgba(3, 18, 30, 0.9), rgba(2, 12, 22, 0.92)),
      repeating-linear-gradient(0deg, rgba(0, 255, 180, 0.03), rgba(0, 255, 180, 0.03) 1px, transparent 1px, transparent 7px);
    box-shadow:
      0 16px 45px rgba(0, 0, 0, 0.45),
      inset 0 0 22px rgba(0, 255, 180, 0.08);
    backdrop-filter: blur(10px);
    transition: width 0.28s ease, padding 0.28s ease, opacity 0.28s ease, top 0.28s ease, bottom 0.28s ease, transform 0.28s ease;
  }

  .hero-side-menu.is-compact {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 52px;
    padding: 10px 6px;
    opacity: 0.82;
  }

  .hero-side-menu.is-compact:hover,
  .hero-side-menu.is-compact:focus-within {
    width: 280px;
    padding: 12px 10px;
    opacity: 1;
  }

  .hero-side-menu.is-compact.is-click-collapsed:hover,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within {
    width: 52px;
    padding: 10px 6px;
    opacity: 0.82;
  }

  .hero-side-menu__title {
    margin-bottom: 8px;
    padding: 0 8px 8px;
    border-bottom: 1px solid rgba(0, 255, 180, 0.2);
    font-family: 'Share Tech Mono', monospace;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 255, 180, 0.75);
  }

  .hero-side-menu.is-compact .hero-side-menu__title {
    display: none;
  }

  .hero-side-menu.is-compact:hover .hero-side-menu__title,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__title {
    display: block;
  }

  .hero-side-menu.is-compact.is-click-collapsed:hover .hero-side-menu__title,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within .hero-side-menu__title {
    display: none;
  }

  .hero-side-menu__link {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 3px 8px;
    border-radius: 9px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(215, 248, 239, 0.74);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .hero-side-menu__link span:last-child {
    max-width: 100%;
    opacity: 1;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.22s ease, opacity 0.22s ease;
  }

  .hero-side-menu.is-compact .hero-side-menu__link {
    justify-content: center;
    padding: 5px;
    min-height: 24px;
  }

  .hero-side-menu.is-compact:hover .hero-side-menu__link,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__link {
    justify-content: flex-start;
    padding: 3px 8px;
    min-height: 30px;
  }

  .hero-side-menu.is-compact.is-click-collapsed:hover .hero-side-menu__link,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within .hero-side-menu__link {
    justify-content: center;
    padding: 5px;
    min-height: 24px;
  }

  .hero-side-menu.is-compact .hero-side-menu__link span:last-child {
    max-width: 0;
    opacity: 0;
  }

  .hero-side-menu.is-compact:hover .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__link span:last-child {
    max-width: 100%;
    opacity: 1;
  }

  .hero-side-menu.is-compact.is-click-collapsed:hover .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within .hero-side-menu__link span:last-child {
    max-width: 0;
    opacity: 0;
  }

  .hero-side-menu__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(132, 151, 162, 0.55);
    box-shadow: 0 0 0 0 rgba(0, 255, 180, 0);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
  }

  .hero-side-menu__link:hover,
  .hero-side-menu__link.active {
    background: rgba(0, 255, 180, 0.13);
    color: #e7fff8;
    transform: translateX(3px);
  }

  .hero-side-menu__link:hover .hero-side-menu__dot,
  .hero-side-menu__link.active .hero-side-menu__dot {
    background: #00ffb4;
    box-shadow: 0 0 10px rgba(0, 255, 180, 0.55);
  }

  /* ===== MAIN CONTENT ===== */
  .hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 24px 56px;
    max-width: 680px;
    width: 100%;
  }

  /* ===== LOGO ===== */
  .hero__logo-wrap {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
  }
  .hero__logo {
    height: 70px;
    /* filter: brightness(0) invert(1); */
    filter: drop-shadow(0 0 5px #FFFFFF) drop-shadow(0 0 2px #ffffff);
  }
  .hero__logo-fallback {
    display: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
  }
  .hero__logo-fallback span {
    color: #00ffb4;
  }

  /* ===== HEADLINE ===== */
  .hero__title {
    font-size: clamp(34px, 6.5vw, 66px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
  }
  .hero__title-accent {
    color: #00ffb4;
    position: relative;
    display: inline-block;
  }
  .hero__title-accent::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 0;
    color: #ff0066;
    opacity: 0;
    animation: glitch 5s infinite;
  }

  @keyframes glitch {
    0%, 88%, 100% { opacity: 0; clip-path: none; transform: none; }
    90%  { opacity: 0.5; clip-path: inset(40% 0 50% 0); transform: translate(-2px); }
    93%  { clip-path: inset(70% 0 15% 0); transform: translate(2px); }
    96%  { opacity: 0; }
  }

  /* ===== SUBTITLE ===== */
  .hero__sub {
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.3;
    margin-bottom: 5rem;
    font-weight: 400;
  }

  /* ===== CTA BUTTONS ===== */
  .hero__cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .btn-cyber {
    position: relative;
    padding: 14px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.25s;
    outline: none;
  }

  /* Primary CTA */
  .btn-cyber--primary {
    color: #020d1a;
  }
  .btn-cyber--primary .btn__bg {
    position: absolute;
    inset: 0;
    background: #00ffb4;
    clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
    transition: all 0.25s;
  }
  .btn-cyber--primary .btn__scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
    clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
    transform: translateX(-100%);
    transition: transform 0.4s;
  }
  .btn-cyber--primary:hover .btn__scan {
    transform: translateX(100%);
  }
  .btn-cyber--primary:hover .btn__bg {
    box-shadow: 0 0 28px rgba(0, 255, 180, 0.6), 0 0 60px rgba(0, 255, 180, 0.2);
  }
  .btn-cyber--primary .btn__label {
    position: relative;
    z-index: 1;
  }
  .btn-cyber--primary .btn__corner {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #020d1a;
    z-index: 2;
  }
  .btn-cyber--primary .btn__corner--tl { top: 0; left: 0; }
  .btn-cyber--primary .btn__corner--br { bottom: 0; right: 0; }

  /* Secondary CTA */
  .btn-cyber--secondary {
    color: #00ffb4;
  }
  .btn-cyber--secondary .btn__border {
    position: absolute;
    inset: 0;
  }
  .btn-cyber--secondary .btn__border::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid rgba(0, 255, 180, 0.4);
    clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
    transition: border-color 0.25s;
  }
  .btn-cyber--secondary:hover .btn__border::before {
    border-color: #00ffb4;
  }
  .btn-cyber--secondary .btn__glow {
    position: absolute;
    inset: 0;
    background: rgba(0, 255, 180, 0.06);
    clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
    opacity: 0;
    transition: opacity 0.25s;
  }
  .btn-cyber--secondary:hover .btn__glow {
    opacity: 1;
  }
  .btn-cyber--secondary:hover {
    box-shadow: 0 0 20px rgba(0, 255, 180, 0.15);
  }
  .btn-cyber--secondary .btn__label {
    position: relative;
    z-index: 1;
  }
  .btn-cyber--secondary .btn__corner {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ffb4;
    z-index: 2;
    opacity: 0.6;
  }
  .btn-cyber--secondary .btn__corner--tl {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
  .btn-cyber--secondary .btn__corner--br {
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }

  /* ===== THREAT METER PANEL ===== */
  .threat-panel {
    background: rgba(0, 255, 180, 0.03);
    border: 1px solid rgba(0, 255, 180, 0.1);
    padding: 20px 24px;
    position: relative;
  }
  .threat-panel::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 24px;
    width: 60px;
    height: 2px;
    background: #00ffb4;
  }

  .threat-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .threat-panel__title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    color: rgba(0, 255, 180, 0.6);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .threat-panel__live {
    display: flex;
    align-items: center;
    gap: 5px;
    /* font-family: 'Share Tech Mono', monospace; */
    font-weight: 600;
    font-size: 12px;
    color: #ff4466;
    letter-spacing: 0.1em;
  }
  .threat-panel__live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff4466;
    animation: pulse 1s infinite;
  }

  .threat-panel__bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .tbar {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .tbar__label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    width: 190px;
    text-align: left;
    flex-shrink: 0;
  }
  .tbar__track {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: visible;
  }
  .tbar__fill {
    height: 100%;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
  }
  .tbar__fill::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: inherit;
    box-shadow: 0 0 8px currentColor;
  }
  .tbar__val {
    font-family: 'Share Tech Mono', monospace;
    font-size: 15px;
    width: 36px;
    text-align: right;
    flex-shrink: 0;
  }

  /* ===== LIVE TICKER ===== */
  .hero__ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(0, 255, 180, 0.03);
    border-top: 1px solid rgba(0, 255, 180, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero__ticker-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    color: #00ffb4;
    padding: 0 12px;
    white-space: nowrap;
    border-right: 1px solid rgba(0, 255, 180, 0.15);
    letter-spacing: 0.12em;
    flex-shrink: 0;
  }
  .hero__ticker-overflow {
    overflow: hidden;
    flex: 1;
    display: flex;
  }
  .hero__ticker-track {
    display: flex;
    gap: 24px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    font-family: 'Share Tech Mono', monospace;
    font-size: 23px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
  }
  .ticker-item .warn { color: #ff6b35; }
  .ticker-item .safe { color: #00ffb4; }

  @keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 600px) {
    .hero-side-menu {
      left: 10px;
      right: 10px;
      top: 66px;
      transform: none;
      width: auto;
      display: flex;
      gap: 4px;
      overflow-x: auto;
      white-space: nowrap;
      padding: 8px;
      border-radius: 12px;
      scrollbar-width: thin;
    }

    .hero-side-menu__title {
      display: none;
    }

    .hero-side-menu.is-compact {
      width: 48px;
      right: auto;
      left: 8px;
      top: 72px;
      bottom: auto;
      padding: 6px;
      border-radius: 10px;
      opacity: 0.9;
    }

    .hero-side-menu__link {
      min-height: 28px;
      font-size: 18px;
      padding: 4px 8px;
      border: 1px solid rgba(0, 255, 180, 0.18);
      background: rgba(4, 19, 31, 0.66);
    }

    .hero-side-menu__link:hover,
    .hero-side-menu__link.active {
      transform: none;
    }

    .hero__title { font-size: 32px; }
    .tbar__label { width: 90px; }
    .hero__sub br { display: none; }
  }
/* PRIMEIRA SESSAO */


/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-foreground { color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-secondary { background-color: var(--secondary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--secondary);
}

.btn-ghost {
  background-color: transparent;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  color: var(--foreground);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Banner principal */
.banner-top {
  height: 100vh;
  width: 100%;
  background: url('../img/banner_main.png') no-repeat center center;
  background-size: cover;
  position: relative;
}

.banner-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--background));
  pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: scroll-bounce 1.4s ease infinite;
}

.scroll-indicator span:nth-child(2) { animation-delay: 0.2s; opacity: 0.6; }
.scroll-indicator span:nth-child(3) { animation-delay: 0.4s; opacity: 0.3; }

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
  50%       { transform: rotate(45deg) translate(4px, 4px); opacity: 0.4; }
}

/* Banner content text */
.banner-content {
  position: absolute;
  top: 72%;
  left: 37%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
  width: 50%;
  max-width: 600px;
}

.banner-content h2 {
  font-size: clamp(1.4rem, 2.0vw, 2.25rem);
  font-weight: 500;
  text-transform: uppercase;
  color: #24EB40;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.banner-subtitle {
  font-size: 1.3vw;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.banner-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 30px;
}

.btn-banner-primary {
  background-color: #00E5FF;
  color: #051c20;
  border: none;
  padding: 0.55rem 1.35rem;
  border-radius: 6px;
  font-size: clamp(0.75rem, 1vw, 0.88rem);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-shadow: none;
  letter-spacing: 0.01em;
}

.btn-banner-primary:hover {
  opacity: 0.70;
  transform: translateY(-2px);
}

.btn-banner-success {
  background-color: #24EB40;
  color: #051c20;
  border: none;
  padding: 0.55rem 1.35rem;
  border-radius: 6px;
  font-size: clamp(0.75rem, 1vw, 0.88rem);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-shadow: none;
  letter-spacing: 0.01em;
}

.btn-banner-success:hover {
  opacity: 0.70;
  transform: translateY(-2px);
}

/* ========================
   SOC Stats Section
   ======================== */
.soc-stats {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: #020c14;
  overflow: hidden;
}

.soc-stats .container {
  width: 100%;
}

/* CSS grid lines background */
.soc-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Radial vignette — darkens corners */
.soc-stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 70% at 50% 50%, transparent 25%, #020c14 100%);
  pointer-events: none;
  z-index: 0;
}

/* Animated horizontal scan line */
.soc-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.65) 50%, transparent 100%);
  animation: soc-scan 5s linear infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes soc-scan {
  0%   { top: -2px; opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}

.soc-header {
  text-align: center;
  margin-bottom: 3.25rem;
  position: relative;
  z-index: 2;
}

/* Live badge */
.soc-badge {
  /* display: inline-flex; */
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: 'Courier New', monospace;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #cce8f0;
  text-transform: uppercase;
}

.soc-badge-dot {
  width: 7px;
  height: 7px;
  background: #00E5FF;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px #00E5FF;
  animation: soc-pulse 1.5s ease-in-out infinite;
}

.soc-badge-highlight {
  color: #AA9CFD;
  text-shadow: 0 0 18px rgba(170, 156, 253, 0.8), 0 0 45px rgba(170, 156, 253, 0.3);
}

@keyframes soc-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}

.soc-live {
  color: #24EB40;
  text-shadow: 0 0 10px rgba(36, 235, 64, 0.9), 0 0 24px rgba(36, 235, 64, 0.5);
  animation: soc-live-blink 1.1s ease-in-out infinite;
  font-size: 0.8em;
  margin-left: 20px;
}

@keyframes soc-live-blink {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(36, 235, 64, 0.9), 0 0 28px rgba(36, 235, 64, 0.6); }
  50%       { opacity: 0.35; text-shadow: none; }
}

.soc-live2 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(36, 235, 64, 0.9), 0 0 24px rgba(36, 235, 64, 0.5);
  animation: soc-live2-blink 1.1s ease-in-out infinite;
  font-size: 0.3em;
  margin-left: 20px;
  background-color: red;
  padding: 0 5px;
  border-radius: 5px;
  letter-spacing: normal;
}

.soc-sources-footer {
  margin-top: 0.9rem;
  text-align: right;
}

.soc-sources-link {
  color: rgba(171, 231, 245, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.soc-sources-link:hover {
  color: #c9f4ff;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.28);
}

.soc-sources-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.soc-sources-modal[hidden] {
  display: none !important;
}

.soc-sources-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 14, 0.75);
  backdrop-filter: blur(2px);
}

.soc-sources-dialog {
  position: relative;
  max-width: 760px;
  width: min(92vw, 760px);
  margin: 0;
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  background: #0a1722;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 12px;
  padding: 2rem;
  color: #cce8f0;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45), 0 0 22px rgba(0, 229, 255, 0.1);
}

.soc-sources-dialog h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #e5f8ff;
}

.soc-sources-dialog ul {
  margin: 0;
  padding-left: 1.05rem;
}

.soc-sources-dialog li {
  margin: 0.35rem 0;
  color: rgba(214, 238, 246, 0.95);
  line-height: 1.45;
}

.soc-sources-close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  border: 0;
  background: transparent;
  color: rgba(220, 235, 242, 0.8);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

@keyframes soc-live2-blink {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(36, 235, 64, 0.9), 0 0 28px rgba(36, 235, 64, 0.6); }
  50%       { opacity: 0.35; text-shadow: none; }
}

.soc-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #cce8f0;
  letter-spacing: -0.02em;
}

.soc-highlight {
  color: #00E5FF !important;
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.75), 0 0 45px rgba(0, 229, 255, 0.3) !important;
}

.uc-accent {
  color: #f6ca66;
}

/* Cards grid */
.soc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.soc-card {
  position: relative;
  background: rgba(2, 16, 26, 0.92);
  border: 1px solid rgba(0, 229, 255, 0.28);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.06), inset 0 0 14px rgba(0, 229, 255, 0.025);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.soc-card:hover {
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.14), inset 0 0 18px rgba(0, 229, 255, 0.05);
}

/* Corner accents — top-left */
.soc-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid rgba(0, 229, 255, 0.7);
  border-left: 2px solid rgba(0, 229, 255, 0.7);
  border-radius: 2px 0 0 0;
}

/* Corner accents — bottom-right */
.soc-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid rgba(0, 229, 255, 0.7);
  border-right: 2px solid rgba(0, 229, 255, 0.7);
  border-radius: 0 0 2px 0;
}

.soc-card-icon {
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  width: 45px;
  height: 45px;
  color: rgba(0, 229, 255, 0.72);
  opacity: 0.9;
}

.soc-card-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.35));
}

.soc-number {
  display: block;
  width: 100%;
  font-family: 'Courier New', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00E5FF;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.62), 0 0 18px rgba(0, 229, 255, 0.28);
  margin-bottom: 0.65rem;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
}

.soc-card-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #cce8f0;
  margin-bottom: 0.65rem;
}

.soc-card-desc {
  font-size: 16px;
  color: rgba(155, 205, 220, 0.8);
  line-height: 1.3;
  margin-top: 20px;
}

.soc-cards-row2 {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .soc-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ========================
   Phishing Explainer
   ======================== */
.phishing-explainer {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: #0d0800;
  overflow: hidden;
}

.phishing-explainer .container {
  width: 100%;
}

/* Amber grid background — drifts diagonally */
.phishing-explainer::before {
  content: '';
  position: absolute;
  inset: -48px;
  background-image:
    linear-gradient(rgba(255, 140, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 140, 0, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
  animation: grid-drift 12s linear infinite;
}

@keyframes grid-drift {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 48px 48px, 48px 48px; }
}

.phishing-explainer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 70% at 50% 50%, transparent 20%, #0d0800 100%);
  pointer-events: none;
  z-index: 0;
}

.phishing-explainer.alert-active {
  background: #1a0505;
}

.phishing-explainer.alert-active::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(255,78,78,0.28)' d='M12 2 1.7 20h20.6L12 2zm0 5.8a1.2 1.2 0 0 1 1.2 1.2v5.1a1.2 1.2 0 1 1-2.4 0V9A1.2 1.2 0 0 1 12 7.8zm0 10a1.35 1.35 0 1 1 0-2.7 1.35 1.35 0 0 1 0 2.7z'/%3E%3C/svg%3E"),
    linear-gradient(rgba(255, 90, 90, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 90, 90, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 14% 20%, rgba(255, 70, 70, 0.34), transparent 12%),
    radial-gradient(circle at 82% 16%, rgba(255, 70, 70, 0.3), transparent 12%),
    radial-gradient(circle at 76% 84%, rgba(255, 70, 70, 0.28), transparent 11%),
    radial-gradient(circle at 18% 80%, rgba(255, 70, 70, 0.26), transparent 12%);
  background-size: 180px 180px, 52px 52px, 52px 52px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
  opacity: 0.98;
  animation: alert-grid-shift 13s linear infinite;
}

.phishing-explainer.alert-active::after {
  background:
    radial-gradient(circle at 50% 48%, rgba(111, 13, 13, 0.2), transparent 35%),
    radial-gradient(ellipse 82% 68% at 50% 50%, transparent 22%, rgba(9, 2, 2, 0.98) 100%),
    linear-gradient(180deg, rgba(47, 7, 7, 0.68), rgba(7, 2, 2, 0.96));
}

.phishing-explainer.alert-active .phishing-header,
.phishing-explainer.alert-active .phishing-steps,
.phishing-explainer.alert-active .email-mockup {
  position: relative;
  z-index: 2;
}

.phishing-explainer.alert-active .phish-highlight {
  color: #ff4f4f;
  text-shadow: 0 0 18px rgba(255, 79, 79, 0.85), 0 0 38px rgba(255, 79, 79, 0.32);
}

.phishing-explainer.alert-active .phishing-dot {
  background: #ff4f4f !important;
  box-shadow: 0 0 10px rgba(255, 79, 79, 0.95) !important;
}

.phishing-explainer.alert-active .phishing-subtitle {
  color: rgba(255, 242, 242, 0.92);
}

.phishing-explainer.alert-active .phishing-subtitle2 {
  color: rgba(255, 200, 200, 0.85);
  animation-duration: 0.8s;
  position: relative;
  z-index: 2222;
}

.phishing-explainer.alert-active .email-mockup {
  border-color: rgba(255, 86, 86, 0.45);
  background: radial-gradient(circle at 50% 0, rgba(255, 67, 67, 0.1), transparent 38%), rgba(11, 3, 3, 0.96);
  box-shadow: 0 0 36px rgba(255, 64, 64, 0.2), 0 0 0 1px rgba(255, 86, 86, 0.15), inset 0 0 28px rgba(255, 14, 14, 0.07);
  animation: email-system-fail 1.4s ease-in-out infinite;
}

.phishing-explainer.alert-active .email-fake-btn {
  background: linear-gradient(135deg, #ff4d4d, #d31818 58%, #8e0000);
  box-shadow: 0 0 24px rgba(255, 77, 77, 0.5);
}

.phishing-explainer.alert-active .phishing-step {
  background: rgba(24, 4, 4, 0.92);
  border-color: rgba(255, 92, 92, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 92, 92, 0.07), inset 0 0 16px rgba(255, 35, 35, 0.03);
}

.phishing-explainer.alert-active .step-number {
  color: #ff6565;
  text-shadow: 0 0 14px rgba(255, 92, 92, 0.7);
}

@keyframes alert-grid-shift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 72px 68px, 52px 52px, 52px 52px, 16px -8px, -14px 10px, 20px 14px, -16px -12px; }
}

@keyframes email-system-fail {
  0%, 100% {
    border-color: rgba(255, 86, 86, 0.35);
    box-shadow: 0 0 24px rgba(255, 64, 64, 0.12), inset 0 0 18px rgba(255, 14, 14, 0.05);
    transform: translateX(0);
  }
  20% { transform: translateX(-1px); }
  40% { transform: translateX(1px); }
  60% {
    border-color: rgba(255, 86, 86, 0.65);
    box-shadow: 0 0 36px rgba(255, 64, 64, 0.28), inset 0 0 28px rgba(255, 14, 14, 0.08);
  }
  80% { transform: translateX(-1px); }
}

.phishing-dot {
  background: #FF5722 !important;
  box-shadow: 0 0 8px #FF5722 !important;
}

.phishing-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.phishing-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #f0dcc8;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.phish-highlight {
  color: #FF5722;
  text-shadow: 0 0 18px rgba(255, 87, 34, 0.8), 0 0 45px rgba(255, 87, 34, 0.3);
  display: inline-block;
  /* animation: phish-glitch 6s ease-in-out infinite; */
}

@keyframes phish-glitch {
  0%, 80%, 100% {
    transform: none;
    text-shadow: 0 0 18px rgba(255, 87, 34, 0.8), 0 0 45px rgba(255, 87, 34, 0.3);
    clip-path: none;
  }
  82% {
    transform: translateX(-4px) skewX(-2deg);
    text-shadow: 3px 0 #00E5FF, -3px 0 #FF5722;
    clip-path: polygon(0 15%, 100% 15%, 100% 40%, 0 40%);
  }
  84% {
    transform: translateX(4px) skewX(2deg);
    text-shadow: -3px 0 #00E5FF, 3px 0 rgba(255, 87, 34, 1);
    clip-path: polygon(0 55%, 100% 55%, 100% 80%, 0 80%);
  }
  86% {
    transform: translateX(-2px);
    text-shadow: 0 0 18px rgba(255, 87, 34, 0.8);
    clip-path: none;
  }
  88% {
    transform: none;
    text-shadow: 0 0 18px rgba(255, 87, 34, 0.8), 0 0 45px rgba(255, 87, 34, 0.3);
  }
}

.phishing-subtitle {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
}

.phishing-subtitle2 {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.3;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin: 70px auto 30px;
    /* animation: phishing-subtitle2-blink 1.1s ease-in-out infinite; */
    text-align: center;
}

@keyframes phishing-subtitle2-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.32;
  }
}

/* Email mockup */
.email-mockup {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 3rem;
  border: 1px solid rgba(255, 87, 34, 0.35);
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(255, 87, 34, 0.08), inset 0 0 20px rgba(255, 87, 34, 0.02);
  overflow: visible;
  animation: email-alert-pulse 3s ease-in-out infinite;
}

@keyframes email-alert-pulse {
  0%, 100% {
    border-color: rgba(255, 87, 34, 0.25);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.06), 0 0 0 0 rgba(255, 87, 34, 0.12);
  }
  50% {
    border-color: rgba(255, 87, 34, 0.65);
    box-shadow: 0 0 40px rgba(255, 87, 34, 0.18), 0 0 0 6px rgba(255, 87, 34, 0);
  }
}

.email-hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 5, 2, 0.98);
  border-bottom: 1px solid rgba(255, 87, 34, 0.18);
  padding: 0.65rem 1.2rem;
  border-radius: 8px 8px 0 0;
  font-family: 'Courier New', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  position: relative;
}

.email-hud-dots {
  display: flex;
  gap: 5px;
}

.email-hud-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.email-hud-dots span:nth-child(1) { background: rgba(255, 87, 34, 0.85); }
.email-hud-dots span:nth-child(2) { background: rgba(255, 160, 0, 0.6); }
.email-hud-dots span:nth-child(3) { background: rgba(255, 87, 34, 0.3); }

.email-hud-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* color: rgba(220, 150, 100, 0.38); */
  letter-spacing: 0.14em;
  /* font-size: 0.58rem; */
  pointer-events: none;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.email-hud-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #FFA000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.email-hud-alert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFA000;
  box-shadow: 0 0 5px #FFA000;
  animation: soc-pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

.email-body {
  background: rgba(10, 4, 1, 0.98);
  padding: 1.25rem 1.5rem;
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.email-hud-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  min-height: 2rem;
}

.email-hud-field {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  min-width: 56px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.email-hud-value {
  font-size: 0.88rem;
  /* color: rgba(240, 200, 160, 0.85); */
  color: #f0dcc8;
  flex: 1;
}

.email-hud-divider {
  height: 1px;
  background: rgba(255, 87, 34, 0.07);
  margin: 0.1rem -1.5rem;
}

.email-sender-legit {
  color: #f0dcc8;
}

.email-sender-fake {
  color: #F31439;
  text-shadow: 0 0 8px rgba(255, 87, 34, 0.6);
  font-weight: 500;
}

.email-subject-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #f0dcc8;
  flex: 1;
}

.email-flag-word {
  color: #F31439;
  text-shadow: 0 0 6px rgba(255, 87, 34, 0.5);
}

.email-flag {
  display: inline-flex;
  align-items: center;
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.email-flag:hover {
  opacity: 0.8;
  transform: scale(1.04);
}

.email-flag.red {
  background: rgba(255, 87, 34, 0.12);
  border: 1px solid rgba(255, 87, 34, 0.5);
  color: #FF7043;
}

.email-flag.orange {
  background: rgba(255, 160, 0, 0.1);
  border: 1px solid rgba(255, 160, 0, 0.45);
  color: #FFA000;
}

.email-body-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 30px;
}

.email-fake-link {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  color: #FF5722;
  text-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
  flex: 1;
  word-break: break-all;
}

.email-link-reveal-row {
  text-align: center;
  min-height: 22px;
}

.email-link-reveal-hint {
  display: inline-block;
  font-size: 0.62rem;
  color: rgba(240, 200, 160, 0.45);
  margin-bottom: 0.35rem;
  animation: phishing-subtitle2-blink 1.1s ease-in-out infinite;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@keyframes hint-blink {
  0%,
  48% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0.25;
  }
}

.email-link-reveal {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: max-height 0.28s ease, opacity 0.25s ease, transform 0.25s ease;
}

.email-cta-row:hover + .email-link-reveal-row .email-link-reveal,
.email-cta-row:focus-within + .email-link-reveal-row .email-link-reveal,
.email-cta-row:active + .email-link-reveal-row .email-link-reveal {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.email-cta-row:hover + .email-link-reveal-row .email-link-reveal-hint,
.email-cta-row:focus-within + .email-link-reveal-row .email-link-reveal-hint,
.email-cta-row:active + .email-link-reveal-row .email-link-reveal-hint {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.email-cta-row:hover + .email-link-reveal-row .email-fake-link,
.email-cta-row:focus-within + .email-link-reveal-row .email-fake-link,
.email-cta-row:active + .email-link-reveal-row .email-fake-link {
  color: #F31439;
  text-shadow: 0 0 8px rgba(243, 20, 57, 0.55);
}

.email-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.25rem;
}

.email-hud-row .email-tip-btn {
  margin-left: auto;
}

.email-tip-btn {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(8, 8, 8, 0.9);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55), 0 0 22px rgba(255, 255, 255, 0.28);
  animation: tip-blink 0.9s ease-in-out infinite alternate;
}

.email-tip-btn-link {
    position: absolute;
    float: right;
    right: 23px;
}

.email-tip-btn span {
  font-family: 'Courier New', monospace;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.email-tip-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.35;
  animation: tip-ring 1.6s ease-out infinite;
  pointer-events: none;
}

.email-tip-btn:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.email-tip-btn.red {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55), 0 0 22px rgba(255, 255, 255, 0.28);
}

.email-tip-btn.orange {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55), 0 0 22px rgba(255, 255, 255, 0.28);
}

@keyframes tip-blink {
  0% {
    filter: brightness(0.8);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 14px rgba(255, 255, 255, 0.2);
  }
  100% {
    filter: brightness(1.3);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.8), 0 0 28px rgba(255, 255, 255, 0.45);
  }
}

@keyframes tip-ring {
  0% {
    transform: scale(0.82);
    opacity: 0.45;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.email-fake-btn {
  background: linear-gradient(135deg, #b71c1c, #d32f2f);
  color: #fff;
  border: none;
  padding: 0.65rem 2rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(211, 47, 47, 0.4);
  position: relative;
}

/* 3 steps */
.phishing-steps {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 720px;
}

.phishing-step {
  flex: 1;
  padding: 1.5rem 1.75rem;
  background: rgba(20, 8, 2, 0.9);
  border: 1px solid rgba(255, 87, 34, 0.22);
  border-radius: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 30%;
}

.step-icon {
  position: absolute;
  top: 1.2rem;
  right: 1.15rem;
  width: 40px;
  height: 40px;
  color: rgba(255, 87, 34, 0.72);
  opacity: 0.92;
}

.step-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(255, 87, 34, 0.45));
}

.phishing-step::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 12px; height: 12px;
  border-top: 2px solid rgba(255, 87, 34, 0.65);
  border-left: 2px solid rgba(255, 87, 34, 0.65);
  border-radius: 2px 0 0 0;
}

.phishing-step::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 12px; height: 12px;
  border-bottom: 2px solid rgba(255, 87, 34, 0.65);
  border-right: 2px solid rgba(255, 87, 34, 0.65);
  border-radius: 0 0 2px 0;
}

.step-number {
  font-family: 'Courier New', monospace;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #FF5722;
  text-shadow: 0 0 16px rgba(255, 87, 34, 0.7);
  line-height: 1;
  margin-bottom: 0.65rem;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #cce8f0;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.step-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  flex: 1;
}

.phishing-step-arrow {
  font-size: 1.5rem;
  color: rgba(255, 87, 34, 0.4);
  padding: 1.5rem 0.5rem 0;
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .phishing-steps {
    flex-direction: column;
    gap: 1rem;
  }
  .phishing-step-arrow {
    transform: rotate(90deg);
    padding: 0;
    align-self: center;
  }
  .email-mockup {
    margin: 0 0 2rem;
  }
  .email-row {
    flex-direction: column;
  }
}

/* ===== Phishing theme toggle button ===== */
.phishing-title-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}

.phish-theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  transition: border-color 0.3s;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.phish-theme-btn:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.phish-theme-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: opacity 0.3s, box-shadow 0.3s;
}

.phish-theme-dot.red-dot {
  background: #FF5722;
  box-shadow: 0 0 6px #FF5722;
  animation: soc-pulse 1.5s ease-in-out infinite;
  opacity: 1;
}

.phish-theme-dot.green-dot {
  background: #33DF55;
  opacity: 0.28;
}

/* Active state when green theme is on */
.phishing-explainer.theme-green .phish-theme-dot.red-dot {
  opacity: 0.28;
  animation: none;
  box-shadow: none;
}

.phishing-explainer.theme-green .phish-theme-dot.green-dot {
  opacity: 1;
  box-shadow: 0 0 6px #33DF55;
  animation: soc-pulse 1.5s ease-in-out infinite;
}

/* ===== GREEN THEME OVERRIDES ===== */
.phishing-explainer.theme-green {
  background: #001a06;
}

.phishing-explainer.theme-green::before {
  background-image:
    linear-gradient(rgba(51, 223, 85, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 223, 85, 0.045) 1px, transparent 1px);
}

.phishing-explainer.theme-green::after {
  background: radial-gradient(ellipse 85% 70% at 50% 50%, transparent 20%, #001a06 100%);
}

.phishing-explainer.theme-green .phishing-dot {
  background: #33DF55 !important;
  box-shadow: 0 0 8px #33DF55 !important;
}

.phishing-explainer.theme-green .phish-highlight {
  color: #33DF55;
  text-shadow: 0 0 18px rgba(51, 223, 85, 0.8), 0 0 45px rgba(51, 223, 85, 0.3);
  /* animation: phish-glitch-green 6s ease-in-out infinite; */
}

@keyframes phish-glitch-green {
  0%, 80%, 100% {
    transform: none;
    text-shadow: 0 0 18px rgba(51, 223, 85, 0.8), 0 0 45px rgba(51, 223, 85, 0.3);
    clip-path: none;
  }
  82% {
    transform: translateX(-4px) skewX(-2deg);
    text-shadow: 3px 0 #00E5FF, -3px 0 #33DF55;
    clip-path: polygon(0 15%, 100% 15%, 100% 40%, 0 40%);
  }
  84% {
    transform: translateX(4px) skewX(2deg);
    text-shadow: -3px 0 #00E5FF, 3px 0 rgba(51, 223, 85, 1);
    clip-path: polygon(0 55%, 100% 55%, 100% 80%, 0 80%);
  }
  86% {
    transform: translateX(-2px);
    text-shadow: 0 0 18px rgba(51, 223, 85, 0.8);
    clip-path: none;
  }
  88% {
    transform: none;
    text-shadow: 0 0 18px rgba(51, 223, 85, 0.8), 0 0 45px rgba(51, 223, 85, 0.3);
  }
}

.phishing-explainer.theme-green .email-mockup {
  border-color: rgba(51, 223, 85, 0.35);
  box-shadow: 0 0 40px rgba(51, 223, 85, 0.08), inset 0 0 20px rgba(51, 223, 85, 0.02);
  animation: email-alert-pulse-green 3s ease-in-out infinite;
}

@keyframes email-alert-pulse-green {
  0%, 100% {
    border-color: rgba(51, 223, 85, 0.25);
    box-shadow: 0 0 20px rgba(51, 223, 85, 0.06), 0 0 0 0 rgba(51, 223, 85, 0.12);
  }
  50% {
    border-color: rgba(51, 223, 85, 0.65);
    box-shadow: 0 0 40px rgba(51, 223, 85, 0.18), 0 0 0 6px rgba(51, 223, 85, 0);
  }
}

.phishing-explainer.theme-green .email-sender-fake {
  color: #F31439;
  text-shadow: 0 0 8px rgba(51, 223, 85, 0.6);
}

.phishing-explainer.theme-green .email-flag-word {
  color: #F31439;
  text-shadow: 0 0 6px rgba(51, 223, 85, 0.5);
}

.phishing-explainer.theme-green .email-flag.red {
  background: rgba(51, 223, 85, 0.1);
  border: 1px solid rgba(51, 223, 85, 0.45);
  color: #55e875;
}

.phishing-explainer.theme-green .email-tip-btn.red {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55), 0 0 22px rgba(255, 255, 255, 0.28);
}

.phishing-explainer.theme-green .email-fake-link {
  color: #33DF55;
  text-shadow: 0 0 8px rgba(51, 223, 85, 0.5);
}

.phishing-explainer.theme-green .email-cta-row:hover + .email-link-reveal-row .email-fake-link,
.phishing-explainer.theme-green .email-cta-row:focus-within + .email-link-reveal-row .email-fake-link,
.phishing-explainer.theme-green .email-cta-row:active + .email-link-reveal-row .email-fake-link {
  color: #F31439;
  text-shadow: 0 0 8px rgba(243, 20, 57, 0.55);
}

.phishing-explainer.theme-green .email-link-reveal-hint {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.phishing-explainer.theme-green .email-fake-btn {
  background: linear-gradient(135deg, #0a3d14, #1a6b2a);
  box-shadow: 0 0 20px rgba(51, 223, 85, 0.4);
}

.phishing-explainer.theme-green .phishing-step {
  background: rgba(0, 18, 5, 0.9);
  border-color: rgba(51, 223, 85, 0.22);
}

.phishing-explainer.theme-green .phishing-step::before {
  border-top-color: rgba(51, 223, 85, 0.65);
  border-left-color: rgba(51, 223, 85, 0.65);
}

.phishing-explainer.theme-green .phishing-step::after {
  border-bottom-color: rgba(51, 223, 85, 0.65);
  border-right-color: rgba(51, 223, 85, 0.65);
}

.phishing-explainer.theme-green .step-number {
  color: #33DF55;
  text-shadow: 0 0 16px rgba(51, 223, 85, 0.7);
}

.phishing-explainer.theme-green .step-icon {
  color: rgba(51, 223, 85, 0.82);
}

.phishing-explainer.theme-green .step-icon svg {
  filter: drop-shadow(0 0 8px rgba(51, 223, 85, 0.45));
}

.phishing-explainer.theme-green .phishing-step-arrow {
  color: rgba(51, 223, 85, 0.4);
}

/* HUD header green overrides */
.phishing-explainer.theme-green .email-hud-header {
  background: rgba(0, 10, 3, 0.98);
  border-bottom-color: rgba(51, 223, 85, 0.18);
}

.phishing-explainer.theme-green .email-hud-dots span:nth-child(1) { background: rgba(51, 223, 85, 0.85); }
.phishing-explainer.theme-green .email-hud-dots span:nth-child(2) { background: rgba(0, 229, 255, 0.6); }
.phishing-explainer.theme-green .email-hud-dots span:nth-child(3) { background: rgba(51, 223, 85, 0.3); }

.phishing-explainer.theme-green .email-hud-title {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.phishing-explainer.theme-green .email-hud-status {
  color: #FFA000;
  font-size: 12px;
  font-weight: 600;
}

.phishing-explainer.theme-green .email-hud-alert-dot {
  background: #FFA000;
  box-shadow: 0 0 5px #FFA000;
}

.phishing-explainer.theme-green .email-hud-divider {
  background: rgba(51, 223, 85, 0.07);
}

.phishing-explainer.theme-green .email-body {
  background: rgba(0, 10, 3, 0.98);
}

/* ===== Phishing Flag Modal ===== */
.phish-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  backdrop-filter: blur(4px);
}

.phish-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.phish-modal {
  background: #050a08;
  /* border: 1px solid rgba(51, 223, 85, 0.3); */
  border: 1px solid #00E5FF;
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 60px rgba(51, 223, 85, 0.12);
  transform: translateY(20px);
  transition: transform 0.25s;
}

.phish-modal-overlay.active .phish-modal {
  transform: translateY(0);
}

.phish-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}

.phish-modal-close:hover {
  color: rgba(255, 255, 255, 0.75);
}

.phish-modal-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.phish-modal-title {
  font-family: 'Courier New', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #00E5FF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.phish-modal-body {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 40px;
}

.phish-modal-tip {
  font-size: 1.1rem;
  color: #00E5FF;
  border-left: 2px solid #00E5FF;
  padding-left: 0.75rem;
  font-style: italic;
  line-height: 1.6;
}

.phish-modal.orange-modal {
  border-color: rgba(255, 160, 0, 0.3);
  box-shadow: 0 0 60px rgba(255, 160, 0, 0.1);
}

/* Fullscreen breach alert shown after clicking the fake CTA */
.phish-breach-overlay {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 72, 72, 0.18), transparent 45%),
    rgba(5, 6, 10, 0.86);
  backdrop-filter: blur(6px);
  transition: opacity 0.22s ease;
}

.phish-breach-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.32;
  pointer-events: none;
}

.phish-breach-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.phish-breach-modal {
  position: relative;
  width: min(760px, 92vw);
  border-radius: 12px;
  border: 1px solid rgba(255, 104, 104, 0.55);
  background: linear-gradient(170deg, rgba(18, 9, 12, 0.97), rgba(8, 8, 12, 0.98));
  box-shadow: 0 0 42px rgba(255, 82, 82, 0.34), inset 0 0 22px rgba(255, 82, 82, 0.12);
  padding: 1.25rem 1.25rem 1rem;
  transform: translateY(12px) scale(0.985);
  opacity: 0;
}

.phish-breach-overlay.active .phish-breach-modal {
  animation: phish-breach-in 0.28s ease forwards;
}

.phish-breach-topline {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 166, 166, 0.9);
  padding: 0.2rem 0.45rem;
  border: 1px solid rgba(255, 120, 120, 0.45);
  border-radius: 4px;
  margin-bottom: 0.65rem;
}

.phish-breach-title {
  margin: 0;
  font-family: 'Courier New', monospace;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: 0.08em;
  color: #ff6d6d;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 109, 109, 0.42);
}

.phish-breach-subtitle {
  margin: 0.55rem 0 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255, 232, 232, 0.84);
  line-height: 1.45;
}

.phish-breach-events {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.phish-breach-event {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 122, 122, 0.28);
  background: rgba(255, 100, 100, 0.06);
  border-radius: 7px;
  padding: 0.52rem 0.62rem;
  color: rgba(255, 226, 226, 0.88);
  font-size: 0.88rem;
}

.phish-breach-event .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.phish-breach-event .dot.danger {
  background: #ff4e4e;
  box-shadow: 0 0 10px rgba(255, 78, 78, 0.75);
}

.phish-breach-event .dot.warning {
  background: #ffb347;
  box-shadow: 0 0 8px rgba(255, 179, 71, 0.55);
}

.phish-breach-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.phish-breach-btn {
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.5rem 0.9rem;
  font-family: 'Courier New', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.phish-breach-btn.primary {
  color: #fff;
  background: linear-gradient(140deg, #c72f2f, #f24141);
  border-color: rgba(255, 120, 120, 0.45);
  box-shadow: 0 0 16px rgba(242, 65, 65, 0.42);
}

.phish-breach-btn.ghost {
  color: rgba(255, 220, 220, 0.9);
  background: rgba(255, 118, 118, 0.1);
  border-color: rgba(255, 130, 130, 0.35);
}

@keyframes phish-breach-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .phish-breach-modal {
    padding: 1rem 0.9rem 0.85rem;
  }

  .phish-breach-event {
    font-size: 0.82rem;
  }

  .phish-breach-actions {
    justify-content: stretch;
  }

  .phish-breach-btn {
    width: 100%;
    text-align: center;
  }
}

.phish-modal.orange-modal .phish-modal-title {
  color: #FFA000;
}

.phish-modal.orange-modal .phish-modal-tip {
  color: rgba(255, 160, 0, 0.55);
  border-left-color: rgba(255, 160, 0, 0.3);
}

/* ========================
   How Phishfy Works
   ======================== */
.ops-flow {
  --flow-x: 50%;
  --flow-y: 50%;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: #020a14;
  overflow: hidden;
}

.ops-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.038) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 0;
}

.ops-flow::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--flow-x) var(--flow-y), rgba(0, 229, 255, 0.16), transparent 38%),
    radial-gradient(ellipse 85% 70% at 50% 50%, transparent 20%, #020a14 100%);
  pointer-events: none;
  z-index: 0;
}

.ops-flow .container {
  position: relative;
  z-index: 2;
}

.ops-flow-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.ops-flow-badge {
  margin-bottom: 1rem;
}

.ops-flow-dot {
  background: #00E5FF !important;
  box-shadow: 0 0 8px #00E5FF !important;
}

.ops-flow-title {
  font-size: clamp(1.95rem, 3.2vw, 2.9rem);
  color: #cce8f0;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.2);
}

.ops-flow-subtitle {
  margin: auto;
  margin-bottom: 80px;
  max-width: 760px;
  color: rgba(204, 232, 240, 0.72);
  font-size: 1rem;
  text-align: center;
  animation: ops-flow-subtitle-blink 1.2s ease-in-out infinite;
}

@keyframes ops-flow-subtitle-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.ops-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(350px, 1fr);
  gap: 1.3rem;
  align-items: start;
}

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

.ops-flow-grid:hover .flow-step-card {
  transform: scale(0.96);
  opacity: 0.76;
}

.flow-highlight {
  color: #33DF55;
  text-shadow: 0 0 18px rgba(51, 223, 85, 0.8), 0 0 45px rgba(51, 223, 85, 0.3);
}

.flow-step-card {
  position: relative;
  text-align: left;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(165deg, rgba(4, 18, 30, 0.96), rgba(2, 10, 19, 0.96)),
    repeating-linear-gradient(0deg, rgba(0, 229, 255, 0.03) 0 1px, transparent 1px 7px);
  padding: 1.1rem 0.95rem;
  min-height: 180px;
  color: #cce8f0;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
}

.flow-step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(0, 229, 255, 0.08), transparent 50%, rgba(0, 229, 255, 0.06)),
    radial-gradient(circle at 16% 16%, rgba(0, 229, 255, 0.12), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(0, 229, 255, 0.08), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.flow-step-card::after {
  content: '';
  position: absolute;
  left: -18%;
  right: -18%;
  top: -32px;
  height: 34px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.28), rgba(0, 229, 255, 0.04), transparent);
  opacity: 0;
  pointer-events: none;
}

.flow-step-card:hover,
.flow-step-card.active {
  border-color: rgba(0, 229, 255, 0.58);
  box-shadow: 0 0 26px rgba(0, 229, 255, 0.16), inset 0 0 14px rgba(0, 229, 255, 0.04);
  transform: scale(1.03) translateY(-2px);
  opacity: 1;
  z-index: 2;
}

.flow-step-card:hover::before,
.flow-step-card.active::before {
  opacity: 1;
}

.flow-step-card:hover::after,
.flow-step-card.active::after {
  opacity: 1;
  animation: flow-card-scan 2.1s linear infinite;
}

.flow-step-card.active {
  animation: flow-card-pulse 2.4s ease-in-out infinite;
}

@keyframes flow-card-scan {
  0% { transform: translateY(0); }
  100% { transform: translateY(210px); }
}

@keyframes flow-card-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15), inset 0 0 12px rgba(0, 229, 255, 0.04);
  }
  50% {
    box-shadow: 0 0 32px rgba(0, 229, 255, 0.24), inset 0 0 18px rgba(0, 229, 255, 0.08);
  }
}

.flow-step-no {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 222, 61, 0.9);
  color: #b7ffbf;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.95rem;
  background: rgba(35, 222, 61, 0.12);
  box-shadow:
    0 0 0 1px rgba(35, 222, 61, 0.25),
    0 0 16px rgba(35, 222, 61, 0.5),
    inset 0 0 12px rgba(35, 222, 61, 0.28);
  text-shadow: 0 0 10px rgba(35, 222, 61, 0.95);
}

.flow-step-icon {
  position: absolute;
  top: 1rem;
  right: 0.95rem;
  width: 26px;
  height: 26px;
  color: rgba(0, 229, 255, 0.72);
  opacity: 0.92;
}

.flow-step-tag {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 999px;
  min-width: 92px;
  padding: 0.18rem 0.55rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: rgba(173, 236, 247, 0.78);
  background: rgba(0, 229, 255, 0.08);
  text-transform: uppercase;
}

.flow-step-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 7px rgba(0, 229, 255, 0.42));
}

.flow-step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0.8rem;
  max-width: 100%;
}

.flow-step-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.ops-flow-console {
  background: rgba(3, 14, 24, 0.94);
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 12px;
  padding: 1.2rem 1.1rem;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.1), inset 0 0 18px rgba(0, 229, 255, 0.03);
  min-height: 432px;
}

.ops-flow-modal-close {
  display: none;
}

.ops-flow-modal-backdrop[hidden] {
  display: none;
}

.ops-flow-console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  gap: 0.8rem;
}

.ops-flow-index {
  color: rgba(204, 232, 240, 0.6);
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
}

.ops-flow-console-title {
  flex: 1;
  color: #cce8f0;
  font-size: 1.25rem;
  line-height: 1.28;
  margin: 0;
  min-height: calc(1.28em * 2);
  max-height: calc(1.28em * 2);
  overflow: hidden;
}

.ops-flow-console-desc {
  color: rgba(194, 225, 235, 0.78);
  line-height: 1.55;
  font-size: 0.95rem;
  min-height: calc(1.55em * 3);
  max-height: calc(1.55em * 3);
  overflow: hidden;
}

.ops-flow-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0.85rem 0 0.6rem;
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  /* color: rgba(198, 230, 238, 0.72); */
  text-transform: uppercase;
}

.ops-flow-total #flow-total-progress {
  color: #8ceeff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.45);
}

.ops-risk-panel {
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 10px;
  background: rgba(1, 10, 18, 0.82);
  padding: 0.7rem 0.75rem;
  margin-top: 20px;
}

.ops-risk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ops-risk-head #flow-risk-value {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.ops-risk-bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.14);
  overflow: hidden;
}

#flow-risk-fill {
  display: block;
  width: 24%;
  height: 100%;
  background: linear-gradient(90deg, #24eb40 0%, #ffe600 45%, #ff3d3d 100%);
  box-shadow: 0 0 14px rgba(255, 61, 61, 0.45);
  transition: width 0.45s ease;
}

.ops-risk-tip {
  margin-top: 0.55rem;
  /* color: rgba(190, 224, 233, 0.76); */
  font-size: 0.85rem;
  line-height: 1.5;
  min-height: calc(1.5em * 2);
  max-height: calc(1.5em * 2);
  overflow: hidden;
}

.ops-flow-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 1rem 0;
  padding-top: 15px;
}

.flow-progress-seg {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.14);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.flow-progress-seg.active {
  background: rgba(0, 229, 255, 0.95);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}

.ops-flow-checkpoints {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.flow-checkpoint {
  text-align: center;
  padding: 0.3rem 0.2rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 255, 0.16);
  background: rgba(0, 229, 255, 0.05);
  color: rgba(204, 232, 240, 0.46);
  font-size: 0.56rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.flow-checkpoint.active {
  color: rgba(213, 246, 255, 0.85);
  border-color: rgba(0, 229, 255, 0.42);
  background: rgba(0, 229, 255, 0.11);
}

.flow-checkpoint.current {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}

.flow-checkpoint.pulse {
  animation: checkpoint-pulse 0.42s ease-out;
}

@keyframes checkpoint-pulse {
  0% {
    transform: scale(0.96);
    filter: brightness(0.85);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.ops-flow-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 40px;
}

.flow-console-btn {
  flex: 1;
  border: 1px solid rgba(0, 229, 255, 0.6);
  background: rgba(0, 229, 255, 0.11);
  color: #e6faff;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-console-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.25);
}

.flow-console-btn.ghost {
  border-color: rgba(204, 232, 240, 0.32);
  background: rgba(204, 232, 240, 0.06);
  color: rgba(204, 232, 240, 0.86);
}

.ops-flow-console.flash {
  animation: ops-console-flash 0.32s ease-out;
}

@keyframes ops-console-flash {
  0% {
    box-shadow: 0 0 36px rgba(0, 229, 255, 0.34), inset 0 0 20px rgba(0, 229, 255, 0.08);
  }
  100% {
    box-shadow: 0 0 28px rgba(0, 229, 255, 0.1), inset 0 0 18px rgba(0, 229, 255, 0.03);
  }
}

@media (max-width: 1080px) {
  .ops-flow-layout {
    grid-template-columns: 1fr;
  }

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

  .ops-flow-console {
    max-width: 720px;
    width: 100%;
    justify-self: center;
    min-height: 432px;
  }
}

@media (max-width: 768px) {
  .ops-flow {
    min-height: auto;
    padding: 4rem 0;
  }

  .ops-flow-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 318;
    background: rgba(2, 8, 18, 0.76);
    backdrop-filter: blur(5px);
  }

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

  .flow-step-card h3 {
    font-size: 1.05rem;
  }

  .flow-step-card {
    min-height: 148px;
    padding: 0.95rem 0.8rem;
  }

  .flow-step-tag {
    font-size: 0.52rem;
    right: 2.5rem;
    top: 0.72rem;
    padding: 0.14rem 0.35rem;
  }

  .flow-step-no {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .ops-flow-actions {
    grid-template-columns: 1fr;
    display: none;
  }

  .ops-flow-console {
    display: none;
    min-height: auto;
  }

  .ops-flow-console.mobile-modal-open {
    display: block;
    position: fixed;
    z-index: 320;
    top: max(5rem, env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, calc(100vw - 1.4rem));
    max-height: calc(100vh - 1.8rem);
    overflow-y: auto;
    margin: 0;
    padding-top: 2.6rem;
  }

  .ops-flow-console.mobile-modal-open .ops-flow-modal-close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(204, 232, 240, 0.38);
    border-radius: 999px;
    background: rgba(3, 14, 24, 0.88);
    color: rgba(230, 250, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
  }

  body.ops-flow-modal-open {
    overflow: hidden;
  }

  .ops-flow-console-title,
  .ops-flow-console-desc,
  .ops-risk-tip {
    min-height: auto;
  }

  .ops-flow-checkpoints {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: none;
  }

  .flow-checkpoint {
    font-size: 0.6rem;
  }

  .scroll-indicator {
    bottom: 0.5rem;
  }

  .uc-section .scroll-indicator {
    bottom: 3rem !important;
  }
}

/* ========================
   Solutions Matrix
   ======================== */
.solutions-matrix {
  --sol-x: 50%;
  --sol-y: 50%;
  --sol-accent: #77e8f2;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4.75rem 0;
  background-image:
    linear-gradient(135deg, rgba(5, 15, 30, 0.78), rgba(4, 10, 21, 0.84)),
    url('../img/background_session_4.png');
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, contain;
  overflow: hidden;
}

.solutions-matrix::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(119, 232, 242, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 232, 242, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.solutions-matrix::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--sol-x) var(--sol-y), rgba(119, 232, 242, 0.2), transparent 42%),
    radial-gradient(ellipse 80% 65% at 50% 50%, transparent 26%, #050c1c 100%);
  pointer-events: none;
  z-index: 0;
}

.solutions-matrix[data-active-module="main"] { --sol-accent: #77e8f2; }
.solutions-matrix[data-active-module="other"] { --sol-accent: #f6ca66; }
.solutions-matrix[data-active-module="ai"] { --sol-accent: #9a84ff; }

.solutions-matrix .container {
  position: relative;
  z-index: 2;
}

.solutions-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.solutions-badge {
  margin-bottom: 0.8rem;
}

.solutions-dot {
  background: var(--sol-accent) !important;
  box-shadow: 0 0 8px var(--sol-accent) !important;
}

.solutions-title {
  font-size: clamp(1.95rem, 3.5vw, 3rem);
  color: #d3eff2;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 0 22px color-mix(in srgb, var(--sol-accent) 38%, transparent);
}

.solutions-subtitle {
  margin: 0.8rem auto 0;
  max-width: 860px;
  color: rgba(214, 232, 242, 0.7);
  font-size: 0.98rem;
  animation: solutions-subtitle-blink 1.15s ease-in-out infinite;
}

@keyframes solutions-subtitle-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.matrix-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.75rem;
}

.matrix-orbit {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--sol-accent) 40%, transparent);
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(4, 13, 26, 0.94), rgba(2, 8, 17, 0.92)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 8px);
  box-shadow: inset 0 0 44px color-mix(in srgb, var(--sol-accent) 10%, transparent), 0 0 22px rgba(0, 0, 0, 0.35);
  padding: 1rem;
  overflow: hidden;
  display: grid;
  gap: 0.72rem;
}

.matrix-orbit::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 18%, color-mix(in srgb, var(--sol-accent) 18%, transparent), transparent 48%);
}

.matrix-module-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.mission-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  opacity: 0.92;
}

.mission-strip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sol-accent) 52%, #7f94a7 48%);
  box-shadow: 0 0 10px color-mix(in srgb, var(--sol-accent) 45%, transparent);
}

.mission-strip-dot.active {
  width: 9px;
  height: 9px;
  background: var(--sol-accent);
  box-shadow: 0 0 14px color-mix(in srgb, var(--sol-accent) 70%, transparent);
}

.mission-strip-line {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--sol-accent) 5%, transparent), color-mix(in srgb, var(--sol-accent) 75%, transparent), color-mix(in srgb, var(--sol-accent) 5%, transparent));
}

.matrix-orbit-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.orbit-module {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--sol-accent) 45%, transparent);
  background: linear-gradient(160deg, rgba(7, 17, 30, 0.96), rgba(3, 10, 20, 0.95));
  color: #d9eff2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.74rem 0.82rem;
  text-align: left;
  min-height: 76px;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.55rem;
  row-gap: 0.16rem;
  align-items: center;
}

.orbit-module.active,
.orbit-module:hover {
  color: #041126 !important;
  background: linear-gradient(130deg, color-mix(in srgb, var(--sol-accent) 86%, white 14%), color-mix(in srgb, var(--sol-accent) 72%, #9fb7c8 28%));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 0 18px color-mix(in srgb, var(--sol-accent) 65%, transparent);
}

.orbit-module.active {
  background: linear-gradient(130deg, color-mix(in srgb, var(--sol-accent) 92%, white 8%), color-mix(in srgb, var(--sol-accent) 78%, #9fb7c8 22%));
  color: #041126;
  box-shadow: 0 0 18px color-mix(in srgb, var(--sol-accent) 70%, transparent);
}

.orbit-module[data-module-node="main"].active,
.orbit-module[data-module-node="main"]:hover {
  background: linear-gradient(130deg, color-mix(in srgb, #9a84ff 92%, white 8%), color-mix(in srgb, #9a84ff 78%, #9fb7c8 22%));
  box-shadow: 0 0 18px color-mix(in srgb, #9a84ff 70%, transparent);
}

.module-chip-id {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--sol-accent) 45%, transparent);
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--sol-accent) 78%, #d9ebf4 22%);
  background: rgba(3, 12, 24, 0.82);
}

.module-chip-id svg {
  width: 26px;
  height: 26px;
}

.module-chip-name {
  font-size: 0.82rem;
  line-height: 1.2;
}

.module-chip-scan {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: var(--scan-soft, rgba(57, 255, 20, 0.26));
  overflow: hidden;
}

.module-chip-scan::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--scan-color, #39ff14), transparent);
  animation: chip-scan 2.2s linear infinite;
}

@keyframes chip-scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

.orbit-module.active .module-chip-id,
.orbit-module:hover .module-chip-id {
  background: rgba(4, 11, 20, 0.72);
  color: #041126;
  border-color: rgba(4, 11, 20, 0.15);
}

.orbit-module.active .module-chip-id {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: color-mix(in srgb, var(--sol-accent) 28%, rgba(5, 11, 22, 0.78));
}

.orbit-module[data-module-node="main"].active .module-chip-id,
.orbit-module[data-module-node="main"]:hover .module-chip-id {
  background: color-mix(in srgb, #9a84ff 28%, rgba(5, 11, 22, 0.78));
}

.matrix-btn {
  border: 1px solid color-mix(in srgb, var(--sol-accent) 65%, transparent);
  background: color-mix(in srgb, var(--sol-accent) 18%, transparent);
  color: #e8fcff;
  border-radius: 4px;
  padding: 0.45rem 0.62rem;
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}

.matrix-btn.ghost {
  background: rgba(220, 230, 240, 0.06);
  border-color: rgba(220, 230, 240, 0.26);
  color: rgba(220, 230, 240, 0.88);
}

.matrix-console {
  border: 1px solid color-mix(in srgb, var(--sol-accent) 38%, transparent);
  border-radius: 12px;
  background: rgba(4, 14, 24, 0.94);
  padding: 1rem;
  box-shadow: 0 0 22px color-mix(in srgb, var(--sol-accent) 15%, transparent);
  position: relative;
  overflow: hidden;
}

.matrix-console::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 10px;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--sol-accent) 80%, transparent));
  opacity: 0.7;
}

.matrix-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.matrix-console-head.only-status {
  justify-content: flex-end;
}

.matrix-console-label {
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--sol-accent) 80%, #d6e7ef 20%);
}

.matrix-console-status {
  font-family: 'Courier New', monospace;
  font-size: 0.66rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.2rem 0.52rem;
  background: var(--sol-accent);
  color: #041126;
  letter-spacing: 0.08em;
}

.matrix-module-focus {
  border: 1px solid rgba(221, 232, 239, 0.12);
  border-radius: 8px;
  background: rgba(2, 8, 17, 0.72);
  padding: 0.6rem;
  margin-bottom: 0.75rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.matrix-module-focus-label {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--sol-accent) 80%, #d5e5ee 20%);
  text-transform: uppercase;
}

.matrix-module-focus strong {
  display: block;
  margin-top: 0.3rem;
  color: #ebf9fd;
  font-size: 0.98rem;
}

.matrix-module-focus p {
  margin-top: 0.35rem;
  color: rgba(214, 231, 239, 0.8);
  line-height: 1.42;
  font-size: 0.84rem;
}

.matrix-metrics {
  display: grid;
  gap: 0.55rem;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  border: 1px solid rgba(223, 233, 240, 0.12);
  border-radius: 8px;
  padding: 0.42rem 0.55rem;
  color: rgba(213, 229, 237, 0.86);
}

.metric-row strong {
  color: color-mix(in srgb, var(--sol-accent) 90%, white 10%);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.matrix-feed-wrap {
  margin-top: 0.75rem;
  border: 1px solid rgba(221, 232, 239, 0.12);
  border-radius: 10px;
  padding: 0.6rem;
  min-height: 118px;
  background: rgba(2, 8, 17, 0.66);
}

.matrix-feed-title {
  font-family: 'Courier New', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  color: color-mix(in srgb, var(--sol-accent) 75%, #d5e5ee 25%);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.matrix-feed {
  display: grid;
  gap: 0.38rem;
}

.matrix-feed li {
  font-size: 0.82rem;
  color: rgba(214, 229, 238, 0.83);
  line-height: 1.42;
}

.matrix-features {
  margin-top: 1rem;
}

.matrix-feature-panel {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  position: relative;
}

.matrix-feature-panel[data-module-panel="main"] {
  --sol-accent: #9a84ff;
}

.matrix-feature-panel.active {
  display: grid;
}

.neo-feature {
  border: 1px solid color-mix(in srgb, var(--sol-accent) 24%, transparent);
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
  padding: 0.9rem 0.8rem;
  min-height: 118px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.neo-feature .module-chip-scan {
  margin-top: 0.55rem;
}

.neo-feature-assessment {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(154, 132, 255, 0.28), transparent 34%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-assessment .solution-card-icon-large svg,
.neo-feature-phishing .solution-card-icon-large svg,
.neo-feature-training .solution-card-icon-large svg,
.neo-feature-learning-path .solution-card-icon-large svg,
.neo-feature-smart-groups .solution-card-icon-large svg,
.neo-feature-library .solution-card-icon-large svg,
.neo-feature-analytics .solution-card-icon-large svg,
.neo-feature-report .solution-card-icon-large svg,
.neo-feature-autodefend .solution-card-icon-large svg,
.neo-feature-deepfake .solution-card-icon-large svg,
.neo-feature-policies .solution-card-icon-large svg,
.neo-feature-ia .solution-card-icon-large svg {
  color: color-mix(in srgb, var(--sol-accent) 78%, #e3f4f8 22%);
  width: 20px;
  height: 20px;
}

.neo-feature-phishing {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(154, 132, 255, 0.24), transparent 36%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-training {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(154, 132, 255, 0.2), transparent 38%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-learning-path {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 89% 10%, rgba(154, 132, 255, 0.19), transparent 38%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-smart-groups {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 87% 10%, rgba(154, 132, 255, 0.22), transparent 38%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-library {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 86% 11%, rgba(154, 132, 255, 0.2), transparent 38%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-analytics {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(154, 132, 255, 0.26), transparent 36%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-assessment .module-chip-scan,
.neo-feature-phishing .module-chip-scan,
.neo-feature-training .module-chip-scan,
.neo-feature-learning-path .module-chip-scan,
.neo-feature-smart-groups .module-chip-scan,
.neo-feature-library .module-chip-scan,
.neo-feature-analytics .module-chip-scan {
  grid-column: 1 / -1;
}

.neo-feature-assessment::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 132, 255, 0.26), transparent 68%);
  pointer-events: none;
}

.neo-feature-analytics::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 132, 255, 0.24), transparent 68%);
  pointer-events: none;
}

.neo-feature-report {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background: radial-gradient(circle at 88% 12%, rgba(154, 132, 255, 0.26), transparent 36%), linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-report .module-chip-scan {
  grid-column: 1 / -1;
}

.neo-feature-report::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 132, 255, 0.24), transparent 68%);
  pointer-events: none;
}

.neo-feature-autodefend {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(154, 132, 255, 0.28), transparent 34%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-autodefend .module-chip-scan {
  grid-column: 1 / -1;
}

.neo-feature-autodefend::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 132, 255, 0.26), transparent 68%);
  pointer-events: none;
}

.neo-feature-ia {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(154, 132, 255, 0.28), transparent 34%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-ia .module-chip-scan {
  grid-column: 1 / -1;
}

.neo-feature-ia::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 132, 255, 0.26), transparent 68%);
  pointer-events: none;
}

.neo-feature-deepfake {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(154, 132, 255, 0.28), transparent 34%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-deepfake .module-chip-scan {
  grid-column: 1 / -1;
}

.neo-feature-deepfake::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 132, 255, 0.26), transparent 68%);
  pointer-events: none;
}

/* Deepfake spotlight styles */
.spot-deepfake-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 1px dashed rgba(110, 236, 255, 0.3);
  border-radius: 8px;
  padding: 0.55rem 0.4rem;
  background: rgba(12, 28, 44, 0.5);
  color: rgba(160, 220, 240, 0.6);
  flex: 1;
}

.spot-deepfake-drop-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(160, 220, 240, 0.5);
}

.spot-deepfake-checks {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin-top: 0.1rem;
}

.spot-deepfake-check {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: rgba(180, 210, 230, 0.7);
  line-height: 1.3;
}

.spot-deepfake-chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: rgba(110, 236, 255, 0.14);
  border: 1px solid rgba(110, 236, 255, 0.35);
  color: rgba(110, 236, 255, 0.9);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.spot-deepfake-policy-list {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  margin-top: 0.5rem;
}

.spot-deepfake-policy-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(180, 210, 230, 0.7);
  line-height: 1.3;
}

.spot-deepfake-policy-item.ok svg {
  color: rgba(110, 236, 255, 0.85);
  flex-shrink: 0;
}

.spot-deepfake-output-types {
  display: flex;
  gap: 0.4rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.spot-deepfake-type-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 5px;
}

.spot-deepfake-type-chip.audio {
  background: rgba(154, 132, 255, 0.16);
  border: 1px solid rgba(154, 132, 255, 0.35);
  color: rgba(200, 185, 255, 0.9);
}

.spot-deepfake-type-chip.video {
  background: rgba(110, 236, 255, 0.12);
  border: 1px solid rgba(110, 236, 255, 0.3);
  color: rgba(160, 230, 245, 0.9);
}

.spot-deepfake-ready-badge {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(110, 236, 255, 0.1);
  border: 1px solid rgba(110, 236, 255, 0.28);
  color: rgba(160, 230, 245, 0.85);
  text-align: center;
}

.spot-deepfake-chart {
  padding: 15px !important;
}

.neo-feature-policies {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(154, 132, 255, 0.28), transparent 34%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

.neo-feature-policies .module-chip-scan {
  grid-column: 1 / -1;
}

.neo-feature-policies::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 132, 255, 0.26), transparent 68%);
  pointer-events: none;
}

/* Keep all cards with the exact same background as the first card */
.neo-feature-assessment,
.neo-feature-phishing,
.neo-feature-training,
.neo-feature-learning-path,
.neo-feature-smart-groups,
.neo-feature-library,
.neo-feature-analytics,
.neo-feature-report,
.neo-feature-autodefend,
.neo-feature-ia,
.neo-feature-deepfake,
.neo-feature-policies {
  background:
    radial-gradient(circle at 88% 12%, rgba(154, 132, 255, 0.28), transparent 34%),
    linear-gradient(160deg, rgba(4, 13, 24, 0.96), rgba(3, 11, 21, 0.94));
}

/* Policies spotlight styles */
.spot-policies-tabs {
  display: flex;
  gap: 0.3rem;
  margin: 0.3rem 0;
}

.spot-policies-tab {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(110, 236, 255, 0.2);
  color: rgba(160, 220, 240, 0.55);
  cursor: default;
}

.spot-policies-tab.active {
  background: rgba(110, 236, 255, 0.12);
  border-color: rgba(110, 236, 255, 0.4);
  color: rgba(200, 240, 255, 0.95);
}

.spot-policies-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  border: 1px dashed rgba(110, 236, 255, 0.3);
  border-radius: 7px;
  padding: 0.5rem 0.4rem;
  background: rgba(12, 28, 44, 0.5);
  color: rgba(200, 235, 250, 0.75);
}

.spot-policies-drop-label {
  font-size: 0.9rem;
  color: rgba(200, 235, 250, 0.7);
}

.spot-policies-meta {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  margin-top: 0.3rem;
}

.spot-policies-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(180, 220, 240, 0.7);
}

.spot-policies-meta-val {
  color: rgba(210, 240, 255, 0.92);
  font-weight: 600;
}

.spot-policies-notif-mock {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  margin-top: 0.5rem;
}

.spot-policies-notif-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(200, 230, 248, 0.85);
}

.spot-policies-notif-row.pending {
  color: rgba(180, 210, 230, 0.5);
}

.spot-policies-notif-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(110, 236, 255, 0.85);
  flex-shrink: 0;
}

.spot-policies-notif-dot.pending {
  background: rgba(180, 210, 230, 0.3);
}

.spot-policies-notif-badge {
  margin-left: auto;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 3px;
}

.spot-policies-notif-badge.new {
  background: rgba(154, 132, 255, 0.18);
  border: 1px solid rgba(154, 132, 255, 0.35);
  color: rgba(210, 195, 255, 0.95);
}

.solution-card-icon-large {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--sol-accent) 44%, transparent);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(12, 32, 48, 0.94), rgba(6, 18, 30, 0.94));
  color: color-mix(in srgb, var(--sol-accent) 84%, #eefcff 16%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 22px color-mix(in srgb, var(--sol-accent) 18%, transparent);
}

.solution-card-icon-large svg {
  width: 24px;
  height: 24px;
}

.solution-card-copy {
  display: block;
  min-width: 0;
}

.matrix-feature-panel.focused {
  grid-template-columns: 1fr;
}

.matrix-stage.panel-focused .matrix-orbit {
  display: none;
}

.matrix-feature-panel.focused .neo-feature {
  display: none;
}

.matrix-feature-panel.focused .neo-feature.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
  min-height: 320px;
  padding: 1.15rem;
  border-color: color-mix(in srgb, var(--sol-accent) 78%, transparent);
  box-shadow:
    inset 0 0 44px color-mix(in srgb, var(--sol-accent) 12%, transparent),
    0 0 24px color-mix(in srgb, var(--sol-accent) 28%, transparent);
  background:
    radial-gradient(circle at 82% 8%, color-mix(in srgb, var(--sol-accent) 28%, transparent), transparent 36%),
    linear-gradient(160deg, rgba(5, 14, 25, 0.98), rgba(3, 11, 22, 0.97));
}

.matrix-feature-panel.focused .neo-feature.active .module-chip-scan {
  display: none;
}

.matrix-feature-close-btn {
    display: none;
}

.matrix-spotlight-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--sol-accent) 42%, transparent);
  border-radius: 999px;
  background: rgba(5, 14, 25, 0.86);
  color: color-mix(in srgb, var(--sol-accent) 84%, #f3fbff 16%);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 0 18px color-mix(in srgb, var(--sol-accent) 18%, transparent);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.matrix-feature-panel.focused .matrix-spotlight-close {
  display: inline-flex;
}

.matrix-spotlight-close:hover,
.matrix-spotlight-close:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--sol-accent) 72%, transparent);
  background: rgba(8, 20, 35, 0.96);
  box-shadow: 0 0 22px color-mix(in srgb, var(--sol-accent) 26%, transparent);
}

.neo-feature:hover,
.neo-feature.active {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--sol-accent) 58%, transparent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--sol-accent) 20%, transparent);
}

.solution-card-title {
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--sol-accent) 78%, #e3f4f8 22%);
  line-height: 1.3;
}

.solution-card-desc {
  margin-top: 0.38rem;
  font-size: 0.88rem;
  color: rgba(214, 226, 235, 0.8);
  line-height: 1.45;
}

.matrix-feature-panel.focused .neo-feature.active .solution-card-title {
  font-size: clamp(1.15rem, 2.1vw, 1.38rem);
}

.matrix-feature-panel.focused .neo-feature.active .solution-card-desc {
  display: none;
}

.matrix-feature-panel.focused .neo-feature.active .solution-card-icon-large {
  display: none;
}

.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.active:first-child .solution-card-desc {
  display: none;
}

.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.active:first-child .solution-card-icon-large {
  display: none;
}

.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.active:nth-child(2) .solution-card-desc {
  display: none;
}

.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.active:nth-child(2) .solution-card-icon-large {
  display: none;
}

.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.active:nth-child(3) .solution-card-desc {
  display: none;
}

.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.active:nth-child(3) .solution-card-icon-large {
  display: none;
}

.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.neo-feature-analytics.active .solution-card-icon-large {
  display: none;
}

.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.active.neo-feature-learning-path .solution-card-desc,
.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.active.neo-feature-learning-path .solution-card-icon-large {
  display: none;
}

.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.active.neo-feature-smart-groups .solution-card-desc,
.matrix-feature-panel[data-module-panel="main"].focused .neo-feature.active.neo-feature-smart-groups .solution-card-icon-large {
  display: none;
}

.neo-feature-visual {
  display: none;
}

.matrix-feature-panel.focused .neo-feature.active .neo-feature-visual {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.neo-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.neo-visual-lane,
.neo-visual-id,
.neo-visual-kpi,
.neo-visual-tag {
  font-family: 'Courier New', monospace;
}

.neo-visual-lane {
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--sol-accent) 82%, #e2f4f8 18%);
}

.neo-visual-id {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  color: rgba(218, 231, 240, 0.78);
}


.neo-visual-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.neo-visual-kpi {
  border: 1px solid color-mix(in srgb, var(--sol-accent) 42%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--sol-accent) 12%, rgba(6, 14, 24, 0.92));
  color: #e7f7fb;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.55rem;
}

.neo-visual-wave {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.38rem;
  min-height: 76px;
  border: 1px solid color-mix(in srgb, var(--sol-accent) 26%, transparent);
  border-radius: 10px;
  padding: 0.6rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--sol-accent) 5%, transparent), rgba(7, 15, 26, 0.84)),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(255, 255, 255, 0.03) 10px 11px);
}

.neo-visual-wave span {
  align-self: end;
  height: 14px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--sol-accent) 92%, white 8%), color-mix(in srgb, var(--sol-accent) 48%, #13253c 52%));
  box-shadow: 0 0 10px color-mix(in srgb, var(--sol-accent) 32%, transparent);
  animation: neo-wave 1.9s ease-in-out infinite;
}

.neo-visual-wave span:nth-child(2) { height: 34px; animation-delay: 0.12s; }
.neo-visual-wave span:nth-child(3) { height: 56px; animation-delay: 0.24s; }
.neo-visual-wave span:nth-child(4) { height: 26px; animation-delay: 0.36s; }

.neo-visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.neo-visual-tag {
  border: 1px solid color-mix(in srgb, var(--sol-accent) 44%, transparent);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.24rem 0.5rem;
  color: color-mix(in srgb, var(--sol-accent) 80%, #f2f8fb 20%);
  background: color-mix(in srgb, var(--sol-accent) 10%, rgba(5, 13, 23, 0.84));
}

@keyframes neo-wave {
  0%, 100% { transform: scaleY(0.88); opacity: 0.82; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

/* === Knowledge Assessment Spotlight === */
.spot-assess-visual {
  margin-top: 0.6rem;
}

.spot-assess-header {
  font-size: 16px;
  color: rgba(163, 255, 230, 0.7);
  line-height: 1.4;
  margin-bottom: 40px;
  padding: 0 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.spot-assess {
  display: grid;
  grid-template-columns: 26% 10% 26% 10% 24%;
  gap: 0.75rem;
  /* border: 1px solid color-mix(in srgb, var(--sol-accent) 40%, transparent); */
  /* border-radius: 12px; */
  /* background: */
    /* radial-gradient(140% 120% at 0% 0%, rgba(35, 237, 255, 0.12), transparent 48%), */
    /* radial-gradient(120% 120% at 100% 100%, rgba(54, 255, 180, 0.1), transparent 52%), */
    /* linear-gradient(120deg, rgba(4, 20, 34, 0.94), rgba(3, 12, 24, 0.96)); */
  padding: 0.85rem 1rem;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(115, 247, 255, 0.12),
    0 0 20px rgba(27, 220, 255, 0.14);
}

.spot-assess-library {
  grid-template-columns: 100% !important;
}

.spot-ia-grid {
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 0.65rem !important;
}

.spot-ia-agents {
  grid-template-columns: auto 1fr !important;
  gap: 1.2rem !important;
  align-items: stretch;
}

.spot-ia-agent-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(154, 132, 255, 0.35);
  background: radial-gradient(circle at 50% 30%, rgba(154, 132, 255, 0.18), transparent 68%),
    linear-gradient(160deg, rgba(14, 10, 30, 0.9), rgba(8, 6, 20, 0.96));
  min-width: 110px;
  gap: 0.38rem;
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  padding: 0.48rem;
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db;
}

.spot-ia-hub-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(154, 132, 255, 0.16);
  border: 1px solid rgba(154, 132, 255, 0.4);
  color: rgba(190, 175, 255, 0.95);
  box-shadow: 0 0 18px rgba(154, 132, 255, 0.25);
}

.spot-ia-hub-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--sol-accent) 72%, #d0ecf8 28%);
}

.spot-ia-hub-status {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.9rem;
  color: rgba(180, 210, 230, 0.65);
  white-space: nowrap;
}

.spot-ia-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(154, 132, 255, 0.9);
  box-shadow: 0 0 6px rgba(154, 132, 255, 0.8);
  animation: ia-pulse 1.6s ease-in-out infinite;
}

@keyframes ia-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.spot-ia-agent-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.spot-ia-agent {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.62rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(110, 236, 255, 0.14);
  background: linear-gradient(160deg, rgba(12, 28, 44, 0.65), rgba(6, 18, 30, 0.72));
  transition: border-color 0.2s;
  gap: 0.38rem;
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  padding: 0.48rem;
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db;
}

.spot-ia-agent:hover {
  border-color: rgba(154, 132, 255, 0.35);
}

.spot-ia-agent-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spot-ia-agent-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(154, 132, 255, 0.14);
  border: 1px solid rgba(154, 132, 255, 0.28);
  color: rgba(190, 175, 255, 0.9);
  flex-shrink: 0;
}

.spot-ia-agent-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--sol-accent) 72%, #d0ecf8 28%);
  flex: 1;
}

.spot-ia-agent-badge {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(154, 132, 255, 0.18);
  color: rgba(190, 175, 255, 0.9);
  border: 1px solid rgba(154, 132, 255, 0.3);
  white-space: nowrap;
}

.spot-ia-agent-desc {
  font-size: 1rem;
  color: rgba(180, 210, 230, 0.65);
  line-height: 1.45;
  padding-left: calc(24px + 0.5rem);
  padding-right: calc(96px + 0.5rem);
}

.spot-ia-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  padding: 0.85rem 0.9rem;
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.06);
}

.spot-ia-feat-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.spot-ia-feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(154, 132, 255, 0.14);
  border: 1px solid rgba(154, 132, 255, 0.28);
  color: rgba(190, 175, 255, 0.9);
  flex-shrink: 0;
}

.spot-ia-feat-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--sol-accent) 72%, #d0ecf8 28%);
  text-transform: uppercase;
  line-height: 1.3;
}

.spot-ia-feat-desc {
  font-size: 0.9rem;
  color: rgba(180, 210, 230, 0.7);
  line-height: 1.45;
  flex: 1;
  margin-top: 15px;
}

.spot-ia-feat-chip {
  align-self: flex-end;
  margin-top: 15px;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(154, 132, 255, 0.18);
  color: rgba(190, 175, 255, 0.9);
  border: 1px solid rgba(154, 132, 255, 0.3);
}

/* Form panel */
.spot-form-panel {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  padding: 0.48rem;
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db;
}

.spot-form-panel2 {
  gap: 0.38rem;
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  padding: 0.48rem;
  /* box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db; */
}

.spot-form-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--sol-accent) 72%, #d0ecf8 28%);
  margin-bottom: 1rem;
}

.spot-form-progress {
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 0.2rem;
}

.spot-form-prog-bar {
  height: 100%;
  width: var(--prog, 0%);
  border-radius: 99px;
  background: linear-gradient(90deg, #33f2ff, #7fffd0);
  box-shadow: 0 0 10px rgba(56, 238, 255, 0.55);
  animation: bar-grow 0.7s ease forwards;
}

.spot-email-mock {
  border: 1px solid rgba(127, 235, 255, 0.26);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(14, 30, 44, 0.84), rgba(8, 18, 30, 0.9));
  padding: 0.8rem;
  display: grid;

  gap: 0.38rem;
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  /* padding: 0.48rem; */
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db;
}

.spot-email-top {
  font-size: 0.9rem;
  color: rgba(187, 210, 228, 0.72);
  display: flex;
  gap: 0.22rem;
  align-items: baseline;
}

.spot-email-top strong {
  color: #b7f6ff;
  font-weight: 600;
}

.spot-email-subject {
  font-size: 0.9rem;
  color: rgba(215, 232, 242, 0.9);
  line-height: 1.5;
  text-align: left;
  border-bottom: 1px solid #447582;
  padding-bottom: 7px;
}

.spot-email-subject span {
  color: rgba(187, 210, 228, 0.72);
}

.spot-email-body {
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(204, 226, 239, 0.86);
  margin-top: 10px;
}

.spot-email-body-library {
  margin-top: 10px !important;
  text-align: left !important;
}

.spot-email-btn {
  border: none;
  border-radius: 6px;
  padding: 0.32rem 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #032734;
  background: linear-gradient(180deg, #88f3ff, #3fd0ef);
  margin: auto;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 15px;
}

.spot-email-url {
  font-size: 0.52rem;
  color: rgba(157, 190, 215, 0.75);
  word-break: break-all;
}

.spot-form-q {
  font-size: 0.9rem;
  color: rgba(215, 232, 242, 0.88);
  line-height: 1;
  min-height: 2.6em;
  margin-top: 10px;
  margin-bottom: 10px;
}

.spot-form-options {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  flex: 1;
}

.spot-form-opt {
  font-size: 0.9rem;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(124, 226, 255, 0.2);
  color: rgba(212, 236, 247, 0.75);
  background: linear-gradient(180deg, rgba(15, 30, 44, 0.7), rgba(10, 22, 36, 0.64));
  line-height: 1.3;
}

.spot-form-opt.correct.selected {
  border-color: rgba(69, 255, 214, 0.62);
  background: linear-gradient(180deg, rgba(11, 48, 56, 0.82), rgba(10, 36, 45, 0.72));
  color: #a8fff2;
  box-shadow: 0 0 14px rgba(50, 235, 197, 0.26);
}

.spot-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.1rem;
}

.spot-form-badge {
  font-size: 0.6rem;
  font-family: 'Courier New', monospace;
  color: #FFFFFF;
  letter-spacing: 0.08em;
}

.spot-form-dot-row {
  display: flex;
  gap: 4px;
  align-items: center;
}

.spot-form-dot-row span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.spot-form-dot-row span.active {
  background: color-mix(in srgb, var(--sol-accent) 88%, white 12%);
  box-shadow: 0 0 4px color-mix(in srgb, var(--sol-accent) 60%, transparent);
}

.spot-chart-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8defff;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(57, 237, 255, 0.3);
  /* margin-top: 20px; */
}

/* Connector */
.spot-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spot-conn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  width: 100%;
  max-width: 130px;
  height: 48px;
  color: #a8f7ff;
  clip-path: polygon(0 12%, 78% 12%, 100% 50%, 78% 88%, 0 88%, 8% 50%);
  animation: conn-pulse 1.9s ease-in-out infinite;
}

.spot-conn-arrow span {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 7px rgba(73, 240, 255, 0.38);
}

.spot-conn-arrow svg {
  flex-shrink: 0;
}

@keyframes conn-pulse {
  0%, 100% { transform: translateX(0); opacity: 0.9; }
  50% { transform: translateX(4px); opacity: 1; }
}

.spot-chart {
    gap: 0.38rem;
    border: 1px solid rgba(110, 236, 255, 0.18);
    border-radius: 10px;
    background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
    padding: 0.48rem;
    /* box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
    background-color: #9185db; */
    gap: 0.38rem;
    border: 1px solid rgba(110, 236, 255, 0.18);
    border-radius: 10px;
    background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
    padding: 15px;
    box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
    background-color: #9185db;
}

.spot-login-screen {
  border: 1px solid rgba(132, 238, 255, 0.28);
  border-radius: 10px;
  background: linear-gradient(165deg, rgba(16, 38, 56, 0.8), rgba(8, 20, 33, 0.9));
  padding: 0.52rem;
  display: grid;
  gap: 0.28rem;
  min-height: 150px;
  gap: 0.38rem;
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  padding: 0.48rem;
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db;
}

.spot-login-brand {
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  color: rgba(150, 246, 255, 0.8);
  margin-top: 10px;
  margin-bottom: 15px;
}

.spot-login-title {
  font-size: 0.9rem;
  color: #daf3ff;
  font-weight: 600;
  margin: auto;
  margin-top: 0px;
  margin-bottom: 10px;
}

.spot-login-field {
  border: 1px solid rgba(139, 227, 255, 0.22);
  border-radius: 6px;
  padding: 0.28rem 0.42rem;
  font-size: 0.9rem;
  color: rgba(178, 208, 225, 0.8);
  background: rgba(7, 18, 30, 0.86);
}

.spot-login-btn {
  border: none;
  border-radius: 6px;
  padding: 0.32rem 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #032734;
  background: linear-gradient(180deg, #90ffd6, #42d8a0);
  width: 150px;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 20px;
}

.spot-login-note {
  font-size: 0.54rem;
  color: rgba(255, 177, 177, 0.84);
  margin-top: 0.1rem;
}

.spot-lms-screen {
  border: 1px solid rgba(132, 238, 255, 0.28);
  border-radius: 10px;
  background: linear-gradient(165deg, rgba(16, 38, 56, 0.8), rgba(8, 20, 33, 0.9));
  padding: 0.52rem 1.5rem;
  display: grid;
  gap: 0.35rem;
  min-height: 150px;
  gap: 0.38rem;
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db;
}

.spot-lms-head {
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(150, 246, 255, 1);
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.spot-lms-course {
  font-size: 0.66rem;
  color: #daf3ff;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.spot-lms-progress {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.spot-lms-progress span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #8ff6ff, #42d8ef);
  box-shadow: 0 0 12px rgba(73, 233, 255, 0.36);
}

.spot-lms-meta {
  font-size: 0.6rem;
  color: #FFFFFF;
}

.spot-cert-card {
  border: 1px solid rgba(112, 233, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(170deg, rgba(12, 31, 45, 0.76), rgba(6, 18, 30, 0.82));
  padding: 0.45rem;
  display: grid;
  gap: 0.32rem;
}

.spot-cert-name {
  font-size: 0.62rem;
  color: rgba(212, 234, 246, 0.88);
  line-height: 1.35;
}

.spot-cert-btn {
  border: none;
  border-radius: 6px;
  padding: 0.3rem 0.42rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #032734;
  background: linear-gradient(180deg, #a7ffd9, #4be0ac);
  width: 100%;
}

.spot-smart-groups-list {
  display: grid;
  gap: 0.34rem;
  min-height: 150px;
}

.spot-smart-group-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0.32rem 0.5rem;
  border: 1px solid rgba(126, 232, 255, 0.32);
  border-radius: 8px;
  background: linear-gradient(165deg, rgba(16, 38, 56, 0.75), rgba(8, 20, 33, 0.88));
  font-size: 0.9rem;
  text-align: center;
  color: rgba(209, 231, 243, 0.9);
}

.spot-track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  min-height: 150px;
  align-content: center;
}

.spot-track-chip {
  border: 1px solid rgba(126, 232, 255, 0.28);
  border-radius: 8px;
  padding: 0.38rem 0.4rem;
  font-size: 0.6rem;
  text-align: center;
  color: rgba(209, 231, 243, 0.9);
  background: linear-gradient(165deg, rgba(16, 38, 56, 0.75), rgba(8, 20, 33, 0.88));
}

.spot-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  min-height: 160px;
  align-content: center;
}

.spot-library-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.85rem 0.6rem;
  border: 1px solid rgba(126, 232, 255, 0.3);
  border-radius: 10px;
  background: linear-gradient(165deg, rgba(16, 38, 56, 0.72), rgba(8, 20, 33, 0.85));
  gap: 0.4rem;
  gap: 0.38rem;
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  padding: 0.48rem;
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db;
}

.spot-library-thumb {
  width: 100%;
  min-height: 170px;
  border-radius: 8px;
  border: 1px solid rgba(126, 232, 255, 0.3);
  background: linear-gradient(165deg, rgba(6, 25, 40, 0.92), rgba(5, 15, 28, 0.95));
  padding: 1.2rem;
}

.spot-library-thumb-capture {
  padding: 0.48rem;
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db;
  border-radius: 8px;
  border: 1px solid rgba(126, 232, 255, 0.3);
  background: linear-gradient(165deg, rgba(6, 25, 40, 0.92), rgba(5, 15, 28, 0.95));
  padding: 1.2rem;
}



.spot-thumb-title-capture {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(133, 242, 255, 0.95);
  margin-bottom: 0.3rem;
}

.spot-thumb-panel-capture {
  border: 1px solid rgba(126, 232, 255, 0.24);
  border-radius: 6px;
  padding: 0.32rem;
  background: rgba(7, 19, 30, 0.88);
}

.spot-thumb-title {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(133, 242, 255, 0.95);
  margin-bottom: 0.3rem;
}

.spot-thumb-panel {
  border: 1px solid rgba(126, 232, 255, 0.24);
  border-radius: 6px;
  padding: 0.32rem;
  background: rgba(7, 19, 30, 0.88);
  width: 100%;
  min-height: 170px;
}

.spot-thumb-row {
  font-size: 0.5rem;
  line-height: 1.3;
  color: rgba(204, 236, 246, 0.78);
  margin-bottom: 0.2rem;
}

.spot-thumb-row span {
  color: rgba(204, 236, 246, 0.95);
  font-weight: 600;
}

.spot-thumb-btn {
  margin-top: 0.26rem;
  width: 100%;
  text-align: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: #07243a;
  border-radius: 999px;
  padding: 0.14rem 0.3rem;
  background: linear-gradient(90deg, #54d8ff, #7eeabf);
}

.spot-thumb-brand {
  font-size: 0.45rem;
  letter-spacing: 0.05em;
  color: rgba(133, 242, 255, 0.86);
  margin-bottom: 0.2rem;
}

.spot-thumb-field {
  border: 1px solid rgba(126, 232, 255, 0.27);
  border-radius: 4px;
  padding: 0.16rem 0.22rem;
  font-size: 0.48rem;
  color: rgba(204, 236, 246, 0.7);
  margin-bottom: 0.18rem;
}

.spot-thumb-video {
  display: flex;
  align-items: center;
  gap: 0.24rem;
  border: 1px solid rgba(126, 232, 255, 0.24);
  border-radius: 4px;
  padding: 0.2rem;
  font-size: 0.47rem;
  color: rgba(204, 236, 246, 0.76);
  margin-bottom: 0.2rem;
}

.spot-thumb-play {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(133, 242, 255, 0.95);
}

.spot-thumb-progress {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(126, 232, 255, 0.2);
  overflow: hidden;
  margin-bottom: 0.2rem;
}

.spot-thumb-progress span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, #49d7ff, #52e9bf);
}

.spot-library-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, rgba(154, 132, 255, 0.15), transparent 60%);
  color: rgba(154, 132, 255, 0.8);
}

.spot-library-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(209, 231, 243, 0.95);
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.spot-library-card p {
  font-size: 0.9rem;
  color: rgba(209, 231, 243, 0.65);
  margin: 0;
  line-height: 1.3;
  width: 90%;
  text-align: center;
  margin-bottom: 20px;
}

.spot-library-badge {
  display: inline-flex;
  padding: 0.2rem 0.42rem;
  border-radius: 4px;
  background: rgba(154, 132, 255, 0.15);
  color: rgba(154, 132, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.spot-learning-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem;
}

.spot-assess.spot-learning-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.spot-learning-column {
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  padding: 0.6rem;
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  min-height: 220px;

  gap: 0.38rem;
  border: 1px solid rgba(110, 236, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(12, 28, 44, 0.72), rgba(6, 18, 30, 0.78));
  padding: 0.48rem;
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db;
}

.spot-learning-title {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--sol-accent) 72%, #d0ecf8 28%);
}

.spot-learning-list {
  display: grid;
  gap: 0.4rem;
}

.spot-learning-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.34rem 0.55rem;
  border: 1px solid rgba(126, 232, 255, 0.35);
  border-radius: 8px;
  background: linear-gradient(165deg, rgba(16, 38, 56, 0.75), rgba(8, 20, 33, 0.88));
  font-size: 0.9rem;
  line-height: 1.25;
  text-align: center;
  color: rgba(209, 231, 243, 0.9);
}

.spot-bars {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.9rem;
  height: 210px;
  margin-top: auto;
  padding: 0.26rem 0.3rem 0.18rem;
  border: 1px solid rgba(120, 232, 255, 0.15);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 40, 58, 0.2), rgba(8, 17, 28, 0.35));
}

.spot-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.22rem;
  flex: 1;
  height: 100%;
}

.spot-bar-label {
  font-size: 0.7rem;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
}

.spot-bar-track {
  width: 100%;
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(183, 230, 247, 0.12), rgba(255, 255, 255, 0.06));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.spot-bar-fill {
  width: 100%;
  height: var(--bar-h, 0%);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #9ff4ff, #43c9ff);
  box-shadow: 0 0 10px rgba(80, 206, 255, 0.35);
  animation: bar-grow-v 0.55s cubic-bezier(.22,.68,0,1.2) forwards;
}

.spot-bar-col:nth-child(2) .spot-bar-fill {
  background: linear-gradient(180deg, #a7ffe6, #54e9b8);
  box-shadow: 0 0 10px rgba(76, 231, 185, 0.34);
}

.spot-bar-col:nth-child(3) .spot-bar-fill {
  background: linear-gradient(180deg, #9fd2ff, #6d9fff);
  box-shadow: 0 0 10px rgba(105, 159, 255, 0.34);
}

.spot-bar-col:nth-child(4) .spot-bar-fill {
  background: linear-gradient(180deg, #7ffcff, #38dfff);
  box-shadow: 0 0 10px rgba(56, 223, 255, 0.34);
}

.spot-bar-col:nth-child(5) .spot-bar-fill {
  background: linear-gradient(180deg, #b9efff, #73d3ff);
  box-shadow: 0 0 10px rgba(115, 211, 255, 0.32);
}

@keyframes bar-grow-v {
  from { height: 0; }
  to { height: var(--bar-h, 0%); }
}

.spot-bar-val {
  font-size: 0.8rem;
  color: #FFFFFF;
  text-align: center;
}

/* Side panel */
.spot-side {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-left: 0px solid rgba(109, 231, 255, 0.24);
  padding-left: 0.8rem;
  gap: 0.38rem;
}

.spot-bench {
  background: linear-gradient(165deg, rgba(15, 36, 52, 0.86), rgba(7, 19, 31, 0.78));
  border: 1px solid rgba(110, 236, 255, 0.26);
  border-radius: 10px;
  padding: 0.6rem 0.65rem;
  /* box-shadow: inset 0 0 14px rgba(35, 209, 255, 0.11); */
  margin: auto;
  width: 100%;
  padding: 20px 10px;

  border: 1px solid rgba(110, 236, 255, 0.18);
  box-shadow: inset 0 0 14px rgba(24, 209, 255, 0.08);
  background-color: #9185db;
}

.spot-bench-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--sol-accent) 72%, #d0ecf8 28%);
  margin-bottom: 0.5rem;
}

.spot-bench-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spot-bench-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.spot-bench-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Courier New', monospace;
}

.spot-bench-num.your {
  color: #9af7ff;
  text-shadow: 0 0 10px rgba(84, 233, 255, 0.45);
}

.spot-bench-num.ref {
  color: rgba(200, 220, 235, 0.7);
}

.spot-bench-sub {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(190, 210, 225, 0.55);
  text-align: center;
  padding-top: 5px;
}

.spot-bench-divider {
  font-size: 2rem;
  color: rgba(200, 218, 230, 0.45);
  text-transform: uppercase;
}

/* Campaigns mini list */
.spot-campaigns {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.spot-phish-report {
  display: grid;
  gap: 0.28rem;
}

.spot-camp-header {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--sol-accent) 72%, #d0ecf8 28%);
  margin-bottom: 0.6rem;
  margin-top: 20px;
}

.spot-camp-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.spot-camp-tab {
  font-size: 0.62rem;
  padding: 0.18rem 0.5rem;
  border-radius: 99px;
  border: 1px solid color-mix(in srgb, var(--sol-accent) 30%, transparent);
  color: rgba(200, 218, 230, 0.6);
  cursor: default;
}

.spot-camp-tab.active {
  background: linear-gradient(180deg, rgba(41, 229, 255, 0.24), rgba(27, 164, 255, 0.15));
  border-color: rgba(78, 239, 255, 0.6);
  color: #a6f9ff;
  box-shadow: 0 0 10px rgba(64, 220, 255, 0.2);
}

.spot-camp-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.4rem;
  border-radius: 7px;
  /* background: rgba(255, 255, 255, 0.04); */
}

.spot-camp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.spot-camp-dot.running {
  background: #22c983;
  box-shadow: 0 0 5px rgba(34, 201, 131, 0.6);
}

.spot-camp-name {
  /* font-size: 0.9rem; */
  color: rgba(210, 228, 240, 0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .spot-assess {
    grid-template-columns: 1fr;
  }

  .spot-connector {
    width: 100%;
    min-height: 40px;
  }

  .spot-conn-arrow {
    max-width: 180px;
    height: 40px;
    clip-path: polygon(0 15%, 82% 15%, 100% 50%, 82% 85%, 0 85%, 6% 50%);
  }

  .spot-conn-arrow span {
    font-size: 0.58rem;
  }

  .spot-conn-arrow svg {
    transform: rotate(90deg);
  }

  .spot-bars {
    gap: 0.3rem;
  }

  .spot-form-panel {
    border-bottom: 1px solid color-mix(in srgb, var(--sol-accent) 20%, transparent);
    padding-bottom: 0.65rem;
  }

  .spot-side {
    border-left: none;
    /* border-top: 1px solid color-mix(in srgb, var(--sol-accent) 20%, transparent); */
    padding-left: 0;
    padding-top: 0.65rem;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .spot-bench, .spot-campaigns {
    flex: 1 1 140px;
  }

  .spot-learning-columns {
    gap: 2rem;
  }

  .spot-library-grid {
    display: contents;
  }

  .spot-ia-agent-desc {
    font-size: 1rem;
    color: rgba(180, 210, 230, 0.95);
    line-height: 1.25;
    padding: 10px 15px;
  }
}

.orbit-module:focus-visible,
.neo-feature:focus-visible,
.matrix-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

@media (max-width: 1120px) {
  .matrix-module-grid {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  }
}

@media (max-width: 768px) {
  .solutions-matrix {
    min-height: auto;
    padding: 4rem 0;
  }

  .solutions-subtitle {
    font-size: 0.92rem;
  }

  .matrix-orbit {
    padding: 0.85rem;
  }

  .orbit-module {
    font-size: 0.7rem;
    padding: 0.58rem 0.62rem;
    min-height: 70px;
  }

  .module-chip-id {
    min-width: 42px;
    height: 42px;
    font-size: 0.66rem;
  }

  .module-chip-id svg {
    width: 22px;
    height: 22px;
  }

  .module-chip-name {
    font-size: 0.74rem;
  }

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

  .neo-feature {
    min-height: 102px;
  }

  .matrix-feature-panel.focused .neo-feature.active {
    min-height: 280px;
  }

  .neo-visual-kpis {
    grid-template-columns: 1fr;
  }

  .matrix-console {
    padding: 0.85rem;
  }

  .matrix-metrics {
    gap: 0.45rem;
  }
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.lang-switcher-float {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 120;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(12, 26, 30, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.lang-switcher-float .lang-btn {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border-radius: 999px;
  font-size: 1.05rem;
  line-height: 1;
}

.lang-btn:hover,
.lang-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 210, 190, 0.08);
}

.lang-switcher-mobile {
  justify-content: center;
  margin-bottom: 0.75rem;
}

.hero-mobile-header {
  display: none;
}

.hero-mobile-menu-toggle {
  appearance: none;
  border: 1px solid rgba(0, 255, 180, 0.35);
  background: rgba(2, 16, 26, 0.88);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.55rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  cursor: pointer;
}

.hero-mobile-menu-toggle span {
  width: 1rem;
  height: 2px;
  background: #d9fff5;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.hero-mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hero-mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.hero-mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


.hero-mobile-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 0%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  height: 100%;
}


.hero-mobile-logo {
  height: 70%;
  width: auto;
  filter: drop-shadow(0 0 5px #FFFFFF) drop-shadow(0 0 2px #ffffff);
  display: block;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .lang-switcher-float {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem;
    gap: 0.15rem;
  }

  .lang-switcher-float .lang-btn {
    width: 2rem;
    height: 2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero__status {
    display: none;
  }

  .hero-mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 145;
    height: 3.2rem;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: rgba(2, 13, 26, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 255, 180, 0.16);
  }

  .hero-mobile-header.show-sticky-logo .hero-mobile-logo-wrap {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    padding-top: 5rem;
  }

  .lang-switcher-float {
    top: 0.4rem;
    right: 0.7rem;
    z-index: 146;
  }

  .hero-side-menu,
  .hero-side-menu.is-compact,
  .hero-side-menu.is-compact:hover,
  .hero-side-menu.is-compact:focus-within,
  .hero-side-menu.is-compact.is-click-collapsed:hover,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within {
    position: fixed;
    top: 3.55rem;
    left: 0.75rem;
    right: 0.75rem;
    bottom: auto;
    width: auto;
    max-height: calc(100vh - 4.35rem);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.65rem;
    border-radius: 0.8rem;
    z-index: 140;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .hero-side-menu.is-mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-side-menu__title,
  .hero-side-menu.is-compact:hover .hero-side-menu__title,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__title {
    display: block;
    margin-bottom: 0.4rem;
  }

  .hero-side-menu__link,
  .hero-side-menu.is-compact .hero-side-menu__link,
  .hero-side-menu.is-compact:hover .hero-side-menu__link,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__link,
  .hero-side-menu.is-compact.is-click-collapsed:hover .hero-side-menu__link,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within .hero-side-menu__link {
    width: 100%;
    justify-content: flex-start;
    min-height: 2.2rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.82rem;
    border: 1px solid rgba(0, 255, 180, 0.14);
    background: rgba(4, 19, 31, 0.74);
  }

  .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact:hover .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact.is-click-collapsed:hover .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within .hero-side-menu__link span:last-child {
    max-width: none;
    opacity: 1;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(12, 26, 30, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.2s;
}

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

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
  .header-actions {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 0;
  /* background: linear-gradient(to bottom, rgba(12, 26, 30, 0.85), rgba(12, 26, 30, 0.95)),
    url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1920&h=1080&fit=crop'); */
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(26, 55, 64, 0.5);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.hero-badge span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-highlights {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(20, 43, 50, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.highlight-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: rgba(255, 200, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero-cta {
    flex-direction: row;
  }
  .hero-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }

  .spot-learning-columns {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.card:hover {
  border-color: rgba(255, 200, 0, 0.5);
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(255, 200, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.card-content {
  padding: 1rem 1.5rem 1.5rem;
}

.card-desc {
  color: var(--muted-foreground);
  font-size: 1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Training Stats */
.training-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .training-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-value {
    font-size: 2.5rem;
  }
}

/* Course Cards */
.courses-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.course-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.course-card:hover {
  border-color: rgba(255, 200, 0, 0.5);
}

.course-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.course-content {
  padding: 1rem;
}

.course-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.course-meta svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Results Stats */
.results-grid {
  display: grid;
  gap: 2rem;
}

.result-item {
  text-align: center;
}

.result-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 200, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.result-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.result-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.result-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .result-value {
    font-size: 3rem;
  }
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
}

.about-content p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.features-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-images img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.about-images .img-tall {
  height: 16rem;
}

.about-images .img-short {
  height: 12rem;
}

.about-col-2 {
  padding-top: 2rem;
}

@media (min-width: 640px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(255, 200, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-value {
  font-weight: 500;
}

.contact-form-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 209, 0.14), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(0, 140, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #07111d 0%, #040b13 100%);
  border-top: 1px solid rgba(0, 255, 209, 0.18);
  padding: 4rem 0 2rem;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.18), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.cyber-footer__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 209, 0.1), transparent 22%),
    radial-gradient(circle at 82% 30%, rgba(76, 201, 240, 0.09), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 45, 149, 0.08), transparent 34%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.cyber-footer__deck {
  display: grid;
  gap: 1.5rem;
}

.cyber-footer__brand {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border: 1px solid rgba(0, 255, 209, 0.22);
  border-radius: 1.5rem;
  background: rgba(4, 11, 19, 0.82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
}

.cyber-footer__brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 209, 0.08), transparent 36%, rgba(255, 45, 149, 0.08));
  pointer-events: none;
}

.cyber-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 255, 209, 0.12);
  border: 1px solid rgba(0, 255, 209, 0.3);
  color: #8afcf0;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cyber-footer__title {
  margin: 1rem 0 0.75rem;
  font-size: 1.9rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #f8fafc;
}

.cyber-footer__desc {
  max-width: 42rem;
  color: rgba(226, 232, 240, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.cyber-footer__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 1rem;
  background: rgba(2, 8, 18, 0.72);
  font-family: 'Share Tech Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(186, 230, 253, 0.85);
}

.cyber-footer__status strong {
  color: #4ade80;
  text-shadow: 0 0 14px rgba(74, 222, 128, 0.35);
}

.cyber-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 3rem;
}

.cyber-footer__primary,
.cyber-footer__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cyber-footer__primary {
  color: #02131b;
  background: linear-gradient(135deg, #7ef9e3, #4dabff);
  box-shadow: 0 12px 28px rgba(78, 217, 240, 0.24);
}

.cyber-footer__secondary {
  color: #dbeafe;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: rgba(8, 15, 28, 0.66);
  backdrop-filter: blur(12px);
}

.cyber-footer__primary:hover,
.cyber-footer__secondary:hover {
  transform: translateY(-2px);
}

.cyber-footer__matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cyber-footer__panel {
  padding: 1.2rem 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.1rem;
  background: rgba(5, 11, 20, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.cyber-footer .footer-section h4 {
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8ad7ff;
}

.cyber-footer .footer-section ul {
  gap: 0.65rem;
}

.cyber-footer .footer-section a {
  color: rgba(226, 232, 240, 0.78);
}

.cyber-footer .footer-section .footer-link-btn {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.cyber-footer .footer-section a:hover {
  color: #7ef9e3;
}

.cyber-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  color: rgba(226, 232, 240, 0.72);
}

.cyber-footer__bottom p {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.72);
}

.footer-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 2300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.footer-modal-layer[hidden] {
  display: none !important;
}

.footer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 20, 0.78);
  backdrop-filter: blur(6px);
}

.footer-modal {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  border-radius: 1.1rem;
  border: 1px solid rgba(116, 255, 227, 0.3);
  background:
    radial-gradient(1200px 420px at 8% -10%, rgba(0, 255, 208, 0.08), transparent 52%),
    linear-gradient(155deg, rgba(7, 18, 35, 0.98), rgba(4, 12, 24, 0.98));
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(126, 249, 227, 0.08);
  padding: 1.35rem 1.3rem 1.25rem;
}

.footer-modal::-webkit-scrollbar {
  width: 10px;
}

.footer-modal::-webkit-scrollbar-track {
  background: rgba(7, 20, 42, 0.85);
  border-radius: 999px;
}

.footer-modal::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(82, 232, 255, 0.75), rgba(45, 253, 184, 0.75));
  border-radius: 999px;
  border: 2px solid rgba(7, 20, 42, 0.9);
}

.footer-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 227, 241, 0.42);
  background: rgba(5, 16, 30, 0.9);
  color: #d7ecff;
  font-size: 1.18rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-modal-close:hover {
  transform: rotate(90deg);
  border-color: rgba(126, 249, 227, 0.78);
  color: #f4fdff;
}

.footer-modal h3 {
  margin: 0 2.4rem 1rem 0;
  color: #ecf9ff;
  font-size: clamp(1.34rem, 2.15vw, 1.72rem);
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.footer-modal p {
  margin-top: 0.7rem;
  color: #b8d2e8;
  line-height: 1.72;
  font-size: 0.99rem;
}

.footer-about-body h4 {
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  color: #e8fcff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 0.72rem;
  border-left: 2px solid rgba(45, 253, 184, 0.7);
}

.footer-about-body p:first-child {
  margin-top: 0;
}

.footer-about-body ul {
  margin: 0.72rem 0 0.25rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.footer-about-body li {
  position: relative;
  padding: 0.58rem 0.7rem 0.58rem 1.75rem;
  border-radius: 0.62rem;
  color: #d3e7f8;
  background: linear-gradient(90deg, rgba(15, 37, 66, 0.88), rgba(15, 37, 66, 0.28));
  border: 1px solid rgba(129, 170, 214, 0.2);
  line-height: 1.56;
}

.footer-about-body li::before {
  content: '';
  position: absolute;
  left: 0.72rem;
  top: 0.95rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #52e8ff 0%, #2dfdb8 100%);
  box-shadow: 0 0 10px rgba(45, 253, 184, 0.5);
}

.footer-about-body {
  padding-right: 0.32rem;
}

@media (max-width: 640px) {
  .footer-modal {
    width: 100%;
    max-height: 88vh;
    padding: 1.05rem 0.9rem 1rem;
    border-radius: 0.88rem;
  }

  .footer-modal h3 {
    margin-right: 2rem;
    margin-bottom: 0.82rem;
    font-size: 1.2rem;
  }

  .footer-modal p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .footer-about-body h4 {
    font-size: 0.88rem;
    letter-spacing: 0.07em;
    margin-top: 1rem;
  }

  .footer-about-body li {
    padding: 0.54rem 0.62rem 0.54rem 1.58rem;
    font-size: 0.93rem;
  }

  .footer-about-body li::before {
    left: 0.64rem;
    top: 0.88rem;
  }
}

.footer-careers-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.footer-careers-form input,
.footer-careers-form textarea {
  width: 100%;
  border: 1px solid rgba(94, 150, 255, 0.3);
  border-radius: 0.68rem;
  background: rgba(7, 20, 42, 0.92);
  color: #d7ebff;
  padding: 0.72rem 0.82rem;
  outline: none;
}

.footer-careers-form input::placeholder,
.footer-careers-form textarea::placeholder {
  color: #7f9bb8;
}

.footer-careers-submit {
  border: 1px solid rgba(0, 255, 208, 0.72);
  background: linear-gradient(90deg, #00dfff 0%, #2dfdb8 100%);
  color: #062039;
  font-weight: 700;
}

.footer-careers-status {
  color: #8ca9c6;
  font-size: 0.84rem;
}

.footer-careers-status.sent {
  color: #74f8d0;
  text-shadow: 0 0 12px rgba(116, 248, 208, 0.28);
}

.footer-legal-body p {
  margin-top: 0.7rem;
}

.footer-legal-body .pp-header {
  padding-bottom: 1rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(116, 255, 227, 0.18);
}

.footer-legal-body .pp-badge,
.footer-legal-body .pp-toc-label,
.footer-legal-body .pp-num,
.footer-legal-body .pp-meta-item {
  font-family: 'Share Tech Mono', monospace;
}

.footer-legal-body .pp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(45, 253, 184, 0.28);
  border-radius: 0.4rem;
  color: #74f8d0;
  background: rgba(45, 253, 184, 0.06);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal-body .pp-title {
  margin: 0 0 0.8rem;
  color: #ecf9ff;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  line-height: 1.12;
}

.footer-legal-body .pp-title span,
.footer-legal-body .pp-toc-label,
.footer-legal-body .pp-num,
.footer-legal-body a {
  color: #74f8d0;
}

.footer-legal-body .pp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
}

.footer-legal-body .pp-meta-item {
  color: #9db9cf;
  font-size: 0.8rem;
}

.footer-legal-body .pp-intro,
.footer-legal-body .pp-notice,
.footer-legal-body .pp-toc {
  margin: 1rem 0;
  padding: 0.95rem;
  border: 1px solid rgba(116, 255, 227, 0.16);
  border-radius: 0.7rem;
  background: rgba(7, 20, 42, 0.58);
}

.footer-legal-body .pp-notice {
  border-left: 3px solid rgba(116, 255, 227, 0.7);
}

.footer-legal-body .pp-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal-body .pp-toc a {
  text-decoration: none;
  color: #b8d2e8;
  font-size: 0.86rem;
}

.footer-legal-body .pp-toc .num {
  display: inline-block;
  min-width: 1.55rem;
  color: #74f8d0;
}

.footer-legal-body .pp-section {
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(116, 255, 227, 0.12);
}

.footer-legal-body .pp-section-header {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}

.footer-legal-body .pp-section h2 {
  margin: 0;
  color: #ecf9ff;
  font-size: 1.08rem;
  line-height: 1.35;
}

.footer-legal-body .pp-sub {
  margin: 1rem 0 0.4rem;
  color: #dffdf7;
  font-size: 0.95rem;
}

.footer-legal-body ul {
  margin: 0.65rem 0 0.2rem;
  padding-left: 1.25rem;
  color: #b8d2e8;
}

.footer-legal-body li {
  margin-top: 0.35rem;
  line-height: 1.58;
}

.footer-legal-body strong {
  color: #e8fcff;
}

.footer-legal-body a {
  text-decoration: none;
}

.footer-legal-body .pp-contact {
  margin-top: 0.9rem;
  padding: 0.95rem;
  border: 1px solid rgba(116, 255, 227, 0.16);
  border-radius: 0.7rem;
  background: rgba(7, 20, 42, 0.58);
}

.footer-legal-body .pp-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.footer-legal-body .pp-contact-item .label {
  margin-bottom: 0.2rem;
  color: #8ca9c6;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-legal-body .pp-contact-item .value {
  color: #d7ebff;
  font-size: 0.92rem;
}

.footer-legal-body .pp-divider {
  margin: 1.5rem 0 1rem;
  border: 0;
  border-top: 1px solid rgba(116, 255, 227, 0.14);
}

.footer-legal-body .pp-footer {
  display: grid;
  gap: 0.55rem;
  color: #9db9cf;
  font-size: 0.86rem;
}

.footer-legal-body .pp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 640px) {
  .footer-legal-body .pp-toc ol,
  .footer-legal-body .pp-contact-grid {
    grid-template-columns: 1fr;
  }
}

body.footer-modal-open {
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  grid-column: span 2;
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 1rem 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.social-link:hover {
  color: var(--primary);
  background-color: rgba(255, 200, 0, 0.1);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--foreground);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.certifications {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.certifications span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.cert-badges {
  display: flex;
  gap: 0.75rem;
}

.cert-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  background-color: var(--secondary);
  border-radius: 0.25rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .cyber-footer__deck {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
  }

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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: span 3;
  }
}

@media (min-width: 1024px) {
  .cyber-footer__deck {
    grid-template-columns: 1.05fr 1fr;
    gap: 1.25rem;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Icons - SVG Inline Styles */
.icon {
  display: inline-block;
  vertical-align: middle;
}

/* Center text helper */
.text-center {
  text-align: center;
}

/* =========================================================
   USE CASES SECTION
   ========================================================= */

.uc-section {
  position: relative;
  background: #020a14;
  padding: 6rem 0 8rem;
  overflow: hidden;
}

/* subtle grid overlay */
.uc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* radial vignette */
.uc-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 30%, #020a14 100%);
  pointer-events: none;
  z-index: 0;
}

.uc-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.08) 3px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.uc-section .container {
  position: relative;
  z-index: 2;
}

/* Header */
.uc-header {
  text-align: center;
  margin-bottom: 3rem;
}

.uc-badge {
  margin-bottom: 1rem;
}

.uc-dot {
  background: #f6ca66 !important;
  box-shadow: 0 0 8px #f6ca66 !important;
}

.uc-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: #cce8f0;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 0.75rem;
}

.uc-subtitle {
  color: rgba(204, 232, 240, 0.65);
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Grid */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}

/* Card */
.uc-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.026);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0;
  text-align: left;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s, background 0.22s;
  overflow: hidden;
  position: relative;
}

.uc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}

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

.uc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 202, 102, 0.45);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(246, 202, 102, 0.18);
}

.uc-card.uc-active {
  border-color: #f6ca66;
  box-shadow: 0 0 0 1px rgba(246, 202, 102, 0.6), 0 8px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(246, 202, 102, 0.06);
  background: rgba(246, 202, 102, 0.04);
}

.uc-card.uc-auto-pulse {
  animation: uc-auto-hover-pulse 0.75s ease;
}

@keyframes uc-auto-hover-pulse {
  0% {
    transform: translateY(-1px);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-4px);
    filter: brightness(1.1);
  }
  100% {
    transform: translateY(-1px);
    filter: brightness(1);
  }
}

/* Visual area */
.uc-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1rem 1.2rem 0.6rem;
}

/* Body */
.uc-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.uc-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #cce8f0;
  letter-spacing: 0.01em;
}

.uc-body p {
  font-size: 1rem;
  color: rgba(204, 232, 240, 0.6);
  line-height: 1.55;
  flex: 1;
  margin-top: 10px;
}

.uc-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f6ca66;
  letter-spacing: 0.03em;
  margin-top: 0.35rem;
  transition: gap 0.2s;
}

.uc-card:hover .uc-more,
.uc-card.uc-active .uc-more {
  gap: 0.55rem;
}

.uc-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.uc-card.uc-active .uc-arrow {
  transform: rotate(90deg);
}

/* ---- Mini Visuals ---- */

/* Security: bar chart */
.uc-vis-security {
  flex-direction: column;
  gap: 0.4rem;
  color: #77e8f2;
  padding: 1rem 1.25rem;
}

.uc-vis-hud-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.uc-vis-hud-label {
  font-size: 0.6rem;
  font-family: 'Courier New', monospace;
  color: #4fe2ea;
  width: 36px;
  flex-shrink: 0;
}

.uc-vis-track {
  flex: 1;
  height: 6px;
  background: rgba(119, 232, 242, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.uc-vis-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(119, 232, 242, 0.5), #77e8f2);
  border-radius: 3px;
  animation: ucBarFill 1.4s var(--d, 0s) ease-out forwards;
}

@keyframes ucBarFill {
  to { width: var(--pct, 70%); }
}

.uc-vis-num {
  font-size: 0.6rem;
  font-family: 'Courier New', monospace;
  color: #4fe2ea;
  width: 18px;
  text-align: right;
  flex-shrink: 0;
}

.uc-vis-ping {
  width: 8px;
  height: 8px;
  background: #77e8f2;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(119, 232, 242, 0.6);
  animation: ucPing 1.6s 1.5s ease-in-out infinite;
  margin-top: 4px;
  align-self: flex-end;
}

@keyframes ucPing {
  0% { box-shadow: 0 0 0 0 rgba(119, 232, 242, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(119, 232, 242, 0); }
  100% { box-shadow: 0 0 0 0 rgba(119, 232, 242, 0); }
}

/* Onboarding */
.uc-vis-onboarding {
  color: #4ade80;
  gap: 0.8rem;
}

.uc-vis-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
}

.uc-vis-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.18);
  border: 2px solid rgba(74, 222, 128, 0.5);
  flex-shrink: 0;
  position: relative;
  animation: ucAvatarPulse 2s ease-in-out infinite;
}

.uc-vis-avatar::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.25);
  animation: ucAvatarRing 2s ease-in-out infinite;
}

@keyframes ucAvatarPulse {
  0%, 100% { border-color: rgba(74, 222, 128, 0.5); }
  50% { border-color: rgba(74, 222, 128, 0.9); box-shadow: 0 0 10px rgba(74, 222, 128, 0.4); }
}

@keyframes ucAvatarRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
}

.uc-vis-init-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.uc-vis-init-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  font-family: 'Courier New', monospace;
  color: #bcf4d0;
}

.uc-vis-init-track {
  flex: 1;
  height: 4px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.uc-vis-init-fill {
  height: 100%;
  width: 0;
  background: #4ade80;
  border-radius: 2px;
  animation: ucBarFill100 1.8s var(--d, 0s) ease-out forwards;
}

@keyframes ucBarFill100 {
  to { width: 100%; }
}

.uc-vis-shield {
  width: 22px;
  height: 26px;
  background: rgba(74, 222, 128, 0.15);
  border: 2px solid rgba(74, 222, 128, 0.6);
  clip-path: polygon(50% 0%, 100% 20%, 100% 65%, 50% 100%, 0% 65%, 0% 20%);
  animation: ucShieldAppear 0.5s 2.2s both, ucShieldGlow 2s 2.7s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ucShieldAppear {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ucShieldGlow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 12px rgba(74, 222, 128, 0.6); filter: brightness(1.3); }
}

/* Compliance: checklist */
.uc-vis-compliance {
  color: #f6ca66;
}

.uc-vis-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  width: 100%;
}

.uc-vis-check-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-family: 'Courier New', monospace;
  color: #ede5d5;
  opacity: 0;
  transform: translateX(-8px);
  animation: ucCheckIn 0.4s var(--cd, 0s) ease-out forwards;
}

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

.uc-vis-tick {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid rgba(246, 202, 102, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #f6ca66;
  background: rgba(246, 202, 102, 0.12);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(246, 202, 102, 0.2);
}

/* Executive: gauge */
.uc-vis-executive {
  color: #a78bfa;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.uc-vis-gauge-svg {
  width: 100px;
  height: 66px;
}

.uc-gauge-arc {
  color: #a78bfa;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  animation: ucGaugeFill 1.8s 0.3s ease-out forwards;
  filter: drop-shadow(0 0 6px rgba(167, 139, 250, 0.6));
}

@keyframes ucGaugeFill {
  to { stroke-dashoffset: 32; }
}

.uc-vis-gauge-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -12px;
}

.uc-vis-gauge-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a78bfa;
  font-family: 'Courier New', monospace;
  line-height: 1;
  text-shadow: 0 0 14px rgba(167, 139, 250, 0.6);
}

.uc-vis-gauge-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(167, 139, 250, 1);
  font-family: 'Courier New', monospace;
  margin-top: 2px;
  font-weight: 600;
}

/* Remote: network */
.uc-vis-remote {
  color: #fb923c;
}

.uc-vis-network-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.uc-net-pulse-center {
  filter: drop-shadow(0 0 6px rgba(251, 146, 60, 0.8));
  animation: ucNetCenter 1.5s ease-in-out infinite;
}

@keyframes ucNetCenter {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; r: 9; }
}

.uc-net-node {
  opacity: 0;
  animation: ucNetNode 0.4s var(--nd, 0s) ease-out forwards, ucNetNodePulse 2s calc(var(--nd, 0s) + 0.4s) ease-in-out infinite;
}

@keyframes ucNetNode {
  to { opacity: 1; }
}

@keyframes ucNetNodePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Branches: column chart */
.uc-vis-branches {
  color: #38bdf8;
  align-items: flex-end;
  padding: 0.5rem 1.25rem 0.4rem;
}

.uc-vis-cols {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 88px;
  width: 100%;
}

.uc-vis-col-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  height: 100%;
  justify-content: flex-end;
}

.uc-vis-col-bar {
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(56, 189, 248, 0.8), rgba(56, 189, 248, 0.3));
  border-radius: 3px 3px 0 0;
  border: 1px solid rgba(56, 189, 248, 0.4);
  animation: ucColRise 1s var(--d, 0s) ease-out forwards;
}

@keyframes ucColRise {
  to { height: var(--h, 60%); }
}

.uc-vis-col-lbl {
  font-size: 0.7rem;
  font-family: 'Courier New', monospace;
  color: #c9e5f2;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ---- Modal ---- */
.uc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.uc-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.uc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 15, 0.78);
  backdrop-filter: blur(10px);
}

.uc-modal {
  position: relative;
  width: min(1120px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(246, 202, 102, 0.24);
  background: linear-gradient(180deg, rgba(10, 20, 30, 0.98), rgba(3, 10, 18, 0.98));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.uc-modal-overlay.active .uc-modal {
  transform: translateY(0) scale(1);
}

.uc-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 202, 102, 0.08), transparent 25%),
    radial-gradient(circle at 84% 22%, rgba(119, 232, 242, 0.08), transparent 28%);
  pointer-events: none;
}

.uc-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(204, 232, 240, 0.72);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.uc-modal-close:hover {
  color: #f6ca66;
  border-color: rgba(246, 202, 102, 0.4);
  background: rgba(246, 202, 102, 0.08);
}

.uc-modal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 1.4rem;
  padding: 1.6rem;
}

.uc-modal-stage-wrap,
.uc-modal-console {
  min-width: 0;
}

.uc-modal-stage-wrap {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
}

.uc-modal-stage-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.uc-modal-tag,
.uc-modal-live {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.08em;
}

.uc-modal-tag {
  color: #f6ca66;
  border: 1px solid rgba(246, 202, 102, 0.3);
  background: rgba(246, 202, 102, 0.08);
}

.uc-modal-live {
  color: #77e8f2;
  border: 1px solid rgba(119, 232, 242, 0.24);
  background: rgba(119, 232, 242, 0.08);
  box-shadow: 0 0 18px rgba(119, 232, 242, 0.08);
}

.uc-modal-stage {
  min-height: 380px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(5, 13, 20, 0.9), rgba(2, 8, 14, 0.92));
}

.uc-modal-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.uc-modal-console {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.4rem 0.3rem 0.4rem 0;
}

.uc-modal-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #e6f7fb;
  margin-bottom: 0.75rem;
}

.uc-modal-text,
.uc-modal-focus-copy,
.uc-modal-footnote {
  color: rgba(204, 232, 240, 0.66);
  font-size: 0.94rem;
  line-height: 1.65;
}

.uc-modal-prompt {
  margin: 1.4rem 0 0.75rem;
  font-size: 0.72rem;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(204, 232, 240, 0.48);
}

.uc-modal-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.uc-modal-control {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(204, 232, 240, 0.7);
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  font-size: 0.84rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.uc-modal-control:hover,
.uc-modal-control.active {
  transform: translateY(-1px);
  border-color: rgba(246, 202, 102, 0.45);
  background: rgba(246, 202, 102, 0.08);
  color: #f4d992;
}

.uc-modal-focus {
  margin-top: 1rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.uc-modal-focus-title {
  color: #f6ca66;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.uc-modal-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.uc-modal-metric {
  border-radius: 14px;
  padding: 0.9rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.uc-modal-metric strong {
  display: block;
  color: #e6f7fb;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.uc-modal-metric span {
  display: block;
  color: rgba(204, 232, 240, 0.56);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.uc-modal-footnote {
  margin-top: 1rem;
}

.uc-stage {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
}

.uc-modal-theme-security { color: #77e8f2; }
.uc-modal-theme-onboarding { color: #4ade80; }
.uc-modal-theme-compliance { color: #f6ca66; }
.uc-modal-theme-executive { color: #a78bfa; }
.uc-modal-theme-remote { color: #fb923c; }
.uc-modal-theme-branches { color: #38bdf8; }

.uc-stage-radar,
.uc-stage-radar-delay {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.12;
}

.uc-stage-radar-delay {
  width: 310px;
  height: 310px;
  opacity: 0.07;
}

.uc-stage-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.uc-stage-dot-main {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.uc-stage-float,
.uc-stage-module,
.uc-stage-branch-card {
  position: absolute;
  min-width: 110px;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #eafcff;
}

.uc-stage-float span,
.uc-stage-branch-card span {
  display: block;
  font-size: 0.68rem;
  color: rgba(204, 232, 240, 0.55);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.uc-stage-float strong,
.uc-stage-branch-card strong {
  font-size: 1.1rem;
}

.is-hot {
  border-color: color-mix(in srgb, currentColor 50%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, currentColor 24%, transparent), 0 0 26px color-mix(in srgb, currentColor 18%, transparent);
  background: color-mix(in srgb, currentColor 10%, rgba(255, 255, 255, 0.04));
}

.uc-stage-float { top: 18%; left: 9%; }
.uc-stage-float-right { top: 22%; right: 10%; left: auto; }
.uc-stage-float-bottom { bottom: 16%; right: 20%; top: auto; left: auto; }

.uc-stage-person {
  position: absolute;
  left: 12%;
  top: 20%;
  width: 90px;
  height: 90px;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 28%, rgba(255,255,255,0.26) 0 18%, transparent 19%), linear-gradient(180deg, rgba(74, 222, 128, 0.36), rgba(74, 222, 128, 0.08));
  border: 1px solid rgba(74, 222, 128, 0.35);
}

.uc-stage-timeline {
  position: absolute;
  left: 30%;
  right: 12%;
  top: 30%;
  height: 4px;
  background: rgba(255,255,255,0.08);
}

.uc-stage-step {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
}

.uc-stage-step:nth-child(1) { left: 8%; }
.uc-stage-step:nth-child(2) { left: 50%; }
.uc-stage-step:nth-child(3) { left: 92%; }

.uc-stage-step.is-on {
  background: currentColor;
  box-shadow: 0 0 14px color-mix(in srgb, currentColor 50%, transparent);
}

.uc-stage-module:nth-of-type(1) { top: 16%; right: 12%; }
.uc-stage-module:nth-of-type(2) { top: 41%; right: 24%; }
.uc-stage-module:nth-of-type(3) { top: 66%; right: 12%; }

.uc-stage-doc {
  position: absolute;
  left: 20%;
  top: 16%;
  width: 180px;
  height: 240px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  transform: rotate(-6deg);
}

.uc-stage-doc-mid { left: 38%; top: 20%; transform: rotate(2deg); }
.uc-stage-doc-back { left: 56%; top: 24%; transform: rotate(8deg); }

.uc-stage-auditline {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.45;
}

.uc-stage-checks {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 22%;
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-family: 'Courier New', monospace;
  color: rgba(255,255,255,0.72);
}

.uc-stage-big-number {
  position: absolute;
  left: 12%;
  top: 18%;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 30px color-mix(in srgb, currentColor 28%, transparent);
}

.uc-stage-bars {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 24%;
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  height: 130px;
}

.uc-stage-bar {
  flex: 1;
  border-radius: 12px 12px 0 0;
  height: var(--bar);
  background: linear-gradient(180deg, color-mix(in srgb, currentColor 80%, white 20%), color-mix(in srgb, currentColor 40%, transparent));
  opacity: 0.45;
}

.uc-stage-bar.is-hot {
  opacity: 1;
}

.uc-stage-labelline {
  position: absolute;
  left: 12%;
  bottom: 12%;
  font-size: 0.74rem;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(204, 232, 240, 0.56);
}

.uc-stage-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px color-mix(in srgb, currentColor 40%, transparent);
}

.uc-stage-node-center { top: 48%; left: 47%; width: 24px; height: 24px; transform: translate(-50%, -50%); }
.uc-stage-node-a { top: 18%; left: 20%; }
.uc-stage-node-b { top: 18%; right: 20%; }
.uc-stage-node-c { bottom: 18%; left: 24%; }

.uc-stage-link {
  position: absolute;
  height: 2px;
  background: currentColor;
  opacity: 0.22;
  transform-origin: left center;
}

.uc-stage-link-a { left: 23%; top: 24%; width: 140px; transform: rotate(25deg); }
.uc-stage-link-b { left: 49%; top: 24%; width: 135px; transform: rotate(-26deg); }
.uc-stage-link-c { left: 28%; bottom: 24%; width: 118px; transform: rotate(-18deg); }

.uc-stage-branches {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
}

.uc-stage-branch-card {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  min-width: 140px;
  align-self: center;
}

.uc-stage-branch-floor {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.22;
}

/* Responsive */
@media (max-width: 900px) {
  .uc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .uc-modal-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .uc-modal {
    width: min(760px, calc(100vw - 1rem));
  }
}

@media (max-width: 600px) {
  .uc-grid {
    grid-template-columns: 1fr;
  }

  .uc-visual {
    height: 110px;
  }

  .uc-modal {
    width: calc(100vw - 0.75rem);
    max-height: calc(100vh - 0.75rem);
  }

  .uc-modal-grid {
    padding: 0.9rem;
  }

  .uc-modal-stage {
    min-height: 300px;
  }

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

/* Phishing game */
.phish-game {
  position: relative;
  padding: clamp(3.3rem, 8vw, 9rem) 0;
  background:
    radial-gradient(1200px 460px at 8% -12%, rgba(0, 229, 255, 0.16), transparent 54%),
    radial-gradient(1000px 420px at 88% 112%, rgba(246, 202, 102, 0.12), transparent 56%),
    linear-gradient(180deg, #04101a 0%, #050d15 100%);
  border-top: 1px solid rgba(119, 232, 242, 0.16);
  border-bottom: 1px solid rgba(246, 202, 102, 0.14);
  overflow: hidden;
}

.phish-game::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.33;
  pointer-events: none;
}

.phish-game-scanline {
  position: absolute;
  inset: -34% 0 auto;
  height: 240px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0), rgba(0, 229, 255, 0.12), rgba(0, 229, 255, 0));
  mix-blend-mode: screen;
  pointer-events: none;
  animation: gameScan 6.6s linear infinite;
}

@keyframes gameScan {
  0% { transform: translateY(0); opacity: 0.3; }
  50% { opacity: 0.62; }
  100% { transform: translateY(520px); opacity: 0.24; }
}

.phish-game .container {
  position: relative;
  z-index: 1;
}

.phish-game-header {
  margin-bottom: 1.45rem;
  text-align: center;
}

.phish-game-badge {
  margin-bottom: 0.75rem;
}

.phish-game-dot {
  background: #f6ca66;
  box-shadow: 0 0 0 4px rgba(246, 202, 102, 0.16), 0 0 16px rgba(246, 202, 102, 0.55);

  background: #77e8f2 !important;
  box-shadow: 0 0 8px #77e8f2 !important;
}

.phish-game-title {
  margin: 0;
  font-size: 1.8rem;
  color: #e8f8ff;
  letter-spacing: -0.02em;
}

.phish-game-subtitle {
  margin: 1.5rem 0 0;
  max-width: 100%;
  color: rgba(194, 226, 236, 0.85);
}

.phish-game-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 1rem;
}

.phish-game-panel {
  border: 1px solid rgba(119, 232, 242, 0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(3, 12, 20, 0.9), rgba(3, 10, 17, 0.92));
  box-shadow: inset 0 0 0 1px rgba(119, 232, 242, 0.04), 0 20px 56px rgba(0, 0, 0, 0.45);
  padding: 1rem;
}

.phish-game-mail-head {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.phish-game-mail-pill,
.phish-game-mail-round {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  min-height: 27px;
  padding: 0.25rem 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
}

.phish-game-mail-pill {
  color: rgba(119, 232, 242, 0.92);
  border: 1px solid rgba(119, 232, 242, 0.26);
  background: rgba(119, 232, 242, 0.08);
}

.phish-game-mail-round {
  color: rgba(246, 202, 102, 0.92);
  border: 1px solid rgba(246, 202, 102, 0.3);
  background: rgba(246, 202, 102, 0.09);
}

.phish-game-mail-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.9rem;
  min-height: 320px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: monospace;
}

.phish-game-mail-card.result-ok {
  border-color: rgba(52, 211, 153, 0.62);
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.2), rgba(16, 40, 34, 0.42));
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.34), 0 0 30px rgba(52, 211, 153, 0.28);
}

.phish-game-mail-card.result-bad {
  border-color: rgba(255, 107, 107, 0.62);
  background: linear-gradient(180deg, rgba(255, 107, 107, 0.2), rgba(58, 23, 23, 0.42));
  box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.34), 0 0 30px rgba(255, 107, 107, 0.28);
}

.phish-game-mail-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  align-items: flex-start;
}

.phish-game-mail-row .label {
  min-width: 52px;
  font-size: 0.7rem;
  color: #FFFFFF;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.08em;
}

.phish-game-mail-row .value {
  color: #e8f8ff;
  font-size: 0.9rem;
  line-height: 1.4;
  word-break: break-word;
}

.phish-game-mail-body {
  margin-top: 0.75rem;
  color: rgba(210, 232, 240, 1);
  font-size: 0.9rem;
  line-height: 1.58;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-family: monospace;
}

.phish-game-mail-footer {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.phish-game-clues {
  margin-top: 0.85rem;
}

.phish-game-clues-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  /* font-family: 'Courier New', monospace; */
  margin-bottom: 0.45rem;
}

.phish-game-clues ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.phish-game-clues li {
  position: relative;
  color: #FFFFFF;
  font-size: 0.9rem;
  padding: 0.38rem 0.56rem 0.38rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.028);
}

.phish-game-clues li::before {
  content: '';
  position: absolute;
  left: 0.48rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(246, 202, 102, 0.92);
  box-shadow: 0 0 10px rgba(246, 202, 102, 0.6);
}

.phish-game-actions {
  margin-top: 0.92rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.phish-game-explain {
  margin-top: 0.62rem;
  padding: 0.58rem 0.66rem;
  border-radius: 10px;
  border: 1px solid rgba(246, 202, 102, 0.24);
  background: rgba(246, 202, 102, 0.08);
  color: rgba(246, 226, 174, 0.95);
  font-size: 0.9rem;
  line-height: 1.45;
}

.phish-game-btn {
  min-height: 44px;
  border-radius: 11px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  color: #d7f0fb;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.phish-game-btn:hover {
  transform: translateY(-1px);
}

.phish-game-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.phish-game-btn.danger {
  border-color: rgba(255, 107, 107, 0.38);
  color: rgba(255, 166, 166, 0.95);
  background: linear-gradient(180deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.07));
  font-size: 0.9rem;
  text-transform: uppercase;
}

.phish-game-btn.danger:hover {
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.18);
}

.phish-game-btn.safe {
  border-color: rgba(52, 211, 153, 0.38);
  color: rgba(164, 255, 213, 0.96);
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.14), rgba(52, 211, 153, 0.06));
  font-size: 0.9rem;
  text-transform: uppercase;
}

.phish-game-btn.safe:hover {
  box-shadow: 0 8px 24px rgba(52, 211, 153, 0.18);
}

.phish-game-feedback {
  min-height: 44px;
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(204, 232, 240, 0.9);
  border: 1px solid rgba(119, 232, 242, 0.24);
  border-radius: 10px;
  background: rgba(119, 232, 242, 0.08);
  padding: 0.72rem 0.85rem;
  font-weight: 600;
}

.phish-game-feedback-wait {
  margin-top: 0.9rem;
  color: #00E5FF;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.phish-game-feedback.ok {
  color: rgba(20, 68, 47, 0.98);
  border-color: rgba(52, 211, 153, 0.72);
  background: linear-gradient(180deg, rgba(98, 255, 189, 0.95), rgba(56, 213, 151, 0.95));
  box-shadow: 0 8px 22px rgba(52, 211, 153, 0.35);
}

.phish-game-feedback.bad {
  color: rgba(87, 20, 20, 0.98);
  border-color: rgba(255, 107, 107, 0.72);
  background: linear-gradient(180deg, rgba(255, 169, 169, 0.96), rgba(255, 110, 110, 0.96));
  box-shadow: 0 8px 22px rgba(255, 107, 107, 0.35);
}

.phish-game-next-wrap {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.phish-game-next-btn {
  min-height: 46px;
  min-width: 210px;
  border-radius: 12px;
  border: 1px solid rgba(247, 211, 109, 0.72);
  background: linear-gradient(90deg, #ffd66b 0%, #ffb82e 100%);
  color: #2d1f00;
  padding: 0.58rem 1.4rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(255, 184, 46, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.phish-game-next-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(255, 184, 46, 0.5);
}

.phish-game-rank-panel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.phish-game-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.phish-game-metric {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.64rem 0.55rem;
}

.phish-game-metric .k {
  display: block;
  color: #FFFFFF;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
}

.phish-game-metric strong {
  display: block;
  color: #f6ca66;
  margin-top: 0.3rem;
  font-size: 1.18rem;
  line-height: 1;
}

.phish-game-player-input-wrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.65rem;
}

.phish-game-player-input-wrap label {
  display: block;
  color: rgba(199, 230, 240, 0.84);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.phish-game-player-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
}

.phish-game-player-row input {
  border: 1px solid rgba(119, 232, 242, 0.22);
  border-radius: 10px;
  background: rgba(2, 10, 16, 0.86);
  color: #def6ff;
  padding: 0.58rem 0.65rem;
  min-height: 39px;
}

.phish-game-player-row input:focus {
  outline: none;
  border-color: rgba(119, 232, 242, 0.6);
  box-shadow: 0 0 0 1px rgba(119, 232, 242, 0.3);
}

.phish-game-player-row button {
  border: 1px solid rgba(246, 202, 102, 0.44);
  border-radius: 10px;
  background: rgba(246, 202, 102, 0.12);
  color: #f8dc98;
  min-width: 72px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
}

.phish-game-player-row button:hover {
  background: rgba(246, 202, 102, 0.18);
}

.phish-game-leaderboard {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.65rem;
}

.phish-game-leaderboard-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(193, 222, 232, 0.72);
  font-family: 'Courier New', monospace;
  margin-bottom: 0.45rem;
}

.phish-game-rank-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  border-radius: 10px;
  padding: 0.42rem 0.5rem;
  color: rgba(202, 232, 241, 0.9);
  font-size: 0.9rem;
}

.phish-game-rank-row + .phish-game-rank-row {
  margin-top: 0.22rem;
}

.phish-game-rank-row .pos {
  font-family: 'Courier New', monospace;
  color: rgba(246, 202, 102, 0.9);
  min-width: 30px;
}

.phish-game-rank-row .pts {
  font-family: 'Courier New', monospace;
  color: rgba(119, 232, 242, 0.95);
}

.phish-game-rank-row.is-player {
  border: 1px solid rgba(246, 202, 102, 0.35);
  background: rgba(246, 202, 102, 0.08);
  box-shadow: 0 0 0 1px rgba(246, 202, 102, 0.16) inset;
}

.phish-game.pulse-ok .phish-game-mail-card {
  animation: gamePulseOk 0.45s ease;
}

.phish-game.pulse-bad .phish-game-mail-card {
  animation: gamePulseBad 0.45s ease;
}

@keyframes gamePulseOk {
  0% { box-shadow: 0 0 0 rgba(52, 211, 153, 0); }
  35% { box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.5), 0 0 24px rgba(52, 211, 153, 0.28); }
  100% { box-shadow: 0 0 0 rgba(52, 211, 153, 0); }
}

@keyframes gamePulseBad {
  0% { box-shadow: 0 0 0 rgba(255, 107, 107, 0); }
  35% { box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.48), 0 0 24px rgba(255, 107, 107, 0.24); }
  100% { box-shadow: 0 0 0 rgba(255, 107, 107, 0); }
}

@media (max-width: 980px) {
  .phish-game-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .phish-game {
    padding: 2.9rem 0;
  }

  .phish-game-panel {
    padding: 0.82rem;
  }

  .phish-game-actions {
    grid-template-columns: 1fr;
  }

  .phish-game-mail-card {
    min-height: 280px;
    padding-bottom: 100px;
  }

  .phish-game-metrics {
    grid-template-columns: 1fr;
  }

  .phish-game-player-row {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-hero {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, hsl(195, 50%, 10%) 0%, hsl(195, 45%, 12%) 100%);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(180, 100%, 50%), transparent);
  box-shadow: 0 0 20px hsl(180, 100%, 50%);
}

.cta-glow-top {
  top: 0;
}

.cta-glow-bottom {
  bottom: 0;
}

.cta-content {
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-highlight {
  color: hsl(180, 100%, 50%);
  text-shadow: 0 0 20px hsla(180, 100%, 50%, 0.5);
}

.cta-subtitle {
  font-size: 1.5rem;
  color: hsl(180, 20%, 85%);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  margin-top: 30px;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta-primary {
  background: hsl(180, 100%, 50%);
  color: hsl(195, 50%, 8%);
  box-shadow: 0 0 20px hsla(180, 100%, 50%, 0.3);
}

.btn-cta-primary:hover {
  box-shadow: 0 0 30px hsla(180, 100%, 50%, 0.6);
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: hsl(180, 100%, 50%);
  color: hsl(195, 50%, 8%);
  border: 2px solid hsl(120, 100%, 50%);
  box-shadow: 0 0 20px hsla(120, 100%, 50%, 0.3);
}

.btn-cta-secondary:hover {
  box-shadow: 0 0 30px hsla(120, 100%, 50%, 0.6);
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-buttons {
    gap: 1rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .cta-hero {
    padding: 3rem 0;
  }

  .cta-content {
    padding: 2rem 1rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    gap: 0.75rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .uc-body {
    padding: 1rem 0rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .cta-hero {
    padding: 2rem 0;
  }

  .cta-content {
    padding: 1.5rem 1rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
  }
}

/* Cyber Contact Section */
.cyber-contact {
  position: relative;
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 82% 15%, rgba(0, 255, 194, 0.14), transparent 42%),
    radial-gradient(circle at 10% 88%, rgba(90, 120, 255, 0.2), transparent 45%),
    linear-gradient(145deg, #061128 0%, #081a33 54%, #0a1d2f 100%);
  overflow: hidden;
}

.cyber-contact::before,
.cyber-contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 234, 0.7), transparent);
  box-shadow: 0 0 18px rgba(0, 255, 234, 0.5);
}

.cyber-contact::before {
  top: 0;
}

.cyber-contact::after {
  bottom: 0;
}

.cyber-contact-gridfx {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(84, 220, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 220, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 86%);
  animation: cyberGridDrift 18s linear infinite;
  pointer-events: none;
}

.cyber-contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.4rem;
  align-items: stretch;
}

.cyber-contact-intel,
.cyber-contact-form-wrap {
  border: 1px solid rgba(96, 173, 255, 0.25);
  background: linear-gradient(165deg, rgba(10, 33, 64, 0.86) 0%, rgba(6, 22, 46, 0.86) 100%);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow:
    0 0 0 1px rgba(29, 85, 142, 0.3) inset,
    0 12px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

.cyber-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(78, 204, 255, 0.45);
  color: #8be8ff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.cyber-contact-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #14ffcd;
  box-shadow: 0 0 10px rgba(20, 255, 205, 0.9);
  animation: cyberPulse 1.6s ease-in-out infinite;
}

.cyber-contact-intel h2 {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}

.cyber-contact-intel p {
  margin-top: 2rem;
  color: #b8d5ef;
  max-width: 42ch;
  font-size: 1.2rem;
  line-height: 1.3;
}

.cyber-contact-kpis {
  margin-top: 1rem;
  display: grid;
  gap: 0.56rem;
}

.cyber-contact-kpi {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(78, 151, 255, 0.22);
  border-radius: 0.7rem;
  background: rgba(6, 16, 38, 0.78);
  padding: 0.58rem 0.8rem;
}

.cyber-contact-kpi strong {
  color: #57ffd6;
  font-size: 1.02rem;
  text-shadow: 0 0 10px rgba(87, 255, 214, 0.4);
}

.cyber-contact-kpi span {
  color: #9eb8ce;
  font-size: 0.86rem;
}

.cyber-contact-form {
  display: grid;
  gap: 0.88rem;
  transition: box-shadow 0.3s ease;
}

.cyber-contact-form.is-focused {
  /* box-shadow: 0 0 0 1px rgba(52, 225, 255, 0.4); */
  border-radius: 0.8rem;
}

.cyber-contact-top h3 {
  font-size: 1.26rem;
}

.cyber-contact-top p {
  margin-top: 0.24rem;
  color: #98b5d0;
  font-size: 0.94rem;
}

.cyber-contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cyber-contact-chip {
  border: 1px solid rgba(84, 169, 255, 0.38);
  background: rgba(10, 34, 58, 0.84);
  color: #b4d5f3;
  border-radius: 999px;
  padding: 0.43rem 0.78rem;
  font-size: 0.82rem;
  transition: all 0.26s ease;
}

.cyber-contact-chip:hover,
.cyber-contact-chip.active {
  border-color: rgba(43, 242, 255, 0.84);
  color: #d6fbff;
  box-shadow: 0 0 14px rgba(43, 242, 255, 0.25);
  transform: translateY(-1px);
}

.cyber-contact-fields {
  display: grid;
  gap: 0.64rem;
}

.cyber-contact-fields input,
.cyber-contact-fields select,
.cyber-contact-fields textarea {
  width: 100%;
  font-family: inherit;
  border: 1px solid rgba(94, 150, 255, 0.3);
  border-radius: 0.68rem;
  background: rgba(7, 20, 42, 0.92);
  color: #d7ebff;
  padding: 0.72rem 0.82rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cyber-contact-fields input::placeholder,
.cyber-contact-fields textarea::placeholder {
  font-family: inherit;
  letter-spacing: inherit;
  color: #7b98b7;
}

.cyber-contact-fields input:focus,
.cyber-contact-fields select:focus,
.cyber-contact-fields textarea:focus {
  border-color: rgba(0, 241, 255, 0.74);
  box-shadow: 0 0 0 3px rgba(0, 241, 255, 0.14);
}

.cyber-contact-fields select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #7b98b7 50%), linear-gradient(135deg, #7b98b7 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(1em + 2px), calc(100% - 11px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.cyber-contact-fields select:invalid {
  font-family: inherit;
  letter-spacing: inherit;
  color: #7b98b7;
}

.cyber-contact-fields select:valid {
  color: #d7ebff;
}

.cyber-contact-fields select option {
  color: #d7ebff;
}

.cyber-contact-inline {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.64rem;
}

.cyber-contact-fields textarea {
  resize: vertical;
  min-height: 112px;
}

.cyber-contact-signal {
  border: 1px solid rgba(90, 147, 224, 0.32);
  border-radius: 0.75rem;
  background: rgba(5, 16, 34, 0.9);
  padding: 0.62rem 0.7rem;
}

.cyber-contact-signal-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ec2e3;
  font-size: 0.78rem;
}

.cyber-contact-signal-label strong {
  color: #57ffd6;
}

.cyber-contact-signal-track {
  margin-top: 0.44rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(50, 76, 110, 0.5);
  overflow: hidden;
}

.cyber-contact-signal-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2de2ff 0%, #24f6bc 100%);
  box-shadow: 0 0 10px rgba(36, 246, 188, 0.6);
  transition: width 0.32s ease;
}

.cyber-contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cyber-contact-submit {
  border: 1px solid rgba(0, 255, 208, 0.75);
  background: linear-gradient(90deg, #00e2ff 0%, #2efeb5 100%);
  color: #062039;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 0.68rem;
  padding: 0.74rem 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cyber-contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(0, 242, 255, 0.4);
}

.cyber-contact-status {
  color: #8ca9c6;
  font-size: 0.84rem;
}

.cyber-contact-status.sent {
  color: #6df3cf;
  text-shadow: 0 0 12px rgba(109, 243, 207, 0.26);
}

@keyframes cyberPulse {
  0%,
  100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes cyberGridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(34px); }
}

@media (max-width: 1080px) {
  .cyber-contact-shell {
    grid-template-columns: 1fr;
  }

  .cyber-contact-intel p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .cyber-contact {
    padding: 3rem 0;
  }

  .cyber-contact-intel,
  .cyber-contact-form-wrap {
    padding: 1rem;
  }

  .cyber-contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cyber-contact-submit {
    width: 100%;
  }

  .cyber-contact-inline {
    grid-template-columns: 1fr;
  }

  .cyber-contact-fields select {
    min-height: 3rem;
    padding-top: 0.82rem;
    padding-bottom: 0.82rem;
    background-position: calc(100% - 14px) calc(1em + 3px), calc(100% - 9px) calc(1em + 3px);
  }
}

/* Partner Section - Value Proposition */
.partner-nexus {
  --nexus-x: 52%;
  --nexus-y: 46%;
  position: relative;
  padding: 5.5rem 0;
  isolation: isolate;
  background:
    radial-gradient(920px 420px at var(--nexus-x) var(--nexus-y), rgba(143, 116, 255, 0.18), transparent 54%),
    radial-gradient(1200px 460px at 8% -12%, rgba(154, 132, 255, 0.22), transparent 54%),
    radial-gradient(1000px 420px at 88% 112%, rgba(72, 233, 255, 0.12), transparent 56%),
    linear-gradient(180deg, #030815 0%, #050d15 100%);
  overflow: hidden;
}

.partner-nexus-gridfx {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(116, 255, 227, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 255, 227, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.25) 68%, transparent 100%);
  animation: partnerGridDrift 16s linear infinite;
  pointer-events: none;
}

.partner-nexus-shell {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(154, 132, 255, 0.4);
  border-radius: 1.35rem;
  background:
    linear-gradient(142deg, rgba(19, 15, 37, 0.78) 0%, rgba(8, 23, 44, 0.84) 48%, rgba(6, 14, 29, 0.88) 100%);
  box-shadow:
    0 0 0 1px rgba(154, 132, 255, 0.16) inset,
    0 0 0 1px rgba(116, 255, 227, 0.08),
    0 32px 62px rgba(0, 0, 0, 0.42);
  padding: 3rem 2rem;
}

.partner-nexus-head {
  max-width: 80ch;
  margin: 0 auto;
  text-align: center;
}

.partner-nexus-head h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.2;
  color: #eaf2ff;
  text-align: center;
  letter-spacing: -0.01em;
  margin-top:20px;
}

.partner-nexus-highlight {
  color: #cdb8ff;
  text-shadow: 0 0 24px rgba(154, 132, 255, 0.42);
}

.partner-nexus-head p {
  margin-top: 0.8rem;
  margin-bottom: 2.5rem;
  color: #a9bfd7;
  line-height: 1.1;
  font-size: 1.4rem;
  text-align: center;
}

.partner-interactive-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.7fr);
  gap: 1rem;
  align-items: stretch;
}

.partner-command-panel {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(154, 132, 255, 0.38);
  background:
    linear-gradient(160deg, rgba(18, 21, 45, 0.9) 0%, rgba(12, 29, 54, 0.8) 100%);
  box-shadow: inset 0 0 0 1px rgba(116, 255, 227, 0.08);
  padding: 1.2rem;
  display: grid;
  gap: 1.1rem;
  overflow: hidden;
}

.partner-command-panel-close {
  display: none;
}

.partner-panel-modal-backdrop {
  display: none;
}

.partner-command-panel::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle, rgba(154, 132, 255, 0.16), transparent 56%);
  transform: translate3d(0, 0, 0);
  animation: partnerAuroraShift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.partner-command-radar {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.partner-radar-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(137, 109, 255, 0.45);
  border-radius: 50%;
}

.partner-radar-ring.ring-2 {
  inset: 13%;
  border-color: rgba(116, 255, 227, 0.36);
}

.partner-radar-ring.ring-3 {
  inset: 27%;
  border-color: rgba(145, 130, 255, 0.46);
}

.partner-radar-core {
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: #73f5ff;
  box-shadow: 0 0 14px rgba(115, 245, 255, 0.7);
}

.partner-radar-ping {
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  border: 1px solid rgba(115, 245, 255, 0.7);
  animation: partnerPing 1.9s ease-out infinite;
}

.partner-command-copy {
  position: relative;
  z-index: 1;
  text-align: left;
}

.partner-command-copy h3 {
  margin: 0;
  color: #f4f7ff;
  font-size: 1.38rem;
  line-height: 1.3;
}

.partner-command-copy p {
  margin-top: 0.62rem;
  margin-bottom: 0;
  color: #a8c6df;
  font-size: 1.03rem;
  line-height: 1.58;
}

.partner-active-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
}

.partner-active-points li {
  position: relative;
  padding-left: 1.2rem;
  color: #9eb8cf;
  font-size: 0.97rem;
  line-height: 1.45;
}

.partner-active-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffae34;
  font-weight: 700;
}

.partner-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0;
}

.partner-benefit-card {
  position: relative;
  border: 1px solid rgba(154, 132, 255, 0.26);
  border-radius: 0.95rem;
  background: linear-gradient(155deg, rgba(24, 15, 42, 0.86) 0%, rgba(10, 23, 42, 0.86) 100%);
  padding: 1.15rem;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  width: 100%;
  appearance: none;
  font: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.partner-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(154, 132, 255, 0.66), rgba(116, 255, 227, 0.44), transparent);
}

.partner-benefit-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(116, 255, 227, 0.2), transparent 34%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.partner-benefit-card:hover {
  border-color: rgba(154, 132, 255, 0.66);
  background: linear-gradient(155deg, rgba(36, 20, 63, 0.9) 0%, rgba(13, 30, 56, 0.9) 100%);
  box-shadow:
    0 0 26px rgba(154, 132, 255, 0.22),
    0 0 54px rgba(116, 255, 227, 0.08);
  transform: translateY(-4px);
}

.partner-benefit-card:hover::after,
.partner-benefit-card.is-active::after {
  opacity: 1;
}

.partner-benefit-card.is-active {
  border-color: rgba(116, 255, 227, 0.74);
  box-shadow:
    0 0 0 1px rgba(116, 255, 227, 0.16) inset,
    0 0 30px rgba(116, 255, 227, 0.14),
    0 0 54px rgba(154, 132, 255, 0.16);
}

.partner-benefit-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 0.72rem;
  background: linear-gradient(135deg, rgba(154, 132, 255, 0.25) 0%, rgba(116, 255, 227, 0.15) 100%);
  border: 1px solid rgba(154, 132, 255, 0.42);
  display: grid;
  place-items: center;
  font-size: 1.18rem;
  margin-bottom: 0.72rem;
}

.partner-benefit-icon img {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 0 1px white);
}

.partner-benefit-card h3 {
  font-size: 1.16rem;
  color: #eef4ff;
  line-height: 1.32;
  margin-bottom: 1.3rem;
  margin-top: 1.3rem;
  text-wrap: balance;
}

.partner-benefit-card p {
  color: #bed1e4;
  line-height: 1.56;
  font-size: 0.98rem;
  margin: 0;
}

.partner-benefit-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 2rem;
  padding: 0.3rem 0.72rem;
  border-radius: 0.54rem;
  border: 1px solid rgba(255, 171, 51, 0.38);
  background: rgba(255, 140, 0, 0.08);
  color: #ffae34;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  font-weight: 700;
}

.partner-benefit-card:hover .partner-benefit-more,
.partner-benefit-card:focus-visible .partner-benefit-more {
  opacity: 1;
  transform: translateY(0);
}

.partner-cta-container {
  margin-top: 1.15rem;
  text-align: center;
}

.partner-open-modal {
  display: inline-block;
  border: 1px solid rgba(116, 255, 227, 0.66);
  background: linear-gradient(90deg, rgba(45, 112, 138, 0.35) 0%, rgba(154, 132, 255, 0.28) 100%);
  color: #f1f7ff;
  padding: 0.92rem 2rem;
  border-radius: 0.9rem;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.partner-open-modal:hover {
  border-color: rgba(116, 255, 227, 0.96);
  background: linear-gradient(90deg, rgba(69, 142, 166, 0.44) 0%, rgba(164, 146, 255, 0.34) 100%);
  box-shadow:
    0 0 24px rgba(116, 255, 227, 0.25),
    0 0 44px rgba(154, 132, 255, 0.2);
  transform: translateY(-2px);
}

.partner-footer-note {
  margin-top: 1rem;
  color: #8eaac5;
  font-size: 0.9rem;
}

@keyframes partnerBenefitSlide {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.partner-benefit-card {
  animation: partnerBenefitSlide 0.6s ease-out forwards;
}

.partner-benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.partner-benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.partner-benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.partner-benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes partnerPing {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  100% {
    transform: scale(3.8);
    opacity: 0;
  }
}

@keyframes partnerAuroraShift {
  0% {
    transform: translate3d(-8%, -3%, 0);
  }
  100% {
    transform: translate3d(10%, 6%, 0);
  }
}

@keyframes partnerPanelPulse {
  0% {
    box-shadow:
      inset 0 0 0 1px rgba(116, 255, 227, 0.08),
      0 0 0 rgba(116, 255, 227, 0);
  }
  45% {
    box-shadow:
      inset 0 0 0 1px rgba(116, 255, 227, 0.28),
      0 0 34px rgba(116, 255, 227, 0.2);
  }
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(116, 255, 227, 0.08),
      0 0 0 rgba(116, 255, 227, 0);
  }
}

@keyframes partnerRadarCoreBurst {
  0% {
    transform: scale(1);
    box-shadow: 0 0 14px rgba(115, 245, 255, 0.7);
  }
  55% {
    transform: scale(1.22);
    box-shadow: 0 0 28px rgba(115, 245, 255, 0.95);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 14px rgba(115, 245, 255, 0.7);
  }
}

.partner-command-panel.is-updating {
  animation: partnerPanelPulse 0.52s ease;
}

.partner-command-panel.is-updating .partner-radar-core {
  animation: partnerRadarCoreBurst 0.52s ease;
}

@keyframes partnerGridDrift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(42px);
  }
}

.partner-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.partner-modal-layer[hidden] {
  display: none !important;
}

.partner-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 19, 0.74);
  backdrop-filter: blur(6px);
}

.partner-modal {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  border: 1px solid rgba(94, 165, 255, 0.38);
  border-radius: 1rem;
  background: linear-gradient(150deg, rgba(7, 20, 42, 0.97) 0%, rgba(7, 18, 35, 0.97) 100%);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

.partner-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(110, 172, 255, 0.45);
  background: rgba(5, 18, 38, 0.9);
  color: #b0ceea;
  font-size: 1.25rem;
  line-height: 1;
}

.partner-modal-head {
  max-width: 70ch;
}

.partner-modal-badge {
  display: inline-flex;
  padding: 0.3rem 0.66rem;
  border: 1px solid rgba(86, 212, 255, 0.5);
  border-radius: 999px;
  color: #8bedff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-modal-head h3 {
  margin-top: 0.72rem;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.partner-modal-head p {
  margin-top: 0.38rem;
  color: #a8c6df;
}

.partner-modal-grid {
  margin-top: 1rem;
  /* display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.9rem; */
}

.partner-policy-panel,
.partner-interest-form {
  border: 1px solid rgba(82, 151, 233, 0.3);
  border-radius: 0.8rem;
  background: rgba(6, 19, 40, 0.78);
  padding: 0.85rem;
}

.partner-policy-panel h4,
.partner-interest-form h4 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.partner-policy-item {
  border: 1px solid rgba(78, 135, 210, 0.25);
  border-radius: 0.66rem;
  background: rgba(7, 22, 43, 0.68);
  padding: 0.5rem 0.62rem;
}

.partner-policy-item + .partner-policy-item {
  margin-top: 0.5rem;
}

.partner-policy-trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: #d5e8fb;
  font-weight: 600;
  font-size: 0.9rem;
}

.partner-policy-item p {
  margin-top: 0.45rem;
  color: #93b5d4;
  font-size: 0.84rem;
  line-height: 1.45;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.partner-policy-item.active p {
  max-height: 160px;
}

.partner-interest-form {
  display: grid;
  gap: 0.6rem;
}

.partner-interest-form input,
.partner-interest-form select {
  width: 100%;
  border: 1px solid rgba(94, 150, 255, 0.3);
  border-radius: 0.68rem;
  background: rgba(7, 20, 42, 0.92);
  color: #d7ebff;
  padding: 0.72rem 0.82rem;
  outline: none;
}

.partner-interest-form input::placeholder {
  color: #7b98b7;
}

.partner-interest-form select:invalid {
  color: #7b98b7;
}

.partner-form-actions {
  display: grid;
  gap: 0.45rem;
}

.partner-submit {
  border: 1px solid rgba(0, 255, 208, 0.72);
  background: linear-gradient(90deg, #00dfff 0%, #2dfdb8 100%);
  color: #062039;
  font-weight: 700;
}

.partner-form-status {
  color: #8ca9c6;
  font-size: 0.82rem;
}

.partner-form-status.sent {
  color: #74f8d0;
  text-shadow: 0 0 12px rgba(116, 248, 208, 0.28);
}

body.partner-modal-open {
  overflow: hidden;
}

body.partner-panel-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .partner-panel-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 189;
    background: rgba(2, 10, 22, 0.76);
    backdrop-filter: blur(6px);
  }

  .partner-panel-modal-backdrop[hidden] {
    display: none !important;
  }

  .partner-panel-modal-backdrop:not([hidden]) {
    display: block;
  }

  .partner-command-panel {
    display: none;
  }

  .partner-command-panel.is-mobile-modal-open {
    position: fixed;
    z-index: 190;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 520px);
    max-height: 84vh;
    overflow: auto;
    display: grid;
    gap: 0.85rem;
    padding: 1.05rem;
    border-radius: 0.95rem;
  }

  .partner-command-panel-close {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 0.7rem;
    right: 0.7rem;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(116, 255, 227, 0.42);
    background: rgba(4, 16, 32, 0.92);
    color: #d8eeff;
    font-size: 1.26rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
  }

  .partner-command-panel.is-mobile-modal-open .partner-command-copy {
    padding-right: 2.2rem;
  }
}

@media (max-width: 1080px) {
  .partner-interactive-layout,
  .partner-modal-grid {
    grid-template-columns: 1fr;
  }

  .partner-command-panel {
    gap: 0.85rem;
  }

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

@media (max-width: 640px) {
  .partner-nexus {
    padding: 3rem 0;
  }

  .partner-nexus-shell,
  .partner-modal {
    padding: 0.8rem;
  }

  .partner-benefits-grid {
    grid-template-columns: 1fr;
  }

  .partner-command-radar {
    width: min(100%, 170px);
  }

  .partner-command-copy h3 {
    font-size: 1.1rem;
    margin-top: 30px;
  }

  .partner-command-copy p {
    font-size: 0.9rem;
  }
}

/* Packages Compare Section */
.packages-compare {
  position: relative;
  padding: 4.8rem 0;
  background:
    radial-gradient(920px 400px at 18% -8%, rgba(0, 231, 255, 0.13), transparent 55%),
    radial-gradient(980px 420px at 84% 106%, rgba(255, 178, 66, 0.14), transparent 58%),
    linear-gradient(180deg, #030c17 0%, #06121f 100%);
  overflow: hidden;
}

.packages-compare::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(108, 242, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 242, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.packages-compare__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 82ch;
  margin: 0 auto 1.4rem;
}

.packages-compare__badge {
  margin-bottom: 0.95rem;
}

.packages-compare__dot {
  background: #57ecff !important;
  box-shadow: 0 0 12px rgba(87, 236, 255, 0.65) !important;
}

.packages-compare__head h2 {
  color: #eff8ff;
  font-size: clamp(1.9rem, 3.9vw, 2.7rem);
  line-height: 1.18;
}

.packages-compare__head p {
  margin-top: 0.72rem;
  color: #a7c3d8;
  font-size: 1.3vw;
  line-height: 1.5;
}

.packages-compare__accent {
  color: #ffbe66;
  text-shadow: 0 0 18px rgba(255, 190, 102, 0.36);
}

.packages-compare__check-accent {
  color: #89ffdb;
  text-shadow: 0 0 14px rgba(137, 255, 219, 0.42);
}

.packages-compare__table {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(110, 227, 241, 0.25);
  border-radius: 1rem;
  background: linear-gradient(155deg, rgba(8, 20, 34, 0.88) 0%, rgba(7, 17, 30, 0.9) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(110, 227, 241, 0.07),
    0 20px 46px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.pkg-row {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(115px, 0.6fr) minmax(115px, 0.6fr) minmax(115px, 0.6fr);
  border-top: 1px solid rgba(136, 179, 206, 0.15);
}

.packages-compare__table > .pkg-row:first-child {
  border-top: 0;
}

.pkg-row--head {
  background: linear-gradient(90deg, rgba(87, 236, 255, 0.14), rgba(255, 190, 102, 0.14));
}

.pkg-cell {
  padding: 0.54rem 0.7rem;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.pkg-cell + .pkg-cell {
  border-left: 1px solid rgba(136, 179, 206, 0.13);
}

.pkg-cell--feature {
  justify-content: flex-start;
  gap: 0.38rem;
  color: #dbefff;
  font-size: 0.95rem;
  line-height: 1.4;
}

.pkg-row--head .pkg-cell {
  /* font-family: 'Share Tech Mono', monospace; */
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.pkg-cell--plan {
  justify-content: center;
}

.pkg-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.25rem;
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
}

.pkg-state.yes {
  color: #89ffdb;
  /* border-color: rgba(137, 255, 219, 0.45);
  background: rgba(137, 255, 219, 0.12); */
}

.pkg-state.no {
  color: #ff9ea0;
  /* border-color: rgba(255, 158, 160, 0.45);
  background: rgba(255, 158, 160, 0.1); */
}

.pkg-state.addon {
  color: #ffd38b;
  border-color: rgba(255, 211, 139, 0.42);
  background: rgba(255, 211, 139, 0.12);
}

.pkg-rows-more {
  transition: max-height 0.35s ease-out, opacity 0.35s ease-out;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

.pkg-rows-more:not([hidden]) {
  max-height: 2000px;
  opacity: 1;
}

.pkg-row--toggle {
  border-top: 2px solid rgba(110, 227, 241, 0.15);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
}

.pkg-toggle-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, rgba(87, 236, 255, 0.08), rgba(255, 190, 102, 0.08));
  border: none;
  color: #89ffdb;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.pkg-toggle-btn:hover {
  background: linear-gradient(90deg, rgba(87, 236, 255, 0.15), rgba(255, 190, 102, 0.12));
  color: #57ecff;
  text-shadow: 0 0 12px rgba(87, 236, 255, 0.4);
}

.pkg-toggle-btn::after {
  content: '▼';
  margin-left: 0.6rem;
  display: inline-block;
  transition: transform 0.35s ease;
}

.pkg-toggle-btn[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.pkg-help-btn {
  width: 18px;
  height: 18px;
  margin-left: 0.38em;
  border-radius: 50%;
  border: 1px solid rgba(87, 236, 255, 0.6);
  background: rgba(5, 24, 37, 0.85);
  color: #9cebff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pkg-help-btn:hover {
  transform: translateY(-1px) scale(1.05);
  border-color: #ffbe66;
  box-shadow: 0 0 14px rgba(87, 236, 255, 0.4);
}

.packages-compare__note {
  margin-top: 0.78rem;
  color: #89a9c0;
  font-size: 0.9rem;
  text-align: right;
}

.pkg-help-layer {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.pkg-help-layer[hidden] {
  display: none !important;
}

.pkg-help-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 11, 21, 0.76);
  backdrop-filter: blur(6px);
}

.pkg-help-modal {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  border: 1px solid rgba(110, 227, 241, 0.45);
  border-radius: 0.95rem;
  background: linear-gradient(155deg, rgba(8, 24, 39, 0.97), rgba(7, 16, 30, 0.97));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
  padding: 30px;
}

.pkg-help-close {
  position: absolute;
  top: 0.62rem;
  right: 0.68rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  border: 1px solid rgba(110, 227, 241, 0.44);
  background: rgba(6, 17, 30, 0.9);
  color: #cfefff;
  font-size: 1.18rem;
  line-height: 1;
  cursor: pointer;
}

.pkg-help-tag {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 190, 102, 0.45);
  background: rgba(255, 190, 102, 0.12);
  color: #ffd8a8;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.56rem;
}

.pkg-help-modal h3 {
  margin-top: 0.65rem;
  color: #eef9ff;
  font-size: 1.2rem;
  line-height: 1.3;
}

.pkg-help-modal p {
  margin-top: 1.5rem;
  color: #a6c4d8;
  line-height: 1.55;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .pkg-row {
    grid-template-columns: minmax(0, 1.35fr) minmax(94px, 0.72fr) minmax(94px, 0.72fr) minmax(94px, 0.72fr);
  }

  .pkg-cell {
    padding: 0.72rem 0.62rem;
  }
}

@media (max-width: 640px) {
  .packages-compare {
    padding: 3rem 0;
  }

  .packages-compare__table {
    overflow-x: auto;
  }

  .pkg-row {
    min-width: 800px;
  }

  .packages-compare__note {
    text-align: left;
  }
}

/* Professional Services Section */
.pro-services {
  position: relative;
  padding: 5rem 0;
  background:
    radial-gradient(1000px 460px at 12% -8%, rgba(255, 160, 49, 0.14), transparent 56%),
    radial-gradient(900px 420px at 84% 108%, rgba(98, 255, 224, 0.12), transparent 58%),
    linear-gradient(180deg, #050e17 0%, #06111c 100%);
  overflow: hidden;
}

.pro-services-gridfx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(84, 255, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 255, 225, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.92), transparent 78%);
}

.pro-services-shell {
  position: relative;
  z-index: 1;
  border-radius: 1.2rem;
  border: 1px solid rgba(98, 255, 224, 0.28);
  background:
    linear-gradient(155deg, rgba(8, 26, 39, 0.84) 0%, rgba(7, 20, 31, 0.88) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(98, 255, 224, 0.08),
    0 28px 56px rgba(0, 0, 0, 0.35);
  padding: 2.4rem 1.8rem;
  isolation: isolate;
}

.pro-services-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 179, 71, 0.11) 50%, transparent 85%);
  transform: translateX(-120%);
  opacity: 0;
  z-index: -1;
}

.pro-services-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(98, 255, 224, 0.02) 8px,
    rgba(98, 255, 224, 0.02) 9px
  );
  mix-blend-mode: screen;
}

.pro-services-head {
  text-align: center;
  max-width: 90%;
  margin: 0 auto 2rem;
}

.pro-services-head h2 {
  color: #f2fbff;
  font-size: 1.8rem;
  line-height: 1.2;
}

.pro-services-head p {
  margin-top: 0.8rem;
  color: #a9c4d7;
  font-size: 1.12rem;
  line-height: 1.45;
}

.pro-services-proof {
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 74ch;
  padding: 0.72rem 0.9rem;
  border-radius: 0.72rem;
  border: 1px solid rgba(255, 179, 71, 0.38);
  background: linear-gradient(90deg, rgba(255, 179, 71, 0.11), rgba(98, 255, 224, 0.1));
  color: #e8f7ff;
  font-size: 1.2rem;
  line-height: 1.5;
  box-shadow: 0 0 22px rgba(255, 179, 71, 0.1);
}

.pro-services-highlight {
  color: #ffb347;
  text-shadow: 0 0 20px rgba(255, 179, 71, 0.34);
}

.pro-services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
}

.pro-services-card {
  grid-column: span 4;
  border: 1px solid rgba(98, 255, 224, 0.22);
  border-radius: 0.95rem;
  background: linear-gradient(150deg, rgba(8, 25, 38, 0.86) 0%, rgba(11, 32, 48, 0.78) 100%);
  padding: 1.1rem 1rem;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  position: relative;
  overflow: hidden;
}

.pro-services-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 22%, rgba(98, 255, 224, 0.18) 50%, transparent 78%);
  transform: translateX(-135%);
  opacity: 0;
}

.pro-services-card:nth-child(4),
.pro-services-card:nth-child(5) {
  grid-column: span 6;
}

.pro-services-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 179, 71, 0.52);
  box-shadow:
    0 0 24px rgba(255, 179, 71, 0.13),
    0 0 44px rgba(98, 255, 224, 0.08);
}

.pro-services-card:hover::before {
  opacity: 1;
  transform: translateX(130%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.pro-services-card {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.pro-services.is-visible .pro-services-card {
  animation: proServicesCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border: 1px solid rgba(255, 179, 71, 0.38);
}

.pro-services.is-visible .pro-services-card:nth-child(1) { animation-delay: 0.05s; }
.pro-services.is-visible .pro-services-card:nth-child(2) { animation-delay: 0.14s; }
.pro-services.is-visible .pro-services-card:nth-child(3) { animation-delay: 0.23s; }
.pro-services.is-visible .pro-services-card:nth-child(4) { animation-delay: 0.32s; }
.pro-services.is-visible .pro-services-card:nth-child(5) { animation-delay: 0.41s; }

.pro-services.is-visible .pro-services-shell::before {
  animation: proServicesSweep 1.2s ease-out 0.15s forwards;
}

@keyframes proServicesCardIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes proServicesSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pro-services-card,
  .pro-services.is-visible .pro-services-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .pro-services.is-visible .pro-services-shell::before {
    animation: none;
  }
}

.pro-services-card__index {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.2rem 0.52rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 179, 71, 0.45);
  color: #ffb347;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.pro-services-card h3 {
  color: #e7f6ff;
  font-size: 1.12rem;
  line-height: 1.35;
  margin: 0 0 0.45rem;
}

.pro-services-card p {
  margin: 0;
  color: #b9d0df;
  line-height: 1.5;
  font-size: 0.96rem;
}

/* ===== Shorts Catalog ===== */
.shorts-catalog {
  position: relative;
  overflow: hidden;
  padding: 6.2rem 0;
  background:
    radial-gradient(1100px 520px at 14% 8%, rgba(255, 0, 153, 0.18), transparent 54%),
    radial-gradient(950px 460px at 88% 12%, rgba(0, 230, 255, 0.16), transparent 56%),
    linear-gradient(180deg, #040714 0%, #050b18 46%, #03050d 100%);
}

.shorts-catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(122, 255, 244, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 153, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 32%, rgba(0, 0, 0, 0.96), transparent 78%);
}

.shorts-catalog::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 18%, rgba(0, 230, 255, 0.09) 50%, transparent 82%);
  transform: translateX(-120%);
  opacity: 0;
}

.shorts-catalog.is-visible::after {
  animation: shortsSweep 1.4s ease-out 0.1s forwards;
}

.shorts-catalog__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px),
    radial-gradient(circle at 44% 78%, rgba(0, 255, 235, 0.08) 0 1px, transparent 1px);
  background-size: 28px 28px;
  mix-blend-mode: screen;
}

.shorts-catalog__shell {
  position: relative;
  z-index: 1;
  display: block;
}

.shorts-catalog__head {
  margin-bottom: 1.6rem;
}

.shorts-catalog-highlight {
  color: #ffb347;
  text-shadow: 0 0 20px rgba(255, 179, 71, 0.34);
}

.shorts-catalog__deck {
  position: relative;
  z-index: 1;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 230, 255, 0.18);
  background:
    linear-gradient(160deg, rgba(5, 11, 22, 0.92) 0%, rgba(8, 16, 32, 0.86) 100%),
    linear-gradient(135deg, rgba(0, 230, 255, 0.05), rgba(255, 0, 153, 0.04));
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 1rem;
  overflow: hidden;
}

.shorts-catalog__deck-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0 0.35rem 0.85rem;
  border-bottom: 1px solid rgba(0, 230, 255, 0.16);
  color: rgba(223, 251, 255, 0.78);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shorts-catalog__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.shorts-catalog__nav {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 230, 255, 0.35);
  background: rgba(8, 20, 36, 0.82);
  color: #e7fbff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.shorts-catalog__nav:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 0, 153, 0.52);
  box-shadow: 0 0 16px rgba(255, 0, 153, 0.18);
}

.shorts-catalog__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  padding-top: 0.95rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 230, 255, 0.45) rgba(9, 20, 36, 0.52);
}

.shorts-catalog__grid::-webkit-scrollbar {
  height: 8px;
}

.shorts-catalog__grid::-webkit-scrollbar-track {
  background: rgba(9, 20, 36, 0.52);
  border-radius: 999px;
}

.shorts-catalog__grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(0, 230, 255, 0.82), rgba(255, 0, 153, 0.8));
  border-radius: 999px;
}

.shorts-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(180px, 16vw, 240px);
  min-width: clamp(180px, 16vw, 240px);
  border-radius: 1rem;
  border: 1px solid rgba(0, 230, 255, 0.12);
  background: linear-gradient(180deg, rgba(9, 18, 34, 0.96) 0%, rgba(5, 11, 20, 0.94) 100%);
  color: inherit;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.shorts-card--action {
  padding: 0;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.shorts-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 0, 153, 0.32);
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(0, 230, 255, 0.08),
    0 0 26px rgba(0, 230, 255, 0.08);
}

.shorts-card__poster {
  position: relative;
  margin: 0.72rem 0.72rem 0;
  aspect-ratio: 9 / 16;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(0, 230, 255, 0.14);
  background: #06101d;
}

.shorts-card__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(3, 8, 15, 0.1) 0%, rgba(3, 8, 15, 0.42) 70%, rgba(3, 8, 15, 0.78) 100%); */
  pointer-events: none;
}

.shorts-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.12) contrast(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.shorts-card:hover .shorts-card__poster img {
  transform: scale(1.08);
  filter: saturate(1.24) contrast(1.06);
}

.shorts-card__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.82rem 0.78rem 0.95rem;
}

.shorts-card__body h3 {
  color: #f4fbff;
  font-size: 0.98rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.shorts-catalog.is-visible .shorts-card {
  animation: shortsCardIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--card-delay, 0s);
}

.shorts-catalog.is-visible .shorts-catalog__head {
  animation: shortsIntroIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.shorts-catalog.is-visible .shorts-catalog__deck {
  animation: shortsDeckIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.shorts-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

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

.shorts-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.78);
  backdrop-filter: blur(4px);
}

.shorts-modal {
  position: relative;
  width: min(960px, 96vw);
  border-radius: 1.15rem;
  border: 1px solid rgba(0, 230, 255, 0.28);
  background: linear-gradient(170deg, rgba(5, 12, 26, 0.98) 0%, rgba(6, 16, 34, 0.94) 100%);
  box-shadow: 0 36px 72px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.shorts-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 230, 255, 0.3);
  background: rgba(8, 18, 34, 0.85);
  color: #d9f9ff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.shorts-modal-head {
  padding: 1rem 3rem 0.7rem 1rem;
  border-bottom: 1px solid rgba(0, 230, 255, 0.14);
}

.shorts-modal-head h3 {
  margin: 0;
  color: #ebfaff;
  font-size: clamp(0.96rem, 2.3vw, 1.16rem);
  line-height: 1.35;
}

.shorts-modal-video-wrap {
  padding: 0.8rem;
}

.shorts-modal-video-wrap video {
  width: 100%;
  max-height: min(76vh, 780px);
  display: block;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 230, 255, 0.2);
  background: #000;
}

body.shorts-modal-open {
  overflow: hidden;
}

@keyframes shortsCardIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shortsIntroIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shortsDeckIn {
  0% {
    opacity: 0;
    transform: translateX(14px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shortsSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (max-width: 1220px) {
  .shorts-card {
    flex-basis: clamp(190px, 24vw, 250px);
    min-width: clamp(190px, 24vw, 250px);
  }
}

@media (max-width: 780px) {
  .shorts-catalog {
    padding: 3.6rem 0;
  }

  .shorts-catalog__deck {
    padding: 1rem;
  }

  .shorts-catalog__grid {
    gap: 0.8rem;
  }

  .shorts-card {
    flex-basis: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

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

  .shorts-modal {
    width: min(100vw - 1rem, 960px);
  }

  .shorts-modal-head {
    padding: 0.85rem 2.4rem 0.6rem 0.8rem;
  }

  .shorts-modal-video-wrap {
    padding: 0.55rem;
  }

  .shorts-card {
    flex-basis: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .pro-services-card,
  .pro-services-card:nth-child(4),
  .pro-services-card:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .pro-services {
    padding: 3rem 0;
  }

  .pro-services-shell {
    padding: 1.2rem 0.9rem;
  }

  .pro-services-card,
  .pro-services-card:nth-child(4),
  .pro-services-card:nth-child(5) {
    grid-column: span 12;
  }
}

/* ===== Phish Game Cover ===== */
.phish-game-mail-panel {
  position: relative;
}

.phish-game-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 32, 57, 0.95) 0%, rgba(15, 45, 75, 0.95) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(116, 255, 227, 0.2);
}

.phish-game-cover.hidden {
  display: none;
  pointer-events: none;
}

.phish-game-cover-content {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

.phish-game-cover-content h3 {
  font-size: 1.8rem;
  color: #eef4ff;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.phish-game-cover-content p {
  font-size: 0.95rem;
  color: #a8c5d8;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.phish-game-start-btn {
  padding: 0.9rem 2rem;
  border: 1px solid rgba(116, 255, 227, 0.72);
  background: linear-gradient(90deg, #00dfff 0%, #2dfdb8 100%);
  color: #062039;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(116, 255, 227, 0.4);
}

.phish-game-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(116, 255, 227, 0.6);
  background: linear-gradient(90deg, #2dfdb8 0%, #00dfff 100%);
}

.phish-game-start-btn:active {
  transform: translateY(0);
}

.phish-game-final-score {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0 2rem 0;
  justify-content: center;
}

.phish-game-final-score-item {
  text-align: center;
}

.phish-game-final-score-item .label {
  display: block;
  font-size: 0.85rem;
  color: #a8c5d8;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.phish-game-final-score-item strong {
  display: block;
  font-size: 2rem;
  color: #00dfff;
  font-weight: 700;
}

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 12000;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__content {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: end;
  padding: 1.25rem;
  border: 1px solid rgba(116, 255, 227, 0.28);
  border-radius: 8px;
  background: rgba(3, 14, 24, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.52), 0 0 30px rgba(45, 253, 184, 0.12);
  backdrop-filter: blur(18px);
}

.cookie-consent__copy h2 {
  margin: 0 0 0.55rem;
  color: #eef4ff;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 700;
}

.cookie-consent__body {
  margin: 0;
  color: #a8c5d8;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-consent__body p {
  margin: 0;
}

.cookie-consent__body p + p {
  margin-top: 0.6rem;
}

.cookie-consent__body ul {
  margin: 0.55rem 0;
  padding-left: 1.15rem;
}

.cookie-consent__body li + li {
  margin-top: 0.3rem;
}

.cookie-consent__body strong {
  color: #dffdf7;
  font-weight: 700;
}

.cookie-consent__actions,
.cookie-modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: center;
}

.cookie-consent__accept,
.cookie-consent__secondary {
  min-width: 9.75rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(116, 255, 227, 0.72);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cookie-consent__accept {
  background: linear-gradient(90deg, #00dfff 0%, #2dfdb8 100%);
  color: #062039;
  box-shadow: 0 0 18px rgba(116, 255, 227, 0.28);
}

.cookie-consent__secondary {
  background: rgba(6, 32, 57, 0.82);
  color: #dffdf7;
  box-shadow: none;
}

.cookie-consent__accept:hover,
.cookie-consent__accept:focus-visible,
.cookie-consent__secondary:hover,
.cookie-consent__secondary:focus-visible {
  transform: translateY(-1px);
}

.cookie-consent__accept:hover,
.cookie-consent__accept:focus-visible {
  box-shadow: 0 0 26px rgba(116, 255, 227, 0.42);
}

.cookie-consent__secondary:hover,
.cookie-consent__secondary:focus-visible {
  border-color: rgba(116, 255, 227, 0.95);
}

.cookie-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 12100;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.cookie-modal-layer.is-visible {
  opacity: 1;
}

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

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.cookie-modal {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 2rem));
  overflow-y: auto;
  padding: 1.5rem;
  border: 1px solid rgba(116, 255, 227, 0.3);
  border-radius: 8px;
  background: rgba(3, 14, 24, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58), 0 0 34px rgba(45, 253, 184, 0.1);
}

.cookie-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(116, 255, 227, 0.25);
  border-radius: 6px;
  background: rgba(6, 32, 57, 0.76);
  color: #dffdf7;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal h2 {
  margin: 0 2.5rem 0.65rem 0;
  color: #eef4ff;
  font-size: 1.3rem;
  line-height: 1.25;
}

.cookie-modal__intro,
.cookie-modal__note {
  margin: 0;
  color: #a8c5d8;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-modal__note {
  margin-top: 1rem;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(116, 255, 227, 0.16);
  border-radius: 8px;
  background: rgba(6, 32, 57, 0.48);
}

.cookie-option strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #dffdf7;
  font-size: 0.98rem;
}

.cookie-option p {
  margin: 0;
  color: #a8c5d8;
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 3.25rem;
  height: 1.75rem;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(168, 197, 216, 0.32);
  border-radius: 999px;
  background: rgba(168, 197, 216, 0.16);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.cookie-switch span::after {
  content: "";
  position: absolute;
  top: 0.22rem;
  left: 0.24rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #a8c5d8;
  transition: transform 0.18s ease, background 0.18s ease;
}

.cookie-switch input:checked + span {
  border-color: rgba(116, 255, 227, 0.76);
  background: rgba(45, 253, 184, 0.22);
}

.cookie-switch input:checked + span::after {
  transform: translateX(1.45rem);
  background: #2dfdb8;
}

.cookie-switch input:disabled + span {
  cursor: not-allowed;
  opacity: 0.72;
}

.cookie-modal__actions {
  margin-top: 1.25rem;
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .cookie-consent {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .cookie-consent__content {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-height: calc(100vh - 1.5rem);
    overflow-y: auto;
    padding: 1rem;
  }

  .cookie-consent__copy h2 {
    font-size: 1rem;
  }

  .cookie-consent__body {
    font-size: 0.86rem;
  }

  .cookie-consent__actions,
  .cookie-modal__actions {
    flex-direction: column;
  }

  .cookie-consent__accept,
  .cookie-consent__secondary {
    width: 100%;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

  .cookie-switch {
    justify-self: start;
  }

  .cookie-modal {
    padding: 1.15rem;
  }
}

/* Global responsive hardening */
@media (max-width: 900px) {
  .soc-cards,
  .soc-cards-row2,
  .phishing-steps,
  .matrix-feature-panel,
  .partner-interactive-layout,
  .pro-services-grid,
  .cyber-footer__deck,
  .cyber-footer__matrix {
    grid-template-columns: 1fr;
  }

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

  .neo-visual-kpis,
  .uc-modal-metrics,
  .phish-game-metrics,
  .cyber-contact-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spot-assess,
  .spot-ia-grid,
  .spot-ia-agents {
    grid-template-columns: 1fr !important;
  }

  .packages-compare__head p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: clamp(0.85rem, 4vw, 1.15rem);
    padding-right: clamp(0.85rem, 4vw, 1.15rem);
  }

  .hero {
    min-height: auto;
    padding: 7.4rem 0 3.6rem;
    align-items: flex-start;
  }

  .hero__status {
    top: 0.9rem;
    left: 0.85rem;
    right: 0.85rem;
    width: auto;
    transform: none;
    justify-content: center;
    white-space: normal;
    text-align: center;
    font-size: clamp(0.72rem, 3.1vw, 0.95rem);
    line-height: 1.25;
  }

  .hero-side-menu,
  .hero-side-menu.is-compact,
  .hero-side-menu.is-compact:hover,
  .hero-side-menu.is-compact:focus-within,
  .hero-side-menu.is-compact.is-click-collapsed:hover,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within {
    position: fixed;
    top: 3.25rem;
    left: 0.75rem;
    right: 0.75rem;
    bottom: auto;
    width: auto;
    max-width: calc(100vw - 1.5rem);
    transform: none;
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.45rem;
    border-radius: 0.75rem;
  }

  .hero-side-menu__title,
  .hero-side-menu.is-compact:hover .hero-side-menu__title,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__title {
    display: none;
  }

  .hero-side-menu__link,
  .hero-side-menu.is-compact .hero-side-menu__link,
  .hero-side-menu.is-compact:hover .hero-side-menu__link,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__link {
    flex: 0 0 auto;
    justify-content: flex-start;
    min-height: 2rem;
    padding: 0.35rem 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }

  .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact:hover .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__link span:last-child {
    max-width: 12rem;
    opacity: 1;
  }

  .hero__content {
    padding: 0.5rem 1rem 2rem;
  }

  .hero__logo-wrap {
    margin-bottom: 1.5rem;
  }

  .hero__logo {
    height: clamp(2.8rem, 13vw, 4rem);
  }

  .hero__sub {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }

  .hero__cta-row,
  .banner-cta,
  .cta-buttons,
  .phish-breach-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cyber,
  .btn,
  .btn-cta-primary,
  .btn-cta-secondary,
  .phish-breach-btn,
  .partner-open-modal {
    width: 100%;
    max-width: 100%;
  }

  .threat-panel {
    padding: 1rem;
  }

  .threat-panel__header {
    align-items: flex-start;
    gap: 0.75rem;
    flex-direction: column;
  }

  .tbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(5.5rem, 1fr) auto;
    gap: 0.45rem;
  }

  .tbar__label {
    width: auto;
    min-width: 0;
    font-size: 0.72rem;
    white-space: normal;
  }

  .tbar__val {
    width: auto;
    min-width: 2.4rem;
    font-size: 0.72rem;
  }

  .ticker-item {
    font-size: 0.8rem;
  }

  .soc-stats,
  .phishing-explainer,
  .ops-flow,
  .solutions-matrix,
  .packages-compare,
  .uc-section,
  .phish-game,
  .cta-hero,
  .cyber-contact,
  .partner-nexus,
  .pro-services,
  .shorts-catalog {
    min-height: auto;
  }

  .soc-title,
  .phishing-title,
  .ops-flow-title,
  .solutions-title,
  .packages-compare__head h2,
  .uc-title,
  .phish-game-title,
  .cta-title,
  .cyber-contact-intel h2,
  .partner-nexus-head h2,
  .pro-services-head h2 {
    font-size: 1.3rem;
    line-height: 1.15;
  }

  .soc-cards,
  .ops-flow-grid,
  .matrix-module-grid,
  .matrix-feature-panel,
  .uc-grid,
  .partner-benefits-grid {
    grid-template-columns: 1fr;
  }

  .soc-badge {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: normal;
  }

  .soc-live2 {
    display: none;
  }

  .soc-header {
    margin-bottom: 2rem;
  }

  .soc-number {
    font-size: 1.8rem;
  }

  .soc-card-desc {
    color: rgba(155, 205, 220, 1);
  }

  .soc-card-label {
    line-height: normal;
  }

  .flow-step-card,
  .ops-flow-console,
  .neo-feature,
  .partner-benefit-card {
    min-height: auto;
  }

  .flow-step-tag {
    /* position: static; */
    justify-self: start;
    margin-bottom: 0.5rem;
    min-width: 0;
  }

  .flow-step-icon {
    top: 0.85rem;
    right: 0.85rem;
  }

  .ops-flow-subtitle {
    margin-bottom: 2rem;
  }

  .ops-flow-checkpoints,
  .ops-flow-progress,
  .neo-visual-kpis,
  .uc-modal-metrics,
  .cyber-contact-kpis {
    grid-template-columns: 1fr;
  }

  .phish-game-panel .phish-game-metrics {
    grid-template-columns: revert-rule;
    width: 100%;
  }

  .ops-flow-progress {
    display: none;
  }

  .matrix-stage,
  .matrix-orbit,
  .matrix-console,
  .matrix-feature-panel.focused .neo-feature.active {
    overflow: visible;
  }

  .orbit-module {
    clip-path: none;
    border-radius: 0.75rem;
  }

  .module-chip-id {
    min-width: 2.6rem;
    width: 2.6rem;
    height: 2.6rem;
  }

  .matrix-orbit-actions,
  .neo-visual-head,
  .uc-modal-stage-topline,
  .shorts-catalog__deck-topline {
    align-items: stretch;
    flex-direction: column;
  }

  .matrix-btn,
  .uc-modal-control {
    width: 100%;
    text-align: center;
    clip-path: none;
  }

  .spot-assess-header {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  .spot-assess,
  .spot-ia-grid,
  .spot-ia-agents {
    grid-template-columns: 1fr !important;
    overflow: visible;
  }

  .email-mockup {
    padding: 0.9rem;
  }

  .email-hud-header,
  .email-hud-row,
  .email-link-reveal-row,
  .phish-game-mail-head,
  .phish-game-mail-row,
  .ops-flow-console-head,
  .ops-risk-head,
  .ops-flow-total,
  .metric-row,
  .cyber-contact-kpi,
  .cyber-contact-signal-label {
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .email-body {
    padding: 1.25rem 0rem;
  }

  .email-hud-field,
  .phish-game-mail-row .label {
    min-width: 0;
    width: auto;
  }

  .email-fake-btn,
  .phish-game-btn,
  .phish-game-next-btn,
  .phish-game-start-btn,
  .partner-submit {
    width: 90%;
  }

  .phish-game-actions .phish-game-btn {
    width: 100%;
  }

  .phishing-step-arrow {
    display: none;
  }

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

  .uc-modal-stage {
    min-height: 15rem;
  }

  .uc-stage-big-number {
    font-size: clamp(3rem, 18vw, 4.2rem);
  }

  .uc-stage-float,
  .uc-stage-module,
  .uc-stage-branch-card {
    min-width: 0;
    max-width: 44%;
    padding: 0.55rem;
  }

  .uc-stage-doc {
    width: 38%;
    height: 58%;
  }

  .uc-stage-link {
    max-width: 28vw;
  }

  .phish-game-mail-card {
    min-height: auto;
  }

  .phish-game-cover-content {
    padding: 1rem;
  }

  .phish-game-final-score {
    flex-direction: column;
    gap: 1rem;
  }

  .phish-game-leaderboard-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(193, 222, 232);
    font-family: 'Courier New', monospace;
    margin-bottom: 0.45rem;
    font-weight: 600;
  }

  .cyber-contact-intel p,
  .partner-nexus-head p,
  .pro-services-head p,
  .pro-services-proof {
    font-size: 1rem;
    line-height: 1.45;
  }

  #cyber-contact-country option {
    font-size: 0.9rem;
  }

  .partner-nexus-shell,
  .pro-services-shell {
    border-radius: 1rem;
  }

  .partner-benefit-icon {
    width: 3.75rem;
    height: 3.75rem;
  }

  .packages-compare__table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pkg-row {
    min-width: 42rem;
  }

  .pkg-cell--feature {
    font-size: 0.84rem;
  }

  .shorts-catalog__controls {
    width: 100%;
    justify-content: space-between;
  }

  .shorts-catalog__grid {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .shorts-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .footer-modal,
  .partner-modal,
  .pkg-help-modal,
  .uc-modal,
  .shorts-modal {
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-side-menu,
  .hero-side-menu.is-compact {
    top: 3.1rem;
    left: 0.5rem;
    right: 0.5rem;
    max-width: calc(100vw - 1rem);
  }

  .hero-side-menu__link,
  .hero-side-menu.is-compact .hero-side-menu__link {
    font-size: 0.7rem;
    padding: 0.32rem 0.5rem;
  }

  .btn-cyber {
    padding: 0.85rem 1rem;
    letter-spacing: 0.07em;
  }

  .threat-panel {
    margin-left: -0.15rem;
    margin-right: -0.15rem;
  }

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

  .tbar__track {
    width: 100%;
  }

  .tbar__val {
    text-align: left;
  }

  .soc-card,
  .flow-step-card,
  .ops-flow-console,
  .matrix-orbit,
  .matrix-console,
  .neo-feature,
  .uc-card,
  .phish-game-panel,
  .cyber-contact-intel,
  .cyber-contact-form-wrap,
  .partner-command-panel,
  .partner-benefit-card,
  .pro-services-card {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .uc-card,
  .uc-card:hover,
  .uc-card.uc-active {
    transition: none;
    animation: none;
    transform: none;
    border-color: #f6ca66;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.026);
  }

  .uc-card::before,
  .uc-card:hover::before {
    opacity: 0;
    transition: none;
  }

  .uc-card.uc-auto-pulse {
    animation: none;
  }

  .matrix-module-grid,
  .neo-visual-kpis,
  .spot-policies-tabs,
  .spot-deepfake-output-types {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .orbit-module,
  .neo-feature {
    grid-template-columns: 1fr;
  }

  .solution-card-icon-large,
  .module-chip-id {
    width: 2.4rem;
    height: 2.4rem;
    min-width: 2.4rem;
  }

  .uc-modal-stage {
    min-height: 13rem;
  }

  .uc-stage {
    padding: 0.75rem;
  }

  .uc-stage-float,
  .uc-stage-module,
  .uc-stage-branch-card {
    font-size: 0.72rem;
    max-width: 48%;
  }

  .phish-game-player-row,
  .cyber-contact-fields,
  .partner-interest-form {
    grid-template-columns: 1fr;
  }

  .phish-game-rank-row {
    grid-template-columns: auto 1fr auto;
    gap: 0.35rem;
    padding: 0.3rem 0.35rem;
    font-size: 0.8rem;
  }

  .phish-game-rank-row .pos {
    min-width: 24px;
    font-size: 0.9rem;
  }

  .phish-game-rank-row .pts {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .pkg-row {
    min-width: 36rem;
  }

  .pkg-cell {
    padding: 0.6rem 0.48rem;
  }

  .shorts-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .cookie-consent,
  .cookie-modal-layer,
  .footer-modal-layer,
  .partner-modal-layer,
  .pkg-help-layer,
  .shorts-modal-layer {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Final responsive polish */
html,
body {
  overflow-x: hidden;
}

@media (max-width: 1100px) {
  .banner-content {
    left: 50%;
    width: min(88%, 700px);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .banner-subtitle,
  .phishing-subtitle,
  .phishing-subtitle2 {
    font-size: clamp(0.9rem, 2.3vw, 1.1rem);
    line-height: 1.45;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .hero__orb--green {
    width: 280px;
    height: 280px;
  }

  .hero__orb--blue {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .hero-side-menu {
    scroll-snap-type: x proximity;
  }

  .hero-side-menu__link {
    scroll-snap-align: start;
  }

  .banner-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    text-align: left;
  }

  .banner-cta .btn-banner-primary,
  .banner-cta .btn-banner-secondary {
    width: 100%;
  }

  .email-hud-value,
  .tbar__label {
    word-break: break-word;
  }

  .pkg-row {
    min-width: 34rem;
  }
}

@media (max-width: 600px) {
  .hero__ticker {
    height: auto;
    min-height: 2rem;
    padding: 0.2rem 0;
  }

  .hero__ticker-label {
    display: none;
  }

  .hero__ticker-track {
    gap: 1rem;
  }

  .ticker-item {
    font-size: 0.72rem;
  }

  .tbar {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .tbar__val {
    text-align: left;
  }

  .hero__orb--green,
  .hero__orb--blue {
    width: 180px;
    height: 180px;
    filter: blur(60px);
    opacity: 0.08;
  }

  .phishing-subtitle,
  .phishing-subtitle2,
  .banner-subtitle {
    font-size: 1.3rem;
  }

  .phishing-step {
    width: 100%;
  }

  .step-desc {
    font-size: 1.2rem;
  }
}

@media (max-width: 390px) {
  .pkg-row {
    min-width: 32rem;
  }

  .hero__title br {
    display: none;
  }
}

/* Packages table: mobile card layout override */
@media (max-width: 768px) {
  .packages-compare__table {
    overflow: visible;
    border-radius: 0.9rem;
    padding: 0.45rem;
    background: linear-gradient(160deg, rgba(8, 20, 34, 0.82) 0%, rgba(7, 17, 30, 0.86) 100%);
  }

  .pkg-row {
    min-width: 0;
    grid-template-columns: 1fr;
    border-top: 0;
    margin: 0 0 0.55rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(136, 179, 206, 0.16);
    background: linear-gradient(165deg, rgba(7, 18, 31, 0.78), rgba(5, 14, 25, 0.84));
    overflow: hidden;
  }

  .packages-compare__table > .pkg-row:first-child {
    margin-bottom: 0.45rem;
  }

  .pkg-row--head {
    display: none;
  }

  .pkg-row--toggle {
    display: flex;
    margin-top: 0.2rem;
    background: transparent;
    border: 0;
  }

  .pkg-cell {
    min-height: 0;
    padding: 0.62rem 0.72rem;
  }

  .pkg-cell + .pkg-cell {
    border-left: 0;
  }

  .pkg-cell--feature {
    font-size: 0.9rem;
    line-height: 1.35;
    border-bottom: 1px solid rgba(136, 179, 206, 0.14);
    padding-bottom: 0.72rem;
    margin-bottom: 0.12rem;
  }

  .pkg-row:not(.pkg-row--head):not(.pkg-row--toggle) > .pkg-cell--plan {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.46rem;
    padding-bottom: 0.46rem;
  }

  .pkg-row:not(.pkg-row--head):not(.pkg-row--toggle) > .pkg-cell--plan::before {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(166, 206, 226, 0.86);
    font-weight: 600;
  }

  .pkg-row:not(.pkg-row--head):not(.pkg-row--toggle) > .pkg-cell--plan:nth-child(2)::before {
    content: 'Compliance';
  }

  .pkg-row:not(.pkg-row--head):not(.pkg-row--toggle) > .pkg-cell--plan:nth-child(3)::before {
    content: 'Enterprise';
  }

  .pkg-row:not(.pkg-row--head):not(.pkg-row--toggle) > .pkg-cell--plan:nth-child(4)::before {
    content: 'Professional';
  }

  .pkg-state {
    width: auto;
    min-width: 2rem;
    height: auto;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.1;
  }

  .pkg-state.yes {
    border-color: rgba(137, 255, 219, 0.45);
    background: rgba(137, 255, 219, 0.12);
  }

  .pkg-state.no {
    border-color: rgba(255, 158, 160, 0.45);
    background: rgba(255, 158, 160, 0.1);
  }

  .pkg-help-btn {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
    margin-left: 0.3rem;
  }

  .pkg-toggle-btn {
    border-radius: 0.72rem;
    padding: 0.9rem 0.8rem;
    font-size: 0.86rem;
  }
}

/* Mobile menu/header overrides */
@media (max-width: 768px) {
  .hero__status {
    display: none !important;
  }

  .hero-mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 145;
    height: 3.2rem;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: rgba(2, 13, 26, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 255, 180, 0.16);
  }

  .hero {
    padding-top: 5rem !important;
  }

  .lang-switcher-float {
    top: 0.4rem;
    right: 0.7rem;
    z-index: 146;
  }

  .hero-side-menu,
  .hero-side-menu.is-compact,
  .hero-side-menu.is-compact:hover,
  .hero-side-menu.is-compact:focus-within,
  .hero-side-menu.is-compact.is-click-collapsed:hover,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within {
    position: fixed !important;
    top: 3.55rem !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    bottom: auto !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100vh - 4.35rem);
    transform: translateY(-10px) !important;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem;
    padding: 0.65rem !important;
    border-radius: 0.8rem;
    z-index: 140;
    scroll-snap-type: none !important;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .hero-side-menu.is-mobile-open {
    transform: translateY(0) !important;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-side-menu__title,
  .hero-side-menu.is-compact:hover .hero-side-menu__title,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__title {
    display: block !important;
    margin-bottom: 0.4rem;
  }

  .hero-side-menu__link,
  .hero-side-menu.is-compact .hero-side-menu__link,
  .hero-side-menu.is-compact:hover .hero-side-menu__link,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__link,
  .hero-side-menu.is-compact.is-click-collapsed:hover .hero-side-menu__link,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within .hero-side-menu__link {
    width: 100%;
    justify-content: flex-start !important;
    min-height: 2.2rem;
    padding: 0.5rem 0.65rem !important;
    font-size: 0.82rem;
    border: 1px solid rgba(0, 255, 180, 0.14);
    background: rgba(4, 19, 31, 0.74);
    scroll-snap-align: none !important;
  }

  .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact:hover .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact:focus-within .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact.is-click-collapsed:hover .hero-side-menu__link span:last-child,
  .hero-side-menu.is-compact.is-click-collapsed:focus-within .hero-side-menu__link span:last-child {
    max-width: none !important;
    opacity: 1 !important;
  }
}
