:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-deep: #030712;
  --surface: #0d1b2f;
  --surface-2: #0a1628;
  --surface-3: #10233a;
  --text: #eef6ff;
  --muted: #a6b4c8;
  --line: rgba(148, 163, 184, 0.22);
  --primary: #1d9bff;
  --primary-dark: #0077e6;
  --accent: #39d5ff;
  --danger: #fb7185;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(29, 155, 255, 0.09), transparent 360px),
    var(--bg);
  color: var(--text);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(3, 7, 18, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(57, 213, 255, 0.28);
  border-radius: 8px;
  object-fit: cover;
  background: white;
  box-shadow: 0 0 24px rgba(29, 155, 255, 0.24);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg-deep);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav a:hover,
.admin-link {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(50px, 8vw, 96px) clamp(18px, 4vw, 56px) clamp(44px, 7vw, 84px);
  background:
    radial-gradient(circle at 74% 18%, rgba(29, 155, 255, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(57, 213, 255, 0.1), transparent 46%),
    var(--bg-deep);
}

.hero-logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid rgba(57, 213, 255, 0.32);
  border-radius: 8px;
  object-fit: cover;
  background: white;
  box-shadow: 0 0 30px rgba(29, 155, 255, 0.28);
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(38px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.admin-actions,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #02111f;
  box-shadow: 0 14px 32px rgba(29, 155, 255, 0.22);
}

.button.secondary {
  background: rgba(13, 27, 47, 0.86);
  border-color: rgba(57, 213, 255, 0.3);
  color: var(--text);
}

.button.danger {
  background: rgba(251, 113, 133, 0.12);
  border-color: rgba(251, 113, 133, 0.36);
  color: var(--danger);
}

.button.small {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.hero-panel,
.terminal-panel {
  overflow: hidden;
  border: 1px solid rgba(57, 213, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 35, 58, 0.94), rgba(7, 17, 31, 0.96));
  color: var(--text);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 24px;
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.hero-panel-top strong {
  color: #86efac;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.signal-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 7, 18, 0.42);
}

.signal-list span {
  color: var(--muted);
}

.signal-list strong {
  color: var(--accent);
  font-size: 26px;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 420px;
  border: 1px solid rgba(57, 213, 255, 0.28);
  border-radius: 8px;
  background: #020817;
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 7, 18, 0.82));
  pointer-events: none;
}

.hero-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(57, 213, 255, 0.26);
  border-radius: 8px;
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(12px);
}

.hero-visual figcaption span {
  color: var(--muted);
  font-weight: 750;
}

.hero-visual figcaption strong {
  color: var(--accent);
}


.terminal-head {
  display: flex;
  gap: 7px;
  padding: 14px;
  background: #07111f;
  border-bottom: 1px solid var(--line);
}

.terminal-head span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ef4444;
}

.terminal-head span:nth-child(2) {
  background: #f59e0b;
}

.terminal-head span:nth-child(3) {
  background: #10b981;
}

pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  white-space: pre-wrap;
  line-height: 1.65;
}

.section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.section-muted {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-intro {
  max-width: 760px;
  margin: 18px 0 0;
}

.section h2,
.admin-content h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-grid,
.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.price-card,
.step-card,
.decision-card,
.panel,
.metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 35, 58, 0.9), rgba(13, 27, 47, 0.9));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.feature-card,
.price-card,
.step-card {
  padding: 24px;
}

.feature-card h3,
.price-card h3,
.step-card h3,
.panel h2 {
  margin: 0 0 12px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  border: 1px solid rgba(57, 213, 255, 0.35);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 850;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card.featured {
  border-color: rgba(57, 213, 255, 0.58);
  box-shadow: 0 18px 48px rgba(29, 155, 255, 0.18);
}

.price-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.package-index {
  display: inline-flex;
  width: 44px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(57, 213, 255, 0.35);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 900;
}

.server-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(57, 213, 255, 0.1);
  color: #dff7ff;
  font-size: 13px;
  font-weight: 850;
}

.price-lines {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.price-card strong,
.monitor-card strong {
  display: block;
  color: var(--accent);
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.05;
}

.price-card em {
  color: #dff7ff;
  font-style: normal;
  font-size: 18px;
  font-weight: 850;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 168px;
  margin: 22px 0;
  padding-left: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(57, 213, 255, 0.55);
}

.price-card .button {
  margin-top: auto;
}

.monitor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 22px;
  align-items: stretch;
}

.monitor-card,
.monitor-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 35, 58, 0.92), rgba(13, 27, 47, 0.92));
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.monitor-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.monitor-note .decision-row {
  padding-inline: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 32px;
  align-items: center;
}

.decision-card {
  padding: 8px;
}

.decision-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.decision-row:last-child {
  border-bottom: 0;
}

.decision-row span {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: 36px;
  background: #07111f;
  color: white;
  border-top: 1px solid var(--line);
}

.contact-section p {
  color: #c8d1dd;
}

.lead-form,
.admin-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(3, 7, 18, 0.58);
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #a7f3d0;
}

.captcha-slot {
  min-height: 65px;
  overflow: hidden;
}

.captcha-slot[hidden] {
  display: none;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--bg-deep);
}

.admin-body {
  color-scheme: light;
  background: #eef2f7;
  color: #17202a;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-2: #edf1f6;
  --surface-3: #ffffff;
  --text: #17202a;
  --muted: #667085;
  --line: #d7dee8;
  --primary: #0f766e;
  --primary-dark: #115e59;
  --accent: #c2410c;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  background: #101828;
  color: white;
}

.admin-sidebar .brand-mark {
  background: white;
  color: #101828;
}

.admin-sidebar .brand-logo {
  background: white;
}

.admin-nav {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.admin-nav button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
  color: #cbd5e1;
  text-align: left;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.admin-nav button.active,
.admin-nav button:hover {
  background: #263244;
  color: white;
}

.admin-note {
  margin-top: 28px;
  color: #aab4c2;
  line-height: 1.6;
  font-size: 13px;
}

.admin-content {
  padding: 28px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-tab {
  display: none;
}

.admin-tab.active {
  display: grid;
  gap: 18px;
}

.metric {
  padding: 18px;
}

.metric span,
.list-item span,
.list-item small {
  display: block;
  color: var(--muted);
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
}

.panel {
  padding: 22px;
}

.admin-form.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: end;
}

.admin-list,
.table-like {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.list-item,
.table-like div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.icon-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--danger);
  cursor: pointer;
}

.empty {
  color: var(--muted);
}

.admin-body input,
.admin-body textarea,
.admin-body select {
  background: white;
  color: var(--text);
}

.admin-body .button.primary {
  background: var(--primary);
  color: white;
  box-shadow: none;
}

.admin-body .button.secondary {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

.admin-body .button.danger {
  background: #fff1f0;
  border-color: #f4b7b2;
  color: var(--danger);
}

@media (max-width: 1180px) {
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .monitor-layout,
  .contact-section,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .metric-grid,
  .steps-grid,
  .admin-form.compact {
    grid-template-columns: 1fr;
  }

  .admin-top,
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-logo-lockup {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .terminal-panel,
  .hero-panel,
  .hero-visual {
    width: 100%;
    min-height: 320px;
  }

  .hero-visual img {
    min-height: 320px;
  }

  .hero-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-list div,
  .decision-row,
  .list-item,
  .table-like div {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Client login / SOC dashboard */
.is-hidden {
  display: none !important;
}

.soc-body {
  color-scheme: dark;
  background:
    radial-gradient(circle at 18% 8%, rgba(29, 155, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 4%, rgba(57, 213, 255, 0.1), transparent 24%),
    #020817;
  color: var(--text);
  --bg: #07111f;
  --surface: #0d1b2f;
  --surface-2: #0a1628;
  --text: #eef6ff;
  --muted: #a6b4c8;
  --line: rgba(148, 163, 184, 0.2);
  --primary: #1d9bff;
  --primary-dark: #0077e6;
  --accent: #39d5ff;
  --danger: #fb7185;
}

.login-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.login-card {
  display: grid;
  width: min(100%, 460px);
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(57, 213, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 35, 58, 0.94), rgba(3, 7, 18, 0.96));
  box-shadow: var(--shadow);
}

.login-card h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.05;
}

.login-card p {
  color: var(--muted);
  line-height: 1.6;
}

.login-footnote {
  margin: 0;
  font-size: 13px;
}

.soc-shell {
  background: transparent;
}

.soc-sidebar {
  background: rgba(3, 7, 18, 0.92);
  border-right: 1px solid var(--line);
}

.soc-profile {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(57, 213, 255, 0.18);
  border-radius: 8px;
  background: rgba(13, 27, 47, 0.72);
}

.soc-profile span,
.soc-profile small {
  color: var(--muted);
}

.soc-profile strong {
  color: var(--text);
}

.logout-button {
  width: 100%;
  margin-top: 18px;
}

.soc-content {
  min-width: 0;
}

.soc-top {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 27, 47, 0.72);
}

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

.soc-metrics .metric,
.soc-content .panel {
  background: linear-gradient(180deg, rgba(16, 35, 58, 0.92), rgba(7, 17, 31, 0.92));
  border-color: rgba(57, 213, 255, 0.2);
  color: var(--text);
}

.metric small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.soc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 18px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin: 0;
}

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

.threat-rings div {
  display: grid;
  min-height: 126px;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(57, 213, 255, 0.2);
  border-radius: 8px;
  background: radial-gradient(circle, rgba(29, 155, 255, 0.2), rgba(3, 7, 18, 0.32) 62%);
  text-align: center;
}

.threat-rings strong {
  color: var(--accent);
  font-size: 34px;
}

.threat-rings span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.soc-list-item {
  background: rgba(3, 7, 18, 0.34);
}

.soc-body .list-item,
.soc-body .table-like div {
  background: rgba(3, 7, 18, 0.34);
  border-color: var(--line);
  color: var(--text);
}

.soc-body input,
.soc-body textarea,
.soc-body select {
  background: rgba(3, 7, 18, 0.62);
  color: var(--text);
}

.soc-body .admin-form.compact.account-form {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
}

@media (max-width: 1180px) {
  .soc-metrics,
  .soc-grid,
  .threat-rings,
  .soc-body .admin-form.compact.account-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .soc-metrics,
  .soc-grid,
  .threat-rings,
  .soc-body .admin-form.compact.account-form {
    grid-template-columns: 1fr;
  }
}


/* JustInBox Shield SOC dashboard */
.admin-body.soc-body {
  color-scheme: dark;
  --bg: #07111f;
  --bg-deep: #050b14;
  --surface: #0d1b2e;
  --surface-2: #07111f;
  --surface-3: #10233a;
  --text: #f4f8ff;
  --muted: #9fb0c7;
  --line: #12324f;
  --primary: #00e5ff;
  --primary-dark: #0aa4bd;
  --accent: #00ff99;
  --danger: #ff2e6d;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  background:
    radial-gradient(circle at 78% 4%, rgba(0, 229, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #050b14, #07111f 55%, #050b14);
  color: var(--text);
}

.soc-shell {
  grid-template-columns: 292px minmax(0, 1fr);
  background: transparent;
}

.soc-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.98), rgba(7, 17, 31, 0.98));
  box-shadow: 18px 0 60px rgba(0, 0, 0, 0.28);
}

.soc-sidebar .brand {
  align-items: center;
  color: #ffffff;
  line-height: 1.15;
}

.soc-sidebar .brand-logo {
  border-color: rgba(0, 229, 255, 0.42);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.2);
}

.soc-profile {
  display: grid;
  gap: 5px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 27, 46, 0.72);
}

.soc-profile span,
.soc-profile small {
  color: var(--muted);
}

.soc-profile strong {
  color: #ffffff;
}

.soc-sidebar .admin-nav {
  gap: 6px;
  margin-top: 22px;
}

.soc-sidebar .admin-nav button {
  border: 1px solid transparent;
  color: #b8c7da;
  background: transparent;
}

.soc-sidebar .admin-nav button.active,
.soc-sidebar .admin-nav button:hover {
  border-color: rgba(0, 229, 255, 0.34);
  background: rgba(0, 229, 255, 0.1);
  color: #ffffff;
}

.soc-sidebar .logout-button {
  width: 100%;
  margin-top: auto;
}

.soc-content {
  min-width: 0;
  padding: 24px;
}

.soc-top {
  position: sticky;
  top: 0;
  z-index: 5;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 11, 20, 0.82);
  backdrop-filter: blur(16px);
}

.soc-top h1 {
  font-size: clamp(24px, 3vw, 38px);
}

.live-strip {
  display: flex;
  min-width: 260px;
  max-width: 560px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.08);
  color: #c8f8ff;
  font-size: 13px;
}

.live-strip strong {
  color: var(--accent);
}

.live-strip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-body.soc-body .button {
  border-radius: 8px;
  color: var(--text);
}

.admin-body.soc-body .button.primary {
  background: linear-gradient(135deg, #00e5ff, #00ff99);
  color: #03111d;
}

.admin-body.soc-body .button.secondary {
  border-color: rgba(0, 229, 255, 0.46);
  background: rgba(13, 27, 46, 0.92);
  color: #e9fbff;
}

.admin-body.soc-body .button.danger {
  border-color: rgba(255, 46, 109, 0.5);
  background: rgba(255, 46, 109, 0.13);
  color: #ffd6e2;
}

.admin-body.soc-body input,
.admin-body.soc-body textarea,
.admin-body.soc-body select {
  border-color: var(--line);
  background: rgba(5, 11, 20, 0.72);
  color: var(--text);
}

.admin-body.soc-body input::placeholder,
.admin-body.soc-body textarea::placeholder {
  color: #6f839b;
}

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

.soc-metrics .metric,
.soc-content .panel,
.report-card {
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(13, 27, 46, 0.96), rgba(7, 17, 31, 0.96));
  box-shadow: var(--shadow);
}

.soc-metrics .metric {
  position: relative;
  overflow: hidden;
  min-height: 132px;
}

.soc-metrics .metric::after {
  content: "";
  position: absolute;
  inset: auto 16px 12px 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.soc-metrics .metric strong {
  color: #ffffff;
}

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

.soc-grid-wide {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.panel-span {
  grid-column: 1 / -1;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.panel-heading h2 {
  margin: 0;
}

.threat-list,
.admin-list,
.table-like,
.severity-chart {
  display: grid;
  gap: 10px;
}

.threat-row,
.list-item,
.table-like div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(18, 50, 79, 0.84);
  border-radius: 8px;
  background: rgba(5, 11, 20, 0.52);
}

.threat-row > div,
.list-item > div,
.table-like div > * {
  min-width: 0;
}

.table-like div {
  display: grid;
  grid-template-columns: minmax(130px, 0.5fr) minmax(160px, 0.5fr) minmax(180px, 1fr);
}

.pulse-dot,
.map-point {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 8px rgba(255, 46, 109, 0.12), 0 0 24px rgba(255, 46, 109, 0.7);
}

.severity,
.badge,
.status-badge,
.log-level {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.severity-critical,
.badge-ban,
.log-level.error {
  background: rgba(255, 46, 109, 0.16);
  color: #ff8cac;
}

.severity-high,
.log-level.warn {
  background: rgba(255, 193, 7, 0.14);
  color: #ffd36b;
}

.severity-medium,
.badge-alert,
.log-level.info {
  background: rgba(0, 229, 255, 0.12);
  color: #8df3ff;
}

.badge-unban,
.log-level.debug {
  background: rgba(159, 176, 199, 0.14);
  color: #d4deeb;
}

.status-badge.active,
.status-badge.manual {
  background: rgba(0, 255, 153, 0.13);
  color: #88ffc9;
}

.status-badge.expired {
  background: rgba(255, 46, 109, 0.13);
  color: #ff9ab6;
}

.attack-map {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(0, 229, 255, 0.18), transparent 45%),
    #06101d;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.attack-map-large {
  min-height: 560px;
}

.map-point {
  position: absolute;
  animation: mapPulse 1.8s infinite ease-out;
}

.map-labels {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-labels span {
  padding: 6px 8px;
  border: 1px solid rgba(0, 229, 255, 0.26);
  border-radius: 8px;
  background: rgba(5, 11, 20, 0.72);
  color: #dffaff;
  font-size: 12px;
}

@keyframes mapPulse {
  0% { transform: scale(0.84); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0.35; }
}

.bar-chart {
  display: flex;
  height: 260px;
  align-items: end;
  gap: 9px;
  padding-top: 20px;
}

.bar-chart span {
  position: relative;
  flex: 1;
  min-width: 12px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--primary), rgba(0, 255, 153, 0.4));
}

.bar-chart small {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 11px;
}

.severity-chart div {
  display: grid;
  grid-template-columns: 90px 48px 1fr;
  gap: 12px;
  align-items: center;
}

.severity-chart meter {
  width: 100%;
  height: 12px;
  accent-color: var(--primary);
}

.table-wrap {
  overflow-x: auto;
}

.soc-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.soc-table th,
.soc-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(18, 50, 79, 0.84);
  text-align: left;
  vertical-align: top;
}

.soc-table th {
  color: #c9d8ea;
  font-size: 12px;
  text-transform: uppercase;
}

.soc-table td {
  color: #eef6ff;
}

.muted,
.empty {
  color: var(--muted);
}

.log-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.log-filters button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(5, 11, 20, 0.62);
  color: #dbeafe;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.log-filters button.active,
.log-filters button:hover {
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(0, 229, 255, 0.13);
}

.log-filters input {
  width: min(320px, 100%);
  margin-left: auto;
}

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

.report-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.report-card p {
  color: var(--muted);
  line-height: 1.6;
}

.report-card .row-actions {
  margin-top: auto;
}

.icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 46, 109, 0.48);
  border-radius: 8px;
  background: rgba(255, 46, 109, 0.14);
  color: #ffd6e2;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1260px) {
  .soc-metrics,
  .report-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .soc-shell {
    grid-template-columns: 1fr;
  }

  .soc-sidebar {
    position: relative;
    height: auto;
  }

  .soc-sidebar .admin-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .soc-top {
    position: static;
    align-items: stretch;
    flex-direction: column;
  }

  .live-strip {
    max-width: none;
  }

  .soc-grid,
  .soc-grid-wide {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .soc-content,
  .soc-sidebar {
    padding: 16px;
  }

  .soc-sidebar .admin-nav,
  .soc-metrics,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .table-like div {
    grid-template-columns: 1fr;
  }

  .log-filters input {
    margin-left: 0;
  }

  .admin-actions,
  .row-actions {
    width: 100%;
  }

  .admin-actions .button,
  .row-actions .button {
    flex: 1 1 auto;
  }
}

/* Etapa 4 - API-backed SOC portal */
.portal-body {
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.12), transparent 28rem),
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.10), transparent 24rem),
    #071014;
  color: #e7f6f8;
}

.portal-shell {
  min-height: 100vh;
}

.portal-sidebar {
  border-right: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(6, 18, 24, 0.94);
}

.portal-content {
  background: linear-gradient(180deg, rgba(8, 24, 32, 0.92), rgba(7, 16, 20, 0.98));
}

.portal-top {
  gap: 1rem;
  align-items: flex-start;
}

.portal-top small,
.settings-list span,
.token-once small {
  color: #9db4bc;
}

.portal-toolbar,
.table-tools,
.portal-form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.75rem;
}

.portal-toolbar label,
.table-tools label {
  color: #9db4bc;
  font-size: 0.82rem;
}

.portal-toolbar select,
.table-tools input,
.table-tools select,
.portal-form input,
.portal-form select {
  min-height: 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(3, 10, 14, 0.72);
  color: #e7f6f8;
  border-radius: 8px;
}

.portal-state {
  min-height: 1.4rem;
  margin: 0.5rem 0 1rem;
  color: #9db4bc;
}

.portal-state.loading {
  color: #38bdf8;
}

.portal-state.error {
  color: #fca5a5;
}

.portal-metrics .metric {
  border: 1px solid rgba(45, 212, 191, 0.18);
  background: rgba(8, 31, 38, 0.78);
}

.compact-list .list-item {
  padding: 0.7rem 0;
}

.soc-table th,
.soc-table td {
  vertical-align: top;
}

.soc-table td strong {
  color: #f8fafc;
}

.empty {
  color: #8aa0a8;
  text-align: center;
  padding: 1rem;
}

.status-badge.admin,
.status-badge.active,
.status-badge.online,
.status-badge.enabled,
.status-badge.ban {
  background: rgba(20, 184, 166, 0.14);
  color: #5eead4;
  border-color: rgba(20, 184, 166, 0.35);
}

.status-badge.client,
.status-badge.unknown,
.status-badge.waiting {
  background: rgba(148, 163, 184, 0.13);
  color: #cbd5e1;
  border-color: rgba(148, 163, 184, 0.28);
}

.status-badge.offline,
.status-badge.disabled,
.status-badge.expired,
.status-badge.error {
  background: rgba(239, 68, 68, 0.13);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.34);
}

.token-once {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(250, 204, 21, 0.38);
  border-radius: 8px;
  background: rgba(113, 63, 18, 0.28);
}

.token-once code {
  display: block;
  overflow-wrap: anywhere;
  padding: 0.75rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  color: #fde68a;
}

.settings-list {
  display: grid;
  gap: 0.85rem;
}

.settings-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.35);
}

.access-denied {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  background: #071014;
  color: #e7f6f8;
}

.access-denied p {
  color: #9db4bc;
}

@media (max-width: 900px) {
  .portal-top,
  .portal-toolbar,
  .table-tools,
  .portal-form {
    align-items: stretch;
  }

  .portal-toolbar > *,
  .table-tools > *,
  .portal-form > * {
    width: 100%;
  }
}

.portal-actions {
  display: grid;
  gap: 0.6rem;
}

.portal-actions .button,
.portal-actions .logout-button {
  width: 100%;
  justify-content: center;
}


/* Etapa 7 - commercial SOC polish */
.portal-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  background: rgba(5, 11, 20, 0.92);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.login-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
}

.client-profile-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.client-profile-strip div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 27, 46, 0.96), rgba(7, 17, 31, 0.96));
}

.client-profile-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.client-profile-strip strong {
  display: block;
  overflow: hidden;
  margin-top: 6px;
  color: #ffffff;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.soc-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
}

.soc-table th,
.soc-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.soc-table th {
  color: #c8f8ff;
  font-size: 12px;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
}

.table-tools {
  display: flex;
  gap: 12px;
  margin: 14px 0;
}

.portal-form textarea {
  min-height: 42px;
}

.soc-body .admin-form.compact.portal-form {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.status-badge.online,
.status-badge.enabled,
.status-badge.protected,
.status-badge.basic,
.status-badge.pro,
.status-badge.business,
.status-badge.custom,
.status-badge.trial {
  background: rgba(0, 255, 153, 0.13);
  color: #88ffc9;
}

.status-badge.offline,
.status-badge.paused,
.status-badge.disabled,
.status-badge.unknown,
.status-badge.attention {
  background: rgba(255, 46, 109, 0.13);
  color: #ff9ab6;
}

.status-badge.free-test {
  background: rgba(0, 229, 255, 0.12);
  color: #8df3ff;
}

.portal-state.loading::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 16px var(--primary);
}

.empty {
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(5, 11, 20, 0.36);
}

@media (max-width: 1320px) {
  .client-profile-strip,
  .soc-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .client-profile-strip,
  .soc-metrics,
  .soc-body .admin-form.compact.portal-form {
    grid-template-columns: 1fr;
  }

  .login-footer {
    position: static;
  }
}

/* Premium public landing */
.landing-body {
  --bg: #030814;
  --bg-deep: #01040d;
  --surface: rgba(11, 24, 44, 0.78);
  --surface-2: rgba(6, 16, 31, 0.9);
  --surface-3: rgba(14, 35, 59, 0.82);
  --text: #f4f9ff;
  --muted: #aab8cf;
  --line: rgba(160, 190, 220, 0.18);
  --primary: #26a8ff;
  --accent: #45e0ff;
  --success: #63e6be;
  --violet: #a78bfa;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  overflow-x: hidden;
  background: linear-gradient(rgba(69, 224, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(69, 224, 255, 0.035) 1px, transparent 1px), radial-gradient(circle at 72% 16%, rgba(38, 168, 255, 0.2), transparent 32%), radial-gradient(circle at 16% 36%, rgba(99, 230, 190, 0.09), transparent 26%), var(--bg-deep);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-topbar {
  background: rgba(1, 4, 13, 0.78);
  border-bottom-color: rgba(69, 224, 255, 0.16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.landing-brand span {
  font-size: 15px;
  letter-spacing: 0;
}

.landing-body .brand-logo,
.landing-body .hero-logo {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
  padding: 4px;
}

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

.landing-nav a:hover {
  background: rgba(69, 224, 255, 0.08);
  transform: translateY(-1px);
}

.premium-hero {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: calc(100vh - 72px);
  padding-top: clamp(58px, 8vw, 102px);
  background: linear-gradient(135deg, rgba(38, 168, 255, 0.18), transparent 38%), linear-gradient(225deg, rgba(99, 230, 190, 0.08), transparent 34%);
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 8% 4% auto auto;
  width: min(680px, 58vw);
  height: min(680px, 58vw);
  border: 1px solid rgba(69, 224, 255, 0.12);
  border-radius: 24px;
  transform: rotate(12deg);
  background: linear-gradient(135deg, rgba(69, 224, 255, 0.08), transparent 62%);
  filter: blur(1px);
  z-index: -1;
}

.premium-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 6.3vw, 82px);
  letter-spacing: 0;
}

.premium-hero .lead {
  max-width: 720px;
  color: #c7d4e7;
}

.premium-button {
  min-height: 50px;
  border-radius: 18px;
  padding: 0 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.premium-button:focus-visible,
.landing-nav a:focus-visible,
.premium-form input:focus,
.premium-form textarea:focus,
.premium-form select:focus {
  outline: 3px solid rgba(69, 224, 255, 0.34);
  outline-offset: 3px;
}

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

.hero-stats div,
.premium-card,
.dashboard-shell,
.attack-map,
.preview-panel,
.stack-grid article,
.premium-form {
  border: 1px solid rgba(160, 190, 220, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 34, 58, 0.72), rgba(5, 14, 29, 0.78));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 16px;
}

.hero-stats strong {
  display: block;
  color: var(--accent);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.hero-dashboard {
  perspective: 1200px;
}

.dashboard-shell {
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  transform: rotateY(-8deg) rotateX(3deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dashboard-shell:hover {
  transform: rotateY(-3deg) rotateX(1deg) translateY(-4px);
  box-shadow: 0 34px 110px rgba(38, 168, 255, 0.18);
}

.dashboard-topline,
.dashboard-metrics,
.event-stream div,
.price-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-topline {
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-topline em {
  color: var(--success);
  font-style: normal;
  font-weight: 800;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(99, 230, 190, 0.1), 0 0 22px rgba(99, 230, 190, 0.9);
}

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

.dashboard-metrics div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(1, 4, 13, 0.42);
}

.dashboard-metrics span,
.event-stream span,
.map-panel span,
.stack-grid span {
  color: var(--muted);
  font-weight: 700;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 38px);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.threat-chart,
.hero-map-mini {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(1, 4, 13, 0.46);
}

.threat-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 20px;
}

.threat-chart span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--accent), rgba(38, 168, 255, 0.34));
  animation: barPulse 2.8s ease-in-out infinite;
}

.hero-map-mini {
  overflow: hidden;
  background: linear-gradient(115deg, transparent 48%, rgba(69, 224, 255, 0.13) 49%, transparent 51%), radial-gradient(circle at 45% 45%, rgba(38, 168, 255, 0.34), transparent 32%), rgba(1, 4, 13, 0.46);
}

.map-pulse,
.map-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(69, 224, 255, 0.14);
  color: var(--text);
  box-shadow: 0 0 28px rgba(69, 224, 255, 0.36);
}

.map-pulse {
  width: 18px;
  height: 18px;
  animation: pulseRing 2.4s ease-out infinite;
}

.p1 { left: 30%; top: 32%; }
.p2 { left: 62%; top: 48%; animation-delay: 0.5s; }
.p3 { left: 48%; top: 68%; animation-delay: 0.9s; }

.event-stream {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.event-stream div {
  justify-content: space-between;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(1, 4, 13, 0.4);
}

.event-stream strong {
  color: var(--success);
}

.trusted-grid,
.pricing-grid,
.platform-grid,
.integration-grid,
.stack-grid {
  display: grid;
  gap: 18px;
}

.trusted-grid,
.pricing-grid,
.platform-grid,
.integration-grid,
.stack-grid,
.attack-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(69, 224, 255, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(69, 224, 255, 0.42);
  box-shadow: 0 28px 90px rgba(38, 168, 255, 0.15);
}

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

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(69, 224, 255, 0.1);
  color: var(--accent);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.small-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 18px;
}

.attack-timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  min-height: 230px;
  padding: 24px;
}

.timeline-item span {
  color: var(--accent);
  font-weight: 900;
}

.timeline-item h3 {
  margin-top: 42px;
}

.attack-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(69, 224, 255, 0.08) 1px, transparent 1px), linear-gradient(rgba(69, 224, 255, 0.08) 1px, transparent 1px), radial-gradient(circle at 50% 50%, rgba(38, 168, 255, 0.24), transparent 38%), rgba(1, 4, 13, 0.74);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.map-orbit {
  position: absolute;
  inset: 12% 16%;
  border: 1px solid rgba(69, 224, 255, 0.18);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite;
}

.map-node {
  width: 54px;
  height: 54px;
  font-weight: 900;
  border: 1px solid rgba(69, 224, 255, 0.35);
}

.node-us { left: 19%; top: 36%; }
.node-eu { left: 48%; top: 28%; }
.node-apac { right: 18%; top: 48%; }
.node-ro { left: 53%; bottom: 22%; background: rgba(99, 230, 190, 0.16); }

.map-panel {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  width: min(340px, calc(100% - 56px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(1, 4, 13, 0.68);
  backdrop-filter: blur(18px);
}

.dashboard-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.dashboard-preview img {
  width: 100%;
  min-height: 430px;
  border-radius: 24px;
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.preview-panel {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.preview-panel h3 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.08;
}

.stack-grid article {
  min-height: 160px;
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.stack-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 230, 190, 0.36);
}

.stack-grid strong {
  display: block;
  margin-top: 26px;
  font-size: 20px;
  line-height: 1.28;
}

.integration-card {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 22px;
  color: #eaf7ff;
  font-size: 18px;
  font-weight: 900;
}

.landing-body .price-card,
.landing-body .feature-card {
  border-radius: 22px;
}

.landing-body .price-card ul {
  min-height: 174px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px;
  color: var(--text);
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.premium-contact {
  background: linear-gradient(135deg, rgba(38, 168, 255, 0.15), transparent 42%), rgba(1, 4, 13, 0.94);
}

.premium-form {
  padding: 24px;
}

.premium-form input,
.premium-form textarea,
.premium-form select {
  min-height: 48px;
  border-radius: 16px;
  background: rgba(1, 4, 13, 0.62);
  border-color: rgba(160, 190, 220, 0.24);
}

.landing-footer {
  background: rgba(1, 4, 13, 0.96);
}

.skeleton-card {
  min-height: 210px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(160, 190, 220, 0.08), rgba(69, 224, 255, 0.12), rgba(160, 190, 220, 0.08));
  background-size: 220% 100%;
  animation: skeleton 1.3s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes skeleton { 0% { background-position: 180% 0; } 100% { background-position: -40% 0; } }
@keyframes barPulse { 0%, 100% { opacity: 0.74; transform: scaleY(0.92); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(69, 224, 255, 0.45); } 100% { box-shadow: 0 0 0 34px rgba(69, 224, 255, 0); } }
@keyframes slowSpin { to { transform: rotate(360deg); } }

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

@media (max-width: 1120px) {
  .landing-nav { gap: 8px; font-size: 13px; }
  .premium-hero,
  .dashboard-preview,
  .premium-contact { grid-template-columns: 1fr; }
  .dashboard-shell { transform: none; }
  .trusted-grid,
  .pricing-grid,
  .platform-grid,
  .integration-grid,
  .stack-grid,
  .attack-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .landing-topbar { position: static; align-items: flex-start; }
  .landing-nav { width: 100%; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; }
  .premium-hero { min-height: auto; padding-top: 42px; }
  .hero-stats,
  .dashboard-metrics,
  .dashboard-grid,
  .trusted-grid,
  .pricing-grid,
  .platform-grid,
  .integration-grid,
  .stack-grid,
  .attack-timeline { grid-template-columns: 1fr; }
  .premium-hero h1 { font-size: clamp(36px, 12vw, 52px); }
  .hero-logo-lockup { align-items: flex-start; }
  .attack-map { min-height: 430px; }
  .node-us { left: 12%; top: 28%; }
  .node-eu { left: 52%; top: 24%; }
  .node-apac { right: 10%; top: 52%; }
  .node-ro { left: 42%; bottom: 28%; }
}


/* Enterprise public landing refresh - 2026-07-07 */
.landing-body {
  color-scheme: dark;
  --bg: #040812;
  --bg-deep: #02050d;
  --surface: rgba(9, 19, 34, 0.78);
  --surface-2: #07101d;
  --surface-3: rgba(15, 32, 52, 0.86);
  --text: #f5fbff;
  --muted: #9db0c8;
  --line: rgba(126, 231, 255, 0.16);
  --primary: #28d7ff;
  --primary-dark: #0ea5c6;
  --accent: #5eead4;
  --danger: #ff4d7d;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
  background:
    radial-gradient(circle at 15% 8%, rgba(40, 215, 255, 0.16), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(94, 234, 212, 0.12), transparent 28%),
    linear-gradient(180deg, #02050d 0%, #07101d 48%, #02050d 100%);
  overflow-x: hidden;
}

.landing-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(126, 231, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 231, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.landing-topbar {
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(2, 5, 13, 0.74);
  border-bottom-color: rgba(126, 231, 255, 0.14);
  backdrop-filter: blur(22px);
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.logo-lockup span {
  display: grid;
  gap: 2px;
  line-height: 1.02;
}

.logo-lockup strong {
  color: var(--text);
  font-size: 20px;
  letter-spacing: 0;
}

.logo-lockup small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.logo-lockup-light strong { color: #06111f; }
.logo-lockup-light small { color: #526173; }

.landing-brand .brand-logo {
  width: 59px;
  height: 59px;
  flex-basis: 59px;
  border-radius: 14px;
}

.landing-nav {
  gap: clamp(12px, 1.6vw, 24px);
  font-size: 13px;
}

.landing-nav a {
  padding: 10px 0;
}

.nav-cta {
  min-height: 42px;
  padding: 0 16px !important;
  border: 1px solid rgba(126, 231, 255, 0.34);
  border-radius: 999px;
  background: rgba(40, 215, 255, 0.1);
  color: #dffbff !important;
  box-shadow: 0 0 26px rgba(40, 215, 255, 0.13);
}

.premium-hero {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  min-height: calc(100vh - 82px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(46px, 6vw, 86px);
  background:
    radial-gradient(circle at 75% 20%, rgba(40, 215, 255, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(94, 234, 212, 0.09), transparent 48%);
}

.premium-hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 231, 255, 0.5), transparent);
}

.hero-copy { max-width: 900px; }
.hero-logo-lockup { margin-bottom: 22px; }
.hero-lockup .hero-logo {
  width: 82px;
  height: 82px;
  flex-basis: 82px;
  border-radius: 18px;
}

.hero-lockup strong { font-size: clamp(25px, 2.4vw, 34px); }
.hero-lockup small { font-size: 12px; }

.premium-hero h1 {
  max-width: 980px;
  font-size: clamp(46px, 6.8vw, 92px);
  line-height: 0.96;
}

.premium-hero .lead {
  max-width: 760px;
  color: #b7c7dc;
}

.premium-button {
  min-height: 50px;
  border-radius: 999px;
  padding-inline: 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 720px;
}

.hero-stats div,
.ops-grid article,
.premium-card {
  border: 1px solid rgba(126, 231, 255, 0.15);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15, 32, 52, 0.76), rgba(5, 12, 24, 0.72));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
}

.hero-stats strong {
  display: block;
  color: #eaffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(126, 231, 255, 0.2);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(12, 25, 44, 0.88), rgba(3, 7, 18, 0.92));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 260px;
  background: radial-gradient(circle, rgba(40, 215, 255, 0.22), transparent 62%);
  pointer-events: none;
}

.dashboard-topline,
.dashboard-metrics,
.dashboard-grid,
.event-stream { position: relative; }
.dashboard-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
}
.dashboard-topline strong { color: var(--text); }
.dashboard-topline em { margin-left: auto; color: var(--accent); font-size: 12px; font-style: normal; font-weight: 850; }
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(94, 234, 212, 0.1), 0 0 20px rgba(94, 234, 212, 0.8);
}

.dashboard-metrics,
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.dashboard-metrics div,
.ops-grid article {
  padding: 16px;
  border: 1px solid rgba(126, 231, 255, 0.12);
  border-radius: 16px;
  background: rgba(2, 5, 13, 0.44);
}
.dashboard-metrics span,
.ops-grid span,
.ops-grid small,
.score-card span,
.ip-card span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; }
.dashboard-metrics strong,
.ops-grid strong,
.score-card strong {
  display: block;
  margin-top: 8px;
  color: #eaffff;
  font-size: clamp(26px, 3vw, 38px);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  margin-top: 16px;
}
.threat-chart {
  display: flex;
  height: 220px;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(2, 5, 13, 0.5);
}
.threat-chart span {
  width: 100%;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #5eead4, #28d7ff 60%, rgba(40, 215, 255, 0.28));
  animation: barFloat 3.2s ease-in-out infinite;
}
.threat-chart span:nth-child(2n) { animation-delay: 0.45s; }

.hero-map-mini,
.attack-map {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(40, 215, 255, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(126, 231, 255, 0.08), rgba(2, 5, 13, 0.62));
}
.map-pulse,
.map-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 231, 255, 0.52);
  border-radius: 50%;
  background: rgba(40, 215, 255, 0.12);
  color: #dffbff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(40, 215, 255, 0.22);
}
.map-pulse { width: 16px; height: 16px; animation: pulseNode 2.2s ease-in-out infinite; }
.p1 { left: 24%; top: 34%; }
.p2 { left: 64%; top: 42%; animation-delay: 0.4s; }
.p3 { left: 50%; top: 68%; animation-delay: 0.8s; }
.attack-vector,
.map-route {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.78), transparent);
  transform-origin: left center;
  animation: routeGlow 2.8s linear infinite;
}
.v1 { left: 20%; top: 40%; width: 54%; transform: rotate(14deg); }
.v2 { left: 36%; top: 66%; width: 42%; transform: rotate(-23deg); animation-delay: 0.9s; }

.event-stream,
.attack-console {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.event-stream div,
.attack-console div {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 13px 14px;
  border: 1px solid rgba(126, 231, 255, 0.12);
  border-radius: 14px;
  background: rgba(2, 5, 13, 0.46);
}
.event-stream span,
.attack-console span,
.attack-console em { color: var(--muted); font-style: normal; }
.event-stream strong,
.attack-console strong { color: var(--accent); }

.premium-section {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 72px);
}
.landing-body .section-muted {
  background: rgba(3, 10, 22, 0.62);
  border-color: rgba(126, 231, 255, 0.12);
}
.landing-body .section-heading { max-width: 920px; margin-bottom: 34px; }
.landing-body .section h2 { font-size: clamp(34px, 4.6vw, 62px); }

.ops-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
}
.ops-main,
.score-card,
.ip-card { padding: 22px; }
.ops-side { display: grid; gap: 18px; }
.score-ring {
  width: 156px;
  height: 156px;
  margin: 22px auto 0;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 88%, rgba(126, 231, 255, 0.12) 88% 100%);
  box-shadow: inset 0 0 0 18px rgba(2, 5, 13, 0.92), 0 0 34px rgba(94, 234, 212, 0.2);
}
.ip-card { display: grid; gap: 12px; }
.ip-card strong { color: #eaffff; font-size: 16px; }

.landing-body .feature-grid,
.platform-grid,
.integration-grid,
.roadmap-grid,
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.platform-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.integration-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.roadmap-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.landing-body .feature-card,
.platform-card,
.integration-card,
.roadmap-card,
.stack-grid article,
.landing-body .price-card,
.landing-body .faq-item {
  border-radius: 20px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.landing-body .feature-card:hover,
.platform-card:hover,
.integration-card:hover,
.roadmap-card:hover,
.stack-grid article:hover,
.landing-body .price-card:hover,
.landing-body .faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 231, 255, 0.38);
  box-shadow: 0 24px 80px rgba(40, 215, 255, 0.12);
}

.feature-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(40, 215, 255, 0.1);
  color: var(--accent);
}
.feature-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.small-icon { width: 38px; height: 38px; margin-bottom: 12px; }
.platform-card { padding: 18px; min-height: 132px; }
.platform-card strong { color: var(--text); }

.attack-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}
.timeline-item { padding: 24px; }
.timeline-item span,
.roadmap-card span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(40, 215, 255, 0.11);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.attack-map {
  min-height: 460px;
  border: 1px solid rgba(126, 231, 255, 0.16);
  border-radius: 28px;
}
.map-orbit {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(126, 231, 255, 0.12);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite;
}
.map-node { width: 52px; height: 52px; }
.node-us { left: 18%; top: 34%; }
.node-eu { left: 48%; top: 28%; }
.node-apac { right: 18%; top: 52%; }
.node-ro { left: 55%; top: 58%; color: #02111f; background: var(--accent); }
.route-a { left: 21%; top: 40%; width: 36%; transform: rotate(-8deg); }
.route-b { left: 52%; top: 36%; width: 31%; transform: rotate(24deg); animation-delay: 0.6s; }
.route-c { left: 58%; top: 63%; width: 25%; transform: rotate(-17deg); animation-delay: 1.2s; }
.map-panel {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 7px;
  min-width: 260px;
  padding: 18px;
  border: 1px solid rgba(126, 231, 255, 0.18);
  border-radius: 18px;
  background: rgba(2, 5, 13, 0.68);
  backdrop-filter: blur(18px);
}
.map-panel strong { color: var(--text); }
.map-panel span { color: var(--muted); }

.stack-grid article { min-height: 180px; padding: 24px; }
.stack-grid span { color: var(--accent); font-weight: 900; }
.stack-grid strong { display: block; margin-top: 44px; color: var(--text); font-size: 20px; line-height: 1.28; }
.integration-card { display: grid; min-height: 150px; gap: 8px; padding: 20px; }
.integration-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: #eaffff;
  color: #04111e;
  font-weight: 950;
}
.integration-card strong { color: var(--text); font-size: 19px; }
.integration-card small { color: var(--muted); font-weight: 800; }

.landing-body .pricing-grid { gap: 18px; }
.landing-body .price-card { padding: 24px; background: linear-gradient(180deg, rgba(15, 32, 52, 0.84), rgba(3, 7, 18, 0.86)); }
.landing-body .price-card.featured { border-color: rgba(94, 234, 212, 0.62); box-shadow: 0 28px 90px rgba(94, 234, 212, 0.14); }
.roadmap-card { padding: 24px; }
.roadmap-card h3 { margin: 18px 0 8px; }

.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.landing-body .faq-item { padding: 18px 20px; }
.landing-body .faq-item summary { cursor: pointer; color: var(--text); font-weight: 850; }

.premium-contact {
  background:
    radial-gradient(circle at 18% 22%, rgba(40, 215, 255, 0.16), transparent 32%),
    #040812;
}
.premium-form {
  padding: 24px;
  border: 1px solid rgba(126, 231, 255, 0.18);
  border-radius: 24px;
  background: rgba(9, 19, 34, 0.78);
  backdrop-filter: blur(18px);
}
.landing-body input,
.landing-body textarea,
.landing-body select {
  border-color: rgba(126, 231, 255, 0.18);
  border-radius: 14px;
  background: rgba(2, 5, 13, 0.62);
}

.landing-footer {
  align-items: center;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #02050d;
}
.landing-footer .brand-logo { width: 54px; height: 54px; flex-basis: 54px; border-radius: 14px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes barFloat {
  0%, 100% { filter: brightness(0.9); transform: scaleY(0.94); }
  50% { filter: brightness(1.2); transform: scaleY(1.03); }
}
@keyframes pulseNode {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.34), 0 0 22px rgba(40, 215, 255, 0.34); }
  50% { box-shadow: 0 0 0 14px rgba(94, 234, 212, 0), 0 0 34px rgba(40, 215, 255, 0.52); }
}
@keyframes routeGlow {
  0% { opacity: 0.1; clip-path: inset(0 100% 0 0); }
  45% { opacity: 1; clip-path: inset(0 0 0 0); }
  100% { opacity: 0.1; clip-path: inset(0 0 0 100%); }
}
@keyframes slowSpin { to { transform: rotate(360deg); } }

@media (max-width: 1180px) {
  .premium-hero,
  .ops-dashboard { grid-template-columns: 1fr; }
  .landing-body .feature-grid,
  .platform-grid,
  .integration-grid,
  .roadmap-grid,
  .stack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .landing-topbar { align-items: stretch; }
  .landing-nav { width: 100%; justify-content: flex-start; }
  .hero-stats,
  .dashboard-metrics,
  .dashboard-grid,
  .ops-grid,
  .attack-timeline,
  .faq-list { grid-template-columns: 1fr; }
  .dashboard-topline { align-items: flex-start; flex-direction: column; }
  .dashboard-topline em { margin-left: 0; }
}

@media (max-width: 640px) {
  .landing-brand .brand-logo { width: 52px; height: 52px; flex-basis: 52px; }
  .premium-hero { padding-top: 42px; }
  .hero-lockup { align-items: flex-start; }
  .hero-lockup .hero-logo { width: 72px; height: 72px; flex-basis: 72px; }
  .landing-body .feature-grid,
  .platform-grid,
  .integration-grid,
  .roadmap-grid,
  .stack-grid { grid-template-columns: 1fr; }
  .event-stream div,
  .attack-console div { align-items: flex-start; flex-direction: column; }
  .attack-map { min-height: 380px; }
  .map-panel { left: 14px; right: 14px; bottom: 14px; min-width: 0; }
}


/* Fundal public si logo portal - 2026-07-07 */
.landing-body {
  background:
    linear-gradient(180deg, rgba(2, 5, 13, 0.84), rgba(4, 8, 18, 0.92) 44%, rgba(2, 5, 13, 0.96)),
    radial-gradient(circle at 15% 8%, rgba(40, 215, 255, 0.16), transparent 26%),
    url("fundal.png") center center / cover fixed,
    #02050d;
}

.premium-hero {
  background:
    linear-gradient(90deg, rgba(2, 5, 13, 0.92) 0%, rgba(2, 5, 13, 0.78) 48%, rgba(2, 5, 13, 0.54) 100%),
    radial-gradient(circle at 75% 20%, rgba(40, 215, 255, 0.2), transparent 30%);
}

.portal-body.login-bg {
  background:
    linear-gradient(180deg, rgba(2, 5, 13, 0.78), rgba(2, 5, 13, 0.94)),
    url("fundal.png") center / cover fixed,
    #02050d;
}

.soc-login-card .portal-lockup .brand-logo {
  width: 59px;
  height: 59px;
  flex-basis: 59px;
  border-radius: 14px;
}

.soc-login-card .portal-lockup strong {
  font-size: 21px;
}

.soc-login-card .portal-lockup small {
  color: var(--accent);
}

/* Enterprise platform refresh - 2026-07-08 */
.enterprise-body {
  --enterprise-card: rgba(8, 18, 32, 0.72);
  --enterprise-edge: rgba(126, 231, 255, 0.2);
}

.enterprise-topbar {
  min-height: 78px;
}

.enterprise-nav {
  text-transform: uppercase;
  letter-spacing: 0;
}

.enterprise-nav .admin-link {
  color: #eaffff;
}

.enterprise-hero h1 {
  max-width: 1060px;
}

.enterprise-trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.enterprise-trustbar span,
.arch-node,
.resource-card,
.company-grid article,
.country-row,
.mini-map-card {
  border: 1px solid var(--enterprise-edge);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15, 32, 52, 0.76), rgba(3, 8, 18, 0.68));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.enterprise-trustbar span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #dffbff;
  font-size: 13px;
  font-weight: 850;
}

.architecture-flow {
  display: grid;
  gap: 18px;
  max-width: 1180px;
}

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

.arch-node {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 128px;
  align-content: center;
  padding: 22px;
  overflow: hidden;
}

.arch-node strong {
  color: var(--text);
  font-size: 22px;
}

.arch-node small,
.resource-card span,
.company-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.primary-node {
  border-color: rgba(94, 234, 212, 0.38);
}

.accent-node {
  border-color: rgba(40, 215, 255, 0.38);
}

.muted-node {
  opacity: 0.72;
}

.arch-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: #eaffff;
  color: #04111e;
  font-weight: 950;
}

.arch-arrow {
  width: 2px;
  height: 34px;
  margin-inline: auto;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  position: relative;
}

.arch-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateX(-50%) rotate(45deg);
}

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

.enterprise-dashboard-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
  gap: 14px;
  align-items: stretch;
}

.mini-timeline {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(126, 231, 255, 0.12);
  border-radius: 16px;
  background: rgba(2, 5, 13, 0.46);
}

.mini-timeline span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #5eead4, #28d7ff 64%, rgba(40, 215, 255, 0.22));
  animation: barFloat 3s ease-in-out infinite;
}

.country-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.country-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  box-shadow: none;
}

.country-row strong,
.country-row em {
  color: #eaffff;
  font-style: normal;
}

.mini-map-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.mini-map {
  position: relative;
  min-height: 120px;
  border: 1px solid rgba(126, 231, 255, 0.14);
  border-radius: 16px;
  background: radial-gradient(circle at 54% 48%, rgba(40, 215, 255, 0.22), transparent 36%), rgba(2, 5, 13, 0.5);
}

.mini-map i {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(94, 234, 212, 0.08), 0 0 24px rgba(94, 234, 212, 0.44);
  animation: pulseNode 2.2s ease-in-out infinite;
}

.mini-map i:nth-child(1) { left: 22%; top: 34%; }
.mini-map i:nth-child(2) { left: 58%; top: 28%; animation-delay: 0.4s; }
.mini-map i:nth-child(3) { left: 70%; top: 66%; animation-delay: 0.8s; }

.feature-matrix {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.resource-grid,
.company-grid,
.dedicated-grid,
.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.resource-card,
.company-grid article,
.dedicated-grid article,
.status-grid article {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 24px;
}

.resource-card strong,
.company-grid strong,
.dedicated-grid strong,
.status-grid strong {
  color: var(--text);
  font-size: 22px;
}

.enterprise-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  align-items: start;
  gap: 28px;
}

.enterprise-footer nav,
.footer-brand {
  display: grid;
  gap: 10px;
}

.enterprise-footer nav strong {
  color: var(--text);
}

.enterprise-footer a,
.footer-brand p {
  color: var(--muted);
}

.dedicated-hero {
  min-height: auto;
  grid-template-columns: 1fr;
}

.dedicated-hero .hero-copy {
  max-width: 1080px;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.12);
  color: var(--accent);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .arch-layer,
  .enterprise-ops .ops-grid,
  .feature-matrix,
  .resource-grid,
  .company-grid,
  .dedicated-grid,
  .status-grid,
  .enterprise-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .arch-layer,
  .enterprise-ops .ops-grid,
  .enterprise-dashboard-bottom,
  .feature-matrix,
  .resource-grid,
  .company-grid,
  .dedicated-grid,
  .status-grid,
  .enterprise-footer {
    grid-template-columns: 1fr;
  }
}


/* Dedicated public pages icon/card alignment - 2026-07-20 */
.dedicated-card {
  align-content: start;
  min-height: 230px;
}

.dedicated-card .feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}

.dedicated-card .feature-icon svg {
  width: 30px;
  height: 30px;
}

.integration-dedicated-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.landing-body .price-card .feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}

.landing-body .price-card .feature-icon svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1180px) {
  .integration-dedicated-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .dedicated-card,
  .integration-dedicated-grid .integration-card {
    min-height: auto;
  }

  .integration-dedicated-grid {
    grid-template-columns: 1fr;
  }
}


/* Admin AdGuard DNS dashboard */
.adguard-dashboard {
  display: grid;
  gap: 18px;
  margin: 18px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(94, 234, 212, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(16, 35, 58, 0.94), rgba(7, 17, 31, 0.94));
}

.adguard-heading {
  align-items: flex-start;
}

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

.adguard-card {
  position: relative;
  display: grid;
  min-height: 154px;
  align-content: space-between;
  gap: 12px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(126, 231, 255, 0.16);
  border-radius: 18px;
  background: rgba(2, 5, 13, 0.42);
}

.adguard-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% 35%;
  height: 120px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.16);
  filter: blur(20px);
}

.adguard-card span,
.adguard-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-weight: 800;
}

.adguard-card strong {
  position: relative;
  z-index: 1;
  color: #eaffff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
}

.adguard-card.blocked::after { background: rgba(40, 215, 255, 0.18); }
.adguard-card.malware::after { background: rgba(251, 113, 133, 0.18); }
.adguard-card.adult::after { background: rgba(167, 139, 250, 0.18); }

@media (max-width: 1180px) {
  .adguard-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .adguard-metrics { grid-template-columns: 1fr; }
}

.adguard-card[role="button"] {
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.adguard-card[role="button"]:hover,
.adguard-card[role="button"]:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(126, 231, 255, 0.42);
  background: rgba(7, 17, 31, 0.72);
  outline: none;
}

.adguard-top-clients {
  display: grid;
  gap: 12px;
  padding: 4px 2px 2px;
}

.compact-heading {
  margin-top: 4px;
}

.compact-heading h3 {
  margin: 0;
  color: var(--text);
}

.dns-client-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dns-client-item {
  position: relative;
  overflow: hidden;
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(126, 231, 255, 0.14);
  border-radius: 16px;
  background: rgba(2, 5, 13, 0.38);
}

.dns-client-item div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.dns-client-item strong {
  color: #eaffff;
  word-break: break-word;
}

.dns-client-item span {
  color: var(--muted);
  font-weight: 800;
}

.dns-client-item i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  min-width: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5eead4, #38bdf8);
}

.adguard-details-shell {
  grid-template-columns: 1fr;
  max-width: 1480px;
}

.adguard-detail-panel .panel-heading {
  gap: 14px;
}

.adguard-detail-panel input[type="search"] {
  max-width: 360px;
}

@media (max-width: 1180px) {
  .dns-client-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .dns-client-list { grid-template-columns: 1fr; }
  .adguard-detail-panel .panel-heading { align-items: stretch; }
  .adguard-detail-panel input[type="search"] { max-width: none; width: 100%; }
}


/* Premium cybersecurity sections - 2026-07-19 */
.landing-body :is(section[id], .premium-section) {
  scroll-margin-top: 104px;
}

.landing-body .section-heading {
  max-width: 1050px;
  margin-bottom: clamp(22px, 3vw, 30px);
}

.landing-body .section h2,
.premium-hero h1 {
  max-width: 1050px;
  letter-spacing: -0.03em;
}

.landing-body .section h2 {
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1.02;
}

.premium-hero h1 {
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1.01;
}

.landing-body::before {
  content: "";
  position: fixed;
  inset: 8vh -8vw auto auto;
  width: min(56vw, 780px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.065;
  background: url("logo-justinbox2.png") center / contain no-repeat;
  mask-image: radial-gradient(circle, #000 42%, transparent 76%);
  z-index: 0;
}

.landing-body > * {
  position: relative;
  z-index: 1;
}

.architecture-flow {
  gap: 16px;
}

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

.arch-node {
  align-content: start;
  gap: 10px;
  min-height: 178px;
  padding: 20px;
}

.arch-node .arch-icon,
.integration-mark,
.feature-icon {
  background: linear-gradient(145deg, rgba(94, 234, 212, 0.18), rgba(40, 215, 255, 0.08));
  border: 1px solid rgba(126, 231, 255, 0.2);
  color: var(--accent);
}

.arch-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  border-radius: 16px;
}

.arch-icon svg,
.integration-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-status {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #d8e8f6;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.product-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.product-status.available {
  color: #67f3cf;
  background: rgba(94, 234, 212, 0.11);
  border-color: rgba(94, 234, 212, 0.28);
}

.product-status.soon {
  color: #fde68a;
  background: rgba(250, 204, 21, 0.1);
  border-color: rgba(250, 204, 21, 0.28);
}

.product-status.planned {
  color: #b8c7dc;
  background: rgba(148, 163, 184, 0.1);
  border-color: rgba(148, 163, 184, 0.24);
}

.landing-body .feature-card {
  min-height: 276px;
  padding: 24px;
}

.landing-body .feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 18px;
}

.landing-body .feature-card .feature-icon svg {
  width: 29px;
  height: 29px;
}

.landing-body .feature-card:hover .feature-icon,
.platform-card:hover .feature-icon,
.integration-card:hover .integration-mark {
  box-shadow: 0 0 28px rgba(94, 234, 212, 0.2);
}

.platform-card {
  align-items: flex-start;
  gap: 14px;
  min-height: 168px;
  padding: 18px;
}

.platform-card .small-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  margin-bottom: 0;
  border-radius: 14px;
}

.platform-card .small-icon svg {
  width: 24px;
  height: 24px;
}

.platform-card-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.platform-card-copy small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.4;
}

.integration-card {
  min-height: 212px;
  align-content: start;
  justify-items: start;
  gap: 10px;
  padding: 22px;
  text-align: left;
}

.integration-mark {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  margin-bottom: 4px;
}

.integration-mark svg {
  width: 36px;
  height: 36px;
}

.integration-card small {
  min-height: 42px;
  line-height: 1.4;
}

.preview-disclaimer,
.managed-service-note {
  max-width: 900px;
  margin: 18px 0 0;
  color: #aebdd1;
  font-size: 14px;
  line-height: 1.6;
}

.managed-service-note {
  padding: 18px 20px;
  border: 1px solid rgba(126, 231, 255, 0.16);
  border-radius: 16px;
  background: rgba(8, 18, 32, 0.56);
}

.landing-body a:focus-visible,
.landing-body button:focus-visible,
.landing-body input:focus-visible,
.landing-body textarea:focus-visible,
.landing-body select:focus-visible {
  outline: 3px solid rgba(94, 234, 212, 0.8);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .arch-layer-wide,
  .integration-grid,
  .feature-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .landing-body::before {
    display: none;
  }

  .landing-body :is(section[id], .premium-section) {
    scroll-margin-top: 18px;
  }

  .landing-body .section h2,
  .premium-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.06;
  }

  .arch-layer-wide,
  .integration-grid,
  .feature-matrix {
    grid-template-columns: 1fr;
  }

  .arch-node,
  .platform-card,
  .integration-card,
  .landing-body .feature-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-body .premium-card:hover,
  .landing-body .feature-card:hover,
  .platform-card:hover,
  .integration-card:hover {
    transform: none;
  }
}


/* Background scroll breathing - 2026-07-19 */
.landing-body {
  background:
    linear-gradient(180deg, rgba(2, 5, 13, 0.56), rgba(2, 5, 13, 0.42) 34%, rgba(2, 5, 13, 0.64) 100%),
    radial-gradient(circle at 15% 8%, rgba(40, 215, 255, 0.12), transparent 28%),
    url("fundal.png") center center / cover fixed,
    #02050d;
}

.landing-body::before {
  content: none;
  display: none;
}

.premium-hero {
  margin-bottom: clamp(34px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(2, 5, 13, 0.82) 0%, rgba(2, 5, 13, 0.58) 52%, rgba(2, 5, 13, 0.32) 100%),
    radial-gradient(circle at 75% 20%, rgba(40, 215, 255, 0.16), transparent 30%);
}

main > .premium-section,
main > .section.premium-section {
  margin-block: clamp(112px, 14vw, 220px);
  background:
    linear-gradient(180deg, rgba(2, 5, 13, 0.72), rgba(2, 5, 13, 0.52));
  border-block: 1px solid rgba(126, 231, 255, 0.08);
  backdrop-filter: blur(1px);
}

main > .premium-section.section-muted,
main > .section.premium-section.section-muted {
  background:
    linear-gradient(180deg, rgba(3, 10, 22, 0.68), rgba(3, 10, 22, 0.48));
}

main > .premium-section:first-child,
main > .section.premium-section:first-child {
  margin-top: 0;
}

main > .premium-section:last-child,
main > .section.premium-section:last-child {
  margin-bottom: clamp(34px, 5vw, 72px);
}

@supports not (background-attachment: fixed) {
  .landing-body {
    background-attachment: scroll;
  }
}

@media (max-width: 760px) {
  .landing-body {
    background:
      linear-gradient(180deg, rgba(2, 5, 13, 0.72), rgba(2, 5, 13, 0.58) 42%, rgba(2, 5, 13, 0.72)),
      url("fundal.png") center center / cover scroll,
      #02050d;
  }

  .premium-hero,
  main > .premium-section,
  main > .section.premium-section {
    margin-block: clamp(68px, 18vw, 116px);
  }
}


/* Language switcher - 2026-07-21 */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(126, 231, 255, 0.22);
  border-radius: 999px;
  background: rgba(2, 5, 13, 0.56);
}

.language-switcher button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.language-switcher button.active {
  background: rgba(40, 215, 255, 0.14);
  color: #eaffff;
  box-shadow: inset 0 0 0 1px rgba(126, 231, 255, 0.24);
}

.language-switcher button:focus-visible {
  outline: 3px solid rgba(94, 234, 212, 0.8);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .language-switcher {
    width: fit-content;
  }

  .language-switcher button {
    min-height: 32px;
    padding: 0 8px;
  }
}


/* Floating scroll top - 2026-07-21 */
.scroll-top-button {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  z-index: 20;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(126, 231, 255, 0.34);
  border-radius: 999px;
  background: rgba(2, 5, 13, 0.72);
  color: #eaffff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32), 0 0 28px rgba(40, 215, 255, 0.14);
  backdrop-filter: blur(14px);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.scroll-top-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top-button:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 234, 212, 0.62);
  background: rgba(6, 18, 32, 0.86);
}

.scroll-top-button:focus-visible {
  outline: 3px solid rgba(94, 234, 212, 0.8);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .scroll-top-button {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }
}


/* Data trust section - 2026-07-21 */
.data-trust-section {
  background:
    linear-gradient(180deg, rgba(3, 10, 22, 0.7), rgba(3, 10, 22, 0.5));
}

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

.data-trust-card {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 24px;
}

.data-trust-card strong {
  color: #eaffff;
  font-size: 18px;
  line-height: 1.25;
}

.data-trust-card span {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .data-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .data-trust-grid {
    grid-template-columns: 1fr;
  }

  .data-trust-card {
    min-height: auto;
  }
}
