:root {
  --bg: #030914;
  --bg-2: #071120;
  --panel: rgba(11, 22, 38, 0.84);
  --panel-2: rgba(12, 27, 48, 0.72);
  --line: rgba(111, 166, 255, 0.18);
  --line-strong: rgba(83, 145, 255, 0.34);
  --text: #f6f9ff;
  --muted: #aab7ca;
  --blue: #1676ff;
  --blue-2: #38a8ff;
  --green: #17dc73;
  --shadow: 0 20px 70px rgba(0,0,0,.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 8%, rgba(25, 90, 180, .22), transparent 35%),
    radial-gradient(circle at 10% 35%, rgba(25, 90, 180, .09), transparent 28%),
    linear-gradient(180deg, #06101d 0%, #020812 45%, #020710 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

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

button, select {
  font: inherit;
}

#snow-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.site-shell {
  position: relative;
  z-index: 3;
}

.promo-bar {
  min-height: 40px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(13,51,99,.85), rgba(8,32,66,.92));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 13px;
  color: #dce9ff;
}

.promo-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(23,220,115,.8);
}

.promo-code {
  border: 1px solid rgba(82, 150, 255, .55);
  border-radius: 999px;
  padding: 3px 9px;
  color: #9bc4ff;
  font-size: 11px;
}

.navbar {
  width: min(1440px, calc(100% - 60px));
  margin: 0 auto;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -1.4px;
}

.brand-blue {
  color: #1d7dff;
}

.brand-x {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 -2px;
}

.brand-x img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  color: #d0dae9;
  transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.btn-login {
  justify-self: end;
}

.btn {
  border: 0;
  border-radius: 12px;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: .22s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #2988ff, #1268f3);
  color: #fff;
  box-shadow: 0 12px 32px rgba(19, 109, 255, .32), inset 0 1px rgba(255,255,255,.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(19, 109, 255, .42), inset 0 1px rgba(255,255,255,.28);
}

.btn-secondary {
  color: #f4f7fb;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(9,16,28,.68);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(18,30,49,.9);
  border-color: rgba(96,157,255,.5);
}

.circle-icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.hero {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 92px 0 64px;
}

.status-pill,
.section-label {
  border: 1px solid var(--line-strong);
  background: rgba(12, 34, 65, .58);
  color: #b7d2ff;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(23,220,115,.85);
  display: inline-block;
}

.hero h1 {
  margin: 22px 0 14px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -4px;
  font-weight: 800;
  text-shadow: 0 8px 30px rgba(0,0,0,.25);
}

.hero h1 span,
.config-left h2 span {
  color: #2b83ff;
}

.hero-copy {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.hero-actions .btn {
  min-width: 190px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  margin-top: 44px;
  color: #c5d0df;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.benefits div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.benefits span {
  color: #4c9cff;
  font-size: 21px;
}

.section {
  width: min(1440px, calc(100% - 60px));
  margin: 0 auto;
  padding: 70px 0 28px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  padding: 6px 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  font-size: 10px;
}

.section-label.small {
  margin-bottom: 8px;
}

.section h2 {
  font-size: clamp(30px, 3vw, 42px);
  margin: 18px 0 8px;
  letter-spacing: -1.8px;
}

.section-copy {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 250px;
  text-align: left;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16,31,53,.76), rgba(7,17,30,.86));
  box-shadow: inset 0 1px rgba(255,255,255,.025);
  transition: .24s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(61,137,255,.46);
  box-shadow: 0 20px 45px rgba(0,0,0,.26);
}

.service-icon {
  font-size: 30px;
  color: #4f9dff;
  filter: drop-shadow(0 0 10px rgba(30,119,255,.35));
  margin-bottom: 20px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.round-link {
  margin-top: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #378eff;
  display: grid;
  place-items: center;
  color: #75b5ff;
  font-size: 19px;
  transition: .2s ease;
}

.round-link:hover {
  background: var(--blue);
  color: #fff;
}

.config-card {
  width: min(1440px, calc(100% - 60px));
  margin: 36px auto 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(8,19,33,.96), rgba(9,23,40,.88));
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 560px;
  box-shadow: var(--shadow);
}

.config-left {
  padding: 44px;
}

.config-left h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  margin: 8px 0 12px;
  letter-spacing: -2.7px;
}

.config-left > p {
  color: var(--muted);
  margin: 0 0 28px;
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.select-wrap {
  border: 1px solid rgba(108,153,214,.18);
  border-radius: 10px;
  background: rgba(8,20,36,.78);
  padding: 9px 12px 5px;
}

.select-wrap.full {
  grid-column: 1 / -1;
}

.select-wrap span {
  display: block;
  font-size: 10px;
  color: #7789a2;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 2px;
}

.select-wrap select {
  width: 100%;
  color: #f6f9ff;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 4px 0 8px;
  font-size: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-top: 28px;
}

.price-row > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

#price {
  font-size: 30px;
  font-weight: 800;
}

.price-row small {
  color: var(--muted);
}

.config-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background:
    radial-gradient(circle at 80% 35%, rgba(25,100,255,.16), transparent 34%),
    #050d17;
}

.server-room {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,14,25,.96) 0%, rgba(5,14,25,.12) 44%, rgba(3,9,17,.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.66));
}

.rack {
  position: absolute;
  top: 10%;
  bottom: 8%;
  width: 14%;
  border: 1px solid rgba(66,122,200,.18);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(12, 29, 49, .95) 0 24px,
      rgba(17, 59, 113, .72) 25px 27px,
      rgba(2, 9, 17, .98) 28px 42px
    );
  box-shadow: 0 0 30px rgba(14,93,221,.11);
  transform: skewY(-1deg);
}

.rack::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, #1487ff 0 2px, transparent 3px),
    radial-gradient(circle at 18% 24%, #1487ff 0 2px, transparent 3px),
    radial-gradient(circle at 18% 42%, #1487ff 0 2px, transparent 3px),
    radial-gradient(circle at 18% 62%, #1487ff 0 2px, transparent 3px),
    radial-gradient(circle at 18% 82%, #1487ff 0 2px, transparent 3px);
  filter: drop-shadow(0 0 6px #1487ff);
}

.rack-1 { left: 8%; }
.rack-2 { left: 26%; top: 7%; bottom: 6%; }
.rack-3 { left: 44%; top: 5%; bottom: 5%; }
.rack-4 { left: 62%; top: 7%; bottom: 6%; }
.rack-5 { left: 80%; }

.floor-glow {
  position: absolute;
  left: 8%;
  right: 6%;
  bottom: 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(17,91,194,.12));
  clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
}

.network-pill {
  position: absolute;
  top: 28px;
  left: 28px;
  background: rgba(7,19,33,.86);
  border: 1px solid rgba(68,128,214,.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #e2ecfb;
  font-size: 12px;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.network-pill small {
  color: #9aaac0;
}

.infra-list {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 230px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(5,15,28,.9);
  border: 1px solid rgba(85,145,222,.18);
  backdrop-filter: blur(10px);
}

.infra-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dfe8f5;
  padding: 10px 0;
  font-size: 13px;
}

.infra-list span {
  color: #57a0ff;
}

.why {
  padding-top: 82px;
  padding-bottom: 100px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  margin-top: 48px;
  text-align: left;
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(26,102,221,.22);
  color: #56a4ff;
  font-size: 22px;
  margin-bottom: 17px;
  box-shadow: inset 0 0 22px rgba(33,125,255,.1);
}

.why-item h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 30px 38px;
  display: flex;
  gap: 14px 34px;
  flex-wrap: wrap;
  justify-content: center;
  color: #728199;
  font-size: 12px;
}

.footer-brand {
  color: #b7c9e7;
  font-weight: 800;
  letter-spacing: 2px;
}

.nav-toggle {
  display: none;
  justify-self: end;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 1100px) {
  .navbar {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 124px;
    left: 30px;
    right: 30px;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(3,10,19,.97);
    border-radius: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    z-index: 20;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 10px;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,.04);
  }

  .nav-links a.active::after {
    display: none;
  }

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

  .config-card {
    grid-template-columns: 1fr;
  }

  .config-visual {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .navbar,
  .section,
  .config-card {
    width: min(100% - 28px, 1440px);
  }

  .navbar {
    min-height: 74px;
  }

  .btn-login {
    display: none;
  }

  .brand {
    font-size: 24px;
  }

  .brand-x {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding-top: 70px;
    min-height: 560px;
  }

  .hero h1 {
    letter-spacing: -2.4px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    max-width: 340px;
  }

  .benefits {
    gap: 22px 28px;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .config-left {
    padding: 28px 20px;
  }

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

  .select-wrap.full {
    grid-column: auto;
  }

  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .price-row .btn {
    width: 100%;
  }

  .config-visual {
    min-height: 360px;
  }

  .infra-list {
    width: 200px;
  }

  .promo-bar {
    font-size: 11px;
  }
}


/* Mouse-follow glow */
.mouse-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(
      circle,
      rgba(35, 126, 255, 0.18) 0%,
      rgba(20, 92, 210, 0.10) 28%,
      rgba(6, 39, 92, 0.045) 52%,
      transparent 72%
    );
  filter: blur(8px);
  transition: opacity 220ms ease;
  will-change: left, top, opacity;
}

.mouse-glow.is-visible {
  opacity: 1;
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .mouse-glow {
    display: none;
  }
}


/* ---------- Product pages: Game Hosting / VPS ---------- */
.product-page {
  background:
    radial-gradient(circle at 52% 10%, rgba(28, 93, 197, .16), transparent 30%),
    radial-gradient(circle at 12% 28%, rgba(20, 75, 160, .07), transparent 24%),
    linear-gradient(180deg, #060b12 0%, #04080f 48%, #02060b 100%);
}

.product-page .navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  max-width: none;
  padding: 0 max(30px, calc((100vw - 1440px) / 2));
  background: rgba(4, 9, 16, .88);
  backdrop-filter: blur(18px);
}

.product-hero {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 115px;
  text-align: center;
}

.product-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -4px;
}

.product-hero h1 span {
  color: #2b83ff;
}

.product-hero p {
  max-width: 780px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.plans-section {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  padding: 40px 0 80px;
}

.plans-section > h2 {
  margin: 18px 0 28px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -2px;
}

.plan-tabs,
.sub-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(18, 20, 26, .78);
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.plan-tab,
.sub-tab {
  border: 0;
  color: #d5d7dc;
  background: transparent;
  border-radius: 999px;
  padding: 11px 24px;
  font-weight: 800;
  cursor: pointer;
  transition: .22s ease;
}

.plan-tab.active,
.sub-tab.active {
  color: #fff;
  background: linear-gradient(180deg, #2b87ff, #1766ee);
  box-shadow: 0 0 30px rgba(31, 119, 255, .34);
}

.sub-tabs {
  display: flex;
  width: fit-content;
  margin: -6px auto 20px;
}

.sub-tabs[hidden] {
  display: none;
}

.cpu-banner {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 30px;
  border: 1px solid rgba(54,137,255,.42);
  background: linear-gradient(90deg, rgba(26,74,148,.22), rgba(22,42,78,.36));
  color: #dfeaff;
  border-radius: 10px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 35px rgba(23, 96, 214, .12);
}

.cpu-banner span {
  color: #61a6ff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.price-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(180deg, rgba(20,22,28,.92), rgba(11,13,18,.94));
  box-shadow: inset 0 1px rgba(255,255,255,.025);
  display: flex;
  flex-direction: column;
  transition: .22s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53,133,255,.38);
}

.price-card.popular {
  border-color: rgba(73, 109, 255, .72);
  box-shadow:
    0 0 42px rgba(58,77,255,.18),
    inset 0 1px rgba(255,255,255,.04);
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(180deg, #5c67ff, #444de4);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 6px 10px;
  border-radius: 7px;
}

.price-card h3 {
  margin: 0 0 15px;
  font-size: 24px;
}

.price-features {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  color: #d6dae2;
  font-size: 14px;
}

.price-feature::before {
  content: "✓";
  color: #6a8cff;
  margin-right: 10px;
  font-weight: 900;
}

.price-line {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1.8px;
}

.price-period {
  color: #93a0b6;
  font-weight: 700;
  font-size: 13px;
}

.price-card .order-btn {
  margin-top: 18px;
  width: 100%;
  min-height: 44px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}

.price-card .order-btn:hover,
.price-card.popular .order-btn {
  background: linear-gradient(180deg, #376fff, #4f46e5);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(66,71,230,.26);
}

.feature-section {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  padding: 90px 0 70px;
}

.feature-section h2 {
  margin: 18px 0 34px;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -1.9px;
}

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

.feature-box {
  min-height: 180px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(18,20,25,.76);
  border-radius: 14px;
  padding: 24px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #67a9ff;
  background: rgba(31,105,212,.17);
  border: 1px solid rgba(64,142,255,.24);
  margin-bottom: 16px;
}

.feature-box h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-box p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.cta-panel {
  width: min(900px, calc(100% - 40px));
  margin: 40px auto 100px;
  border: 1px solid rgba(52,134,255,.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(33,109,220,.16), transparent 56%),
    rgba(10,18,31,.86);
  border-radius: 18px;
  padding: 42px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-panel h2 {
  margin: 12px 0 6px;
  font-size: 30px;
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.vps-page .product-hero h1 span,
.vps-page .plan-tab.active,
.vps-page .sub-tab.active {
  /* same Noxera blue identity; page hierarchy differs through content, not copied colors */
}

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

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

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .product-hero {
    padding: 85px 0 70px;
  }

  .product-hero h1 {
    letter-spacing: -2px;
  }

  .plan-tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 6px;
  }

  .plan-tab,
  .sub-tab {
    white-space: nowrap;
    padding: 10px 17px;
  }

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

  .cta-panel {
    padding: 30px 22px;
  }

  .product-page .navbar {
    padding: 0 14px;
  }
}


/* ===== NOXERA PRODUCT PAGES — RED THEME OVERRIDE ===== */
.product-page {
  --product-accent: #ff3d4f;
  --product-accent-2: #d71932;
  --product-accent-soft: rgba(255, 61, 79, .18);
  background:
    radial-gradient(circle at 52% 9%, rgba(255, 54, 70, .17), transparent 31%),
    radial-gradient(circle at 9% 26%, rgba(158, 18, 37, .10), transparent 25%),
    radial-gradient(circle at 92% 35%, rgba(255, 48, 66, .07), transparent 27%),
    linear-gradient(180deg, #0d0609 0%, #080609 46%, #050609 100%);
}

.product-page .promo-bar {
  background:
    linear-gradient(90deg, rgba(25,18,35,.96), rgba(83,19,32,.96), rgba(25,18,35,.96));
  border-bottom-color: rgba(255, 71, 88, .20);
}

.product-page .promo-dot {
  background: #ff5b68;
  box-shadow: 0 0 12px rgba(255, 74, 91, .85);
}

.product-page .promo-code,
.product-page .section-label,
.product-page .brand-blue {
  color: #ff6572;
}

.product-page .section-label {
  border-color: rgba(255, 73, 91, .34);
  background: rgba(255, 54, 73, .09);
}

.product-page .navbar {
  background:
    linear-gradient(90deg, rgba(18,7,11,.94), rgba(39,8,15,.90), rgba(18,7,11,.94));
  border-bottom-color: rgba(255, 65, 82, .13);
}

.product-page .nav-links a:hover,
.product-page .nav-links a.active {
  color: #ff6572;
}

.product-page .btn-primary,
.product-page .plan-tab.active,
.product-page .sub-tab.active {
  color: #fff;
  background: linear-gradient(180deg, #ff6672 0%, #ee3448 52%, #c91e34 100%);
  border-color: rgba(255, 105, 117, .55);
  box-shadow:
    0 0 18px rgba(255, 54, 73, .35),
    0 8px 28px rgba(180, 15, 38, .22);
}

.product-page .btn-primary:hover {
  box-shadow:
    0 0 28px rgba(255, 54, 73, .50),
    0 12px 34px rgba(180, 15, 38, .30);
}

.product-page .product-hero h1 span {
  background: linear-gradient(90deg, #ff6572, #ff9b9f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-page .plan-tabs,
.product-page .sub-tabs {
  position: relative;
  z-index: 10;
  overflow: visible;
}

.product-page .plan-tab,
.product-page .sub-tab {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 11;
  appearance: none;
  -webkit-appearance: none;
  color: #d9d9df;
}

.product-page .cpu-banner {
  border-color: rgba(255, 73, 91, .42);
  background: linear-gradient(90deg, rgba(113, 17, 33, .30), rgba(60, 13, 24, .40));
  color: #ffe3e6;
  box-shadow: 0 0 35px rgba(255, 40, 61, .12);
}

.product-page .cpu-banner span,
.product-page .feature-icon {
  color: #ff7580;
}

.product-page .feature-icon {
  background: rgba(255, 55, 73, .13);
  border-color: rgba(255, 77, 94, .28);
}

.product-page .price-card:hover {
  border-color: rgba(255, 73, 91, .38);
}

.product-page .price-card.popular {
  border-color: rgba(255, 72, 88, .72);
  box-shadow:
    0 0 42px rgba(255, 42, 61, .16),
    inset 0 1px rgba(255,255,255,.04);
}

.product-page .popular-badge {
  background: linear-gradient(180deg, #ff5e6c, #d91d36);
  box-shadow: 0 0 20px rgba(255, 47, 67, .28);
}

.product-page .price-feature::before {
  color: #ff6673;
}

.product-page .price-card .order-btn:hover,
.product-page .price-card.popular .order-btn {
  background: linear-gradient(180deg, #ff5968, #d91e37);
  box-shadow: 0 10px 24px rgba(216, 27, 54, .25);
}

.product-page .cta-panel {
  border-color: rgba(255, 70, 88, .30);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 51, 70, .17), transparent 58%),
    rgba(27, 8, 13, .88);
}


/* Product-page cursor glow follows the red theme */
body.product-page .mouse-glow {
  background:
    radial-gradient(
      circle,
      rgba(255, 60, 78, 0.18) 0%,
      rgba(190, 28, 50, 0.10) 28%,
      rgba(88, 10, 28, 0.045) 52%,
      transparent 72%
    );
}


/* ===== Shared footer ===== */
.site-footer {
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(2, 7, 14, .88);
  padding: 46px 0 24px;
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .85fr .85fr .85fr;
  gap: 52px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  color: #fff;
  font-weight: 800;
  letter-spacing: .7px;
  font-size: 20px;
  margin-bottom: 18px;
}

.footer-about p {
  color: #9caac0;
  line-height: 1.7;
  margin: 0;
  max-width: 350px;
}

.footer-column h4 {
  margin: 0 0 17px;
  font-size: 13px;
  letter-spacing: .8px;
}

.footer-column a {
  color: #a6b3c8;
  margin: 0 0 11px;
  font-size: 14px;
  transition: .2s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1120px, calc(100% - 40px));
  margin: 34px auto 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  color: #7f8ca0;
  font-size: 13px;
}

/* ===== Floating actions ===== */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(15, 24, 40, .88);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 22px;
  transition: .2s ease;
}

.floating-btn:hover {
  transform: translateY(-2px);
}

.discord-float {
  background: linear-gradient(180deg, #6775ff, #4b55df);
}

.discord-mark {
  font-size: 21px;
  line-height: 1;
}

/* ===== Home comparison ===== */
.comparison-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0 40px;
  text-align: center;
}

.comparison-section h2 {
  margin: 18px 0 8px;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -2px;
}

.comparison-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
  border: 1px solid rgba(99, 154, 255, .18);
  border-radius: 15px;
  background: rgba(10, 19, 34, .70);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.075);
}

.comparison-table th {
  color: #86b7ff;
  background: rgba(34, 67, 119, .28);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.comparison-table td {
  color: #d9e2f0;
  font-size: 14px;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table .good {
  color: #45d47d;
  font-weight: 700;
  background: rgba(44, 89, 153, .12);
}

.comparison-table .bad {
  color: #ff6475;
  font-weight: 700;
}

/* ===== Purple Web/Dedicated pages ===== */
.purple-page {
  --product-accent: #9d5cff;
  --product-accent-2: #7138d9;
  background:
    radial-gradient(circle at 52% 9%, rgba(140, 72, 255, .18), transparent 31%),
    radial-gradient(circle at 8% 29%, rgba(93, 34, 178, .12), transparent 25%),
    radial-gradient(circle at 91% 36%, rgba(130, 61, 240, .09), transparent 27%),
    linear-gradient(180deg, #0b0711 0%, #08060d 45%, #05060a 100%);
}

.purple-page .promo-bar {
  background: linear-gradient(90deg, rgba(28,18,41,.96), rgba(66,28,109,.96), rgba(28,18,41,.96));
  border-bottom-color: rgba(162, 92, 255, .22);
}

.purple-page .promo-dot {
  background: #b078ff;
  box-shadow: 0 0 12px rgba(176, 120, 255, .85);
}

.purple-page .promo-code,
.purple-page .section-label,
.purple-page .brand-blue {
  color: #b986ff;
}

.purple-page .section-label {
  border-color: rgba(167, 102, 255, .38);
  background: rgba(125, 63, 214, .12);
}

.purple-page .navbar {
  background: linear-gradient(90deg, rgba(17,10,24,.94), rgba(36,15,57,.91), rgba(17,10,24,.94));
  border-bottom-color: rgba(155, 86, 255, .14);
}

.purple-page .nav-links a:hover,
.purple-page .nav-links a.active {
  color: #bb88ff;
}

.purple-page .btn-primary,
.purple-page .plan-tab.active,
.purple-page .sub-tab.active {
  color: #fff;
  background: linear-gradient(180deg, #ae74ff 0%, #8a4cf0 50%, #6f30ce 100%);
  border-color: rgba(191, 137, 255, .56);
  box-shadow:
    0 0 18px rgba(157, 78, 255, .34),
    0 8px 28px rgba(96, 34, 181, .22);
}

.purple-page .product-hero h1 span {
  background: linear-gradient(90deg, #aa6cff, #e0c5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.purple-page .cpu-banner {
  border-color: rgba(170, 99, 255, .44);
  background: linear-gradient(90deg, rgba(77, 31, 142, .35), rgba(43, 20, 72, .42));
  color: #efe2ff;
  box-shadow: 0 0 35px rgba(136, 65, 239, .14);
}

.purple-page .cpu-banner span,
.purple-page .feature-icon {
  color: #bd8bff;
}

.purple-page .feature-icon {
  background: rgba(136, 68, 230, .15);
  border-color: rgba(171, 106, 255, .28);
}

.purple-page .price-card:hover {
  border-color: rgba(166, 92, 255, .42);
}

.purple-page .price-card.popular {
  border-color: rgba(165, 91, 255, .75);
  box-shadow:
    0 0 42px rgba(140, 62, 244, .17),
    inset 0 1px rgba(255,255,255,.04);
}

.purple-page .popular-badge {
  background: linear-gradient(180deg, #ad72ff, #7436db);
}

.purple-page .price-feature::before {
  color: #b780ff;
}

.purple-page .price-card .order-btn:hover,
.purple-page .price-card.popular .order-btn {
  background: linear-gradient(180deg, #a56aff, #7135d6);
  box-shadow: 0 10px 24px rgba(108, 46, 207, .26);
}

.purple-page .cta-panel {
  border-color: rgba(164, 94, 255, .32);
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 65, 245, .18), transparent 58%),
    rgba(21, 10, 31, .88);
}

body.purple-page .mouse-glow {
  background:
    radial-gradient(
      circle,
      rgba(155, 78, 255, 0.18) 0%,
      rgba(104, 45, 196, 0.10) 28%,
      rgba(55, 20, 94, 0.045) 52%,
      transparent 72%
    );
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
  }
}

.discord-logo {
  width: 25px;
  height: 20px;
  display: block;
  color: #fff;
}


/* ===== FAQ page ===== */
.faq-page {
  background:
    radial-gradient(circle at 50% 10%, rgba(27, 87, 184, .15), transparent 31%),
    linear-gradient(180deg, #050b14 0%, #030811 48%, #02060d 100%);
}

.faq-page .navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  max-width: none;
  padding: 0 max(30px, calc((100vw - 1440px) / 2));
  background: rgba(4, 10, 18, .90);
  backdrop-filter: blur(18px);
}

.faq-main {
  min-height: 900px;
}

.faq-hero {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  padding: 105px 0 58px;
}

.faq-hero h1 {
  margin: 20px 0 12px;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -4px;
}

.faq-hero h1 span {
  color: #4f93ff;
}

.faq-hero > p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

.faq-search-row {
  margin: 28px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.faq-search {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(26, 28, 34, .82);
  padding: 0 16px;
}

.faq-search span {
  color: #6aa9ff;
  font-size: 22px;
}

.faq-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.faq-search input::placeholder {
  color: #768397;
}

.faq-note {
  margin-top: 18px !important;
  font-size: 12px;
  color: #728199 !important;
}

.faq-content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 0 80px;
}

.faq-category {
  margin: 0 0 46px;
}

.faq-category[hidden] {
  display: none;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.faq-category-title h2 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -.7px;
}

.faq-category-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #70adff;
  background: rgba(37, 104, 211, .18);
  border: 1px solid rgba(72, 139, 247, .28);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(27, 29, 35, .80);
  border-radius: 13px;
  overflow: hidden;
  transition: .2s ease;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(76, 143, 255, .38);
}

.faq-item[hidden] {
  display: none;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f5f7fb;
  min-height: 54px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-question > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question > span:first-child::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #3488ff;
  box-shadow: 0 0 9px rgba(52, 136, 255, .65);
}

.faq-chevron {
  color: #75b3ff;
  font-size: 20px;
  transition: transform .2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 17px;
  color: #c0cad8;
  line-height: 1.75;
  font-size: 14px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding-bottom: 18px;
}

.faq-contact {
  border: 1px solid rgba(76, 139, 244, .28);
  background: linear-gradient(90deg, rgba(16, 38, 75, .73), rgba(14, 26, 49, .73));
  border-radius: 15px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.faq-contact > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-contact span {
  color: var(--muted);
  font-size: 13px;
}

.faq-contact-actions {
  display: flex;
  gap: 10px;
}

.faq-legal-note {
  margin-top: 22px;
  color: #78879b;
  font-size: 12px;
  line-height: 1.65;
  padding: 0 4px;
}

@media (max-width: 700px) {
  .faq-page .navbar {
    padding: 0 14px;
  }

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

  .faq-search-row .btn {
    width: 100%;
  }

  .faq-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .faq-contact-actions .btn {
    width: 100%;
  }
}


/* ===== About Us page ===== */
.about-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(27, 91, 192, .16), transparent 30%),
    linear-gradient(180deg, #050b14 0%, #030811 48%, #02060d 100%);
}

.about-page .navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  max-width: none;
  padding: 0 max(30px, calc((100vw - 1440px) / 2));
  background: rgba(4, 10, 18, .90);
  backdrop-filter: blur(18px);
}

.about-hero {
  width: min(1050px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 75px;
  text-align: center;
}

.about-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -4px;
}

.about-hero h1 span {
  color: #4c91ff;
}

.about-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.about-grid-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 85px;
}

.about-card {
  border: 1px solid rgba(96, 151, 236, .16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 30, 52, .72), rgba(7, 15, 27, .82));
  padding: 30px;
}

.about-card-wide {
  grid-column: 1 / -1;
}

.about-kicker {
  color: #6aa6ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 11px;
}

.about-card h2,
.about-card h3 {
  margin: 0 0 13px;
}

.about-card h2 {
  font-size: 34px;
  letter-spacing: -1.5px;
}

.about-card h3 {
  font-size: 21px;
}

.about-card p {
  color: #aebbcf;
  line-height: 1.75;
  margin: 0 0 14px;
}

.legal-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 25px 0 70px;
}

.legal-section > h2 {
  margin: 18px 0 8px;
  font-size: 42px;
  letter-spacing: -2px;
}

.legal-intro {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-grid {
  margin: 32px 0;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 15px;
  overflow: hidden;
}

.legal-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(16, 22, 32, .70);
}

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

.legal-row span {
  color: #8391a7;
}

.legal-row strong {
  color: #e9eef7;
}

.legal-copy {
  display: grid;
  gap: 10px;
}

.legal-copy h3 {
  margin: 22px 0 0;
  font-size: 19px;
}

.legal-copy p {
  margin: 0;
  color: #aeb8c8;
  line-height: 1.75;
}

.legal-warning {
  margin-top: 28px;
  border: 1px solid rgba(91, 150, 255, .24);
  background: rgba(25, 55, 102, .18);
  border-radius: 13px;
  padding: 16px 18px;
  color: #b9c8dd;
  line-height: 1.65;
  font-size: 13px;
}

.about-cta {
  margin-bottom: 75px;
}

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

  .about-card-wide {
    grid-column: auto;
  }

  .legal-row {
    grid-template-columns: 1fr;
  }

  .about-page .navbar {
    padding: 0 14px;
  }
}


/* ===== Domains / Green theme ===== */
.green-page {
  --product-accent: #35d07f;
  --product-accent-2: #169a59;
  background:
    radial-gradient(circle at 52% 10%, rgba(35, 196, 112, .18), transparent 31%),
    radial-gradient(circle at 10% 28%, rgba(20, 131, 77, .11), transparent 26%),
    radial-gradient(circle at 90% 36%, rgba(32, 185, 103, .08), transparent 28%),
    linear-gradient(180deg, #06100b 0%, #050b08 46%, #030705 100%);
}

.green-page .promo-bar {
  background: linear-gradient(90deg, rgba(15,30,23,.96), rgba(13,73,44,.96), rgba(15,30,23,.96));
  border-bottom-color: rgba(73, 221, 139, .20);
}

.green-page .promo-dot {
  background: #4ce79a;
  box-shadow: 0 0 12px rgba(76, 231, 154, .85);
}

.green-page .promo-code,
.green-page .section-label,
.green-page .brand-blue {
  color: #57df99;
}

.green-page .section-label {
  border-color: rgba(75, 225, 147, .38);
  background: rgba(28, 161, 91, .12);
}

.green-page .navbar {
  background: linear-gradient(90deg, rgba(8,19,13,.94), rgba(10,44,27,.91), rgba(8,19,13,.94));
  border-bottom-color: rgba(71, 212, 138, .14);
}

.green-page .nav-links a:hover,
.green-page .nav-links a.active {
  color: #63e5a1;
}

.green-page .btn-primary,
.green-page .plan-tab.active,
.green-page .sub-tab.active {
  color: #fff;
  background: linear-gradient(180deg, #52e49a 0%, #2bc576 52%, #149b58 100%);
  border-color: rgba(116, 234, 173, .56);
  box-shadow:
    0 0 18px rgba(45, 205, 122, .34),
    0 8px 28px rgba(20, 125, 73, .22);
}

.green-page .btn-primary:hover {
  box-shadow:
    0 0 28px rgba(45, 205, 122, .48),
    0 12px 34px rgba(20, 125, 73, .30);
}

body.green-page .mouse-glow {
  background:
    radial-gradient(
      circle,
      rgba(48, 210, 128, 0.18) 0%,
      rgba(29, 150, 87, 0.10) 28%,
      rgba(12, 78, 44, 0.045) 52%,
      transparent 72%
    );
}

.domains-hero {
  width: min(1050px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  padding: 110px 0 70px;
}

.domains-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -4px;
}

.domains-hero h1 span {
  background: linear-gradient(90deg, #55e59d, #b8ffd5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.domains-hero > p {
  max-width: 770px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.domain-search-box {
  max-width: 840px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.domain-search-input-wrap {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(95, 224, 154, .25);
  border-radius: 13px;
  background: rgba(9, 27, 18, .80);
  padding: 0 17px;
  box-shadow: inset 0 1px rgba(255,255,255,.03);
}

.domain-search-icon {
  color: #60e69f;
  font-size: 22px;
}

.domain-search-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 16px;
}

.domain-search-input-wrap input::placeholder {
  color: #6e7f75;
}

.domain-search-result {
  max-width: 840px;
  margin: 12px auto 0;
  color: #8da497;
  font-size: 13px;
  min-height: 20px;
}

.domain-search-result.available {
  color: #63e4a0;
}

.domain-search-result.unavailable {
  color: #ff7b86;
}

.tld-strip {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 900px;
}

.tld-strip div {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(11, 25, 18, .63);
  border-radius: 12px;
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tld-strip strong {
  font-size: 20px;
  color: #71e7a8;
}

.tld-strip span {
  color: #8b9c92;
  font-size: 12px;
}

.domains-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 65px 0 80px;
  text-align: center;
}

.domains-section h2 {
  margin: 18px 0 8px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -2px;
}

.domain-price-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.domain-price-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(16,30,22,.92), rgba(8,17,12,.95));
  display: flex;
  flex-direction: column;
}

.domain-price-card.popular {
  border-color: rgba(69, 217, 137, .58);
  box-shadow: 0 0 36px rgba(42, 187, 109, .13);
}

.domain-price-card h3 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #75e9ab;
}

.domain-price-card p {
  margin: 0;
  color: #9aab9f;
  line-height: 1.65;
  font-size: 14px;
}

.domain-price {
  margin-top: auto;
  padding-top: 24px;
  font-size: 28px;
  font-weight: 800;
}

.domain-price small {
  color: #839289;
  font-size: 13px;
}

.domain-price-card .order-btn {
  margin-top: 16px;
  width: 100%;
  min-height: 44px;
  border-radius: 9px;
  border: 1px solid rgba(79, 219, 146, .22);
  background: rgba(45, 166, 101, .09);
  color: #eafff2;
  font-weight: 800;
  cursor: pointer;
}

.domain-price-card .order-btn:hover:not(:disabled) {
  background: linear-gradient(180deg, #4bdd93, #199a59);
}

.domain-price-card .order-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.domain-transfer-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid rgba(76, 218, 143, .18);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(9, 25, 17, .93), rgba(11, 36, 24, .80));
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}

.domain-transfer-copy h2 {
  margin: 18px 0 10px;
  font-size: 40px;
  letter-spacing: -1.6px;
}

.domain-transfer-copy p {
  color: #9eafa4;
  line-height: 1.75;
  margin-bottom: 24px;
}

.domain-transfer-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(5, 16, 10, .58);
}

.domain-transfer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 17px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

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

.domain-transfer-row span {
  color: #91a297;
}

.domain-transfer-row strong {
  color: #75e8aa;
}

@media (max-width: 900px) {
  .domain-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .domain-transfer-section {
    grid-template-columns: 1fr;
  }

  .tld-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .domain-search-box {
    grid-template-columns: 1fr;
  }

  .domain-price-grid,
  .tld-strip {
    grid-template-columns: 1fr;
  }

  .domain-transfer-section {
    padding: 28px 20px;
  }
}

/* Homepage Domains card */
.service-card.domains-card .service-icon,
.service-card.domains-card h3 {
  color: #55df99;
}


/* ===== Homepage dynamic hero phrase ===== */
.hero-dynamic-text {
  position: relative;
  display: inline-block;
  min-width: 8.3em;
  text-align: left;
  white-space: nowrap;
  vertical-align: bottom;
  color: transparent !important;
  background: linear-gradient(100deg,#2389ff 0%,#3a9fff 38%,#82caff 51%,#2389ff 68%,#2389ff 100%);
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(37,139,255,.20));
  animation: heroBlueShimmer 5.5s linear infinite;
  will-change: transform, opacity, filter;
}
.hero-dynamic-text.hero-text-out {
  animation: heroTextOut .46s cubic-bezier(.55,0,.8,.2) forwards, heroBlueShimmer 5.5s linear infinite;
}
.hero-dynamic-text.hero-text-in {
  animation: heroTextIn .64s cubic-bezier(.16,1,.3,1) forwards, heroBlueShimmer 5.5s linear infinite;
}
@keyframes heroTextOut {
  from { opacity:1; transform:translateY(0); filter:blur(0) drop-shadow(0 0 18px rgba(37,139,255,.20)); }
  to { opacity:0; transform:translateY(-22px); filter:blur(8px) drop-shadow(0 0 28px rgba(37,139,255,.35)); }
}
@keyframes heroTextIn {
  from { opacity:0; transform:translateY(22px); filter:blur(8px) drop-shadow(0 0 30px rgba(37,139,255,.42)); }
  to { opacity:1; transform:translateY(0); filter:blur(0) drop-shadow(0 0 18px rgba(37,139,255,.20)); }
}
@keyframes heroBlueShimmer {
  from { background-position:100% 50%; }
  to { background-position:-130% 50%; }
}
@media (max-width:760px) {
  .hero-dynamic-text { min-width:0; white-space:normal; text-align:center; }
}
@media (prefers-reduced-motion:reduce) {
  .hero-dynamic-text,
  .hero-dynamic-text.hero-text-out,
  .hero-dynamic-text.hero-text-in { animation:none; transform:none; filter:none; }
}


/* ===== Homepage centered 3-line hero refinement ===== */
.hero-for-line {
  display: block;
  text-align: center;
}

.hero-dynamic-text {
  display: block;
  width: 100%;
  min-width: 0 !important;
  text-align: center !important;
  white-space: nowrap;
  margin: 0 auto;
  line-height: 1.05;
  transform-origin: center center;
}

@media (max-width: 760px) {
  .hero-dynamic-text {
    width: 100%;
    white-space: normal;
    text-align: center !important;
  }
}


/* ===== Homepage hero final 2-line layout ===== */
.hero-for-line {
  display: inline;
}

.hero-dynamic-text {
  display: block;
  width: 100%;
  min-width: 0 !important;
  margin: 0 auto;
  text-align: center !important;
  white-space: nowrap;
  line-height: 1.08;
}


/* ===== Homepage premium hero polish ===== */

/* Soft ambient halo behind the title, boosted briefly on phrase changes */
.hero h1,
.hero-content h1 {
  position: relative;
  isolation: isolate;
}

.hero h1::before,
.hero-content h1::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 62%;
  width: min(720px, 90vw);
  height: 210px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(31, 130, 255, .14) 0%, rgba(31, 130, 255, .055) 42%, transparent 72%);
  filter: blur(22px);
  opacity: .72;
  pointer-events: none;
  transition: opacity .35s ease, transform .45s ease, filter .45s ease;
}

body.hero-phrase-pulse .hero h1::before,
body.hero-phrase-pulse .hero-content h1::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
  filter: blur(26px);
}

/* Small luminous line under rotating blue phrase */
.hero-accent-line {
  display: block;
  width: 104px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(54, 151, 255, .98), rgba(132, 205, 255, .98), rgba(54, 151, 255, .98), transparent);
  box-shadow: 0 0 9px rgba(46, 143, 255, .65), 0 0 24px rgba(46, 143, 255, .32);
  transform: scaleX(.48);
  opacity: .56;
  transform-origin: center;
  animation: heroAccentIdle 3.2s ease-in-out infinite;
}

body.hero-phrase-pulse .hero-accent-line {
  animation: heroAccentPulse .72s cubic-bezier(.16, 1, .3, 1);
}

@keyframes heroAccentIdle {
  0%, 100% { transform: scaleX(.48); opacity: .50; }
  50% { transform: scaleX(.72); opacity: .82; }
}

@keyframes heroAccentPulse {
  0% { transform: scaleX(.12); opacity: 0; filter: blur(3px); }
  48% { transform: scaleX(1.18); opacity: 1; filter: blur(0); }
  100% { transform: scaleX(.62); opacity: .66; filter: blur(0); }
}

/* Operational status: restrained live pulse */
.status-badge,
.hero-status,
.system-status {
  position: relative;
  overflow: hidden;
}

.status-badge::after,
.hero-status::after,
.system-status::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.10) 47%, transparent 69%);
  transform: translateX(-135%);
  animation: statusSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes statusSweep {
  0%, 66% { transform: translateX(-135%); }
  82%, 100% { transform: translateX(135%); }
}

/* Primary CTA gets a slow edge sweep and clean lift */
.hero-primary-cta {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.hero-primary-cta::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -32%;
  width: 22%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transform: rotate(18deg);
  animation: heroButtonSweep 5.6s ease-in-out infinite;
  pointer-events: none;
}

.hero-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(28, 126, 255, .30), 0 0 24px rgba(28, 126, 255, .20);
}

@keyframes heroButtonSweep {
  0%, 68% { left: -32%; opacity: 0; }
  74% { opacity: 1; }
  90%, 100% { left: 118%; opacity: 0; }
}

/* Secondary CTA micro movement */
.hero-secondary-cta {
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.hero-secondary-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(82, 161, 255, .46);
  background: rgba(26, 89, 160, .10);
}

/* Staggered entrance for the four hero benefits */
.hero-benefit-reveal {
  opacity: 0;
  transform: translateY(10px);
}

body.hero-ready .hero-benefit-reveal {
  animation: heroBenefitIn .55s cubic-bezier(.16, 1, .3, 1) forwards;
}

body.hero-ready .hero-benefit-reveal:nth-child(1) { animation-delay: .08s; }
body.hero-ready .hero-benefit-reveal:nth-child(2) { animation-delay: .17s; }
body.hero-ready .hero-benefit-reveal:nth-child(3) { animation-delay: .26s; }
body.hero-ready .hero-benefit-reveal:nth-child(4) { animation-delay: .35s; }

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

@media (prefers-reduced-motion: reduce) {
  .hero-accent-line,
  .status-badge::after,
  .hero-status::after,
  .system-status::after,
  .hero-primary-cta::after,
  .hero-benefit-reveal {
    animation: none !important;
  }

  .hero-benefit-reveal {
    opacity: 1;
    transform: none;
  }
}


/* ===== Homepage compact 5-service row ===== */
.service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.service-card {
  min-width: 0;
  padding: 22px 20px !important;
}

.service-card h3 {
  font-size: 17px !important;
  white-space: nowrap;
}

.service-card p {
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.service-icon {
  width: 36px !important;
  height: 36px !important;
  display: inline-grid !important;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 10px;
  border: 1px solid currentColor;
  background: color-mix(in srgb, currentColor 10%, transparent);
  box-shadow: 0 0 18px color-mix(in srgb, currentColor 18%, transparent);
}

.service-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Service identities */
.service-icon-game,
.service-card:has(h3:nth-child(n)) .service-icon-game {
  color: #ff4e5d !important;
}

.service-icon-vps {
  color: #ff4e5d !important;
}

.service-icon-web {
  color: #a56cff !important;
}

.service-icon-dedicated {
  color: #a56cff !important;
}

.service-icon-domains,
.service-card.domains-card .service-icon {
  color: #55df99 !important;
}

.service-card:has(.service-icon-game) h3,
.service-card:has(.service-icon-vps) h3 {
  color: #ff6a75;
}

.service-card:has(.service-icon-web) h3,
.service-card:has(.service-icon-dedicated) h3 {
  color: #b68aff;
}

.service-card:has(.service-icon-domains) h3 {
  color: #55df99;
}

/* Matching arrow accents */
.service-card:has(.service-icon-game) .round-link,
.service-card:has(.service-icon-vps) .round-link {
  border-color: rgba(255,78,93,.65);
  color: #ff6672;
}

.service-card:has(.service-icon-web) .round-link,
.service-card:has(.service-icon-dedicated) .round-link {
  border-color: rgba(165,108,255,.65);
  color: #b887ff;
}

.service-card:has(.service-icon-domains) .round-link {
  border-color: rgba(85,223,153,.65);
  color: #62e5a2;
}

@media (max-width: 1050px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card h3 {
    white-space: normal;
  }
}


/* ===== Noxera Status ===== */
.status-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(22,115,255,.17), transparent 31%),
    radial-gradient(circle at 15% 42%, rgba(16,92,190,.08), transparent 28%),
    linear-gradient(180deg,#061326 0%,#04101e 42%,#020a13 100%);
}
.status-main { width:min(1160px,calc(100% - 40px)); margin:0 auto; }
.status-hero { position:relative; text-align:center; padding:105px 0 70px; overflow:hidden; }
.status-hero h1 { margin:18px 0 16px; font-size:clamp(46px,6vw,72px); line-height:1.02; letter-spacing:-3.5px; }
.status-hero h1 span { color:#3193ff; text-shadow:0 0 28px rgba(49,147,255,.22); }
.status-hero > p { max-width:760px; margin:0 auto; color:#96a7bb; line-height:1.75; }
.status-orbit { position:absolute; width:520px; height:520px; left:50%; top:-145px; transform:translateX(-50%); opacity:.35; pointer-events:none; }
.orbit-ring { position:absolute; inset:0; border:1px solid rgba(63,151,255,.18); border-radius:50%; animation:statusOrbit 18s linear infinite; }
.ring-two { inset:85px; animation-direction:reverse; animation-duration:13s; }
.orbit-ring::after { content:""; position:absolute; width:8px; height:8px; border-radius:50%; background:#48a5ff; box-shadow:0 0 16px #48a5ff; left:50%; top:-4px; }
.orbit-core { position:absolute; width:7px; height:7px; border-radius:50%; background:#4aa8ff; left:50%; top:50%; box-shadow:0 0 30px 12px rgba(55,155,255,.35); }
@keyframes statusOrbit { to { transform:rotate(360deg); } }

.status-global-card { max-width:820px; margin:34px auto 0; padding:19px 22px; display:flex; justify-content:space-between; align-items:center; gap:20px; text-align:left; border:1px solid rgba(65,224,141,.25); border-radius:15px; background:linear-gradient(100deg,rgba(8,28,23,.82),rgba(7,24,38,.88)); box-shadow:0 0 38px rgba(31,170,104,.07); }
.status-global-left { display:flex; align-items:center; gap:14px; }
.status-global-left strong { display:block; font-size:15px; }
.status-global-left small,.status-global-right small { display:block; color:#789086; margin-top:4px; font-size:11px; }
.live-pulse { width:12px; height:12px; border-radius:50%; background:#42df8b; box-shadow:0 0 0 0 rgba(66,223,139,.6); animation:livePulse 1.8s infinite; }
@keyframes livePulse { 70% { box-shadow:0 0 0 9px rgba(66,223,139,0); } 100% { box-shadow:0 0 0 0 rgba(66,223,139,0); } }
.status-global-right { text-align:right; }
.status-uptime-value { font-size:25px; font-weight:800; color:#56e399; }
.status-global-right b { color:#56e399; }

.status-dashboard,.status-regions,.status-history,.status-events { padding:55px 0 25px; }
.status-section-head { display:flex; justify-content:space-between; align-items:end; gap:24px; margin-bottom:24px; }
.status-section-head h2 { margin:13px 0 0; font-size:34px; letter-spacing:-1.4px; }
.status-section-head > p { color:#7f91a5; max-width:420px; text-align:right; }
.live-indicator { color:#63e8a4; font-size:11px; font-weight:800; letter-spacing:.13em; }
.live-indicator span { display:inline-block; width:7px; height:7px; border-radius:50%; background:#49df91; box-shadow:0 0 10px #49df91; margin-right:7px; animation:statusBlink 1.3s ease-in-out infinite; }
@keyframes statusBlink { 50% { opacity:.35; } }

.status-service-list { display:grid; gap:10px; }
.status-service-card { display:grid; grid-template-columns:minmax(280px,1fr) minmax(220px,.8fr) auto; align-items:center; gap:24px; padding:17px 19px; border:1px solid rgba(255,255,255,.075); border-radius:13px; background:linear-gradient(90deg,rgba(10,26,45,.88),rgba(6,18,32,.88)); transition:transform .22s ease,border-color .22s ease,background .22s ease; }
.status-service-card:hover { transform:translateY(-2px); border-color:rgba(62,149,255,.25); background:linear-gradient(90deg,rgba(12,31,53,.95),rgba(7,22,38,.95)); }
.status-service-info { display:flex; align-items:center; gap:14px; }
.status-service-info h3 { margin:0 0 4px; font-size:15px; }
.status-service-info p { margin:0; color:#778ba2; font-size:12px; }
.status-service-icon { width:38px; height:38px; display:grid; place-items:center; border:1px solid currentColor; border-radius:10px; font-size:12px; font-weight:800; }
.status-service-icon.red { color:#ff6170; background:rgba(255,73,90,.08); }
.status-service-icon.purple { color:#b079ff; background:rgba(166,100,255,.08); }
.status-service-icon.green { color:#58e29c; background:rgba(71,210,143,.08); }
.status-service-icon.blue { color:#4aa2ff; background:rgba(54,145,255,.08); }
.operational-pill { display:inline-flex; align-items:center; gap:7px; color:#68e5a5; font-size:11px; font-weight:700; white-space:nowrap; }
.operational-pill i { width:7px; height:7px; border-radius:50%; background:#4ee094; box-shadow:0 0 9px rgba(78,224,148,.7); }
.mini-bars { height:28px; display:flex; align-items:end; justify-content:flex-end; gap:3px; opacity:.78; }
.mini-bars span { width:4px; min-height:5px; border-radius:4px; background:linear-gradient(#43df91,#249c65); animation:barBreath 2.8s ease-in-out infinite; }
@keyframes barBreath { 50% { opacity:.48; transform:scaleY(.84); } }

.region-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.region-card { padding:22px; border:1px solid rgba(255,255,255,.075); border-radius:14px; background:rgba(8,22,38,.82); transition:transform .22s ease,border-color .22s ease; }
.region-card:hover { transform:translateY(-4px); border-color:rgba(65,155,255,.25); }
.region-top,.latency { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.flag-dot { width:32px; height:32px; display:grid; place-items:center; border-radius:50%; background:#0b2744; color:#77baff; font-size:10px; font-weight:800; border:1px solid rgba(71,155,255,.2); }
.region-card h3 { margin:20px 0 4px; font-size:20px; }
.region-card p { margin:0 0 22px; color:#72869c; font-size:12px; }
.latency { color:#8497aa; font-size:11px; }
.latency strong { color:#d7e7f6; }
.latency-track { height:4px; background:#0b1b2c; border-radius:99px; overflow:hidden; margin-top:9px; }
.latency-track span { display:block; height:100%; width:0; background:linear-gradient(90deg,#2585ff,#4bdc98); border-radius:inherit; animation:latencyFill 1.2s .25s ease forwards; }
@keyframes latencyFill { to { width:var(--fill); } }

.history-panel { padding:22px; border:1px solid rgba(255,255,255,.075); border-radius:14px; background:rgba(7,20,34,.83); }
.history-row { display:grid; grid-template-columns:155px 1fr; align-items:center; gap:20px; margin:15px 0; }
.history-row > div:first-child { display:flex; justify-content:space-between; gap:8px; flex-direction:column; }
.history-row strong { font-size:12px; }
.history-row small { color:#5ce09b; font-size:10px; }
.uptime-grid { display:grid; grid-template-columns:repeat(90,1fr); gap:2px; height:30px; }
.uptime-grid span { border-radius:2px; background:#32c77c; opacity:.85; transform:scaleY(0); transform-origin:bottom; animation:uptimeBarIn .42s ease forwards; }
@keyframes uptimeBarIn { to { transform:scaleY(1); } }
.history-scale { margin-left:175px; display:flex; justify-content:space-between; color:#66798d; font-size:10px; }

.timeline { position:relative; padding-left:24px; }
.timeline::before { content:""; position:absolute; left:5px; top:8px; bottom:8px; width:1px; background:linear-gradient(#43dc91,rgba(55,140,235,.18)); }
.timeline-item { position:relative; margin-bottom:13px; }
.timeline-dot { position:absolute; left:-24px; top:20px; width:11px; height:11px; border-radius:50%; background:#4cdd94; box-shadow:0 0 14px rgba(76,221,148,.55); }
.timeline-dot.maintenance { background:#4a9eff; box-shadow:0 0 14px rgba(74,158,255,.55); }
.timeline-card { padding:18px 20px; border:1px solid rgba(255,255,255,.07); border-radius:12px; background:rgba(8,21,35,.75); }
.timeline-card > div { display:flex; justify-content:space-between; gap:20px; }
.timeline-card strong { font-size:13px; }
.timeline-date { color:#70859b; font-size:11px; }
.timeline-card p { margin:8px 0 0; color:#7f93a7; font-size:12px; }

.status-subscribe { margin:60px 0 25px; padding:34px 38px; display:flex; justify-content:space-between; align-items:center; gap:28px; border:1px solid rgba(52,145,255,.18); border-radius:16px; background:radial-gradient(circle at 80% 50%,rgba(38,126,255,.13),transparent 35%),rgba(7,21,38,.82); }
.status-subscribe h2 { margin:14px 0 7px; font-size:31px; }
.status-subscribe p { margin:0; color:#8397aa; }
.status-demo-note { margin:0 0 65px; padding:13px 16px; border:1px solid rgba(255,190,74,.16); border-radius:10px; background:rgba(122,78,9,.07); color:#9b8b6b; font-size:11px; line-height:1.6; }

.status-page .nav-links a.active { color:#56a7ff; }
.status-page .btn-primary { background:linear-gradient(180deg,#399aff,#1674e8); }

@media (max-width:900px) {
  .status-service-card { grid-template-columns:1fr auto; }
  .mini-bars { display:none; }
  .region-grid { grid-template-columns:1fr; }
}
@media (max-width:650px) {
  .status-main { width:min(100% - 24px,1160px); }
  .status-global-card,.status-section-head,.status-subscribe { align-items:flex-start; flex-direction:column; }
  .status-global-right { text-align:left; }
  .status-section-head > p { text-align:left; }
  .status-service-card { grid-template-columns:1fr; }
  .history-row { grid-template-columns:1fr; gap:8px; }
  .history-scale { margin-left:0; }
  .uptime-grid { gap:1px; }
}
@media (prefers-reduced-motion:reduce) {
  .orbit-ring,.live-pulse,.live-indicator span,.mini-bars span,.latency-track span,.uptime-grid span { animation:none !important; }
  .latency-track span { width:var(--fill); }
  .uptime-grid span { transform:none; }
}


/* ===== Interactive pill navigation preview ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 5px !important;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: rgba(11, 24, 42, .46);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.025),
    0 10px 30px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-links a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 11px !important;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 9px;
  background: rgba(255,255,255,.018);
  font-size: 12px !important;
  font-weight: 650;
  white-space: nowrap;
  transition:
    transform .22s cubic-bezier(.2,.8,.2,1),
    opacity .22s ease,
    background .22s ease,
    border-color .22s ease,
    color .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
  transform-origin: center;
}

/* Interactive focus: hovered item grows, siblings subtly recede */
.nav-links:has(a:hover) a:not(:hover) {
  transform: scale(.955);
  opacity: .58;
  filter: saturate(.72);
}

.nav-links a:hover {
  z-index: 3;
  transform: translateY(-2px) scale(1.075);
  opacity: 1;
  color: #fff !important;
  border-color: rgba(70, 155, 255, .38);
  background:
    linear-gradient(180deg, rgba(55, 139, 255, .16), rgba(27, 77, 140, .10));
  box-shadow:
    0 7px 20px rgba(0,0,0,.18),
    0 0 18px rgba(42, 133, 255, .11),
    inset 0 1px rgba(255,255,255,.07);
}

/* Small moving light inside hovered button */
.nav-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 22%, rgba(255,255,255,.11) 48%, transparent 72%);
  transform: translateX(-135%);
  opacity: 0;
  pointer-events: none;
}

.nav-links a:hover::after {
  opacity: 1;
  animation: navPillSweep .62s ease forwards;
}

@keyframes navPillSweep {
  from { transform: translateX(-135%); }
  to { transform: translateX(135%); }
}

/* Current page stays visibly selected */
.nav-links a.active {
  color: #fff !important;
  border-color: rgba(68, 151, 255, .30);
  background: rgba(38, 113, 207, .12);
  box-shadow: inset 0 0 0 1px rgba(74, 156, 255, .035);
}

/* Product page identities keep their color on hover/active */
.red-page .nav-links a:hover,
.red-page .nav-links a.active {
  border-color: rgba(255, 82, 96, .38);
  background: rgba(151, 34, 45, .13);
  box-shadow: 0 0 18px rgba(255, 69, 85, .08);
}

.purple-page .nav-links a:hover,
.purple-page .nav-links a.active {
  border-color: rgba(171, 111, 255, .40);
  background: rgba(104, 53, 172, .14);
  box-shadow: 0 0 18px rgba(160, 92, 255, .09);
}

.green-page .nav-links a:hover,
.green-page .nav-links a.active {
  border-color: rgba(77, 224, 147, .38);
  background: rgba(35, 139, 84, .13);
  box-shadow: 0 0 18px rgba(69, 217, 137, .08);
}

/* At narrower desktop widths keep it compact instead of wrapping */
@media (max-width: 1280px) {
  .nav-links {
    gap: 3px !important;
    padding: 4px;
  }

  .nav-links a {
    padding: 0 8px !important;
    font-size: 11px !important;
  }
}

/* Existing mobile menu should remain a normal vertical menu */
@media (max-width: 900px) {
  .nav-links {
    padding: 10px;
  }

  .nav-links:has(a:hover) a:not(:hover) {
    transform: none;
    opacity: 1;
    filter: none;
  }

  .nav-links a,
  .nav-links a:hover {
    width: 100%;
    justify-content: flex-start;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links a,
  .nav-links a::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}


/* ===== Strong, consistent active navbar state ===== */
.nav-links a.active,
.nav-links a[aria-current="page"] {
  opacity: 1 !important;
  transform: none;
  color: #ffffff !important;
  border-color: rgba(62, 151, 255, .62) !important;
  background:
    linear-gradient(180deg, rgba(47, 135, 255, .26), rgba(24, 72, 132, .17)) !important;
  box-shadow:
    0 0 0 1px rgba(67, 155, 255, .08),
    0 0 19px rgba(39, 133, 255, .14),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

/* Small top indicator makes selection obvious even without hover */
.nav-links a.active::before,
.nav-links a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: 25%;
  right: 25%;
  top: -6px;
  height: 2px;
  border-radius: 99px;
  background: #3d9bff;
  box-shadow: 0 0 9px rgba(61,155,255,.85);
}

/* Hover may animate active item too, but never make it look unselected */
.nav-links:has(a:hover) a.active:not(:hover),
.nav-links:has(a:hover) a[aria-current="page"]:not(:hover) {
  opacity: .82 !important;
  filter: none;
}

@media (max-width: 900px) {
  .nav-links a.active::before,
  .nav-links a[aria-current="page"]::before {
    top: 15%;
    bottom: 15%;
    left: -1px;
    right: auto;
    width: 2px;
    height: auto;
  }
}


/* ===== About + FAQ: homepage luminosity/theme ===== */
.home-light-theme {
  background:
    radial-gradient(circle at 50% 5%, rgba(27, 119, 255, .19), transparent 31%),
    radial-gradient(circle at 18% 42%, rgba(25, 102, 211, .105), transparent 31%),
    radial-gradient(circle at 84% 55%, rgba(20, 91, 190, .075), transparent 28%),
    linear-gradient(180deg, #071a31 0%, #06172b 43%, #041324 100%) !important;
  background-attachment: fixed;
}

/* Same faint technical grid feel as Home */
.home-light-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(75, 145, 220, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 145, 220, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.35) 78%, transparent);
}

/* Soft central blue illumination, matching the Home visual language */
.home-light-theme::after {
  content: "";
  position: fixed;
  z-index: -1;
  left: 50%;
  top: 220px;
  width: min(1050px, 95vw);
  height: 720px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(29, 117, 238, .105) 0%, rgba(19, 78, 155, .045) 46%, transparent 72%);
  filter: blur(18px);
}

/* Remove/override darker page-specific backgrounds */
.home-light-theme .site-shell,
.home-light-theme main,
.home-light-theme .faq-main,
.home-light-theme .about-main,
.home-light-theme .about-page,
.home-light-theme .faq-page {
  background-color: transparent !important;
}

/* Cards are lifted out of the blacker FAQ/About treatment */
.home-light-theme .faq-item,
.home-light-theme .faq-search,
.home-light-theme .about-card,
.home-light-theme .about-info-card,
.home-light-theme .legal-card,
.home-light-theme .value-card,
.home-light-theme .info-card {
  background:
    linear-gradient(180deg, rgba(16, 38, 65, .84), rgba(8, 27, 48, .82)) !important;
  border-color: rgba(80, 151, 230, .16) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.025),
    0 15px 42px rgba(0,0,0,.08) !important;
}

/* FAQ rows in particular were visually almost black */
.faq-home-theme .faq-question,
.faq-home-theme .faq-answer {
  background-color: transparent !important;
}

.faq-home-theme .faq-item:hover {
  border-color: rgba(66, 151, 255, .30) !important;
  background:
    linear-gradient(180deg, rgba(18, 44, 75, .92), rgba(9, 31, 55, .90)) !important;
}

/* Brighter secondary text, matching Home rather than charcoal pages */
.home-light-theme p,
.home-light-theme .faq-answer,
.home-light-theme .legal-note,
.home-light-theme .about-copy {
  color: #94a9bf;
}

/* Section accents inherit Home blue */
.home-light-theme .section-label,
.home-light-theme .faq-category-icon,
.home-light-theme .about-icon {
  border-color: rgba(55, 145, 255, .28);
  background: rgba(31, 111, 207, .10);
}

/* Header region stays in the same blue family as Home */
.home-light-theme .navbar {
  background: rgba(5, 18, 34, .42);
  border-bottom-color: rgba(71, 137, 207, .08);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

/* Footer transition should not suddenly drop to near-black */
.home-light-theme .site-footer {
  background:
    linear-gradient(180deg, rgba(4, 17, 31, .28), rgba(3, 13, 25, .78)) !important;
}

/* FAQ hero gets the same ambient blue emphasis as Home */
.faq-home-theme .faq-hero,
.about-home-theme .about-hero {
  position: relative;
  isolation: isolate;
}

.faq-home-theme .faq-hero::before,
.about-home-theme .about-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 42%;
  width: min(850px, 92vw);
  height: 390px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(38, 132, 255, .13), transparent 69%);
  filter: blur(22px);
  pointer-events: none;
}


/* ===== Canonical BLUE theme: Home / About / Status / FAQ =====
   One palette, one brightness, one navbar treatment.
   Product pages keep their own red / purple / green identities. */
.blue-unified-theme {
  background:
    radial-gradient(circle at 50% 7%, rgba(29, 119, 255, .205) 0%, rgba(18, 82, 171, .095) 30%, transparent 51%),
    radial-gradient(circle at 16% 45%, rgba(24, 104, 218, .095), transparent 31%),
    radial-gradient(circle at 86% 50%, rgba(24, 104, 218, .075), transparent 29%),
    linear-gradient(180deg, #081d36 0%, #071a31 42%, #06172c 72%, #051426 100%) !important;
  background-attachment: fixed !important;
  color: #f4f8ff;
}

/* Same technical grid on all four pages */
.blue-unified-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(85, 157, 232, .038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 157, 232, .038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.96), rgba(0,0,0,.46) 82%, transparent);
}

/* Same broad blue glow on all four pages */
.blue-unified-theme::after {
  content: "";
  position: fixed;
  z-index: -1;
  left: 50%;
  top: 250px;
  width: min(1180px, 100vw);
  height: 760px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(32, 125, 247, .115) 0%, rgba(22, 87, 176, .052) 48%, transparent 73%);
  filter: blur(20px);
}

/* Kill page-specific dark overlays/backgrounds without touching layout */
.blue-unified-theme .site-shell,
.blue-unified-theme main,
.blue-unified-theme .status-main,
.blue-unified-theme .faq-main,
.blue-unified-theme .about-main,
.blue-unified-theme .faq-page,
.blue-unified-theme .about-page {
  background-color: transparent !important;
  background-image: none !important;
}

/* Canonical header/nav brightness */
.blue-unified-theme .navbar {
  background: rgba(7, 24, 44, .52) !important;
  border-bottom: 1px solid rgba(80, 150, 222, .095) !important;
  box-shadow: 0 10px 35px rgba(0,0,0,.06) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.blue-unified-theme .nav-links {
  background: rgba(12, 31, 54, .67) !important;
  border-color: rgba(102, 161, 221, .13) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.028),
    0 10px 30px rgba(0,0,0,.07) !important;
}

.blue-unified-theme .nav-links a {
  background: rgba(255,255,255,.022) !important;
  border-color: rgba(130, 175, 221, .075) !important;
  color: #9eafc2;
}

.blue-unified-theme .nav-links a:hover {
  color: #fff !important;
  border-color: rgba(69, 156, 255, .38) !important;
  background: linear-gradient(180deg, rgba(55,139,255,.17), rgba(27,77,140,.11)) !important;
}

/* Identical selected-state on Home, About, Status and FAQ */
.blue-unified-theme .nav-links a.active,
.blue-unified-theme .nav-links a[aria-current="page"] {
  color: #fff !important;
  border-color: rgba(64, 153, 255, .64) !important;
  background: linear-gradient(180deg, rgba(47,135,255,.27), rgba(24,72,132,.18)) !important;
  box-shadow:
    0 0 0 1px rgba(67,155,255,.08),
    0 0 20px rgba(39,133,255,.15),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

/* Same translucent navy surfaces on the four blue pages */
.blue-unified-theme .faq-item,
.blue-unified-theme .faq-search,
.blue-unified-theme .about-card,
.blue-unified-theme .about-info-card,
.blue-unified-theme .legal-card,
.blue-unified-theme .value-card,
.blue-unified-theme .info-card,
.blue-unified-theme .status-service-card,
.blue-unified-theme .region-card,
.blue-unified-theme .history-panel,
.blue-unified-theme .timeline-card,
.blue-unified-theme .status-subscribe {
  background:
    linear-gradient(180deg, rgba(16, 41, 70, .78), rgba(9, 30, 53, .76)) !important;
  border-color: rgba(83, 155, 230, .15) !important;
}

/* Do not let the old FAQ rules make accordion rows black */
.blue-unified-theme .faq-question,
.blue-unified-theme .faq-answer {
  background: transparent !important;
}

/* Consistent secondary copy */
.blue-unified-theme p,
.blue-unified-theme .faq-answer,
.blue-unified-theme .legal-note,
.blue-unified-theme .about-copy,
.blue-unified-theme .status-section-head > p {
  color: #96abc0;
}

/* Same footer depth instead of different near-black drops */
.blue-unified-theme .site-footer {
  background:
    linear-gradient(180deg, rgba(5, 20, 37, .24), rgba(4, 17, 31, .74)) !important;
  border-top-color: rgba(75, 145, 215, .09) !important;
}

/* Preserve the status green operational surfaces */
.blue-unified-theme .status-global-card {
  background: linear-gradient(100deg, rgba(8, 38, 31, .82), rgba(8, 31, 48, .84)) !important;
  border-color: rgba(65, 224, 141, .25) !important;
}


/* ===== Cookie consent ===== */
.cookie-consent {
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: 22px;
  width: min(920px, calc(100% - 28px));
  transform: translate(-50%, 24px);
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 17px;
  border: 1px solid rgba(83, 155, 230, .23);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 34, 59, .97), rgba(7, 24, 43, .97));
  box-shadow: 0 22px 70px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .32s ease, transform .32s cubic-bezier(.2,.8,.2,1), visibility .32s;
}
.cookie-consent.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.cookie-consent-icon { width: 44px; height: 44px; display:grid; place-items:center; border-radius:12px; color:#68adff; font-size:25px; border:1px solid rgba(77,157,255,.23); background:rgba(35,112,210,.10); box-shadow:0 0 24px rgba(45,132,244,.08); }
.cookie-consent-copy strong { display:block; margin-bottom:5px; font-size:13px; color:#f4f8ff; }
.cookie-consent-copy p { margin:0; color:#8fa5bb; font-size:11px; line-height:1.55; }
.cookie-consent-copy a { display:inline-block; margin-top:5px; color:#62aaff; font-size:10px; text-decoration:none; }
.cookie-consent-copy a:hover { text-decoration:underline; }
.cookie-consent-actions { display:flex; gap:8px; }
.cookie-btn { min-height:38px; padding:0 14px; border-radius:9px; font:inherit; font-size:11px; font-weight:750; cursor:pointer; transition:transform .2s ease,border-color .2s ease,background .2s ease,box-shadow .2s ease; white-space:nowrap; }
.cookie-btn:hover { transform:translateY(-2px); }
.cookie-btn-secondary { color:#c4d1df; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.035); }
.cookie-btn-primary { color:#fff; border:1px solid rgba(82,166,255,.4); background:linear-gradient(180deg,#3699ff,#1978e9); box-shadow:0 8px 22px rgba(22,119,230,.19); }

.cookie-policy-main { width:min(1000px,calc(100% - 40px)); margin:0 auto; padding:90px 0 70px; }
.cookie-policy-hero { text-align:center; padding:30px 0 45px; }
.cookie-policy-hero h1 { margin:16px 0 12px; font-size:clamp(44px,6vw,68px); letter-spacing:-3px; }
.cookie-policy-hero h1 span { color:#3193ff; }
.cookie-policy-hero p { max-width:700px; margin:0 auto; color:#96abc0; line-height:1.7; }
.cookie-policy-card { padding:34px; border:1px solid rgba(83,155,230,.15); border-radius:16px; background:linear-gradient(180deg,rgba(16,41,70,.78),rgba(9,30,53,.76)); }
.cookie-policy-card h2 { margin:28px 0 8px; font-size:19px; }
.cookie-policy-card h2:first-child { margin-top:0; }
.cookie-policy-card p { color:#96abc0; line-height:1.75; }
.cookie-policy-note { margin-top:28px; padding:16px; border:1px solid rgba(255,190,74,.17); border-radius:10px; background:rgba(122,78,9,.08); color:#aa9b7b; font-size:11px; line-height:1.65; }

@media (max-width:760px) {
  .cookie-consent { grid-template-columns:38px 1fr; bottom:12px; }
  .cookie-consent-icon { width:38px; height:38px; }
  .cookie-consent-actions { grid-column:1 / -1; width:100%; }
  .cookie-btn { flex:1; }
}
@media (max-width:480px) {
  .cookie-consent { grid-template-columns:1fr; }
  .cookie-consent-icon { display:none; }
  .cookie-consent-actions { flex-direction:column-reverse; }
}


/* ===== Sticky navbar + White/Dark theme toggle ===== */
:root {
  color-scheme: dark;
}

html {
  scroll-padding-top: 118px;
}

body {
  transition: background .35s ease, color .35s ease;
}

/* Keep the promo + navbar visible while scrolling */
.promo-bar {
  position: sticky !important;
  top: 0;
  z-index: 1200 !important;
}

.navbar {
  position: sticky !important;
  top: var(--promo-sticky-height, 34px);
  z-index: 1190 !important;
  box-shadow: 0 10px 35px rgba(0,0,0,.10);
  transition:
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    backdrop-filter .28s ease;
}

/* Slightly stronger glass effect once the page is scrolled */
body.has-scrolled .navbar {
  background-color: rgba(6, 20, 37, .86) !important;
  backdrop-filter: blur(18px) saturate(125%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(125%) !important;
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
}

.theme-toggle {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  position: relative;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  color: #dcecff;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform .22s cubic-bezier(.2,.8,.2,1),
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    color .22s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px) rotate(4deg);
  border-color: rgba(77, 157, 255, .40);
  background: rgba(52, 133, 235, .12);
  box-shadow: 0 0 18px rgba(48, 139, 255, .12);
}

.theme-icon {
  position: absolute;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    opacity .28s ease,
    transform .36s cubic-bezier(.2,.8,.2,1);
}

.theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-moon {
  opacity: 0;
  transform: rotate(-55deg) scale(.65);
}

/* ---------- LIGHT MODE ---------- */
html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="light"] body {
  color: #10233b;
}

/* General site background */
html[data-theme="light"] body,
html[data-theme="light"] .blue-unified-theme,
html[data-theme="light"] .home-light-theme,
html[data-theme="light"] .status-page {
  background:
    radial-gradient(circle at 50% 7%, rgba(53, 142, 255, .16) 0%, rgba(92, 166, 255, .09) 30%, transparent 52%),
    radial-gradient(circle at 15% 44%, rgba(105, 174, 255, .10), transparent 31%),
    linear-gradient(180deg, #f3f8ff 0%, #eef6ff 45%, #e7f1fc 100%) !important;
  color: #10233b !important;
}

/* Product page families keep their service identity in light mode */
html[data-theme="light"] .red-page {
  background:
    radial-gradient(circle at 50% 7%, rgba(255, 92, 105, .13), transparent 34%),
    linear-gradient(180deg, #fff6f7 0%, #fffafb 48%, #f8edf0 100%) !important;
}

html[data-theme="light"] .purple-page {
  background:
    radial-gradient(circle at 50% 7%, rgba(164, 104, 255, .14), transparent 34%),
    linear-gradient(180deg, #faf7ff 0%, #f7f1ff 48%, #efe8fb 100%) !important;
}

html[data-theme="light"] .green-page {
  background:
    radial-gradient(circle at 50% 7%, rgba(54, 208, 127, .14), transparent 34%),
    linear-gradient(180deg, #f5fff9 0%, #f0fbf5 48%, #e8f6ee 100%) !important;
}

/* Background decorative grids/glows are softened in light mode */
html[data-theme="light"] body::before {
  opacity: .42 !important;
}

html[data-theme="light"] body::after {
  opacity: .30 !important;
}

/* Promo */
html[data-theme="light"] .promo-bar {
  color: #20405f !important;
  background:
    linear-gradient(90deg, rgba(224,239,255,.96), rgba(214,233,255,.98), rgba(224,239,255,.96)) !important;
  border-bottom-color: rgba(52, 121, 194, .15) !important;
}

/* Navbar */
html[data-theme="light"] .navbar,
html[data-theme="light"] body.has-scrolled .navbar {
  background: rgba(245, 250, 255, .88) !important;
  border-bottom-color: rgba(69, 126, 184, .14) !important;
  box-shadow: 0 12px 34px rgba(53, 88, 122, .10) !important;
  backdrop-filter: blur(18px) saturate(115%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(115%) !important;
}

html[data-theme="light"] .nav-links {
  background: rgba(231, 241, 252, .83) !important;
  border-color: rgba(75, 128, 181, .14) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 8px 24px rgba(57, 88, 120, .06) !important;
}

html[data-theme="light"] .nav-links a {
  color: #52677d !important;
  background: rgba(255,255,255,.35) !important;
  border-color: rgba(81, 128, 174, .10) !important;
}

html[data-theme="light"] .nav-links a:hover {
  color: #0a315d !important;
  background: linear-gradient(180deg, rgba(124, 184, 255, .22), rgba(97, 162, 238, .14)) !important;
  border-color: rgba(56, 136, 226, .36) !important;
}

html[data-theme="light"] .nav-links a.active,
html[data-theme="light"] .nav-links a[aria-current="page"] {
  color: #092f58 !important;
  background: linear-gradient(180deg, rgba(109, 178, 255, .32), rgba(80, 151, 230, .20)) !important;
  border-color: rgba(52, 139, 232, .50) !important;
  box-shadow:
    0 0 0 1px rgba(66, 144, 231, .08),
    0 6px 18px rgba(54, 128, 208, .10),
    inset 0 1px 0 rgba(255,255,255,.76) !important;
}

/* Logo secondary text */
html[data-theme="light"] .brand,
html[data-theme="light"] .brand-text {
  color: #0e2742 !important;
}

/* Text */
html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] h4,
html[data-theme="light"] strong {
  color: #10233b;
}

html[data-theme="light"] p,
html[data-theme="light"] .section-copy,
html[data-theme="light"] .faq-answer,
html[data-theme="light"] .legal-note,
html[data-theme="light"] .about-copy,
html[data-theme="light"] .status-section-head > p {
  color: #5d7288 !important;
}

/* Cards/surfaces */
html[data-theme="light"] .service-card,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .faq-search,
html[data-theme="light"] .about-card,
html[data-theme="light"] .about-info-card,
html[data-theme="light"] .legal-card,
html[data-theme="light"] .value-card,
html[data-theme="light"] .info-card,
html[data-theme="light"] .status-service-card,
html[data-theme="light"] .region-card,
html[data-theme="light"] .history-panel,
html[data-theme="light"] .timeline-card,
html[data-theme="light"] .status-subscribe,
html[data-theme="light"] .domain-price-card,
html[data-theme="light"] .domain-transfer-section,
html[data-theme="light"] .cookie-policy-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.91), rgba(239,247,255,.92)) !important;
  border-color: rgba(67, 124, 181, .16) !important;
  box-shadow:
    0 12px 34px rgba(57, 91, 126, .07),
    inset 0 1px 0 rgba(255,255,255,.84) !important;
}

/* Keep inner FAQ rows transparent */
html[data-theme="light"] .faq-question,
html[data-theme="light"] .faq-answer {
  background: transparent !important;
}

/* Inputs */
html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea,
html[data-theme="light"] .domain-search-input-wrap {
  color: #18344f !important;
  background: rgba(255,255,255,.76) !important;
  border-color: rgba(69, 126, 184, .18) !important;
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
  color: #8294a6 !important;
}

/* Floating actions */
html[data-theme="light"] .floating-btn {
  background: rgba(244, 249, 255, .92) !important;
  border-color: rgba(71, 129, 188, .18) !important;
  color: #1b5d9f !important;
  box-shadow: 0 10px 24px rgba(59, 94, 132, .10) !important;
}

/* Footer */
html[data-theme="light"] .site-footer {
  background:
    linear-gradient(180deg, rgba(230, 241, 252, .58), rgba(217, 231, 246, .86)) !important;
  border-top-color: rgba(74, 128, 183, .13) !important;
}

html[data-theme="light"] .site-footer a,
html[data-theme="light"] .site-footer p,
html[data-theme="light"] .footer-bottom {
  color: #587087 !important;
}

/* Cookie banner */
html[data-theme="light"] .cookie-consent {
  color: #15314c;
  background:
    linear-gradient(180deg, rgba(252,254,255,.98), rgba(236,245,253,.98)) !important;
  border-color: rgba(65, 126, 187, .20) !important;
  box-shadow:
    0 22px 70px rgba(55, 84, 115, .18),
    inset 0 1px rgba(255,255,255,.88) !important;
}

html[data-theme="light"] .cookie-consent-copy strong {
  color: #18324d !important;
}

html[data-theme="light"] .cookie-consent-copy p {
  color: #64798e !important;
}

/* Theme icon swap */
html[data-theme="light"] .theme-toggle {
  color: #1c5e9d;
  background: rgba(255,255,255,.60);
  border-color: rgba(74, 133, 190, .18);
}

html[data-theme="light"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(55deg) scale(.65);
}

html[data-theme="light"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Light mode card hover polish */
html[data-theme="light"] .service-card:hover,
html[data-theme="light"] .faq-item:hover,
html[data-theme="light"] .status-service-card:hover,
html[data-theme="light"] .region-card:hover {
  box-shadow:
    0 16px 38px rgba(57, 91, 126, .10),
    0 0 0 1px rgba(71, 145, 220, .05),
    inset 0 1px 0 rgba(255,255,255,.9) !important;
}

/* Snow becomes subtler in white mode */
html[data-theme="light"] #snow-canvas {
  opacity: .34;
}

/* Mobile */
@media (max-width: 900px) {
  .theme-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .navbar {
    top: var(--promo-sticky-height, 34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .navbar,
  .theme-toggle,
  .theme-icon {
    transition: none !important;
  }
}


/* ===== Navbar layout hotfix: identical full-width sticky header on every page ===== */

/* Full-width promo + navbar, independent of page-specific content widths */
.promo-bar,
.navbar {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Navbar remains a single horizontal row and never wraps the Login button below */
.navbar {
  display: grid !important;
  grid-template-columns: minmax(190px, 1fr) auto auto auto minmax(110px, 1fr) !important;
  align-items: center !important;
  column-gap: 14px !important;
  min-height: 74px;
  padding-left: max(24px, calc((100vw - 1296px) / 2)) !important;
  padding-right: max(24px, calc((100vw - 1296px) / 2)) !important;
}

/* Brand left */
.navbar > .brand {
  grid-column: 1;
  justify-self: start;
  margin: 0 !important;
}

/* Main nav centered */
.navbar > .nav-links {
  grid-column: 2;
  justify-self: center;
  width: max-content !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Theme icon next to nav */
.navbar > .theme-toggle {
  grid-column: 3;
  justify-self: center;
  margin: 0 !important;
}

/* Login next */
.navbar > .btn-login {
  grid-column: 4;
  justify-self: end;
  margin: 0 !important;
}

/* Mobile nav toggle is hidden on desktop and positioned predictably */
.navbar > .nav-toggle {
  grid-column: 3;
  justify-self: end;
}

/* Do not allow page-specific wrappers or light mode to create a huge white header box */
html[data-theme="light"] .navbar,
html[data-theme="dark"] .navbar,
.blue-unified-theme .navbar,
.red-page .navbar,
.purple-page .navbar,
.green-page .navbar {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Keep the menu compact; it should not stretch from edge to edge */
.nav-links {
  flex: 0 0 auto !important;
  width: max-content !important;
  max-width: calc(100vw - 430px) !important;
}

/* Light-mode header should stay translucent, not an opaque white slab */
html[data-theme="light"] .navbar,
html[data-theme="light"] body.has-scrolled .navbar {
  background: rgba(239, 247, 255, .78) !important;
}

/* Desktop/intermediate widths */
@media (max-width: 1300px) and (min-width: 901px) {
  .navbar {
    grid-template-columns: 170px minmax(0, 1fr) 42px 78px !important;
    column-gap: 10px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .navbar > .nav-links {
    width: 100% !important;
    max-width: none !important;
    justify-content: center;
    gap: 3px !important;
  }

  .navbar > .nav-links a {
    padding-left: 7px !important;
    padding-right: 7px !important;
    font-size: 10.5px !important;
  }
}

/* Mobile: restore conventional collapsed menu layout */
@media (max-width: 900px) {
  .navbar {
    display: grid !important;
    grid-template-columns: 1fr auto auto !important;
    min-height: 66px;
    padding: 0 14px !important;
    column-gap: 8px !important;
  }

  .navbar > .brand {
    grid-column: 1;
  }

  .navbar > .theme-toggle {
    grid-column: 2;
  }

  .navbar > .nav-toggle {
    display: inline-flex !important;
    grid-column: 3;
  }

  .navbar > .btn-login {
    display: none !important;
  }

  .navbar > .nav-links {
    grid-column: 1 / -1;
    width: calc(100vw - 28px) !important;
    max-width: none !important;
    justify-self: stretch;
  }
}


/* ===== Sticky stack fix: promo bar above navbar on every page ===== */
:root {
  --promo-sticky-height: 34px;
}

.promo-bar {
  position: sticky !important;
  top: 0 !important;
  z-index: 5000 !important;
}

.navbar {
  position: sticky !important;
  top: var(--promo-sticky-height) !important;
  z-index: 4990 !important;
}

/* Keep both layers opaque enough when scrolling so they never visually overlap */
body.has-scrolled .promo-bar {
  backdrop-filter: blur(16px) saturate(125%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(125%) !important;
}

body.has-scrolled .navbar {
  backdrop-filter: blur(18px) saturate(125%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(125%) !important;
}

/* Product themes must obey the same sticky offset */
.red-page .navbar,
.purple-page .navbar,
.green-page .navbar,
.blue-unified-theme .navbar {
  top: var(--promo-sticky-height) !important;
}

@media (max-width: 900px) {
  .navbar,
  .red-page .navbar,
  .purple-page .navbar,
  .green-page .navbar,
  .blue-unified-theme .navbar {
    top: var(--promo-sticky-height) !important;
  }
}


/* ===== Light mode contrast audit/fix ===== */

/* Default readable copy in light mode */
html[data-theme="light"] body {
  color: #18324d !important;
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] h4,
html[data-theme="light"] h5,
html[data-theme="light"] h6 {
  color: #102842 !important;
}

html[data-theme="light"] p,
html[data-theme="light"] li,
html[data-theme="light"] small,
html[data-theme="light"] span:not(.hero-dynamic-text):not(.promo-dot):not(.live-pulse):not(.operational-pill):not(.service-icon) {
  text-shadow: none;
}

/* Generic muted text: darker than before for proper contrast */
html[data-theme="light"] .muted,
html[data-theme="light"] .section-copy,
html[data-theme="light"] .plan-card p,
html[data-theme="light"] .feature-box p,
html[data-theme="light"] .service-card p,
html[data-theme="light"] .about-copy,
html[data-theme="light"] .faq-answer,
html[data-theme="light"] .timeline-card p,
html[data-theme="light"] .region-card p,
html[data-theme="light"] .status-service-info p,
html[data-theme="light"] .domain-price-card p,
html[data-theme="light"] .domain-transfer-copy p,
html[data-theme="light"] .cookie-policy-card p {
  color: #5d7288 !important;
}

/* Dark/accent panels MUST keep light text in light mode */
html[data-theme="light"] .cta-panel,
html[data-theme="light"] .product-cta,
html[data-theme="light"] .game-cta,
html[data-theme="light"] .vps-cta,
html[data-theme="light"] .hosting-cta,
html[data-theme="light"] .dedicated-cta,
html[data-theme="light"] .domain-cta,
html[data-theme="light"] .comparison-card.dark,
html[data-theme="light"] .dark-card,
html[data-theme="light"] .status-global-card {
  color: #f7fbff !important;
}

html[data-theme="light"] .cta-panel h1,
html[data-theme="light"] .cta-panel h2,
html[data-theme="light"] .cta-panel h3,
html[data-theme="light"] .product-cta h1,
html[data-theme="light"] .product-cta h2,
html[data-theme="light"] .product-cta h3,
html[data-theme="light"] .game-cta h1,
html[data-theme="light"] .game-cta h2,
html[data-theme="light"] .game-cta h3,
html[data-theme="light"] .vps-cta h1,
html[data-theme="light"] .vps-cta h2,
html[data-theme="light"] .vps-cta h3,
html[data-theme="light"] .hosting-cta h1,
html[data-theme="light"] .hosting-cta h2,
html[data-theme="light"] .hosting-cta h3,
html[data-theme="light"] .dedicated-cta h1,
html[data-theme="light"] .dedicated-cta h2,
html[data-theme="light"] .dedicated-cta h3,
html[data-theme="light"] .domain-cta h1,
html[data-theme="light"] .domain-cta h2,
html[data-theme="light"] .domain-cta h3,
html[data-theme="light"] .status-global-card strong {
  color: #f7fbff !important;
}

html[data-theme="light"] .cta-panel p,
html[data-theme="light"] .product-cta p,
html[data-theme="light"] .game-cta p,
html[data-theme="light"] .vps-cta p,
html[data-theme="light"] .hosting-cta p,
html[data-theme="light"] .dedicated-cta p,
html[data-theme="light"] .domain-cta p,
html[data-theme="light"] .status-global-card small {
  color: #c9d7e6 !important;
}

/* Product feature cards: turn them into real light cards instead of grey slabs */
html[data-theme="light"] .feature-box,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .why-card,
html[data-theme="light"] .benefit-card,
html[data-theme="light"] .plan-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,247,253,.96)) !important;
  border-color: rgba(76, 128, 180, .17) !important;
  box-shadow:
    0 12px 30px rgba(50, 84, 118, .08),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}

html[data-theme="light"] .feature-box h3,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .why-card h3,
html[data-theme="light"] .benefit-card h3,
html[data-theme="light"] .plan-card h3 {
  color: #18314c !important;
}

html[data-theme="light"] .feature-box p,
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .why-card p,
html[data-theme="light"] .benefit-card p,
html[data-theme="light"] .plan-card p {
  color: #60758a !important;
}

/* Product tabs / selectors */
html[data-theme="light"] .plan-tabs,
html[data-theme="light"] .game-tabs,
html[data-theme="light"] .sub-tabs,
html[data-theme="light"] .selector-tabs {
  background: #dfe8f2 !important;
  color: #334f6c !important;
}

html[data-theme="light"] .plan-tab,
html[data-theme="light"] .game-tab,
html[data-theme="light"] .sub-tab,
html[data-theme="light"] .selector-tab {
  color: #425d77 !important;
}

html[data-theme="light"] .plan-tab.active,
html[data-theme="light"] .game-tab.active,
html[data-theme="light"] .sub-tab.active,
html[data-theme="light"] .selector-tab.active {
  color: #fff !important;
}

/* Pills and labels */
html[data-theme="light"] .section-label {
  color: #2b6eb5 !important;
  background: rgba(68, 144, 225, .09) !important;
  border-color: rgba(58, 133, 214, .24) !important;
}

html[data-theme="light"] .red-page .section-label {
  color: #d84554 !important;
  background: rgba(232, 65, 82, .08) !important;
  border-color: rgba(225, 73, 88, .22) !important;
}

html[data-theme="light"] .purple-page .section-label {
  color: #7b49c8 !important;
  background: rgba(130, 76, 210, .08) !important;
  border-color: rgba(132, 82, 211, .22) !important;
}

html[data-theme="light"] .green-page .section-label {
  color: #248b5a !important;
  background: rgba(48, 162, 103, .08) !important;
  border-color: rgba(50, 167, 108, .22) !important;
}

/* Hero subtext and benefit row */
html[data-theme="light"] .hero p,
html[data-theme="light"] .product-hero p,
html[data-theme="light"] .domains-hero > p,
html[data-theme="light"] .status-hero > p,
html[data-theme="light"] .faq-hero p,
html[data-theme="light"] .about-hero p {
  color: #526b84 !important;
}

html[data-theme="light"] .hero-benefits,
html[data-theme="light"] .hero-features,
html[data-theme="light"] .hero-benefit-reveal {
  color: #47647f !important;
}

/* Buttons with dark backgrounds need explicit light text */
html[data-theme="light"] .btn-primary,
html[data-theme="light"] .order-btn,
html[data-theme="light"] .cookie-btn-primary {
  color: #fff !important;
}

html[data-theme="light"] .btn-secondary,
html[data-theme="light"] .secondary-btn {
  color: #234a70 !important;
  border-color: rgba(55, 105, 155, .28) !important;
  background: rgba(255,255,255,.70) !important;
}

/* Keep accent titles readable */
html[data-theme="light"] .red-page .accent,
html[data-theme="light"] .red-page .product-accent {
  color: #e54858 !important;
}

html[data-theme="light"] .purple-page .accent,
html[data-theme="light"] .purple-page .product-accent {
  color: #8251d1 !important;
}

html[data-theme="light"] .green-page .accent,
html[data-theme="light"] .green-page .product-accent {
  color: #279360 !important;
}

/* Pricing values */
html[data-theme="light"] .price,
html[data-theme="light"] .plan-price,
html[data-theme="light"] .domain-price {
  color: #102842 !important;
}

/* Inputs and dropdown option text */
html[data-theme="light"] select,
html[data-theme="light"] option,
html[data-theme="light"] input,
html[data-theme="light"] textarea {
  color: #173650 !important;
}

/* Footer heading readability */
html[data-theme="light"] .site-footer h4,
html[data-theme="light"] .footer-logo {
  color: #193a59 !important;
}

/* Keep service theme buttons vivid and readable */
html[data-theme="light"] .red-page .btn-primary,
html[data-theme="light"] .red-page .order-btn {
  color: #fff !important;
}

html[data-theme="light"] .purple-page .btn-primary,
html[data-theme="light"] .purple-page .order-btn {
  color: #fff !important;
}

html[data-theme="light"] .green-page .btn-primary,
html[data-theme="light"] .green-page .order-btn {
  color: #fff !important;
}


/* ===== LIGHT MODE FINAL COMPONENT AUDIT ===== */

/* 1) Game / VPS pricing cards */
html[data-theme="light"] .price-card {
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fd 100%) !important;
  border-color: rgba(57, 111, 165, .18) !important;
  box-shadow: 0 14px 34px rgba(45, 80, 115, .09) !important;
  color: #17314c !important;
}

html[data-theme="light"] .price-card:hover {
  border-color: rgba(58, 134, 221, .32) !important;
  box-shadow: 0 18px 40px rgba(45, 80, 115, .13) !important;
}

html[data-theme="light"] .price-card.popular {
  border-color: rgba(230, 60, 78, .55) !important;
  box-shadow:
    0 14px 34px rgba(45, 80, 115, .09),
    0 0 26px rgba(230, 60, 78, .10) !important;
}

html[data-theme="light"] .price-card h3 {
  color: #163552 !important;
}

html[data-theme="light"] .price-feature {
  color: #354f68 !important;
}

html[data-theme="light"] .price-value {
  color: #143c67 !important;
}

html[data-theme="light"] .price-period {
  color: #687d91 !important;
}

html[data-theme="light"] .price-card .order-btn:not(.domain-order-btn) {
  color: #1b3d5c !important;
  background: #edf4fb !important;
  border-color: rgba(55, 105, 155, .24) !important;
}

html[data-theme="light"] .price-card .order-btn:not(.domain-order-btn):hover,
html[data-theme="light"] .price-card.popular .order-btn {
  color: #fff !important;
}

/* 2) Homepage configurator: light control panel + intentionally dark server visual */
html[data-theme="light"] .config-card {
  background: #f8fbff !important;
  border-color: rgba(58, 111, 164, .17) !important;
  box-shadow: 0 18px 48px rgba(51, 83, 116, .10) !important;
}

html[data-theme="light"] .config-left {
  background:
    radial-gradient(circle at 16% 12%, rgba(57, 143, 255, .07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f2f7fd 100%) !important;
}

html[data-theme="light"] .config-left h2 {
  color: #102b47 !important;
}

html[data-theme="light"] .config-left h2 span {
  color: #1878e8 !important;
}

html[data-theme="light"] .config-left > p {
  color: #5d7288 !important;
}

html[data-theme="light"] .select-wrap {
  background: #eaf2fa !important;
  border-color: rgba(62, 117, 170, .17) !important;
}

html[data-theme="light"] .select-wrap span {
  color: #60788f !important;
}

html[data-theme="light"] .select-wrap select {
  color: #173650 !important;
  background: #f9fcff !important;
  border-radius: 5px;
}

html[data-theme="light"] #price {
  color: #1469ca !important;
}

html[data-theme="light"] .price-row small {
  color: #657b90 !important;
}

/* Right side of configurator is deliberately a dark infrastructure visual */
html[data-theme="light"] .config-visual,
html[data-theme="light"] .server-room,
html[data-theme="light"] .network-pill,
html[data-theme="light"] .infra-list {
  color-scheme: dark;
}

html[data-theme="light"] .network-pill {
  color: #e8f1fc !important;
}

html[data-theme="light"] .network-pill small {
  color: #a9b9cc !important;
}

html[data-theme="light"] .infra-list div {
  color: #e5edf8 !important;
}

/* 3) Homepage comparison table */
html[data-theme="light"] .comparison-table-wrap {
  background: #ffffff !important;
  border-color: rgba(62, 119, 176, .17) !important;
  box-shadow: 0 14px 34px rgba(49, 82, 115, .08) !important;
}

html[data-theme="light"] .comparison-table th {
  color: #285f99 !important;
  background: #e8f2fd !important;
  border-bottom-color: rgba(67, 122, 176, .15) !important;
}

html[data-theme="light"] .comparison-table td {
  color: #314b64 !important;
  background: #ffffff !important;
  border-bottom-color: rgba(64, 114, 163, .11) !important;
}

html[data-theme="light"] .comparison-table tbody tr:nth-child(even) td {
  background: #f7faff !important;
}

html[data-theme="light"] .comparison-table .good {
  color: #168b50 !important;
  background: #edf9f3 !important;
}

html[data-theme="light"] .comparison-table .bad {
  color: #d84050 !important;
}

/* 4) Domains TLD cards */
html[data-theme="light"] .tld-strip div {
  background: linear-gradient(180deg, #ffffff, #edf8f2) !important;
  border-color: rgba(44, 146, 94, .18) !important;
  box-shadow: 0 8px 22px rgba(51, 105, 76, .07) !important;
}

html[data-theme="light"] .tld-strip strong {
  color: #14784a !important;
}

html[data-theme="light"] .tld-strip span {
  color: #60786b !important;
}

/* 5) About legal details */
html[data-theme="light"] .legal-grid {
  background: #ffffff !important;
  border-color: rgba(61, 117, 172, .16) !important;
  box-shadow: 0 13px 32px rgba(49, 82, 115, .07) !important;
}

html[data-theme="light"] .legal-row {
  background: #ffffff !important;
  border-bottom-color: rgba(62, 112, 160, .11) !important;
}

html[data-theme="light"] .legal-row:nth-child(even) {
  background: #f6f9fd !important;
}

html[data-theme="light"] .legal-row span {
  color: #63798e !important;
}

html[data-theme="light"] .legal-row strong {
  color: #193a59 !important;
}

html[data-theme="light"] .legal-copy h3 {
  color: #173650 !important;
}

html[data-theme="light"] .legal-copy p,
html[data-theme="light"] .legal-intro {
  color: #5b7187 !important;
}

/* 6) FAQ: explicit text colors, no inherited white text */
html[data-theme="light"] .faq-item {
  background: #ffffff !important;
  border-color: rgba(65, 121, 176, .15) !important;
  box-shadow: 0 8px 24px rgba(50, 82, 113, .055) !important;
}

html[data-theme="light"] .faq-item:hover,
html[data-theme="light"] .faq-item.open {
  background: #f8fbff !important;
  border-color: rgba(50, 134, 225, .30) !important;
}

html[data-theme="light"] .faq-question,
html[data-theme="light"] .faq-question > span,
html[data-theme="light"] .faq-question > span:first-child {
  color: #193750 !important;
}

html[data-theme="light"] .faq-answer,
html[data-theme="light"] .faq-answer > p {
  color: #566e84 !important;
}

html[data-theme="light"] .faq-chevron {
  color: #2f81dc !important;
}

/* 7) Status/dark specialty panels retain deliberate dark text contrast where necessary */
html[data-theme="light"] .status-global-card strong {
  color: #f5fbff !important;
}

/* 8) Generic dark surfaces not meant to become unreadable */
html[data-theme="light"] .cpu-banner {
  color: #28445f !important;
  background: #edf4fb !important;
  border-color: rgba(65, 120, 174, .16) !important;
}

/* 9) Avoid global h3 override killing service-specific colored titles */
html[data-theme="light"] .red-page .price-card h3 {
  color: #b62e3f !important;
}

html[data-theme="light"] .purple-page .price-card h3 {
  color: #6840ad !important;
}

html[data-theme="light"] .green-page .domain-price-card h3 {
  color: #19784d !important;
}


/* ===== Product CTA + comparison clarity refinement ===== */

/* ---------- NORMAL PRODUCT BUTTONS ---------- */
/* Dark mode keeps the current understated look */
.price-card .order-btn {
  position: relative;
  overflow: hidden;
  transition:
    transform .2s ease,
    color .2s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

/* Light mode: normal products get a proper high-contrast outline button */
html[data-theme="light"] .price-card:not(.popular) .order-btn {
  color: #1b3d5c !important;
  background: #edf4fb !important;
  border: 1px solid rgba(52, 102, 153, .28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    0 4px 12px rgba(42, 74, 105, .045) !important;
}

/* On hover, normal product buttons become dark navy so white text stays readable */
html[data-theme="light"] .price-card:not(.popular) .order-btn:hover {
  color: #ffffff !important;
  background: linear-gradient(180deg, #1f4263 0%, #142f49 100%) !important;
  border-color: #183a59 !important;
  transform: translateY(-2px);
  box-shadow:
    0 8px 18px rgba(22, 52, 80, .19),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

/* ---------- RECOMMENDED / MOST POPULAR ---------- */
/* The recommended product always gets the strong colored CTA */
.price-card.popular .order-btn {
  min-height: 48px;
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: -.01em;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #ff5362 0%, #ff3449 54%, #d91f3a 100%) !important;
  border: 1px solid rgba(255, 85, 101, .75) !important;
  box-shadow:
    0 10px 24px rgba(225, 31, 58, .27),
    0 0 26px rgba(255, 57, 80, .19),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
}

/* subtle highlight moving across recommended CTA */
.price-card.popular .order-btn::after {
  content: "";
  position: absolute;
  top: -90%;
  left: -34%;
  width: 24%;
  height: 280%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transform: rotate(18deg);
  pointer-events: none;
  opacity: 0;
}

.price-card.popular .order-btn:hover {
  color: #ffffff !important;
  background:
    linear-gradient(180deg, #ff6673 0%, #fb3047 52%, #c91834 100%) !important;
  border-color: rgba(255, 99, 114, .92) !important;
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 14px 30px rgba(213, 24, 53, .34),
    0 0 34px rgba(255, 56, 78, .25),
    inset 0 1px 0 rgba(255,255,255,.26) !important;
}

.price-card.popular .order-btn:hover::after {
  opacity: 1;
  animation: popularButtonSweep .58s ease forwards;
}

@keyframes popularButtonSweep {
  from { left: -34%; }
  to { left: 120%; }
}

/* Recommended badge visually matches the CTA */
.price-card .popular-badge,
.price-card .most-popular,
.price-card [class*="popular-badge"] {
  color: #fff !important;
  background: linear-gradient(180deg, #ff5362, #d91f3a) !important;
  border-color: rgba(255, 98, 112, .55) !important;
  box-shadow: 0 6px 16px rgba(216, 30, 56, .22) !important;
}

/* Product-theme versions:
   VPS/Game stay red, Web/Dedicated use purple, Domains uses green. */
.purple-page .price-card.popular .order-btn {
  background: linear-gradient(180deg, #a96cff 0%, #8a4ce5 55%, #6f32c8 100%) !important;
  border-color: rgba(174, 115, 255, .78) !important;
  box-shadow:
    0 10px 24px rgba(119, 56, 204, .27),
    0 0 26px rgba(160, 92, 255, .17),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
}

.purple-page .price-card.popular .order-btn:hover {
  background: linear-gradient(180deg, #b77cff 0%, #914fe9 52%, #6528bc 100%) !important;
}

.purple-page .price-card .popular-badge,
.purple-page .price-card .most-popular {
  background: linear-gradient(180deg, #a96cff, #7131ca) !important;
}

.green-page .price-card.popular .order-btn,
.green-page .domain-price-card.popular .order-btn {
  background: linear-gradient(180deg, #4bdd93 0%, #26bc73 54%, #169555 100%) !important;
  border-color: rgba(79, 221, 147, .76) !important;
  box-shadow:
    0 10px 24px rgba(23, 148, 85, .24),
    0 0 26px rgba(55, 210, 132, .17),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
}

.green-page .price-card.popular .order-btn:hover,
.green-page .domain-price-card.popular .order-btn:hover {
  background: linear-gradient(180deg, #61e5a3 0%, #2bc276 54%, #108748 100%) !important;
}

/* ---------- HOME COMPARISON: stronger column separation ---------- */
html[data-theme="light"] .comparison-table-wrap {
  border: 1px solid rgba(50, 106, 162, .23) !important;
  box-shadow:
    0 16px 38px rgba(48, 81, 113, .09),
    inset 0 1px 0 rgba(255,255,255,.94) !important;
}

html[data-theme="light"] .comparison-table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

/* Characteristic column */
html[data-theme="light"] .comparison-table th:nth-child(1) {
  background: #e5eef8 !important;
  color: #315d89 !important;
}

html[data-theme="light"] .comparison-table td:nth-child(1) {
  background: #f3f6fa !important;
  color: #354c63 !important;
  border-right: 1px solid rgba(54, 104, 153, .18) !important;
}

/* Noxera column: pale blue/green identity */
html[data-theme="light"] .comparison-table th:nth-child(2) {
  background: #dcecff !important;
  color: #1d5d9d !important;
  border-left: 1px solid rgba(54, 116, 180, .19) !important;
  border-right: 1px solid rgba(54, 116, 180, .19) !important;
}

html[data-theme="light"] .comparison-table td:nth-child(2) {
  background: #eaf8f1 !important;
  color: #177744 !important;
  border-left: 1px solid rgba(52, 133, 87, .14) !important;
  border-right: 1px solid rgba(52, 133, 87, .14) !important;
  font-weight: 700;
}

/* Budget column: warmer neutral / red tint */
html[data-theme="light"] .comparison-table th:nth-child(3) {
  background: #f3e9eb !important;
  color: #8b4a54 !important;
}

html[data-theme="light"] .comparison-table td:nth-child(3) {
  background: #fcf6f7 !important;
  color: #4d5865 !important;
}

/* Alternating rows stay distinct without destroying column identity */
html[data-theme="light"] .comparison-table tbody tr:nth-child(even) td:nth-child(1) {
  background: #eaf0f6 !important;
}

html[data-theme="light"] .comparison-table tbody tr:nth-child(even) td:nth-child(2) {
  background: #def3e8 !important;
}

html[data-theme="light"] .comparison-table tbody tr:nth-child(even) td:nth-child(3) {
  background: #f8ecef !important;
}

/* Stronger good/bad visual language */
html[data-theme="light"] .comparison-table .good {
  color: #16864c !important;
  font-weight: 800;
}

html[data-theme="light"] .comparison-table .bad {
  color: #d64050 !important;
  font-weight: 800;
}

/* Small column shadows create physical separation */
html[data-theme="light"] .comparison-table td:nth-child(2),
html[data-theme="light"] .comparison-table th:nth-child(2) {
  box-shadow:
    inset 8px 0 14px -14px rgba(34, 87, 139, .26),
    inset -8px 0 14px -14px rgba(34, 87, 139, .26);
}

@media (prefers-reduced-motion: reduce) {
  .price-card .order-btn,
  .price-card.popular .order-btn::after {
    transition: none !important;
    animation: none !important;
  }
}


/* ===== MOST POPULAR CTA — reference-style button, dark + light ===== */
.price-card.popular .order-btn {
  min-height: 58px !important;
  border-radius: 18px !important;
  padding: 0 24px !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
  color: #fff !important;
  background: linear-gradient(180deg, #ff5665 0%, #f6374e 52%, #df203c 100%) !important;
  border: 1px solid rgba(255, 104, 119, .75) !important;
  box-shadow:
    0 14px 30px rgba(224, 31, 58, .28),
    0 0 34px rgba(255, 74, 95, .18),
    inset 0 1px 0 rgba(255,255,255,.24) !important;
}

/* Explicitly identical readability in both modes */
html[data-theme="light"] .price-card.popular .order-btn,
html[data-theme="dark"] .price-card.popular .order-btn {
  color: #fff !important;
  text-shadow: 0 1px 1px rgba(92, 0, 16, .14);
}

.price-card.popular .order-btn:hover {
  color: #fff !important;
  background: linear-gradient(180deg, #ff6875 0%, #fa3c52 50%, #d91d39 100%) !important;
  transform: translateY(-3px) scale(1.018) !important;
  box-shadow:
    0 18px 38px rgba(217, 29, 57, .34),
    0 0 42px rgba(255, 72, 94, .25),
    inset 0 1px 0 rgba(255,255,255,.28) !important;
}

/* Keep theme identity while preserving the same reference-style shape */
.purple-page .price-card.popular .order-btn {
  background: linear-gradient(180deg, #ad70ff 0%, #934fe9 52%, #7130c9 100%) !important;
  border-color: rgba(184, 128, 255, .78) !important;
}
.purple-page .price-card.popular .order-btn:hover {
  background: linear-gradient(180deg, #bb84ff 0%, #9c59ed 52%, #6828bd 100%) !important;
}
.green-page .price-card.popular .order-btn,
.green-page .domain-price-card.popular .order-btn {
  background: linear-gradient(180deg, #54df98 0%, #2fc17a 52%, #159456 100%) !important;
  border-color: rgba(95, 230, 163, .78) !important;
}
.green-page .price-card.popular .order-btn:hover,
.green-page .domain-price-card.popular .order-btn:hover {
  background: linear-gradient(180deg, #68e7a8 0%, #37ca82 52%, #10864a 100%) !important;
}


/* ===== FINAL OVERRIDE: Most Popular CTA identical in light + dark ===== */
html[data-theme="light"] .price-card.popular .order-btn,
html[data-theme="dark"] .price-card.popular .order-btn,
.price-card.popular .order-btn {
  min-height: 58px !important;
  border-radius: 18px !important;
  padding: 0 24px !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
  color: #ffffff !important;
  background: linear-gradient(180deg, #ff5665 0%, #f6374e 52%, #df203c 100%) !important;
  border: 1px solid rgba(255, 104, 119, .78) !important;
  box-shadow:
    0 14px 30px rgba(224, 31, 58, .28),
    0 0 34px rgba(255, 74, 95, .18),
    inset 0 1px 0 rgba(255,255,255,.24) !important;
  text-shadow: 0 1px 1px rgba(92, 0, 16, .14) !important;
  opacity: 1 !important;
  filter: none !important;
}

html[data-theme="light"] .price-card.popular .order-btn:hover,
html[data-theme="dark"] .price-card.popular .order-btn:hover,
.price-card.popular .order-btn:hover {
  color: #ffffff !important;
  background: linear-gradient(180deg, #ff6875 0%, #fa3c52 50%, #d91d39 100%) !important;
  border-color: rgba(255, 99, 114, .95) !important;
  transform: translateY(-3px) scale(1.018) !important;
  box-shadow:
    0 18px 38px rgba(217, 29, 57, .34),
    0 0 42px rgba(255, 72, 94, .25),
    inset 0 1px 0 rgba(255,255,255,.28) !important;
  opacity: 1 !important;
  filter: none !important;
}

/* Purple product family keeps its own identity, identical in both themes */
html[data-theme="light"] .purple-page .price-card.popular .order-btn,
html[data-theme="dark"] .purple-page .price-card.popular .order-btn,
.purple-page .price-card.popular .order-btn {
  color: #fff !important;
  background: linear-gradient(180deg, #ad70ff 0%, #934fe9 52%, #7130c9 100%) !important;
  border-color: rgba(184, 128, 255, .80) !important;
  box-shadow:
    0 14px 30px rgba(119, 56, 204, .28),
    0 0 34px rgba(160, 92, 255, .18),
    inset 0 1px 0 rgba(255,255,255,.24) !important;
}

/* Green product family keeps its own identity, identical in both themes */
html[data-theme="light"] .green-page .price-card.popular .order-btn,
html[data-theme="dark"] .green-page .price-card.popular .order-btn,
html[data-theme="light"] .green-page .domain-price-card.popular .order-btn,
html[data-theme="dark"] .green-page .domain-price-card.popular .order-btn,
.green-page .price-card.popular .order-btn,
.green-page .domain-price-card.popular .order-btn {
  color: #fff !important;
  background: linear-gradient(180deg, #54df98 0%, #2fc17a 52%, #159456 100%) !important;
  border-color: rgba(95, 230, 163, .80) !important;
  box-shadow:
    0 14px 30px rgba(23, 148, 85, .25),
    0 0 34px rgba(55, 210, 132, .18),
    inset 0 1px 0 rgba(255,255,255,.24) !important;
}


/* ===== Canonical Noxera logo lock ===== */
.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  text-decoration: none !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.brand-text {
  font-weight: 800 !important;
  letter-spacing: -0.045em !important;
  font-size: 22px !important;
}

.brand-blue {
  color: #258cff !important;
}

.brand-tail {
  color: #ffffff !important;
}

.brand-x {
  width: 28px !important;
  height: 28px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 1px !important;
  flex: 0 0 28px !important;
}

.brand-x img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

/* Light theme keeps the X and readable dark tail */
html[data-theme="light"] .brand-tail {
  color: #122c46 !important;
}

html[data-theme="light"] .brand-blue {
  color: #1d7ce8 !important;
}

/* Prevent any generic span/img light-mode rules from killing the X */
html[data-theme="light"] .brand-x,
html[data-theme="light"] .brand-x img,
html[data-theme="dark"] .brand-x,
html[data-theme="dark"] .brand-x img {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  background: transparent !important;
}

@media (max-width: 900px) {
  .brand-text { font-size: 20px !important; }
  .brand-x { width: 25px !important; height: 25px !important; flex-basis: 25px !important; }
}


/* ===== Noxera logo: larger + page accent color ===== */
.brand-text {
  font-size: 26px !important;
}
.brand-x {
  width: 34px !important;
  height: 34px !important;
  flex-basis: 34px !important;
}

/* Default / Home / About / Status / FAQ */
.brand-blue { color: #258cff !important; }

/* Game Hosting + VPS */
.red-page .brand-blue,
body.game-page .brand-blue,
body.vps-page .brand-blue {
  color: #ff4058 !important;
}

/* Domains */
.green-page .brand-blue,
body.domains-page .brand-blue {
  color: #35d98a !important;
}

/* Web Hosting + Dedicated */
.purple-page .brand-blue,
body.web-page .brand-blue,
body.dedicated-page .brand-blue {
  color: #a56cff !important;
}

/* Same accent in light mode, no generic light rule may overwrite it */
html[data-theme="light"] .brand-blue { color: #258cff !important; }
html[data-theme="light"] .red-page .brand-blue,
html[data-theme="light"] body.game-page .brand-blue,
html[data-theme="light"] body.vps-page .brand-blue { color: #ef334f !important; }
html[data-theme="light"] .green-page .brand-blue,
html[data-theme="light"] body.domains-page .brand-blue { color: #18b96b !important; }
html[data-theme="light"] .purple-page .brand-blue,
html[data-theme="light"] body.web-page .brand-blue,
html[data-theme="light"] body.dedicated-page .brand-blue { color: #8749dc !important; }

@media (max-width: 900px) {
  .brand-text { font-size: 23px !important; }
  .brand-x { width: 30px !important; height: 30px !important; flex-basis: 30px !important; }
}


/* ===== Definitive page-color logo fix =====
   Target the class on BODY directly. Previous descendant selectors could not
   match because .red-page/page class lived on body itself. */
body.page-game-hosting .brand-blue,
body.page-vps .brand-blue {
  color: #ff4058 !important;
}
body.page-domains .brand-blue {
  color: #35d98a !important;
}
body.page-web-hosting .brand-blue,
body.page-dedicated .brand-blue {
  color: #a56cff !important;
}

html[data-theme="light"] body.page-game-hosting .brand-blue,
html[data-theme="light"] body.page-vps .brand-blue {
  color: #ef334f !important;
}
html[data-theme="light"] body.page-domains .brand-blue {
  color: #18b96b !important;
}
html[data-theme="light"] body.page-web-hosting .brand-blue,
html[data-theme="light"] body.page-dedicated .brand-blue {
  color: #8749dc !important;
}


/* =========================================================
   MOST POPULAR — preserve each product family's accent color
   in BOTH dark and light themes.
   ========================================================= */

/* Purple family: Web Hosting + Dedicated */
body.page-web-hosting .pricing-card.popular,
body.page-dedicated .pricing-card.popular,
body.page-web-hosting .plan-card.popular,
body.page-dedicated .plan-card.popular,
body.page-web-hosting .product-card.popular,
body.page-dedicated .product-card.popular,
body.page-web-hosting .pricing-card.most-popular,
body.page-dedicated .pricing-card.most-popular {
  border-color: rgba(168, 85, 247, .92) !important;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, .20),
    0 14px 42px rgba(126, 34, 206, .20) !important;
}

html[data-theme="light"] body.page-web-hosting .pricing-card.popular,
html[data-theme="light"] body.page-dedicated .pricing-card.popular,
html[data-theme="light"] body.page-web-hosting .plan-card.popular,
html[data-theme="light"] body.page-dedicated .plan-card.popular,
html[data-theme="light"] body.page-web-hosting .product-card.popular,
html[data-theme="light"] body.page-dedicated .product-card.popular,
html[data-theme="light"] body.page-web-hosting .pricing-card.most-popular,
html[data-theme="light"] body.page-dedicated .pricing-card.most-popular {
  border-color: rgba(147, 51, 234, .72) !important;
  box-shadow:
    0 0 0 1px rgba(147, 51, 234, .14),
    0 14px 38px rgba(147, 51, 234, .14) !important;
}

/* Catch the actual recommended/popular cards used by generated product grids. */
body.page-web-hosting [class*="card"].popular,
body.page-dedicated [class*="card"].popular,
body.page-web-hosting [class*="card"].recommended,
body.page-dedicated [class*="card"].recommended {
  border-color: rgba(168, 85, 247, .92) !important;
}
html[data-theme="light"] body.page-web-hosting [class*="card"].popular,
html[data-theme="light"] body.page-dedicated [class*="card"].popular,
html[data-theme="light"] body.page-web-hosting [class*="card"].recommended,
html[data-theme="light"] body.page-dedicated [class*="card"].recommended {
  border-color: rgba(147, 51, 234, .72) !important;
  box-shadow:
    0 0 0 1px rgba(147, 51, 234, .14),
    0 14px 38px rgba(147, 51, 234, .14) !important;
}


/* =========================================================
   DOMAINS — contrast + button visibility + hover lift
   ========================================================= */

/* Domain/TLD cards lift like the other product cards */
body.page-domains .domain-card,
body.page-domains .tld-card,
body.page-domains .domain-price-card {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease !important;
  will-change: transform;
}
body.page-domains .domain-card:hover,
body.page-domains .tld-card:hover,
body.page-domains .domain-price-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(52, 211, 153, .58) !important;
  box-shadow: 0 18px 44px rgba(16, 185, 129, .14) !important;
}

/* Generic domain product cards used in this build */
body.page-domains .pricing-card:hover,
body.page-domains .service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 211, 153, .58) !important;
  box-shadow: 0 18px 44px rgba(16, 185, 129, .14) !important;
}

/* Green CTA buttons must remain readable in BOTH themes */
body.page-domains a[class*="btn"],
body.page-domains button[class*="btn"],
body.page-domains .domain-card a,
body.page-domains .tld-card a,
body.page-domains .domain-price-card a {
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease !important;
}

body.page-domains .btn-primary,
body.page-domains .domain-btn,
body.page-domains .domain-card .btn,
body.page-domains .tld-card .btn,
body.page-domains .domain-price-card .btn {
  background: linear-gradient(180deg, #39df91 0%, #13b96c 100%) !important;
  border-color: rgba(35, 211, 132, .72) !important;
  color: #062819 !important;
  text-shadow: none !important;
  box-shadow: 0 10px 26px rgba(16, 185, 129, .24) !important;
  opacity: 1 !important;
}

body.page-domains .btn-primary:hover,
body.page-domains .domain-btn:hover,
body.page-domains .domain-card .btn:hover,
body.page-domains .tld-card .btn:hover,
body.page-domains .domain-price-card .btn:hover {
  transform: translateY(-2px) !important;
  filter: brightness(.94) saturate(1.08) !important;
  color: #041d12 !important;
  box-shadow: 0 14px 32px rgba(16, 185, 129, .32) !important;
}

/* Light mode: no washed-out white text on pale green buttons */
html[data-theme="light"] body.page-domains .btn-primary,
html[data-theme="light"] body.page-domains .domain-btn,
html[data-theme="light"] body.page-domains .domain-card .btn,
html[data-theme="light"] body.page-domains .tld-card .btn,
html[data-theme="light"] body.page-domains .domain-price-card .btn {
  background: linear-gradient(180deg, #34d88a 0%, #12b66a 100%) !important;
  color: #052b1a !important;
  border-color: rgba(18, 182, 106, .58) !important;
}

/* Transfer feature list on the right: readable instead of grey soup */
body.page-domains .transfer-card table,
body.page-domains .transfer-card .feature-list,
body.page-domains .domain-transfer table,
body.page-domains .domain-transfer .feature-list {
  color: var(--text, #eaf7f1) !important;
}
html[data-theme="light"] body.page-domains .transfer-card table,
html[data-theme="light"] body.page-domains .transfer-card .feature-list,
html[data-theme="light"] body.page-domains .domain-transfer table,
html[data-theme="light"] body.page-domains .domain-transfer .feature-list {
  background: rgba(255,255,255,.82) !important;
  color: #17324a !important;
}

/* Broad fix for the actual right-side transfer panel and domain buttons */
html[data-theme="light"] body.page-domains .transfer-panel,
html[data-theme="light"] body.page-domains .domain-features,
html[data-theme="light"] body.page-domains [class*="transfer"] [class*="list"] {
  background: rgba(255,255,255,.88) !important;
  color: #17324a !important;
}
html[data-theme="light"] body.page-domains [class*="transfer"] strong,
html[data-theme="light"] body.page-domains [class*="transfer"] span,
html[data-theme="light"] body.page-domains [class*="transfer"] li {
  color: #17324a !important;
  opacity: 1 !important;
}

/* Disabled/coming-soon remains visibly disabled, but readable */
body.page-domains button:disabled,
body.page-domains .disabled,
body.page-domains [aria-disabled="true"] {
  opacity: .58 !important;
  color: #52687a !important;
}


/* =========================================================
   DOMAINS FINAL POLISH
   Match Dedicated-style product buttons in both themes
   + fix transfer panel contrast in Light Mode
   ========================================================= */

/* ---------- DOMAIN PRODUCT CARDS ---------- */
body.page-domains .domain-price-card {
  transition:
    transform .22s cubic-bezier(.2,.8,.2,1),
    border-color .22s ease,
    box-shadow .22s ease !important;
}

body.page-domains .domain-price-card:hover {
  transform: translateY(-6px) !important;
}

/* ---------- NORMAL DOMAIN BUTTONS ----------
   Same logic as Dedicated:
   subtle/outlined normally, stronger on hover. */
body.page-domains .domain-price-card:not(.popular) .order-btn:not(:disabled) {
  color: #f1fff8 !important;
  background: rgba(38, 161, 96, .09) !important;
  border: 1px solid rgba(74, 213, 140, .30) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025) !important;
  opacity: 1 !important;
}

body.page-domains .domain-price-card:not(.popular) .order-btn:not(:disabled):hover {
  color: #062819 !important;
  background: linear-gradient(180deg, #4cdf98 0%, #20b96e 100%) !important;
  border-color: rgba(87, 230, 160, .72) !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 10px 24px rgba(16, 185, 129, .25),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
}

/* Light mode normal domain buttons: readable outline, then dark-green hover */
html[data-theme="light"] body.page-domains .domain-price-card:not(.popular) .order-btn:not(:disabled) {
  color: #176440 !important;
  background: #f4fbf7 !important;
  border: 1px solid rgba(37, 145, 91, .25) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 4px 12px rgba(31, 112, 72, .04) !important;
}

html[data-theme="light"] body.page-domains .domain-price-card:not(.popular) .order-btn:not(:disabled):hover {
  color: #ffffff !important;
  background: linear-gradient(180deg, #1b7d50 0%, #105f3b 100%) !important;
  border-color: rgba(15, 104, 61, .70) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(16, 95, 59, .20) !important;
}

/* ---------- FEATURED / .RO ----------
   Equivalent to Most Popular on Dedicated:
   full green CTA in both Dark + Light. */
body.page-domains .domain-price-card.popular {
  border-color: rgba(65, 218, 139, .78) !important;
  box-shadow:
    0 0 0 1px rgba(65, 218, 139, .10),
    0 16px 40px rgba(19, 150, 87, .16) !important;
}

body.page-domains .domain-price-card.popular .order-btn {
  min-height: 48px !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  background: linear-gradient(180deg, #4de29a 0%, #25bf76 52%, #159657 100%) !important;
  border: 1px solid rgba(93, 232, 166, .80) !important;
  box-shadow:
    0 12px 28px rgba(17, 151, 87, .27),
    0 0 30px rgba(55, 214, 137, .18),
    inset 0 1px 0 rgba(255,255,255,.23) !important;
  opacity: 1 !important;
}

html[data-theme="light"] body.page-domains .domain-price-card.popular .order-btn {
  color: #ffffff !important;
  background: linear-gradient(180deg, #4de29a 0%, #25bf76 52%, #159657 100%) !important;
  border-color: rgba(65, 194, 128, .75) !important;
  box-shadow:
    0 12px 28px rgba(17, 151, 87, .22),
    0 0 28px rgba(55, 214, 137, .14),
    inset 0 1px 0 rgba(255,255,255,.28) !important;
}

body.page-domains .domain-price-card.popular .order-btn:hover,
html[data-theme="light"] body.page-domains .domain-price-card.popular .order-btn:hover {
  color: #ffffff !important;
  background: linear-gradient(180deg, #63e8a9 0%, #2ac57c 52%, #10884b 100%) !important;
  transform: translateY(-3px) scale(1.012) !important;
  box-shadow:
    0 16px 34px rgba(16, 143, 80, .30),
    0 0 36px rgba(55, 214, 137, .22),
    inset 0 1px 0 rgba(255,255,255,.28) !important;
}

/* ---------- COMING SOON ---------- */
body.page-domains .domain-price-card .order-btn:disabled {
  color: #71877a !important;
  background: rgba(67, 124, 91, .08) !important;
  border-color: rgba(70, 128, 94, .14) !important;
  box-shadow: none !important;
  opacity: .62 !important;
}

html[data-theme="light"] body.page-domains .domain-price-card .order-btn:disabled {
  color: #748579 !important;
  background: #eef5f0 !important;
  border-color: rgba(80, 128, 99, .15) !important;
}

/* ---------- TRANSFER SECTION ----------
   The right panel was staying charcoal in Light Mode. */
html[data-theme="light"] body.page-domains .domain-transfer-section {
  background:
    radial-gradient(circle at 78% 35%, rgba(46, 196, 123, .08), transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%) !important;
  border-color: rgba(48, 151, 99, .18) !important;
  box-shadow:
    0 16px 38px rgba(42, 95, 67, .07),
    inset 0 1px 0 rgba(255,255,255,.90) !important;
}

html[data-theme="light"] body.page-domains .domain-transfer-copy h2 {
  color: #12334b !important;
}

html[data-theme="light"] body.page-domains .domain-transfer-copy p {
  color: #5c7283 !important;
}

html[data-theme="light"] body.page-domains .domain-transfer-card {
  background: #ffffff !important;
  border: 1px solid rgba(49, 119, 83, .17) !important;
  box-shadow:
    0 12px 28px rgba(36, 84, 59, .08),
    inset 0 1px 0 rgba(255,255,255,.94) !important;
}

html[data-theme="light"] body.page-domains .domain-transfer-row {
  background: #ffffff !important;
  border-bottom-color: rgba(53, 110, 78, .10) !important;
}

html[data-theme="light"] body.page-domains .domain-transfer-row:nth-child(even) {
  background: #f3f9f5 !important;
}

html[data-theme="light"] body.page-domains .domain-transfer-row span {
  color: #526b60 !important;
  opacity: 1 !important;
}

html[data-theme="light"] body.page-domains .domain-transfer-row strong {
  color: #154a34 !important;
  opacity: 1 !important;
}

/* Transfer CTA stays vivid and readable in both modes */
body.page-domains .domain-transfer-copy .btn-primary,
html[data-theme="light"] body.page-domains .domain-transfer-copy .btn-primary {
  color: #ffffff !important;
  background: linear-gradient(180deg, #43dc93 0%, #19b86a 100%) !important;
  border-color: rgba(52, 202, 126, .68) !important;
  box-shadow: 0 10px 24px rgba(18, 154, 87, .22) !important;
}

body.page-domains .domain-transfer-copy .btn-primary:hover,
html[data-theme="light"] body.page-domains .domain-transfer-copy .btn-primary:hover {
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  background: linear-gradient(180deg, #57e4a0 0%, #1db66b 100%) !important;
  box-shadow: 0 14px 30px rgba(18, 154, 87, .29) !important;
}


/* =========================================================
   NOXERA LOCATION SYNC — 4 canonical regions
   Frankfurt · Gravelines · Bucharest · Amsterdam
   ========================================================= */
body.page-status .region-grid,
body.page-status .regions-grid,
body.page-status .status-regions-grid,
body.page-status .location-grid,
body.page-status .locations-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 1100px) {
  body.page-status .region-grid,
  body.page-status .regions-grid,
  body.page-status .status-regions-grid,
  body.page-status .location-grid,
  body.page-status .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 680px) {
  body.page-status .region-grid,
  body.page-status .regions-grid,
  body.page-status .status-regions-grid,
  body.page-status .location-grid,
  body.page-status .locations-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===== STATUS canonical sections hotfix ===== */
body.page-status .region-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

@media (max-width: 1100px) {
  body.page-status .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  body.page-status .region-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===== NOXERA floating actions consistency fix ===== */
.floating-actions { display:flex !important; visibility:visible !important; opacity:1 !important; }
.floating-actions .floating-btn { display:grid !important; visibility:visible !important; opacity:1 !important; }
.floating-actions .discord-logo { width:25px !important; height:20px !important; display:block !important; color:#fff !important; fill:currentColor !important; }


/* ===== Discord floating icon visibility fix ===== */
.floating-actions .discord-float,
.floating-actions .discord-float:link,
.floating-actions .discord-float:visited,
.floating-actions .discord-float:hover,
.floating-actions .discord-float:focus,
.floating-actions .discord-float:focus-visible,
.floating-actions .discord-float:active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #5865F2 0%, #7B61FF 100%) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.floating-actions .discord-float .discord-logo,
.floating-actions .discord-float:link .discord-logo,
.floating-actions .discord-float:visited .discord-logo,
.floating-actions .discord-float:hover .discord-logo,
.floating-actions .discord-float:focus .discord-logo,
.floating-actions .discord-float:focus-visible .discord-logo,
.floating-actions .discord-float:active .discord-logo {
  color: #ffffff !important;
  fill: #ffffff !important;
  opacity: 1 !important;
}

.floating-actions .discord-float:hover,
.floating-actions .discord-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.38) !important;
}

.floating-actions .discord-float:active {
  transform: translateY(0) scale(0.97);
}


/* =========================================================
   NOXERA MOBILE NAVBAR — canonical layout
   Compact header + dropdown menu, no giant empty header
   ========================================================= */
@media (max-width: 900px) {
  :root {
    --promo-sticky-height: 44px;
  }

  .promo-bar {
    min-height: var(--promo-sticky-height) !important;
    height: auto !important;
    padding: 8px 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.25 !important;
  }

  .navbar,
  .red-page .navbar,
  .purple-page .navbar,
  .green-page .navbar,
  .blue-unified-theme .navbar,
  html[data-theme="light"] .navbar,
  html[data-theme="dark"] .navbar {
    position: sticky !important;
    top: var(--promo-sticky-height) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 44px 44px !important;
    grid-template-rows: 68px !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 68px !important;
    height: 68px !important;
    padding: 0 14px !important;
    column-gap: 8px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    z-index: 4990 !important;
  }

  .navbar > .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    margin: 0 !important;
    font-size: clamp(22px, 7vw, 27px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .navbar > .brand .brand-x,
  .navbar > .brand img {
    max-height: 34px !important;
  }

  .navbar > .theme-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
  }

  .navbar > .nav-toggle {
    grid-column: 3 !important;
    grid-row: 1 !important;
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    justify-self: end !important;
    align-self: center !important;
    width: 42px !important;
    height: 42px !important;
    padding: 8px !important;
    margin: 0 !important;
    border: 1px solid rgba(129, 178, 255, .24) !important;
    border-radius: 12px !important;
    background: rgba(12, 31, 55, .62) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    cursor: pointer !important;
  }

  .navbar > .nav-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    margin: 2.5px 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    transition: transform .22s ease, opacity .22s ease !important;
  }

  .navbar > .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .navbar > .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0 !important;
  }

  .navbar > .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .navbar > .btn-login {
    display: none !important;
  }

  .navbar > .nav-links {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100vh - 140px) !important;
    overflow-y: auto !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 5px !important;
    padding: 10px !important;
    margin: 0 !important;
    border: 1px solid rgba(93, 157, 255, .24) !important;
    border-radius: 18px !important;
    background: rgba(5, 20, 38, .96) !important;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .38) !important;
    backdrop-filter: blur(22px) saturate(135%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(135%) !important;
    z-index: 5100 !important;
  }

  .navbar > .nav-links.open {
    display: flex !important;
  }

  .navbar > .nav-links a,
  .navbar > .nav-links a:hover,
  .navbar > .nav-links a.active,
  .navbar > .nav-links a[aria-current="page"] {
    width: 100% !important;
    min-height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 14px !important;
    margin: 0 !important;
    border-radius: 11px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    transform: none !important;
  }

  .navbar > .nav-links a::before,
  .navbar > .nav-links a::after {
    display: none !important;
  }

  .navbar > .nav-links a.active,
  .navbar > .nav-links a[aria-current="page"] {
    background: rgba(39, 132, 255, .18) !important;
    border: 1px solid rgba(69, 158, 255, .58) !important;
    box-shadow: inset 3px 0 0 #45a1ff !important;
  }

  html[data-theme="light"] .navbar > .nav-toggle {
    background: rgba(224, 238, 251, .94) !important;
    border-color: rgba(38, 91, 143, .20) !important;
  }

  html[data-theme="light"] .navbar > .nav-toggle span {
    background: #173452 !important;
  }

  html[data-theme="light"] .navbar > .nav-links {
    background: rgba(247, 251, 255, .98) !important;
    border-color: rgba(30, 92, 151, .18) !important;
    box-shadow: 0 22px 55px rgba(17, 48, 78, .18) !important;
  }

  html[data-theme="light"] .navbar > .nav-links a {
    color: #173452 !important;
  }
}

@media (max-width: 420px) {
  .navbar,
  .red-page .navbar,
  .purple-page .navbar,
  .green-page .navbar,
  .blue-unified-theme .navbar {
    grid-template-columns: minmax(0, 1fr) 40px 40px !important;
    padding: 0 10px !important;
    column-gap: 6px !important;
  }

  .navbar > .brand {
    font-size: 22px !important;
  }

  .navbar > .theme-toggle,
  .navbar > .nav-toggle {
    width: 40px !important;
    height: 40px !important;
  }

  .navbar > .nav-links {
    left: 8px !important;
    right: 8px !important;
  }
}


/* =========================================================
   NOXERA PRODUCT DETAIL MODAL — 3D CARD
   Exact accent is injected by JS for each service.
   ========================================================= */
:root {
  --modal-accent: #3d95ff;
  --modal-accent-2: #7bc2ff;
  --modal-accent-rgb: 61, 149, 255;
}

.price-card,
.domain-price-card {
  cursor: pointer;
  position: relative;
  isolation: isolate;
}

.card-click-cue svg {
  width: 38px;
  height: 38px;
  overflow: visible;
}

.card-click-cue .cue-pointer {
  fill: var(--modal-accent-2);
  stroke: rgba(255,255,255,.88);
  stroke-width: 1.3;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(var(--modal-accent-rgb), .28));
}

.card-click-cue .cue-ray {
  fill: none;
  stroke: var(--modal-accent-2);
  stroke-width: 3.2;
  stroke-linecap: round;
  opacity: .95;
}

.price-card:hover::before,
.domain-price-card:hover::before,
.price-card:focus-visible::before,
.domain-price-card:focus-visible::before {
  opacity: 1;
  background: rgba(3, 10, 20, .34);
  -webkit-backdrop-filter: blur(5px) saturate(82%);
  backdrop-filter: blur(5px) saturate(82%);
}

.price-card:hover .card-click-cue,
.domain-price-card:hover .card-click-cue,
.price-card:focus-visible .card-click-cue,
.domain-price-card:focus-visible html[data-theme="light"] .price-card::before,
html[data-theme="light"] .domain-price-card::before {
  background: rgba(235, 244, 252, .10);
}

html[data-theme="light"] .price-card:hover::before,
html[data-theme="light"] .domain-price-card:hover::before,
html[data-theme="light"] .price-card:focus-visible::before,
html[data-theme="light"] .domain-price-card:focus-visible::before {
  background: rgba(235, 244, 252, .34);
}

html[data-theme="light"] .product-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 30px);
  pointer-events: none;
  visibility: hidden;
  perspective: 1800px;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 55% 42%, rgba(var(--modal-accent-rgb), .15), transparent 34%),
    rgba(1, 8, 18, .80);
  backdrop-filter: blur(17px) saturate(118%);
  -webkit-backdrop-filter: blur(17px) saturate(118%);
  opacity: 0;
  transition: opacity .28s ease;
}

.product-modal__panel {
  position: relative;
  z-index: 1;
  width: min(990px, 100%);
  max-height: min(900px, calc(100vh - 30px));
  overflow: auto;
  padding: clamp(24px, 3.6vw, 40px);
  border: 1px solid rgba(var(--modal-accent-rgb), .34);
  border-radius: 30px;
  background:
    linear-gradient(115deg, rgba(var(--modal-accent-rgb), .055), transparent 30%),
    linear-gradient(180deg, rgba(10, 29, 52, .995), rgba(4, 15, 29, .997));
  box-shadow:
    34px 34px 80px rgba(0,0,0,.52),
    -8px 0 42px rgba(var(--modal-accent-rgb), .10),
    0 0 0 1px rgba(var(--modal-accent-rgb), .07) inset,
    inset 0 1px 0 rgba(255,255,255,.055);
  opacity: 0;
  transform:
    translateY(36px)
    translateX(18px)
    rotateX(5deg)
    rotateY(-16deg)
    scale(.90);
  transform-origin: 50% 55%;
  transition:
    opacity .26s ease,
    transform .62s cubic-bezier(.16,.9,.2,1),
    box-shadow .4s ease;
  backface-visibility: hidden;
}

/* fake 3D side thickness */
.product-modal__panel::before {
  content: "";
  position: absolute;
  top: 24px;
  right: -12px;
  bottom: 24px;
  width: 18px;
  z-index: -1;
  border-radius: 0 22px 22px 0;
  background:
    linear-gradient(180deg,
      rgba(var(--modal-accent-rgb), .28),
      rgba(var(--modal-accent-rgb), .06) 45%,
      rgba(0,0,0,.28));
  transform: skewY(-5deg);
  filter: blur(.2px);
  opacity: .95;
  pointer-events: none;
}

/* glass reflection across the tilted card */
.product-modal__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      118deg,
      rgba(255,255,255,.08) 0%,
      rgba(255,255,255,.018) 19%,
      transparent 34%,
      transparent 72%,
      rgba(var(--modal-accent-rgb), .045) 100%
    );
  mix-blend-mode: screen;
}

.product-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.product-modal.is-open .product-modal__backdrop {
  opacity: 1;
}

.product-modal.is-open .product-modal__panel {
  opacity: 1;
  transform:
    translateY(0)
    translateX(0)
    rotateX(1.5deg)
    rotateY(-5deg)
    scale(1);
  animation: card3DSettle .72s cubic-bezier(.16,.9,.2,1) both;
}

.product-modal.is-closing {
  visibility: visible;
}

.product-modal.is-closing .product-modal__panel {
  opacity: 0;
  transform:
    translateY(20px)
    translateX(12px)
    rotateX(3deg)
    rotateY(-11deg)
    scale(.95);
}

@keyframes card3DSettle {
  0% {
    opacity: 0;
    transform: translateY(42px) translateX(24px) rotateX(7deg) rotateY(-18deg) scale(.88);
    filter: blur(2px) brightness(.78);
  }
  62% {
    opacity: 1;
    transform: translateY(-4px) translateX(-2px) rotateX(1deg) rotateY(-3.5deg) scale(1.015);
    filter: blur(0) brightness(1.05);
  }
  82% {
    transform: translateY(1px) translateX(0) rotateX(1.8deg) rotateY(-5.8deg) scale(.998);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotateX(1.5deg) rotateY(-5deg) scale(1);
    filter: none;
  }
}


.product-modal__popular {
  position: sticky;
  top: 0;
  z-index: 12;
  width: max-content;
  max-width: calc(100% - 120px);
  min-height: 34px;
  margin: -40px auto 12px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 0 0 13px 13px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--modal-accent), var(--modal-accent-2));
  border: 1px solid rgba(255,255,255,.18);
  border-top: 0;
  box-shadow:
    0 9px 24px rgba(var(--modal-accent-rgb), .24),
    0 0 25px rgba(var(--modal-accent-rgb), .13),
    inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(.88);
  transition:
    opacity .25s ease .20s,
    transform .38s cubic-bezier(.18,.9,.22,1) .20s,
    visibility 0s linear .58s;
}

.product-modal__popular.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity .25s ease .20s,
    transform .38s cubic-bezier(.18,.9,.22,1) .20s,
    visibility 0s;
}

.product-modal__popular-star {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  filter: drop-shadow(0 0 5px rgba(255,255,255,.30));
}

html[data-theme="light"] .product-modal__popular {
  color: #fff;
}

@media (max-width: 620px) {
  .product-modal__popular {
    min-height: 31px;
    margin-top: -20px;
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 9px;
    border-radius: 0 0 11px 11px;
  }
}

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

.product-modal__close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(var(--modal-accent-rgb), .28);
  background: rgba(var(--modal-accent-rgb), .06);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.product-modal__close:hover {
  transform: scale(1.06);
  background: rgba(var(--modal-accent-rgb), .14);
  box-shadow: 0 0 24px rgba(var(--modal-accent-rgb), .16);
}

.product-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--modal-accent-2);
  background: rgba(var(--modal-accent-rgb), .11);
  border: 1px solid rgba(var(--modal-accent-rgb), .27);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.product-modal__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
}

.product-modal__panel h2 {
  margin: 0 0 9px;
  font-size: clamp(32px, 6vw, 52px);
  line-height: .96;
  letter-spacing: -.045em;
  color: #fff;
}

.product-modal__intro {
  margin: 0;
  max-width: 660px;
  color: #9fb3ca;
  line-height: 1.72;
}

.product-modal__price {
  white-space: nowrap;
  font-size: clamp(27px, 4.3vw, 41px);
  font-weight: 950;
  color: var(--modal-accent-2);
  letter-spacing: -.04em;
  text-align: right;
  text-shadow: 0 0 28px rgba(var(--modal-accent-rgb), .15);
}

.product-modal__quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 25px;
}

.product-modal__quick-item {
  min-height: 49px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border-radius: 13px;
  border: 1px solid rgba(var(--modal-accent-rgb), .12);
  background: rgba(var(--modal-accent-rgb), .025);
  color: #d7e4f3;
  font-size: 12px;
  line-height: 1.35;
}

.product-modal__check {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: var(--modal-accent-2);
  background: rgba(var(--modal-accent-rgb), .14);
  font-size: 11px;
  font-weight: 900;
}

.product-modal__divider {
  height: 1px;
  margin: 26px 0 22px;
  background: linear-gradient(90deg, transparent, rgba(var(--modal-accent-rgb), .31), transparent);
}

.product-modal__section-stack {
  display: grid;
  gap: 18px;
}

.product-modal__detail-section {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(var(--modal-accent-rgb), .12);
  background:
    linear-gradient(115deg, rgba(var(--modal-accent-rgb), .045), rgba(255,255,255,.014));
}

.product-modal__section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
}

.product-modal__section-heading h3 {
  margin: 0;
  color: #f3f8ff;
  font-size: 15px;
}

.product-modal__section-heading span {
  color: var(--modal-accent-2);
  opacity: .78;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-modal__detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.product-modal__detail-row {
  min-height: 50px;
  display: grid;
  grid-template-columns: minmax(110px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(var(--modal-accent-rgb), .08);
}

.product-modal__detail-row:nth-child(-n+2) {
  border-top-color: transparent;
}

.product-modal__detail-label {
  color: #71879f;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.product-modal__detail-value {
  color: #dce8f5;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
}

.product-modal__note {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 12px 18px;
  align-items: start;
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(var(--modal-accent-rgb), .15);
  background: rgba(var(--modal-accent-rgb), .052);
}

.product-modal__note strong {
  color: var(--modal-accent-2);
  font-size: 12px;
}

.product-modal__note span {
  color: #8297ad;
  font-size: 11px;
  line-height: 1.55;
}

.product-modal__cta {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--modal-accent), var(--modal-accent-2));
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 15px 38px rgba(var(--modal-accent-rgb), .24),
    0 0 26px rgba(var(--modal-accent-rgb), .08);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.product-modal__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 19px 48px rgba(var(--modal-accent-rgb), .34),
    0 0 32px rgba(var(--modal-accent-rgb), .12);
}

body.product-modal-open {
  overflow: hidden;
}

/* Light mode keeps the same service accent */
html[data-theme="light"] .product-modal__backdrop {
  background:
    radial-gradient(circle at 55% 42%, rgba(var(--modal-accent-rgb), .13), transparent 34%),
    rgba(17, 35, 54, .42);
}

html[data-theme="light"] .product-modal__panel {
  background:
    linear-gradient(115deg, rgba(var(--modal-accent-rgb), .075), transparent 28%),
    linear-gradient(180deg, rgba(252,254,255,.997), rgba(239,247,255,.997));
  border-color: rgba(var(--modal-accent-rgb), .30);
  box-shadow:
    32px 34px 72px rgba(23,55,87,.23),
    -6px 0 34px rgba(var(--modal-accent-rgb), .11);
}

html[data-theme="light"] .product-modal__panel h2,
html[data-theme="light"] .product-modal__section-heading h3,
html[data-theme="light"] .product-modal__detail-value {
  color: #10283f;
}

html[data-theme="light"] .product-modal__price {
  color: var(--modal-accent);
}

html[data-theme="light"] .product-modal__intro,
html[data-theme="light"] .product-modal__note span {
  color: #587087;
}

html[data-theme="light"] .product-modal__quick-item,
html[data-theme="light"] .product-modal__detail-section {
  color: #29445e;
  background: rgba(255,255,255,.70);
  border-color: rgba(var(--modal-accent-rgb), .14);
}

html[data-theme="light"] .product-modal__close {
  color: #173b5e;
}

@media (max-width: 800px) {
  .product-modal__hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-modal__price {
    text-align: left;
  }

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

  .product-modal__detail-grid {
    grid-template-columns: 1fr;
  }

  .product-modal__detail-row:nth-child(2) {
    border-top-color: rgba(var(--modal-accent-rgb), .08);
  }
}

@media (max-width: 620px) {
.product-modal {
    align-items: end;
    padding: 7px;
    perspective: 1200px;
  }

  .product-modal__panel {
    width: 100%;
    max-height: 91vh;
    border-radius: 24px 24px 16px 16px;
    padding: 20px 15px 16px;
    transform: translateY(58px) rotateX(4deg) rotateY(-8deg) scale(.92);
  }

  .product-modal.is-open .product-modal__panel {
    transform: translateY(0) rotateX(.7deg) rotateY(-2.4deg) scale(1);
    animation: card3DSettleMobile .64s cubic-bezier(.16,.9,.2,1) both;
  }

  .product-modal__panel::before {
    right: -7px;
    width: 10px;
    top: 20px;
    bottom: 20px;
  }

  .product-modal__panel h2 {
    font-size: 34px;
  }

  .product-modal__quick {
    grid-template-columns: 1fr;
  }

  .product-modal__detail-section {
    padding: 14px;
  }

  .product-modal__detail-row {
    grid-template-columns: 105px minmax(0,1fr);
    gap: 10px;
  }

  .product-modal__note {
    grid-template-columns: 1fr;
  }

  .product-modal__cta {
    position: sticky;
    bottom: 0;
  }
}

@keyframes card3DSettleMobile {
  0% {
    opacity: 0;
    transform: translateY(62px) rotateX(5deg) rotateY(-10deg) scale(.90);
    filter: blur(2px) brightness(.8);
  }
  65% {
    opacity: 1;
    transform: translateY(-4px) rotateX(.5deg) rotateY(-1.5deg) scale(1.014);
    filter: blur(0) brightness(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(.7deg) rotateY(-2.4deg) scale(1);
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-modal__backdrop,
  .product-modal__panel {
    transition: none !important;
    animation: none !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .price-card::before,
  .domain-price-card::before,
  }


/* ===== Noxera Compare + Checkout ===== */
body.modal-lock { overflow: hidden; }

.plan-compare-toggle {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(130,160,190,.18);
  border-radius: 9px;
  background: rgba(7,17,29,.58);
  color: #91a7bb;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: .2s ease;
}
.plan-compare-toggle:hover,
.plan-compare-toggle.is-active {
  color: #fff;
  border-color: rgba(var(--modal-accent-rgb, 61,149,255),.4);
  background: rgba(var(--modal-accent-rgb, 61,149,255),.12);
}
.plan-compare-toggle__box {
  width: 17px; height: 17px;
  display:grid; place-items:center;
  border-radius:5px;
  border:1px solid currentColor;
  font-size:13px; line-height:1;
}
.plan-compare-toggle.is-active .plan-compare-toggle__box::before { content:"✓"; }
.plan-compare-toggle.is-active .plan-compare-toggle__box { font-size:0; }

.compare-bar {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1700;
  width: min(900px, calc(100% - 28px));
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 26px) scale(.97);
  transition: .28s cubic-bezier(.2,.9,.2,1);
}
.compare-bar.is-visible {
  opacity:1; visibility:visible;
  transform:translate(-50%,0) scale(1);
}
.compare-bar__inner {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:12px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;
  background:rgba(5,13,24,.88);
  backdrop-filter:blur(18px);
  box-shadow:0 18px 55px rgba(0,0,0,.32);
}
.compare-bar__items { display:flex; flex-wrap:wrap; gap:8px; min-width:0; }
.compare-chip {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 9px 8px 11px;
  border-radius:10px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.07);
  color:#d8e4ef;
  font-size:11px;
}
.compare-chip button {
  width:20px;height:20px;border:0;border-radius:6px;
  background:rgba(255,255,255,.06);color:#8ea3b7;cursor:pointer;
}
.compare-bar__actions { display:flex; align-items:center; gap:8px; flex-shrink:0; }
.compare-bar__clear,
.compare-bar__open {
  min-height:38px; border-radius:10px; padding:0 13px; font-weight:850; cursor:pointer;
}
.compare-bar__clear { border:1px solid rgba(255,255,255,.08); background:transparent; color:#8398ac; }
.compare-bar__open {
  border:0; color:white;
  background:linear-gradient(135deg,#2f84ff,#71b9ff);
  box-shadow:0 8px 24px rgba(61,149,255,.22);
}
.compare-bar__open:disabled { opacity:.42; cursor:not-allowed; box-shadow:none; }

.compare-modal {
  position:fixed; inset:0; z-index:1900;
  opacity:0; visibility:hidden; transition:.25s ease;
}
.compare-modal.is-open { opacity:1; visibility:visible; }
.compare-modal__backdrop {
  position:absolute; inset:0;
  background:rgba(0,6,14,.72);
  backdrop-filter:blur(10px);
}
.compare-modal__panel {
  --accent:#3d95ff; --accent-2:#7bc2ff; --accent-rgb:61,149,255;
  position:absolute; inset:5vh 4vw;
  overflow:auto;
  padding:30px;
  border:1px solid rgba(var(--accent-rgb),.18);
  border-radius:24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--accent-rgb),.12), transparent 28%),
    #07111d;
  box-shadow:0 30px 90px rgba(0,0,0,.46);
  transform:translateY(25px) scale(.98);
  transition:.34s cubic-bezier(.2,.9,.2,1);
}
.compare-modal.is-open .compare-modal__panel { transform:translateY(0) scale(1); }
.compare-modal__close,
.checkout-drawer__close {
  position:absolute; top:16px; right:16px;
  width:38px;height:38px;border-radius:11px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);color:#a9bdcf;
  font-size:22px;cursor:pointer;
}
.compare-modal__eyebrow,
.checkout-drawer__eyebrow {
  color:var(--accent-2);
  font-size:10px;font-weight:950;letter-spacing:.13em;
}
.compare-modal__header h2 { margin:6px 0 4px;color:#f3f8ff;font-size:28px; }
.compare-modal__header p { margin:0 0 22px;color:#7890a5; }

.compare-modal__table-wrap { overflow:auto; }
.compare-table {
  width:100%; border-collapse:separate; border-spacing:0;
  min-width:720px; overflow:hidden;
  border:1px solid rgba(255,255,255,.065);
  border-radius:17px;
}
.compare-table th,.compare-table td {
  padding:14px 16px;
  border-right:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
  text-align:center;color:#bdd0e1;
}
.compare-table th:first-child,.compare-table td:first-child {
  text-align:left;color:#8399ad;font-weight:800;
}
.compare-table thead th { background:rgba(255,255,255,.025); }
.compare-plan-head { display:grid; gap:6px; justify-items:center; }
.compare-plan-head strong { color:#f3f8ff;font-size:16px; }
.compare-plan-head > span:not(.compare-plan-popular) { color:var(--accent-2);font-weight:900; }
.compare-plan-popular {
  color:white;background:linear-gradient(135deg,var(--accent),var(--accent-2));
  padding:4px 7px;border-radius:6px;font-size:8px;letter-spacing:.08em;
}
.compare-order {
  margin-top:4px;min-height:34px;padding:0 12px;border:0;border-radius:9px;
  color:#fff;font-weight:850;cursor:pointer;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
}
.compare-yes { color:var(--accent-2);font-weight:950;font-size:17px; }
.compare-no { color:#496276; }
.compare-table__price { color:var(--accent-2)!important;font-weight:950; }

.checkout-drawer {
  --accent:#3d95ff; --accent-2:#7bc2ff; --accent-rgb:61,149,255;
  position:fixed; inset:0; z-index:2000;
  opacity:0; visibility:hidden; transition:.24s ease;
}
.checkout-drawer.is-open { opacity:1; visibility:visible; }
.checkout-drawer__backdrop {
  position:absolute; inset:0;background:rgba(0,6,14,.68);backdrop-filter:blur(7px);
}
.checkout-drawer__panel {
  position:absolute; top:0;right:0;bottom:0;
  width:min(470px,100%);
  overflow:auto;
  padding:28px;
  background:
    radial-gradient(circle at 80% 0%,rgba(var(--accent-rgb),.14),transparent 30%),
    #07111d;
  border-left:1px solid rgba(var(--accent-rgb),.18);
  box-shadow:-24px 0 70px rgba(0,0,0,.36);
  transform:translateX(102%);
  transition:.4s cubic-bezier(.18,.9,.22,1);
}
.checkout-drawer.is-open .checkout-drawer__panel { transform:translateX(0); }
.checkout-drawer__head { padding:18px 0 22px; border-bottom:1px solid rgba(255,255,255,.06); }
.checkout-drawer__title-row { display:flex; justify-content:space-between;gap:16px;align-items:start;margin-top:7px; }
.checkout-drawer__title-row h2 { margin:0 0 4px;color:#f4f8fc;font-size:27px; }
.checkout-drawer__service { color:#7f96aa;font-size:12px; }
.checkout-drawer__popular {
  flex-shrink:0;padding:6px 8px;border-radius:7px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;font-size:8px;font-weight:950;letter-spacing:.08em;
}
.checkout-drawer__section { padding:21px 0;border-bottom:1px solid rgba(255,255,255,.06); }
.checkout-drawer__section-title { color:#8ea4b8;font-size:10px;font-weight:900;letter-spacing:.09em;text-transform:uppercase;margin-bottom:12px; }
.checkout-drawer__specs { display:grid;grid-template-columns:1fr 1fr;gap:9px; }
.checkout-spec {
  display:flex;align-items:center;gap:8px;min-height:42px;padding:9px 10px;
  border:1px solid rgba(var(--accent-rgb),.12);border-radius:10px;
  background:rgba(var(--accent-rgb),.045);color:#d6e3ee;font-size:11px;
}
.checkout-spec span { color:var(--accent-2);font-weight:950; }
.checkout-drawer__billing { display:flex;gap:8px; }
.checkout-drawer__billing-option {
  min-height:39px;padding:0 14px;border-radius:9px;
  border:1px solid rgba(var(--accent-rgb),.28);
  background:rgba(var(--accent-rgb),.09);color:#fff;font-weight:850;
}
.checkout-drawer__footer { padding-top:24px; }
.checkout-drawer__total { display:flex;align-items:end;justify-content:space-between;margin-bottom:14px; }
.checkout-drawer__total span { color:#8097aa;font-size:12px; }
.checkout-drawer__total strong { color:var(--accent-2);font-size:28px;letter-spacing:-.03em; }
.checkout-drawer__continue {
  width:100%;min-height:50px;border:0;border-radius:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;font-weight:950;cursor:pointer;
  box-shadow:0 12px 32px rgba(var(--accent-rgb),.22);
}
.checkout-drawer__footer small { display:block;margin-top:10px;color:#5f7487;line-height:1.5; }

html[data-theme="light"] .compare-bar__inner,
html[data-theme="light"] .compare-modal__panel,
html[data-theme="light"] .checkout-drawer__panel {
  background:#f7fbff;color:#17344f;
}
html[data-theme="light"] .compare-chip,
html[data-theme="light"] .plan-compare-toggle {
  background:rgba(255,255,255,.88);color:#35536b;
}
html[data-theme="light"] .compare-modal__header h2,
html[data-theme="light"] .compare-plan-head strong,
html[data-theme="light"] .checkout-drawer__title-row h2 {
  color:#17344f;
}
html[data-theme="light"] .compare-table th,
html[data-theme="light"] .compare-table td,
html[data-theme="light"] .checkout-spec {
  color:#38566f;border-color:rgba(20,60,90,.09);
}
html[data-theme="light"] .compare-table thead th { background:#eef6fc; }
html[data-theme="light"] .checkout-spec { background:rgba(var(--accent-rgb),.055); }

@media (max-width:700px) {
  .compare-bar { bottom:10px;width:calc(100% - 18px); }
  .compare-bar__inner { align-items:stretch;flex-direction:column; }
  .compare-bar__actions { justify-content:flex-end; }
  .compare-modal__panel { inset:2vh 2vw;padding:20px 14px; }
  .checkout-drawer__panel { padding:22px 18px; }
  .checkout-drawer__specs { grid-template-columns:1fr; }
  .plan-compare-toggle { left:10px;bottom:10px; }
}


/* ===== Product card UX refinement: no blur, clear clickability, room for Compare + Buy ===== */

.price-card,
.domain-price-card {
  min-height: 470px;
  padding-bottom: 112px !important;
  position: relative;
  overflow: visible;
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    background .24s ease;
  cursor: pointer;
}

.price-card:hover,
.domain-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--modal-accent-rgb, 61,149,255), .30);
  box-shadow:
    0 18px 42px rgba(0,0,0,.22),
    0 0 0 1px rgba(var(--modal-accent-rgb, 61,149,255), .07),
    0 0 28px rgba(var(--modal-accent-rgb, 61,149,255), .08);
}

.price-card:focus-visible,
.domain-price-card:focus-visible {
  outline: none;
  border-color: rgba(var(--modal-accent-rgb, 61,149,255), .48);
  box-shadow:
    0 0 0 3px rgba(var(--modal-accent-rgb, 61,149,255), .10),
    0 18px 42px rgba(0,0,0,.18);
}

.card-detail-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 29px;
  padding: 5px 8px;
  border-radius: 9px;
  border: 1px solid rgba(var(--modal-accent-rgb, 61,149,255), .15);
  background: rgba(7,17,29,.58);
  color: rgba(207,224,239,.72);
  backdrop-filter: blur(9px);
  pointer-events: none;
  transform: translateY(0);
  transition:
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.card-detail-hint__icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(var(--modal-accent-rgb, 61,149,255), .08);
  color: var(--modal-accent-2, #7bc2ff);
}

.card-detail-hint__icon svg {
  width: 14px;
  height: 14px;
}

.card-detail-hint__text {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card:hover .card-detail-hint,
.domain-price-card:hover .card-detail-hint {
  color: #fff;
  border-color: rgba(var(--modal-accent-rgb, 61,149,255), .34);
  background: rgba(var(--modal-accent-rgb, 61,149,255), .10);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(var(--modal-accent-rgb, 61,149,255), .10);
}

.plan-compare-toggle {
  left: 18px !important;
  right: 18px !important;
  bottom: 64px !important;
  width: auto !important;
  min-height: 36px !important;
  justify-content: center;
  padding: 7px 12px !important;
  border-radius: 10px !important;
  background: rgba(7,17,29,.48) !important;
  border-color: rgba(var(--modal-accent-rgb, 61,149,255), .16) !important;
  color: #9db0c1 !important;
  box-sizing: border-box;
}

.plan-compare-toggle:hover,
.plan-compare-toggle.is-active {
  color: #fff !important;
  background: rgba(var(--modal-accent-rgb, 61,149,255), .10) !important;
  border-color: rgba(var(--modal-accent-rgb, 61,149,255), .38) !important;
  box-shadow: 0 7px 18px rgba(var(--modal-accent-rgb, 61,149,255), .08);
}

.price-card .order-btn,
.price-card .buy-btn,
.price-card .cta-btn,
.domain-price-card .order-btn,
.domain-price-card .buy-btn,
.domain-price-card .cta-btn {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  width: auto !important;
  box-sizing: border-box;
  z-index: 6;
}

html[data-theme="light"] .card-detail-hint,
html[data-theme="light"] .plan-compare-toggle {
  background: rgba(255,255,255,.78) !important;
  color: #4f687d !important;
  border-color: rgba(var(--modal-accent-rgb, 61,149,255), .18) !important;
}

html[data-theme="light"] .price-card:hover .card-detail-hint,
html[data-theme="light"] .domain-price-card:hover .card-detail-hint,
html[data-theme="light"] .plan-compare-toggle:hover,
html[data-theme="light"] .plan-compare-toggle.is-active {
  color: #17344f !important;
  background: rgba(var(--modal-accent-rgb, 61,149,255), .08) !important;
}

@media (max-width: 700px) {
  .price-card,
  .domain-price-card {
    min-height: 450px;
    padding-bottom: 108px !important;
  }

  .card-detail-hint {
    top: 12px;
    right: 12px;
  }

  .card-detail-hint__text {
    display: none;
  }

  .plan-compare-toggle {
    left: 14px !important;
    right: 14px !important;
    bottom: 62px !important;
  }

  .price-card .order-btn,
  .price-card .buy-btn,
  .price-card .cta-btn,
  .domain-price-card .order-btn,
  .domain-price-card .buy-btn,
  .domain-price-card .cta-btn {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}


/* =========================================================
   NOXERA PRODUCT CARDS — FINAL LAYOUT + MODAL POSITION FIX
   ========================================================= */

/* Restore the modal base selector for BOTH themes.
   An earlier cleanup accidentally left position:fixed only under light mode,
   which made the modal render at the bottom of the document in dark mode. */
.product-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 20000 !important;
  display: grid !important;
  place-items: center !important;
  padding: clamp(12px, 3vw, 30px) !important;
  pointer-events: none;
  visibility: hidden;
  perspective: 1800px;
}

.product-modal.is-open {
  pointer-events: auto !important;
  visibility: visible !important;
}

.product-modal__backdrop {
  position: absolute !important;
  inset: 0 !important;
}

.product-modal__panel {
  position: relative !important;
  z-index: 1 !important;
  width: min(990px, calc(100vw - 28px)) !important;
  max-height: min(900px, calc(100vh - 30px)) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
}

/* Lock the page behind the real popup. */
body.product-modal-open {
  overflow: hidden !important;
}

/* Slightly larger product cards with enough dedicated room for BOTH actions. */
.price-card,
.domain-price-card {
  min-height: 505px !important;
  padding: 30px 30px 138px !important;
  overflow: visible !important;
}

/* "Vezi detalii" now sits on the LEFT.
   Most Popular stays comfortably on the right. */
.card-detail-hint {
  top: 14px !important;
  left: 14px !important;
  right: auto !important;
}

/* Make room at the top so the left hint doesn't crowd the plan title. */
.price-card > h3,
.domain-price-card > h3 {
  margin-top: 28px;
}

/* Dedicated action lane:
   Compare above, Order below. No overlap even on MOST POPULAR cards. */
.price-card .plan-compare-toggle,
.domain-price-card .plan-compare-toggle,
.price-card.popular .plan-compare-toggle,
.domain-price-card.popular .plan-compare-toggle {
  position: absolute !important;
  left: 20px !important;
  right: 20px !important;
  bottom: 78px !important;
  width: auto !important;
  min-height: 38px !important;
  margin: 0 !important;
  z-index: 8 !important;
}

.price-card .order-btn,
.price-card .buy-btn,
.price-card .cta-btn,
.domain-price-card .order-btn,
.domain-price-card .buy-btn,
.domain-price-card .cta-btn,
.price-card.popular .order-btn,
.domain-price-card.popular .order-btn {
  position: absolute !important;
  left: 20px !important;
  right: 20px !important;
  bottom: 18px !important;
  width: auto !important;
  min-height: 48px !important;
  margin: 0 !important;
  z-index: 8 !important;
  box-sizing: border-box !important;
}

/* Keep the most-popular badge on the opposite side from "Vezi detalii". */
.price-card .popular-badge,
.domain-price-card .popular-badge {
  top: 14px !important;
  right: 14px !important;
  left: auto !important;
  z-index: 9 !important;
}

/* More breathing room in desktop grids so the enlarged cards do not feel cramped. */
.pricing-grid {
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
  gap: 22px !important;
}

@media (max-width: 900px) {
  .price-card,
  .domain-price-card {
    min-height: 490px !important;
    padding: 28px 24px 134px !important;
  }
}

@media (max-width: 700px) {
  .price-card,
  .domain-price-card {
    min-height: 465px !important;
    padding: 26px 18px 132px !important;
  }

  .card-detail-hint {
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
  }

  /* On mobile keep the wording visible too; it explains that the card opens. */
  .card-detail-hint__text {
    display: inline !important;
    font-size: 8px !important;
  }

  .price-card .plan-compare-toggle,
  .domain-price-card .plan-compare-toggle,
  .price-card.popular .plan-compare-toggle,
  .domain-price-card.popular .plan-compare-toggle {
    left: 14px !important;
    right: 14px !important;
    bottom: 76px !important;
  }

  .price-card .order-btn,
  .price-card .buy-btn,
  .price-card .cta-btn,
  .domain-price-card .order-btn,
  .domain-price-card .buy-btn,
  .domain-price-card .cta-btn,
  .price-card.popular .order-btn,
  .domain-price-card.popular .order-btn {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .product-modal {
    padding: 10px !important;
  }

  .product-modal__panel {
    width: calc(100vw - 20px) !important;
    max-height: calc(100vh - 20px) !important;
  }
}


/* ===== 3D popup -> Checkout handoff ===== */
.checkout-drawer {
  z-index: 30000 !important;
}

.checkout-drawer__backdrop {
  z-index: 0 !important;
}

.checkout-drawer__panel {
  z-index: 1 !important;
}

/* Once the product modal is closed it must stop intercepting clicks immediately. */
.product-modal:not(.is-open) {
  pointer-events: none !important;
  visibility: hidden !important;
}


/* =========================================================
   HOME SERVICE CARDS — same accent codes as each service page
   Game + VPS: red | Web + Dedicated: purple | Domains: green
   ========================================================= */

.service-accent-red {
  --service-accent: #ff3348;
  --service-accent-2: #ff7380;
  --service-accent-rgb: 255, 51, 72;
}

.service-accent-purple {
  --service-accent: #8b4dff;
  --service-accent-2: #c18cff;
  --service-accent-rgb: 139, 77, 255;
}

.service-accent-green {
  --service-accent: #26c978;
  --service-accent-2: #73e6aa;
  --service-accent-rgb: 38, 201, 120;
}

.service-card.service-accent-red,
.service-card.service-accent-purple,
.service-card.service-accent-green {
  border-color: rgba(var(--service-accent-rgb), .24) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--service-accent-rgb), .09), transparent 37%),
    rgba(7, 20, 36, .76) !important;
}

.service-card.service-accent-red:hover,
.service-card.service-accent-purple:hover,
.service-card.service-accent-green:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--service-accent-rgb), .50) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .20),
    0 0 30px rgba(var(--service-accent-rgb), .11);
}

.service-card.service-accent-red .service-icon,
.service-card.service-accent-purple .service-icon,
.service-card.service-accent-green .service-icon {
  color: var(--service-accent-2) !important;
  border-color: rgba(var(--service-accent-rgb), .50) !important;
  background: rgba(var(--service-accent-rgb), .10) !important;
  box-shadow:
    inset 0 0 0 1px rgba(var(--service-accent-rgb), .05),
    0 0 16px rgba(var(--service-accent-rgb), .08);
}

.service-card.service-accent-red .service-icon svg,
.service-card.service-accent-purple .service-icon svg,
.service-card.service-accent-green .service-icon svg {
  stroke: var(--service-accent-2) !important;
}

.service-card.service-accent-red h3,
.service-card.service-accent-purple h3,
.service-card.service-accent-green h3 {
  color: var(--service-accent-2) !important;
}

.service-card.service-accent-red .round-link,
.service-card.service-accent-purple .round-link,
.service-card.service-accent-green .round-link {
  color: var(--service-accent-2) !important;
  border-color: rgba(var(--service-accent-rgb), .72) !important;
}

.service-card.service-accent-red .round-link:hover,
.service-card.service-accent-purple .round-link:hover,
.service-card.service-accent-green .round-link:hover {
  color: #fff !important;
  background: rgba(var(--service-accent-rgb), .16) !important;
  box-shadow: 0 0 20px rgba(var(--service-accent-rgb), .18);
}

/* Light mode */
html[data-theme="light"] .service-card.service-accent-red,
html[data-theme="light"] .service-card.service-accent-purple,
html[data-theme="light"] .service-card.service-accent-green {
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--service-accent-rgb), .08), transparent 37%),
    rgba(255,255,255,.94) !important;
  border-color: rgba(var(--service-accent-rgb), .24) !important;
}


/* ===== NOXERA LEGAL / TERMS ===== */
.legal-page { position:relative; z-index:2; }
.legal-hero { padding:92px 0 48px; text-align:center; }
.legal-hero .container { max-width:920px; margin:auto; padding:0 22px; }
.legal-hero .eyebrow { display:inline-block; padding:7px 11px; border:1px solid rgba(61,149,255,.25); border-radius:999px; color:#7bc2ff; font-size:10px; font-weight:900; letter-spacing:.12em; }
.legal-hero h1 { margin:18px 0 12px; font-size:clamp(38px,6vw,68px); letter-spacing:-.045em; color:#f5f9ff; }
.legal-hero h1 span { background:linear-gradient(90deg,#3d95ff,#8b4dff); -webkit-background-clip:text; color:transparent; }
.legal-hero p { max-width:720px; margin:0 auto; color:#8da4b8; line-height:1.7; }
.legal-meta { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:22px; }
.legal-meta span { padding:7px 10px; border-radius:8px; background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.06); color:#71889c; font-size:10px; }

.legal-content { padding:12px 0 100px; }
.legal-layout { width:min(1180px,calc(100% - 36px)); margin:auto; display:grid; grid-template-columns:240px minmax(0,1fr); gap:28px; align-items:start; }
.legal-toc { position:sticky; top:112px; display:grid; gap:3px; padding:16px; border-radius:16px; background:rgba(7,18,31,.72); border:1px solid rgba(61,149,255,.12); backdrop-filter:blur(14px); max-height:calc(100vh - 135px); overflow:auto; }
.legal-toc strong { color:#eaf4ff; font-size:12px; margin:2px 7px 8px; }
.legal-toc a { color:#70889c; text-decoration:none; padding:7px; border-radius:7px; font-size:10px; transition:.18s ease; }
.legal-toc a:hover { color:#fff; background:rgba(61,149,255,.09); }

.legal-document { padding:8px 0; }
.legal-notice { margin-bottom:18px; padding:18px 20px; border:1px solid rgba(139,77,255,.24); border-radius:15px; background:linear-gradient(135deg,rgba(61,149,255,.06),rgba(139,77,255,.07)); }
.legal-notice strong { color:#c18cff; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.legal-notice p { margin:7px 0 0!important; }
.legal-document section { scroll-margin-top:120px; position:relative; margin-bottom:14px; padding:24px 26px; border:1px solid rgba(255,255,255,.065); border-radius:17px; background:rgba(5,14,25,.64); }
.legal-document section:hover { border-color:rgba(61,149,255,.14); }
.legal-number { position:absolute; top:22px; right:22px; color:rgba(123,194,255,.28); font-size:11px; font-weight:900; letter-spacing:.08em; }
.legal-document h2 { margin:0 40px 12px 0; color:#edf6ff; font-size:20px; }
.legal-document p { margin:9px 0; color:#8da3b6; font-size:13px; line-height:1.78; }
.legal-document strong { color:#c9d9e7; }

html[data-theme="light"] .legal-hero h1 { color:#15324b; }
html[data-theme="light"] .legal-toc,
html[data-theme="light"] .legal-document section { background:rgba(255,255,255,.88); border-color:rgba(31,77,113,.09); }
html[data-theme="light"] .legal-document h2,
html[data-theme="light"] .legal-toc strong { color:#17344f; }
html[data-theme="light"] .legal-document p { color:#536f85; }
html[data-theme="light"] .legal-notice { background:linear-gradient(135deg,rgba(61,149,255,.06),rgba(139,77,255,.06)); }

@media(max-width:850px){
  .legal-layout { grid-template-columns:1fr; }
  .legal-toc { position:relative; top:auto; max-height:none; grid-template-columns:1fr 1fr; }
  .legal-toc strong { grid-column:1/-1; }
}
@media(max-width:560px){
  .legal-hero { padding-top:68px; }
  .legal-toc { grid-template-columns:1fr; }
  .legal-document section { padding:20px 18px; }
}


/* ===== Terms v1.1 readability / expanded TOC ===== */
.terms-page .legal-layout {
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 32px;
}
.terms-page .legal-toc {
  padding: 19px 18px;
}
.terms-page .legal-toc strong {
  font-size: 15px;
  margin: 2px 8px 10px;
  letter-spacing: .01em;
}
.terms-page .legal-toc a {
  font-size: 12.5px;
  line-height: 1.35;
  padding: 8px 9px;
}
.terms-page .legal-document h2 {
  font-size: 21px;
}
.terms-page .legal-document p {
  font-size: 13.5px;
  line-height: 1.82;
}
@media(max-width: 980px){
  .terms-page .legal-layout { grid-template-columns: 245px minmax(0,1fr); gap:22px; }
  .terms-page .legal-toc a { font-size:12px; }
}
@media(max-width:850px){
  .terms-page .legal-layout { grid-template-columns:1fr; }
  .terms-page .legal-toc {
    grid-template-columns:1fr 1fr;
    max-height:none;
  }
  .terms-page .legal-toc a { font-size:13px; }
}
@media(max-width:560px){
  .terms-page .legal-toc { grid-template-columns:1fr; }
  .terms-page .legal-toc a { font-size:13.5px; }
}


/* =========================================================
   NOXERA KNOWLEDGEBASE
   ========================================================= */
.kb-page { position: relative; z-index: 2; }
.kb-hero { padding: 86px 0 54px; text-align: center; }
.kb-hero .container { width:min(960px,calc(100% - 36px)); margin:auto; }
.kb-hero .eyebrow {
  display:inline-flex; padding:7px 11px; border-radius:999px;
  border:1px solid rgba(61,149,255,.22); color:#7bc2ff;
  font-size:10px; font-weight:900; letter-spacing:.13em;
  background:rgba(61,149,255,.045);
}
.kb-hero h1 {
  margin:18px 0 14px; color:#f5f9ff; font-size:clamp(38px,5.8vw,68px);
  line-height:1.02; letter-spacing:-.05em;
}
.kb-hero h1 span {
  background:linear-gradient(90deg,#3d95ff,#8b4dff,#26c978);
  -webkit-background-clip:text; color:transparent;
}
.kb-hero > .container > p { max-width:730px; margin:auto; color:#8da4b8; line-height:1.7; }

.kb-search-wrap {
  width:min(760px,100%); margin:30px auto 0; display:flex; align-items:center; gap:12px;
  min-height:60px; padding:0 16px; border-radius:16px;
  background:rgba(5,15,27,.82); border:1px solid rgba(61,149,255,.20);
  box-shadow:0 18px 48px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.025);
  backdrop-filter:blur(16px);
}
.kb-search-wrap:focus-within {
  border-color:rgba(61,149,255,.52);
  box-shadow:0 18px 48px rgba(0,0,0,.18),0 0 0 3px rgba(61,149,255,.08);
}
.kb-search-wrap svg { width:20px; fill:none; stroke:#7bc2ff; stroke-width:1.8; }
.kb-search-wrap input {
  flex:1; min-width:0; border:0; outline:0; background:transparent; color:#edf7ff;
  font:inherit; font-size:14px;
}
.kb-search-wrap input::placeholder { color:#5f768a; }
.kb-search-wrap kbd {
  color:#6e8498; border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035); padding:4px 7px; border-radius:6px; font-size:10px;
}
.kb-quick-stats { display:flex; justify-content:center; flex-wrap:wrap; gap:9px; margin-top:16px; }
.kb-quick-stats span {
  padding:6px 9px; color:#6f879a; border-radius:8px; font-size:10px;
  background:rgba(255,255,255,.025); border:1px solid rgba(255,255,255,.045);
}
.kb-quick-stats strong { color:#b8cce0; }

.kb-content-section { padding:12px 0 100px; }
.kb-layout {
  width:min(1220px,calc(100% - 36px)); margin:auto;
  display:grid; grid-template-columns:230px minmax(0,1fr); gap:28px; align-items:start;
}
.kb-sidebar {
  position:sticky; top:112px; display:grid; gap:4px; padding:16px;
  border-radius:16px; border:1px solid rgba(255,255,255,.065);
  background:rgba(6,17,30,.74); backdrop-filter:blur(14px);
}
.kb-sidebar strong { color:#e7f3ff; padding:5px 8px 10px; font-size:13px; }
.kb-filter {
  border:0; text-align:left; padding:9px 10px; border-radius:9px;
  background:transparent; color:#718a9e; font:inherit; font-size:11.5px; cursor:pointer;
}
.kb-filter:hover { color:#dcecff; background:rgba(255,255,255,.035); }
.kb-filter.active { color:#fff; background:rgba(61,149,255,.12); box-shadow:inset 0 0 0 1px rgba(61,149,255,.18); }

.kb-main { min-width:0; }
.kb-featured {
  display:flex; justify-content:space-between; gap:20px; align-items:center;
  padding:24px 26px; margin-bottom:22px; border-radius:18px;
  background:
    radial-gradient(circle at 0 0,rgba(61,149,255,.14),transparent 34%),
    radial-gradient(circle at 100% 100%,rgba(139,77,255,.10),transparent 34%),
    rgba(6,17,30,.72);
  border:1px solid rgba(61,149,255,.16);
}
.kb-label { color:#7bc2ff; font-size:9px; font-weight:900; letter-spacing:.14em; }
.kb-featured h2,.kb-help-box h2 { margin:6px 0 6px; color:#eef7ff; font-size:21px; }
.kb-featured p,.kb-help-box p { margin:0; color:#8199ad; font-size:12px; line-height:1.65; max-width:700px; }
.kb-primary-link {
  flex:0 0 auto; text-decoration:none; color:#fff; font-size:11px; font-weight:800;
  padding:11px 14px; border-radius:10px; border:1px solid rgba(61,149,255,.32);
  background:rgba(61,149,255,.12);
}
.kb-primary-link:hover { background:rgba(61,149,255,.19); }

.kb-group { margin:30px 0 42px; scroll-margin-top:110px; }
.kb-group[hidden] { display:none!important; }
.kb-group-head { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.kb-group-head span { font-size:9px; letter-spacing:.12em; font-weight:900; color:#72899d; }
.kb-group-head h2 { margin:3px 0 2px; color:#eef7ff; font-size:22px; }
.kb-group-head p { margin:0; color:#71899d; font-size:11px; }
.kb-icon {
  width:44px; height:44px; border-radius:12px; display:grid; place-items:center;
  border:1px solid currentColor; font-size:18px;
}
.kb-red { color:#ff7380; background:rgba(255,51,72,.07); }
.kb-purple { color:#c18cff; background:rgba(139,77,255,.07); }
.kb-green { color:#73e6aa; background:rgba(38,201,120,.07); }
.kb-blue { color:#7bc2ff; background:rgba(61,149,255,.07); }

.kb-article-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.kb-article {
  border:1px solid rgba(255,255,255,.06); border-radius:14px;
  background:rgba(5,14,25,.64); overflow:hidden; transition:.18s ease;
}
.kb-article:hover { border-color:rgba(61,149,255,.16); transform:translateY(-1px); }
.kb-article[hidden] { display:none!important; }
.kb-article-toggle {
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:12px;
  text-align:left; border:0; background:transparent; padding:17px 18px; cursor:pointer; color:inherit;
}
.kb-article-toggle span { display:grid; gap:4px; }
.kb-article-toggle b { color:#dceaff; font-size:12px; }
.kb-article-toggle small { color:#6e879b; font-size:10.5px; line-height:1.4; }
.kb-article-toggle i {
  flex:0 0 auto; width:24px; height:24px; display:grid; place-items:center; border-radius:7px;
  font-style:normal; color:#79b9fa; background:rgba(61,149,255,.07); border:1px solid rgba(61,149,255,.13);
  transition:.2s ease;
}
.kb-article.open .kb-article-toggle i { transform:rotate(45deg); }
.kb-article-body {
  display:grid; grid-template-rows:0fr; transition:grid-template-rows .24s ease;
}
.kb-article-body > p { overflow:hidden; margin:0; padding:0 18px; color:#8198ab; font-size:11.5px; line-height:1.72; }
.kb-article.open .kb-article-body { grid-template-rows:1fr; }
.kb-article.open .kb-article-body > p { padding:0 18px 17px; }
.kb-article-body strong { color:#bcd0e2; }

.kb-no-results {
  padding:28px; text-align:center; border-radius:15px; margin:20px 0;
  background:rgba(255,255,255,.025); border:1px dashed rgba(255,255,255,.09);
}
.kb-no-results strong { display:block; color:#dceaff; margin-bottom:5px; }
.kb-no-results span { color:#71889a; font-size:11px; }

.kb-help-box {
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:26px; border-radius:18px; margin-top:30px;
  background:linear-gradient(135deg,rgba(61,149,255,.08),rgba(139,77,255,.08));
  border:1px solid rgba(139,77,255,.17);
}
.kb-help-actions { display:flex; gap:8px; flex-wrap:wrap; }
.kb-help-actions a {
  text-decoration:none; padding:10px 14px; border-radius:10px; color:#dcecff;
  font-size:11px; font-weight:800; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.035);
}
.kb-help-actions a:hover { background:rgba(255,255,255,.07); }
.kb-help-actions .kb-discord { border-color:rgba(88,101,242,.28); }

html[data-theme="light"] .kb-hero h1,
html[data-theme="light"] .kb-group-head h2,
html[data-theme="light"] .kb-featured h2,
html[data-theme="light"] .kb-help-box h2,
html[data-theme="light"] .kb-sidebar strong { color:#17344f; }
html[data-theme="light"] .kb-search-wrap,
html[data-theme="light"] .kb-sidebar,
html[data-theme="light"] .kb-featured,
html[data-theme="light"] .kb-article {
  background:rgba(255,255,255,.90);
  border-color:rgba(31,77,113,.09);
}
html[data-theme="light"] .kb-search-wrap input { color:#17344f; }
html[data-theme="light"] .kb-article-toggle b { color:#24435d; }
html[data-theme="light"] .kb-article-toggle small,
html[data-theme="light"] .kb-article-body > p,
html[data-theme="light"] .kb-featured p,
html[data-theme="light"] .kb-help-box p { color:#5f788d; }

@media(max-width:1050px){
  .kb-layout { grid-template-columns:200px minmax(0,1fr); gap:20px; }
}
@media(max-width:850px){
  .kb-layout { grid-template-columns:1fr; }
  .kb-sidebar {
    position:relative; top:auto; grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .kb-sidebar strong { grid-column:1/-1; }
}
@media(max-width:700px){
  .kb-article-grid { grid-template-columns:1fr; }
  .kb-featured,.kb-help-box { align-items:flex-start; flex-direction:column; }
}
@media(max-width:520px){
  .kb-hero { padding-top:66px; }
  .kb-sidebar { grid-template-columns:1fr; }
  .kb-sidebar strong { grid-column:auto; }
  .kb-search-wrap kbd { display:none; }
}

/* Navbar breathing room after adding Knowledgebase */
@media(min-width:1101px){
  .site-header nav,
  .navbar nav,
  header nav {
    gap:4px;
  }
  .site-header nav a,
  .navbar nav a,
  header nav a {
    font-size:10.5px;
  }
}


/* =========================================================
   KNOWLEDGEBASE v1.1 — responsive + interaction hard fix
   ========================================================= */
.kb-page,
.kb-page * { box-sizing: border-box; }

.kb-page {
  position: relative !important;
  z-index: 20 !important;
  pointer-events: auto !important;
}

.kb-content-section,
.kb-layout,
.kb-main,
.kb-sidebar,
.kb-group,
.kb-article,
.kb-article-toggle,
.kb-search-wrap,
.kb-search-wrap input,
.kb-filter {
  pointer-events: auto !important;
}

.kb-filter,
.kb-article-toggle {
  position: relative;
  z-index: 3;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.kb-filter {
  width: 100%;
  min-height: 40px;
}

.kb-article-toggle {
  min-height: 70px;
}

.kb-category-status {
  display:flex;
  align-items:center;
  gap:9px;
  margin:0 0 16px;
  padding:10px 13px;
  border-radius:11px;
  background:rgba(61,149,255,.055);
  border:1px solid rgba(61,149,255,.12);
}
.kb-category-status span {
  color:#6d879c;
  font-size:10px;
}
.kb-category-status strong {
  color:#ddebfa;
  font-size:11.5px;
}

.kb-group { scroll-margin-top:105px; }

.kb-article-body {
  visibility:hidden;
  min-height:0;
}
.kb-article.open .kb-article-body {
  visibility:visible;
}
.kb-article.open {
  border-color:rgba(61,149,255,.20);
  background:rgba(7,18,31,.78);
}

@media (max-width: 960px) {
  .kb-layout {
    grid-template-columns:1fr !important;
    width:min(100% - 28px,920px) !important;
    gap:18px !important;
  }

  .kb-sidebar {
    position:relative !important;
    top:auto !important;
    display:flex !important;
    align-items:center;
    overflow-x:auto;
    gap:8px !important;
    padding:11px !important;
    scrollbar-width:thin;
    -webkit-overflow-scrolling:touch;
  }

  .kb-sidebar strong { display:none; }

  .kb-filter {
    width:auto !important;
    flex:0 0 auto;
    min-height:38px;
    white-space:nowrap;
    padding:9px 12px !important;
    border:1px solid rgba(255,255,255,.055);
    background:rgba(255,255,255,.022);
  }
}

@media (max-width: 680px) {
  .kb-hero { padding:54px 0 34px !important; }

  .kb-hero .container,
  .kb-layout {
    width:calc(100% - 22px) !important;
  }

  .kb-hero h1 {
    font-size:clamp(34px,11vw,48px) !important;
    line-height:1.04 !important;
  }

  .kb-hero > .container > p { font-size:12.5px; }

  .kb-search-wrap {
    min-height:54px;
    margin-top:22px;
    padding:0 13px;
  }

  .kb-search-wrap input {
    font-size:16px !important;
  }

  .kb-quick-stats { justify-content:flex-start; }

  .kb-featured,
  .kb-help-box {
    padding:18px !important;
    border-radius:15px;
  }

  .kb-featured h2,
  .kb-help-box h2 { font-size:19px; }

  .kb-article-grid {
    grid-template-columns:1fr !important;
    gap:9px !important;
  }

  .kb-group { margin:25px 0 34px; }

  .kb-group-head { align-items:flex-start; }

  .kb-group-head h2 { font-size:20px; }

  .kb-group-head p {
    font-size:11px;
    line-height:1.5;
  }

  .kb-icon {
    width:40px;
    height:40px;
    border-radius:10px;
  }

  .kb-article-toggle {
    padding:15px 14px !important;
    min-height:76px;
    gap:10px;
  }

  .kb-article-toggle b {
    font-size:12.5px !important;
    line-height:1.35;
  }

  .kb-article-toggle small {
    font-size:11px !important;
    line-height:1.45;
  }

  .kb-article-body > p {
    font-size:12px !important;
    line-height:1.72;
    padding-left:14px;
    padding-right:14px;
  }

  .kb-article.open .kb-article-body > p {
    padding-bottom:15px;
  }

  .kb-help-actions { width:100%; }

  .kb-help-actions a {
    flex:1 1 auto;
    text-align:center;
  }
}

@media (max-width: 420px) {
  .kb-quick-stats span { font-size:9.5px; }
}

html[data-theme="light"] .kb-category-status {
  background:rgba(61,149,255,.055);
  border-color:rgba(31,77,113,.10);
}
html[data-theme="light"] .kb-category-status strong { color:#24435d; }
html[data-theme="light"] .kb-article.open { background:rgba(255,255,255,.96); }


/* =========================================================
   KNOWLEDGEBASE v1.2 — GREEN THEME + ACTIVE NAV
   ========================================================= */
:root {
  --kb-green: #26c978;
  --kb-green-2: #73e6aa;
  --kb-green-rgb: 38, 201, 120;
}

/* Navbar: Knowledgebase visibly selected */
.kb-nav-active,
header nav a.kb-nav-active,
.site-header nav a.kb-nav-active,
.navbar nav a.kb-nav-active {
  color: #dfffee !important;
  background: linear-gradient(
    180deg,
    rgba(var(--kb-green-rgb), .18),
    rgba(var(--kb-green-rgb), .08)
  ) !important;
  border-color: rgba(var(--kb-green-rgb), .38) !important;
  box-shadow:
    inset 0 0 0 1px rgba(var(--kb-green-rgb), .08),
    0 0 18px rgba(var(--kb-green-rgb), .10) !important;
}

/* Hero */
.kb-hero .eyebrow {
  color: var(--kb-green-2) !important;
  border-color: rgba(var(--kb-green-rgb), .28) !important;
  background: rgba(var(--kb-green-rgb), .055) !important;
}
.kb-hero h1 span {
  background: linear-gradient(90deg, #26c978, #73e6aa, #b8f8d4) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

/* Search */
.kb-search-wrap {
  border-color: rgba(var(--kb-green-rgb), .20) !important;
}
.kb-search-wrap:focus-within {
  border-color: rgba(var(--kb-green-rgb), .52) !important;
  box-shadow:
    0 18px 48px rgba(0,0,0,.18),
    0 0 0 3px rgba(var(--kb-green-rgb), .08) !important;
}
.kb-search-wrap svg {
  stroke: var(--kb-green-2) !important;
}

/* Sidebar / filters */
.kb-filter.active {
  color: #effff6 !important;
  background: rgba(var(--kb-green-rgb), .14) !important;
  box-shadow: inset 0 0 0 1px rgba(var(--kb-green-rgb), .24) !important;
}
.kb-filter:hover {
  background: rgba(var(--kb-green-rgb), .055) !important;
}

/* Featured */
.kb-featured {
  background:
    radial-gradient(circle at 0 0, rgba(var(--kb-green-rgb), .14), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(115,230,170,.08), transparent 34%),
    rgba(6,17,30,.72) !important;
  border-color: rgba(var(--kb-green-rgb), .18) !important;
}
.kb-label {
  color: var(--kb-green-2) !important;
}
.kb-primary-link {
  border-color: rgba(var(--kb-green-rgb), .34) !important;
  background: rgba(var(--kb-green-rgb), .12) !important;
}
.kb-primary-link:hover {
  background: rgba(var(--kb-green-rgb), .20) !important;
}

/* Current category indicator */
.kb-category-status {
  background: rgba(var(--kb-green-rgb), .065) !important;
  border-color: rgba(var(--kb-green-rgb), .16) !important;
}
.kb-category-status strong {
  color: var(--kb-green-2) !important;
}

/* All service/category icons on this page become green for one visual identity */
.kb-page .kb-icon,
.kb-page .kb-red,
.kb-page .kb-purple,
.kb-page .kb-blue,
.kb-page .kb-green {
  color: var(--kb-green-2) !important;
  background: rgba(var(--kb-green-rgb), .07) !important;
  border-color: rgba(var(--kb-green-rgb), .42) !important;
}

/* Articles */
.kb-article:hover {
  border-color: rgba(var(--kb-green-rgb), .18) !important;
}
.kb-article.open {
  border-color: rgba(var(--kb-green-rgb), .24) !important;
  box-shadow: 0 0 0 1px rgba(var(--kb-green-rgb), .03),
              0 12px 32px rgba(var(--kb-green-rgb), .035) !important;
}
.kb-article-toggle i {
  color: var(--kb-green-2) !important;
  background: rgba(var(--kb-green-rgb), .08) !important;
  border-color: rgba(var(--kb-green-rgb), .17) !important;
}

/* Help box */
.kb-help-box {
  background: linear-gradient(
    135deg,
    rgba(var(--kb-green-rgb), .085),
    rgba(115,230,170,.055)
  ) !important;
  border-color: rgba(var(--kb-green-rgb), .18) !important;
}

/* Light theme equivalents */
html[data-theme="light"] .kb-featured {
  background:
    radial-gradient(circle at 0 0, rgba(var(--kb-green-rgb), .09), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(115,230,170,.08), transparent 34%),
    rgba(255,255,255,.90) !important;
}
html[data-theme="light"] .kb-filter.active {
  color: #17663f !important;
  background: rgba(var(--kb-green-rgb), .10) !important;
}
html[data-theme="light"] .kb-category-status strong {
  color: #177548 !important;
}
html[data-theme="light"] .kb-nav-active,
html[data-theme="light"] header nav a.kb-nav-active {
  color: #17663f !important;
  background: rgba(var(--kb-green-rgb), .10) !important;
  border-color: rgba(var(--kb-green-rgb), .28) !important;
}


/* Knowledgebase: exact Domains green shell */
body.green-page.knowledgebase-page .kb-page { background:transparent!important; }

body.green-page.knowledgebase-page .kb-sidebar,
body.green-page.knowledgebase-page .kb-search-wrap,
body.green-page.knowledgebase-page .kb-article {
  border-color:rgba(73,221,139,.12)!important;
}

body.green-page.knowledgebase-page .kb-featured {
  border-color:rgba(73,221,139,.18)!important;
}



body.green-page.knowledgebase-page .brand-blue {
  color:#57df99!important;
}


/* =========================================================
   NAVBAR SERVICE-AWARE HOVER v1
   Active = Noxera blue. Other links hover = service color.
   ========================================================= */

/* Active navbar item: ALWAYS blue, regardless of page accent */
header nav a.active,
.site-header nav a.active,
.navbar nav a.active,
header nav a[aria-current="page"],
.site-header nav a[aria-current="page"],
.navbar nav a[aria-current="page"],
header nav a.kb-nav-active,
.site-header nav a.kb-nav-active,
.navbar nav a.kb-nav-active {
  color:#eaf5ff !important;
  background:linear-gradient(180deg,rgba(61,149,255,.22),rgba(61,149,255,.10)) !important;
  border-color:rgba(61,149,255,.42) !important;
  box-shadow:
    inset 0 0 0 1px rgba(61,149,255,.08),
    0 0 18px rgba(61,149,255,.13) !important;
}

/* Knowledgebase + Domains: only NON-active links hover green */
body.green-page header nav a:not(.active):not(.kb-nav-active):not([aria-current="page"]):hover,
body.green-page .site-header nav a:not(.active):not(.kb-nav-active):not([aria-current="page"]):hover,
body.green-page .navbar nav a:not(.active):not(.kb-nav-active):not([aria-current="page"]):hover {
  color:#eafff3 !important;
  background:linear-gradient(180deg,rgba(38,201,120,.18),rgba(38,201,120,.075)) !important;
  border-color:rgba(38,201,120,.34) !important;
  box-shadow:
    inset 0 0 0 1px rgba(38,201,120,.05),
    0 0 16px rgba(38,201,120,.10) !important;
}

/* Game Hosting + VPS: only NON-active links hover red */
body.red-page header nav a:not(.active):not([aria-current="page"]):hover,
body.red-page .site-header nav a:not(.active):not([aria-current="page"]):hover,
body.red-page .navbar nav a:not(.active):not([aria-current="page"]):hover {
  color:#fff0f2 !important;
  background:linear-gradient(180deg,rgba(255,51,72,.19),rgba(255,51,72,.075)) !important;
  border-color:rgba(255,51,72,.36) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,51,72,.055),
    0 0 16px rgba(255,51,72,.11) !important;
}

/* Light mode: active remains blue too */
html[data-theme="light"] header nav a.active,
html[data-theme="light"] .site-header nav a.active,
html[data-theme="light"] .navbar nav a.active,
html[data-theme="light"] header nav a[aria-current="page"],
html[data-theme="light"] header nav a.kb-nav-active {
  color:#176fc4 !important;
  background:rgba(61,149,255,.105) !important;
  border-color:rgba(61,149,255,.30) !important;
  box-shadow:inset 0 0 0 1px rgba(61,149,255,.04),0 0 14px rgba(61,149,255,.07) !important;
}

html[data-theme="light"] body.green-page header nav a:not(.active):not(.kb-nav-active):not([aria-current="page"]):hover,
html[data-theme="light"] body.green-page .site-header nav a:not(.active):not(.kb-nav-active):not([aria-current="page"]):hover {
  color:#177548 !important;
  background:rgba(38,201,120,.10) !important;
  border-color:rgba(38,201,120,.27) !important;
}

html[data-theme="light"] body.red-page header nav a:not(.active):not([aria-current="page"]):hover,
html[data-theme="light"] body.red-page .site-header nav a:not(.active):not([aria-current="page"]):hover {
  color:#b91f35 !important;
  background:rgba(255,51,72,.09) !important;
  border-color:rgba(255,51,72,.25) !important;
}


/* =========================================================
   KNOWLEDGEBASE v1.3 — LIGHT MODE CONTRAST + CATEGORY HOVER
   Fixes based on visual QA screenshots.
   ========================================================= */

/* ---------- Light mode: featured / "Ghid rapid Noxera" ---------- */
html[data-theme="light"] body.green-page.knowledgebase-page .kb-featured {
  background:
    radial-gradient(circle at 0 0, rgba(38,201,120,.075), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,255,250,.96)) !important;
  border-color: rgba(31,135,83,.17) !important;
  box-shadow: 0 12px 34px rgba(29,116,72,.055) !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-featured .kb-label {
  color: #198653 !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-featured h2 {
  color: #16384b !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-featured p {
  color: #536f7f !important;
}

/* Proper solid green CTA, readable instead of pale-on-pale */
html[data-theme="light"] body.green-page.knowledgebase-page .kb-primary-link {
  color: #ffffff !important;
  background: linear-gradient(135deg, #22b86d, #15975a) !important;
  border-color: rgba(17,132,76,.34) !important;
  box-shadow: 0 8px 20px rgba(28,166,96,.16) !important;
  text-shadow: none !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-primary-link:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #27c878, #17a763) !important;
  border-color: rgba(14,122,69,.42) !important;
  box-shadow: 0 10px 24px rgba(28,166,96,.23) !important;
  transform: translateY(-1px);
}

/* ---------- Light mode: bottom Support Noxera box ---------- */
html[data-theme="light"] body.green-page.knowledgebase-page .kb-help-box {
  background:
    radial-gradient(circle at 0 100%, rgba(38,201,120,.08), transparent 38%),
    linear-gradient(135deg, rgba(248,255,251,.99), rgba(238,252,245,.98)) !important;
  border-color: rgba(31,135,83,.18) !important;
  box-shadow: 0 12px 32px rgba(29,116,72,.05) !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-help-box .kb-label {
  color: #198653 !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-help-box h2 {
  color: #16384b !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-help-box p {
  color: #536f7f !important;
}

/* FAQ secondary action */
html[data-theme="light"] body.green-page.knowledgebase-page .kb-help-actions a {
  color: #176b45 !important;
  background: #ffffff !important;
  border-color: rgba(31,135,83,.24) !important;
  box-shadow: 0 5px 14px rgba(29,116,72,.05) !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-help-actions a:hover {
  color: #0f5a38 !important;
  background: #f0fbf5 !important;
  border-color: rgba(31,160,91,.38) !important;
}

/* Discord gets a distinct but still harmonious treatment */
html[data-theme="light"] body.green-page.knowledgebase-page .kb-help-actions .kb-discord {
  color: #ffffff !important;
  background: linear-gradient(135deg, #5865f2, #4652d9) !important;
  border-color: rgba(70,82,217,.34) !important;
  box-shadow: 0 7px 18px rgba(88,101,242,.16) !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-help-actions .kb-discord:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #6571f5, #505ce5) !important;
  border-color: rgba(70,82,217,.46) !important;
}

/* ---------- Category sidebar: stop washed-out hover ---------- */
html[data-theme="light"] body.green-page.knowledgebase-page .kb-sidebar {
  background: rgba(255,255,255,.94) !important;
  border-color: rgba(27,94,61,.10) !important;
  box-shadow: 0 12px 30px rgba(28,91,61,.045) !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-filter {
  color: #5d7480 !important;
  border: 1px solid transparent !important;
  transition:
    color .16s ease,
    background .16s ease,
    border-color .16s ease,
    transform .16s ease,
    box-shadow .16s ease !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-filter:hover:not(.active) {
  color: #177548 !important;
  background: rgba(38,201,120,.075) !important;
  border-color: rgba(38,201,120,.14) !important;
  box-shadow: inset 3px 0 0 rgba(38,201,120,.55) !important;
  transform: translateX(2px);
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-filter.active {
  color: #12683e !important;
  background: rgba(38,201,120,.115) !important;
  border-color: rgba(38,201,120,.22) !important;
  box-shadow:
    inset 3px 0 0 #26c978,
    0 5px 13px rgba(38,201,120,.055) !important;
  font-weight: 750;
}

/* Dark mode categories get the same logic without becoming radioactive. */
html[data-theme="dark"] body.green-page.knowledgebase-page .kb-filter:hover:not(.active),
body.green-page.knowledgebase-page:not([data-theme="light"]) .kb-filter:hover:not(.active) {
  color: #b9f7d5 !important;
  background: rgba(38,201,120,.075) !important;
  border-color: rgba(38,201,120,.15) !important;
  box-shadow: inset 3px 0 0 rgba(38,201,120,.50) !important;
  transform: translateX(2px);
}

/* ---------- Article cards: clearer green hover in light mode ---------- */
html[data-theme="light"] body.green-page.knowledgebase-page .kb-article:hover {
  border-color: rgba(38,201,120,.24) !important;
  box-shadow: 0 8px 22px rgba(30,126,77,.055) !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-article-toggle i {
  color: #17864f !important;
  background: rgba(38,201,120,.075) !important;
  border-color: rgba(38,201,120,.17) !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-article:hover .kb-article-toggle i {
  color: #ffffff !important;
  background: #25b96e !important;
  border-color: #25b96e !important;
}

/* Selected category strip */
html[data-theme="light"] body.green-page.knowledgebase-page .kb-category-status {
  background: rgba(38,201,120,.065) !important;
  border-color: rgba(38,201,120,.14) !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-category-status span {
  color: #6a8177 !important;
}

html[data-theme="light"] body.green-page.knowledgebase-page .kb-category-status strong {
  color: #12683e !important;
}

/* Mobile/tablet category chips: don't use desktop left-bar movement */
@media (max-width: 960px) {
  html[data-theme="light"] body.green-page.knowledgebase-page .kb-filter:hover:not(.active),
  html[data-theme="light"] body.green-page.knowledgebase-page .kb-filter.active,
  body.green-page.knowledgebase-page .kb-filter:hover:not(.active) {
    transform: none !important;
    box-shadow: none !important;
  }

  html[data-theme="light"] body.green-page.knowledgebase-page .kb-filter:hover:not(.active) {
    background: rgba(38,201,120,.08) !important;
    border-color: rgba(38,201,120,.17) !important;
  }

  html[data-theme="light"] body.green-page.knowledgebase-page .kb-filter.active {
    background: rgba(38,201,120,.13) !important;
    border-color: rgba(38,201,120,.25) !important;
  }
}


/* =========================================================
   NOXERA STATIC ADMIN PUBLIC UI
   ========================================================= */
.noxera-announcements{position:relative;z-index:1500;width:min(1180px,calc(100% - 28px));margin:10px auto 0;display:grid;gap:8px}
.noxera-announcements[hidden]{display:none!important}
.nx-ann{--nx:#3d95ff;--nxrgb:61,149,255;display:flex;align-items:center;gap:11px;padding:11px 13px;border-radius:12px;border:1px solid rgba(var(--nxrgb),.22);background:linear-gradient(90deg,rgba(var(--nxrgb),.11),rgba(7,19,31,.88));box-shadow:0 8px 26px rgba(0,0,0,.09);backdrop-filter:blur(12px)}
.nx-ann--maintenance{--nx:#f4b942;--nxrgb:244,185,66}.nx-ann--degraded{--nx:#ff8a3d;--nxrgb:255,138,61}.nx-ann--major{--nx:#ff3348;--nxrgb:255,51,72}.nx-ann--resolved{--nx:#26c978;--nxrgb:38,201,120}
.nx-ann__dot{width:8px;height:8px;flex:0 0 auto;border-radius:50%;background:var(--nx);box-shadow:0 0 14px var(--nx)}
.nx-ann__content{display:flex;align-items:baseline;gap:9px;min-width:0;flex:1}.nx-ann__content strong{color:#edf7ff;font-size:11.5px;white-space:nowrap}.nx-ann__content span{color:#9ab0c1;font-size:11px;overflow:hidden;text-overflow:ellipsis}.nx-ann__close{border:0;background:transparent;color:#7890a4;font-size:19px;line-height:1;padding:2px 5px}.nx-ann__close:hover{color:#fff}
.nx-live-status-section{padding:26px 0 10px;position:relative;z-index:2}.nx-live-status-section .container{width:min(1180px,calc(100% - 36px));margin:auto}.nx-live-status{border:1px solid rgba(61,149,255,.10);border-radius:18px;padding:22px;background:rgba(5,15,26,.67);backdrop-filter:blur(14px)}
.nx-status-head{display:flex;justify-content:space-between;gap:18px;align-items:end;margin-bottom:16px}.nx-status-head span{font-size:9px;letter-spacing:.13em;color:#7bc2ff;font-weight:900}.nx-status-head h2{margin:3px 0 0;color:#eff8ff;font-size:22px}.nx-status-head small{color:#6e879b;font-size:10px}
.nx-status-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}.nx-status-card{--nx:#26c978;--nxrgb:38,201,120;padding:14px;border:1px solid rgba(var(--nxrgb),.14);border-radius:12px;background:rgba(var(--nxrgb),.035)}.nx-status-card--degraded{--nx:#ff8a3d;--nxrgb:255,138,61}.nx-status-card--maintenance{--nx:#f4b942;--nxrgb:244,185,66}.nx-status-card--partial{--nx:#ff8a3d;--nxrgb:255,138,61}.nx-status-card--major{--nx:#ff3348;--nxrgb:255,51,72}
.nx-status-card__top{display:flex;justify-content:space-between;gap:8px;align-items:center}.nx-status-card__top strong{color:#dcecff;font-size:11.5px}.nx-status-card__top span{color:var(--nx);font-size:9.5px;font-weight:900}.nx-status-card p{margin:7px 0 0;color:#71899c;font-size:10.5px}
.nx-incidents{margin-top:16px;padding-top:15px;border-top:1px solid rgba(255,255,255,.06)}.nx-incidents h3{font-size:13px;color:#dcecff}.nx-incident{display:grid;grid-template-columns:minmax(170px,.8fr) 1.7fr;gap:12px;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.045)}.nx-incident strong{font-size:11px;color:#e4f1fb}.nx-incident span{font-size:10.5px;color:#7890a4}
html[data-theme="light"] .nx-ann{background:linear-gradient(90deg,rgba(var(--nxrgb),.075),rgba(255,255,255,.96))}html[data-theme="light"] .nx-ann__content strong{color:#1b3a51}html[data-theme="light"] .nx-ann__content span{color:#587286}html[data-theme="light"] .nx-live-status{background:rgba(255,255,255,.90);border-color:rgba(27,74,109,.09)}html[data-theme="light"] .nx-status-head h2,html[data-theme="light"] .nx-status-card__top strong,html[data-theme="light"] .nx-incidents h3,html[data-theme="light"] .nx-incident strong{color:#17364e}html[data-theme="light"] .nx-status-card p,html[data-theme="light"] .nx-incident span{color:#607a8e}
@media(max-width:820px){.nx-status-grid{grid-template-columns:1fr 1fr}.nx-ann__content{display:grid;gap:2px}.nx-ann__content strong{white-space:normal}}
@media(max-width:560px){.noxera-announcements{width:calc(100% - 18px);margin-top:8px}.nx-ann{align-items:flex-start}.nx-status-grid{grid-template-columns:1fr}.nx-status-head{align-items:flex-start;flex-direction:column}.nx-incident{grid-template-columns:1fr;gap:3px}}


/* ===== NOXERA ANNOUNCEMENT HIGH VISIBILITY + POPUP ===== */
.noxera-announcements{
  width:min(1180px,calc(100% - 28px));margin:14px auto 4px;display:grid;gap:10px;position:relative;z-index:1450
}
.nx-ann{
  --nx:#3d95ff;--nxrgb:61,149,255;position:relative;display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:14px;min-height:72px;
  padding:14px 16px;border:1px solid rgba(var(--nxrgb),.42);border-radius:15px;
  background:linear-gradient(90deg,rgba(var(--nxrgb),.18),rgba(8,20,32,.97) 30%,rgba(6,15,25,.96));
  box-shadow:0 16px 46px rgba(0,0,0,.22),0 0 36px rgba(var(--nxrgb),.10);
  backdrop-filter:blur(14px);cursor:pointer;transition:.2s ease;overflow:hidden
}
.nx-ann:before{
  content:"";position:absolute;inset:0 auto 0 0;width:4px;background:var(--nx);box-shadow:0 0 18px var(--nx)
}
.nx-ann:hover{transform:translateY(-2px);border-color:rgba(var(--nxrgb),.62);box-shadow:0 20px 55px rgba(0,0,0,.26),0 0 42px rgba(var(--nxrgb),.16)}
.nx-ann--maintenance{--nx:#f4b942;--nxrgb:244,185,66}
.nx-ann--degraded{--nx:#ff8a3d;--nxrgb:255,138,61}
.nx-ann--major{--nx:#ff3348;--nxrgb:255,51,72}
.nx-ann--resolved{--nx:#26c978;--nxrgb:38,201,120}
.nx-ann__signal{display:flex;align-items:center;gap:8px;white-space:nowrap}
.nx-ann__pulse{width:10px;height:10px;border-radius:50%;background:var(--nx);animation:nxAnnPulse 1.9s infinite}
@keyframes nxAnnPulse{0%{box-shadow:0 0 0 0 rgba(var(--nxrgb),.48)}70%{box-shadow:0 0 0 10px rgba(var(--nxrgb),0)}100%{box-shadow:0 0 0 0 rgba(var(--nxrgb),0)}}
.nx-ann__type{padding:5px 8px;border-radius:999px;background:rgba(var(--nxrgb),.12);border:1px solid rgba(var(--nxrgb),.18);color:var(--nx);font-size:9px;font-weight:900;letter-spacing:.05em;text-transform:uppercase}
.nx-ann__content{display:grid;gap:3px;min-width:0}
.nx-ann__content strong{font-size:13px;color:#f0f8ff}
.nx-ann__content span{color:#9bb0c2;font-size:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.nx-ann__more{display:flex;align-items:center;gap:7px;color:#b3c8d9;font-size:10.5px;font-weight:850;padding:8px 10px;border-radius:9px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03)}
.nx-ann:hover .nx-ann__more{color:#fff;border-color:rgba(var(--nxrgb),.26);background:rgba(var(--nxrgb),.08)}

.nx-ann-modal{display:none;position:fixed;inset:0;z-index:50000;align-items:center;justify-content:center;padding:24px}
.nx-ann-modal.open{display:flex}
.nx-ann-modal__backdrop{position:absolute;inset:0;background:rgba(2,8,14,.82);backdrop-filter:blur(12px)}
.nx-ann-modal__panel{
  --nx:#3d95ff;--nxrgb:61,149,255;position:relative;width:min(720px,100%);max-height:min(82vh,780px);overflow:auto;
  border-radius:22px;border:1px solid rgba(var(--nxrgb),.30);
  background:radial-gradient(circle at 90% -10%,rgba(var(--nxrgb),.14),transparent 34%),linear-gradient(180deg,#0b1928,#07111c 75%);
  box-shadow:0 34px 100px rgba(0,0,0,.50),0 0 50px rgba(var(--nxrgb),.09);padding:26px
}
.nx-ann-modal[data-type="maintenance"] .nx-ann-modal__panel{--nx:#f4b942;--nxrgb:244,185,66}
.nx-ann-modal[data-type="degraded"] .nx-ann-modal__panel{--nx:#ff8a3d;--nxrgb:255,138,61}
.nx-ann-modal[data-type="major"] .nx-ann-modal__panel{--nx:#ff3348;--nxrgb:255,51,72}
.nx-ann-modal[data-type="resolved"] .nx-ann-modal__panel{--nx:#26c978;--nxrgb:38,201,120}
.nx-ann-modal__close{position:absolute;right:16px;top:14px;width:34px;height:34px;border-radius:10px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.035);color:#9db0c0;font-size:20px}
.nx-ann-modal__eyebrow{display:inline-flex;padding:5px 8px;border-radius:999px;background:rgba(var(--nxrgb),.11);border:1px solid rgba(var(--nxrgb),.18);color:var(--nx);font-size:9px;font-weight:950;letter-spacing:.08em;text-transform:uppercase}
.nx-ann-modal h2{margin:13px 44px 8px 0;font-size:28px;line-height:1.08;letter-spacing:-.04em;color:#f2f8fd}
.nx-ann-modal__message{white-space:pre-wrap;color:#b7c8d6;font-size:13px;line-height:1.75;padding:16px 0 18px;border-bottom:1px solid rgba(255,255,255,.06)}
.nx-ann-modal__meta{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px;padding:16px 0}
.nx-ann-modal__meta>div{padding:11px;border-radius:11px;border:1px solid rgba(255,255,255,.06);background:rgba(255,255,255,.025)}
.nx-ann-modal__meta span{display:block;color:#647b8f;font-size:9px;text-transform:uppercase;letter-spacing:.08em;font-weight:900}
.nx-ann-modal__meta strong{display:block;margin-top:4px;color:#dceaf4;font-size:10.5px;font-weight:800}
.nx-ann-modal__label{color:#72889a;font-size:9px;text-transform:uppercase;letter-spacing:.1em;font-weight:900;margin-bottom:7px}
.nx-ann-modal__scopes{display:flex;gap:7px;flex-wrap:wrap}
.nx-ann-modal__scopes span{padding:7px 9px;border-radius:9px;border:1px solid rgba(var(--nxrgb),.14);background:rgba(var(--nxrgb),.06);color:#c8d9e6;font-size:10px;font-weight:750}
html.nx-modal-open{overflow:hidden}

html[data-theme="light"] .nx-ann{background:linear-gradient(90deg,rgba(var(--nxrgb),.12),rgba(255,255,255,.98) 35%,rgba(248,252,255,.97))}
html[data-theme="light"] .nx-ann__content strong{color:#16384f}
html[data-theme="light"] .nx-ann__content span{color:#5a7488}
html[data-theme="light"] .nx-ann-modal__panel{background:radial-gradient(circle at 90% -10%,rgba(var(--nxrgb),.10),transparent 34%),linear-gradient(180deg,#fff,#f6fafc 78%);border-color:rgba(var(--nxrgb),.22)}
html[data-theme="light"] .nx-ann-modal h2{color:#17364e}
html[data-theme="light"] .nx-ann-modal__message{color:#577286}
html[data-theme="light"] .nx-ann-modal__meta strong{color:#26495f}

@media(max-width:760px){
  .nx-ann{grid-template-columns:1fr;gap:9px}
  .nx-ann__content span{white-space:normal;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
  .nx-ann__more{width:max-content}
  .nx-ann-modal__meta{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .nx-ann-modal{padding:10px}
  .nx-ann-modal__panel{padding:20px 16px;border-radius:17px}
  .nx-ann-modal h2{font-size:23px}
  .nx-ann-modal__meta{grid-template-columns:1fr}
}


/* ===== ANNOUNCEMENT MODAL OPEN ANIMATION ===== */
.nx-ann-modal.open .nx-ann-modal__backdrop{
  animation:nxAnnBackdropIn .22s ease both
}
.nx-ann-modal.open .nx-ann-modal__panel{
  animation:nxAnnPanelIn .42s cubic-bezier(.18,.88,.22,1.12) both;
  transform-origin:50% 58%
}
.nx-ann-modal__panel:after{
  content:"";position:absolute;inset:0;pointer-events:none;border-radius:inherit;
  background:linear-gradient(110deg,transparent 30%,rgba(255,255,255,.035) 48%,transparent 66%);
  transform:translateX(-120%)
}
.nx-ann-modal.open .nx-ann-modal__panel:after{
  animation:nxAnnSheen .75s .12s ease-out both
}
@keyframes nxAnnBackdropIn{
  from{opacity:0}to{opacity:1}
}
@keyframes nxAnnPanelIn{
  0%{opacity:0;transform:translateY(26px) scale(.93) rotateX(5deg)}
  58%{opacity:1;transform:translateY(-4px) scale(1.012) rotateX(0)}
  100%{opacity:1;transform:translateY(0) scale(1)}
}
@keyframes nxAnnSheen{
  from{transform:translateX(-120%)}to{transform:translateX(120%)}
}

/* ===== STATUS PAGE CONNECTED COMPONENTS ===== */
.status-service-card{
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease
}
.status-service-card.status-card--maintenance{border-color:rgba(244,185,66,.25)!important}
.status-service-card.status-card--degraded{border-color:rgba(255,138,61,.28)!important}
.status-service-card.status-card--partial{border-color:rgba(255,138,61,.36)!important}
.status-service-card.status-card--major{border-color:rgba(255,51,72,.38)!important;box-shadow:0 0 28px rgba(255,51,72,.06)}
.operational-pill.status-pill--maintenance{color:#ffd071!important;border-color:rgba(244,185,66,.22)!important;background:rgba(244,185,66,.08)!important}
.operational-pill.status-pill--degraded,.operational-pill.status-pill--partial{color:#ffa76e!important;border-color:rgba(255,138,61,.22)!important;background:rgba(255,138,61,.08)!important}
.operational-pill.status-pill--major{color:#ff8290!important;border-color:rgba(255,51,72,.25)!important;background:rgba(255,51,72,.08)!important}
.operational-pill.status-pill--maintenance i{background:#f4b942!important}
.operational-pill.status-pill--degraded i,.operational-pill.status-pill--partial i{background:#ff8a3d!important}
.operational-pill.status-pill--major i{background:#ff3348!important}

.status-component-list{
  grid-column:1/-1;
  display:flex;flex-wrap:wrap;gap:7px;
  margin-top:9px;padding-top:9px;border-top:1px solid rgba(255,255,255,.045)
}
.status-component{
  display:flex;align-items:center;gap:7px;padding:6px 8px;border-radius:8px;
  border:1px solid rgba(255,255,255,.055);background:rgba(255,255,255,.018);
  font-size:9.5px;color:#8198aa
}
.status-component strong{font-size:9px;color:#6ce1a4}
.status-component--maintenance strong{color:#ffd071}
.status-component--degraded strong,.status-component--partial strong{color:#ffa76e}
.status-component--major strong{color:#ff8290}

.nx-live-status-section--lower{
  padding:72px 0 24px!important
}
.nx-live-status-section--lower .status-section-head{
  width:min(1180px,calc(100% - 36px));margin:0 auto 14px
}
.nx-status-components{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}
.nx-status-chip{
  padding:5px 7px;border-radius:7px;border:1px solid rgba(38,201,120,.11);
  background:rgba(38,201,120,.04);color:#75e8ad;font-size:8.8px;font-weight:800
}
.nx-status-chip--maintenance{color:#ffd071;border-color:rgba(244,185,66,.14);background:rgba(244,185,66,.05)}
.nx-status-chip--degraded,.nx-status-chip--partial{color:#ffa76e;border-color:rgba(255,138,61,.14);background:rgba(255,138,61,.05)}
.nx-status-chip--major{color:#ff8290;border-color:rgba(255,51,72,.16);background:rgba(255,51,72,.05)}

.timeline-dot.maintenance{background:#f4b942!important;box-shadow:0 0 14px rgba(244,185,66,.45)}
.timeline-dot.degraded,.timeline-dot.partial{background:#ff8a3d!important;box-shadow:0 0 14px rgba(255,138,61,.45)}
.timeline-dot.major{background:#ff3348!important;box-shadow:0 0 14px rgba(255,51,72,.48)}
.timeline-card--maintenance{border-color:rgba(244,185,66,.17)!important}
.timeline-card--degraded,.timeline-card--partial{border-color:rgba(255,138,61,.18)!important}
.timeline-card--major{border-color:rgba(255,51,72,.20)!important}
.timeline-status{
  display:inline-flex;margin-top:8px;padding:4px 7px;border-radius:999px;
  background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.06);
  color:#8fa4b5;font-size:8.5px;font-weight:900;text-transform:uppercase;letter-spacing:.05em
}
