/* ============================================================
   ATLASIANT — PREMIUM VISUAL UPGRADE LAYER
   Enhances base styles.css without modifying source.
   ============================================================ */

/* --- Header logo glow ------------------------------------ */

.s-header__logo img {
  filter:
    drop-shadow(0 0 8px  rgba(81, 160, 255, 0.55))
    drop-shadow(0 0 24px rgba(41, 116, 255, 0.35))
    drop-shadow(0 0 52px rgba(36, 216, 255, 0.18));
  animation: logo-breathe 5s ease-in-out infinite;
  transition: filter 0.4s ease;
}

.s-header__logo:hover img {
  filter:
    drop-shadow(0 0 10px rgba(81, 237, 255, 0.75))
    drop-shadow(0 0 32px rgba(41, 116, 255, 0.55))
    drop-shadow(0 0 70px rgba(36, 216, 255, 0.28));
  animation: none;
}

@keyframes logo-breathe {
  0%, 100% {
    filter:
      drop-shadow(0 0 6px  rgba(81, 160, 255, 0.45))
      drop-shadow(0 0 20px rgba(41, 116, 255, 0.28))
      drop-shadow(0 0 44px rgba(36, 216, 255, 0.13));
  }
  50% {
    filter:
      drop-shadow(0 0 10px rgba(81, 200, 255, 0.65))
      drop-shadow(0 0 30px rgba(41, 116, 255, 0.42))
      drop-shadow(0 0 64px rgba(36, 216, 255, 0.22));
  }
}

/* --- Particle system glow layer -------------------------- */

/*
 * The orb SVG is rendered into two passes:
 *   1. Normal compositing — the sharp crisp dots
 *   2. A blurred duplicate layer (::before pseudo) adds bloom
 *
 * For the ground cloud we add a soft luminance filter on the
 * entire SVG so glow dots bleed light into surrounding space.
 */

/* Orb SVG — soft bloom via CSS filter on the wrapper */
.home-stage__orb-svg {
  /* Gentle glow spread on the entire dot field */
  filter: contrast(1) brightness(1.08);
  /* Additive blend so dots feel luminous, not painted */
  mix-blend-mode: screen;
}

/* Orb wrap glow halo — stronger breathing pulse */
.home-stage__orb-glow {
  animation: orb-halo-breathe 4.2s ease-in-out infinite;
}

@keyframes orb-halo-breathe {
  0%, 100% {
    opacity: 0.62;
    filter: blur(36px) saturate(1.4);
  }
  50% {
    opacity: 0.88;
    filter: blur(28px) saturate(1.8);
  }
}

/* Ground cloud removed */

/* Stage 3 (wave/ground) gets a stronger overall luminance */
.home-stage[data-active-stage="3"] .home-stage__orb-svg {
  filter: contrast(1) brightness(1.18);
}

/* --- Per-page body accent gradients ----------------------- */

.page-map {
  background:
    radial-gradient(circle at 28% 8%, rgba(36, 216, 255, 0.11), transparent 30%),
    radial-gradient(circle at 74% 56%, rgba(41, 116, 255, 0.07), transparent 32%),
    linear-gradient(180deg, #071019 0%, #0a1321 100%);
}

.page-gs {
  background:
    radial-gradient(circle at 74% 7%, rgba(36, 216, 255, 0.1), transparent 28%),
    radial-gradient(circle at 22% 66%, rgba(36, 195, 175, 0.05), transparent 32%),
    linear-gradient(180deg, #07101b 0%, #091220 100%);
}

.page-ns {
  background:
    radial-gradient(circle at 64% 6%, rgba(123, 141, 255, 0.11), transparent 28%),
    radial-gradient(circle at 26% 68%, rgba(255, 90, 135, 0.05), transparent 30%),
    linear-gradient(180deg, #080d1b 0%, #0b1023 100%);
}

.page-engine {
  background:
    radial-gradient(circle at 38% 5%, rgba(103, 120, 255, 0.13), transparent 28%),
    radial-gradient(circle at 78% 52%, rgba(81, 237, 255, 0.05), transparent 32%),
    linear-gradient(180deg, #070b17 0%, #090f1e 100%);
}

/* --- Card upgrades ---------------------------------------- */

/* Equal-height feature card rows */
.m-story--three-up {
  align-items: stretch;
}

.m-story--three-up .c-ui-box--feature {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Colored eyebrow dots per card position */
.m-story--three-up .c-ui-box--feature:nth-child(1) .c-ui-box__eyebrow::before {
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

.m-story--three-up .c-ui-box--feature:nth-child(2) .c-ui-box__eyebrow::before {
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  box-shadow: 0 0 8px rgba(252, 211, 77, 0.5);
}

.m-story--three-up .c-ui-box--feature:nth-child(3) .c-ui-box__eyebrow::before {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  box-shadow: 0 0 8px rgba(167, 139, 250, 0.5);
}

.c-client-tile,
.c-ui-box {
  border-color: rgba(151, 194, 248, 0.14);
  background:
    linear-gradient(155deg, rgba(16, 26, 50, 0.94) 0%, rgba(8, 13, 24, 0.99) 100%),
    rgba(9, 14, 26, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(81, 237, 255, 0.1),
    0 24px 72px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(81, 150, 255, 0.03);
  transition: border-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}

.c-client-tile:hover,
.c-ui-box--feature:hover {
  border-color: rgba(81, 237, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(81, 237, 255, 0.16),
    0 32px 88px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(36, 216, 255, 0.06);
  transform: translateY(-2px);
}

.c-client-tile::before,
.c-ui-box::before {
  background: linear-gradient(
    135deg,
    rgba(81, 237, 255, 0.1) 0%,
    transparent 36%,
    transparent 66%,
    rgba(123, 141, 255, 0.08) 100%
  );
}

/* Gradient treatment for card text */
.c-client-tile strong {
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.97) 0%, rgba(210, 224, 248, 0.88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c-ui-box__title {
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.97) 0%, rgba(210, 224, 248, 0.88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat number accent */
.c-ui-box__number {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  word-break: break-word;
  overflow-wrap: break-word;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.98) 0%, rgba(155, 196, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c-ui-box--stat,
.c-ui-box--insight {
  overflow: hidden;
}

/* Timeline grid overflow fix */
.home-stage__card--timeline {
  overflow: hidden;
}
.home-stage__timeline-grid strong {
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
}

/* Eyebrow accent dot */
.c-ui-box__eyebrow::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  background: linear-gradient(135deg, rgba(81, 237, 255, 0.96), rgba(123, 141, 255, 0.96));
  box-shadow: 0 0 8px rgba(81, 237, 255, 0.36);
}

/* --- Alert badge ------------------------------------------ */

.c-alert {
  border-color: rgba(81, 237, 255, 0.15);
  background:
    linear-gradient(180deg, rgba(14, 24, 46, 0.94), rgba(8, 13, 24, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(81, 237, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

.c-alert__eyebrow {
  color: rgba(81, 237, 255, 0.9);
}

/* --- Graph steps ------------------------------------------ */

.m-graph__step {
  padding: 22px 20px 24px;
  border-color: rgba(151, 194, 248, 0.14);
  background:
    linear-gradient(155deg, rgba(14, 22, 42, 0.96), rgba(8, 12, 24, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(81, 237, 255, 0.09),
    0 20px 52px rgba(0, 0, 0, 0.24);
}

.m-graph__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(81, 237, 255, 0.22);
  border-radius: 8px;
  background: rgba(81, 237, 255, 0.06);
  color: rgba(81, 237, 255, 0.92);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

/* --- Gradient text clipping fix -------------------------- */
/* line-height: 0.92 makes the box smaller than the glyphs;
   padding-bottom extends the background-clip area so descenders
   and the bottom of tall letters are never cropped. */

.m-welcome__title,
.m-story__title,
.m-graph__title,
.m-cta__title,
.home-stage__section-title,
.home-stage__ground-title,
.home-suite__title {
  padding-bottom: 0.15em;
}

/* --- Section title gradients ----------------------------- */

.m-graph__title {
  background: linear-gradient(180deg, rgba(244, 248, 254, 0.98) 0%, rgba(190, 212, 248, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m-story__title {
  background: linear-gradient(180deg, rgba(244, 248, 254, 0.98) 0%, rgba(190, 212, 248, 0.88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- CTA section ------------------------------------------ */

.m-cta {
  padding: 48px;
  border-color: rgba(81, 237, 255, 0.11);
  background:
    radial-gradient(ellipse at 16% 52%, rgba(41, 116, 255, 0.09), transparent 54%),
    radial-gradient(ellipse at 84% 20%, rgba(81, 237, 255, 0.06), transparent 46%),
    linear-gradient(180deg, rgba(12, 20, 40, 0.96), rgba(7, 12, 23, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(81, 237, 255, 0.03),
    0 52px 130px rgba(0, 0, 0, 0.4);
}

.m-cta__title {
  background: linear-gradient(180deg, #f4f8fe 0%, #ccdaf5 55%, #8cafdf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Stream visualization --------------------------------- */

.c-stream {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(41, 116, 255, 0.08), transparent 62%),
    radial-gradient(ellipse at 14% 62%, rgba(81, 237, 255, 0.05), transparent 42%),
    radial-gradient(ellipse at 86% 32%, rgba(123, 141, 255, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(12, 20, 38, 0.96), rgba(7, 11, 22, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 44px 110px rgba(0, 0, 0, 0.36);
}

.c-stream__lines path {
  filter: drop-shadow(0 0 10px rgba(72, 181, 255, 0.2));
}

/* SVG node dots */
.c-stream__lines .c-stream__node-dot {
  fill: rgba(81, 237, 255, 0.7);
  stroke: none;
  filter: drop-shadow(0 0 5px rgba(81, 237, 255, 0.55));
}

.c-stream__lines .c-stream__node-dot--core {
  fill: rgba(81, 237, 255, 0.95);
  filter: drop-shadow(0 0 12px rgba(81, 237, 255, 0.8));
}

.c-stream__lines .c-stream__node-dot--core-ring {
  fill: none;
  stroke: rgba(81, 237, 255, 0.18);
  stroke-width: 1;
  filter: none;
}

.c-stream__lines .c-stream__node-dot--accent {
  fill: rgba(255, 130, 155, 0.92);
  filter: drop-shadow(0 0 7px rgba(255, 130, 155, 0.6));
}

/* Globe outline + latitude lines */
.c-stream__lines .c-stream__globe-outline {
  fill: none;
  stroke: rgba(81, 237, 255, 0.15);
  stroke-width: 1;
  stroke-dasharray: none;
  filter: none;
  animation: none;
}

.c-stream__lines .c-stream__globe-lat {
  fill: none;
  stroke: rgba(81, 237, 255, 0.22);
  stroke-width: 0.8;
  stroke-dasharray: 8 5;
  filter: none;
  animation: none;
}

/* Pipeline gate lines */
.c-stream__lines .c-stream__gate {
  stroke: rgba(81, 237, 255, 0.2);
  stroke-width: 0.8;
  stroke-dasharray: 4 4;
  filter: none;
  animation: none;
}

/* Per-variant path enhancements */
.c-stream--engine .c-stream__lines path {
  stroke: rgba(123, 141, 255, 0.46);
  stroke-width: 1.2;
  fill: none;
}

.c-stream--pipeline .c-stream__lines path {
  stroke: rgba(36, 216, 255, 0.48);
  stroke-width: 1.5;
  fill: none;
}

.c-stream--channels .c-stream__lines path { stroke: rgba(81, 237, 255, 0.38); }
.c-stream--channels .c-stream__lines path:nth-child(2) { stroke: rgba(123, 141, 255, 0.35); }
.c-stream--channels .c-stream__lines path:nth-child(3) { stroke: rgba(167, 139, 250, 0.3); }

.c-stream--globe .c-stream__lines path {
  stroke: rgba(36, 216, 255, 0.4);
  stroke-width: 1.2;
  fill: none;
}

/* --- Module section separators ---------------------------- */

.module--graph {
  position: relative;
}

.module--graph::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 70%;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center top, rgba(41, 116, 255, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.module--graph .wrap {
  position: relative;
  z-index: 1;
}

.module--welcome::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, rgba(81, 237, 255, 0.14) 28%, rgba(123, 141, 255, 0.12) 72%, transparent 96%);
  pointer-events: none;
}

.module--story::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 56%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(81, 237, 255, 0.1), transparent);
  pointer-events: none;
}

/* --- Progress sidebar ------------------------------------- */

.s-progress__segment {
  color: rgba(81, 237, 255, 0.72);
}

.s-progress__segment span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 26px;
  border: 1px solid rgba(81, 237, 255, 0.18);
  border-radius: 8px;
  background: rgba(81, 237, 255, 0.05);
  font-size: 0.62rem;
}

/* --- Button upgrades -------------------------------------- */

.a-button--primary {
  border-color: rgba(81, 237, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(28, 52, 108, 0.98), rgba(12, 18, 38, 0.99)),
    linear-gradient(135deg, rgba(81, 237, 255, 0.16), rgba(123, 141, 255, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 48px rgba(18, 30, 72, 0.34),
    0 0 0 1px rgba(81, 237, 255, 0.06);
}

.a-button--primary:hover {
  border-color: rgba(81, 237, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 56px rgba(18, 30, 72, 0.4),
    0 0 32px rgba(81, 237, 255, 0.1);
}

.a-button--secondary:hover,
.a-button--basic:hover {
  border-color: rgba(151, 194, 248, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(36, 216, 255, 0.06);
}

/* --- Footer ----------------------------------------------- */

.s-footer__wrap {
  border-color: rgba(151, 194, 248, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(81, 237, 255, 0.03),
    0 28px 72px rgba(0, 0, 0, 0.28);
}

/* --- Homepage scroll panel card enhancements -------------- */

.home-stage__card {
  border-color: rgba(151, 194, 248, 0.13);
  background:
    linear-gradient(155deg, rgba(20, 30, 56, 0.9) 0%, rgba(14, 20, 38, 0.97) 100%),
    rgba(12, 18, 36, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(81, 237, 255, 0.09),
    0 24px 64px rgba(0, 0, 0, 0.3);
}

.home-stage__section-title,
.home-stage__ground-title {
  font-size: clamp(3rem, 4.8vw, 5rem);
  background: linear-gradient(180deg, #f4f8fe 0%, #c8ddf5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Suite section cards ---------------------------------- */

.home-suite__title {
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.97) 0%, rgba(196, 214, 248, 0.88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-home .c-client-tile {
  box-shadow:
    inset 0 1px 0 rgba(81, 237, 255, 0.08),
    0 28px 72px rgba(0, 0, 0, 0.28);
}

/* --- Chamber ring on homepage ----------------------------- */

.home-stage__chamber-ring {
  box-shadow:
    inset 0 0 0 18px rgba(10, 16, 30, 0.96),
    0 0 60px rgba(74, 116, 255, 0.22),
    0 0 120px rgba(81, 237, 255, 0.06);
}

/* --- Responsive: keep upgrades clean at mobile ------------ */

@media (max-width: 768px) {
  .m-cta {
    padding: 28px 22px;
  }

  .module--graph::before {
    display: none;
  }
}

/* --- NovaSight Autonomous Loop visualization -------------- */

.page-ns #ns-operations .m-story {
  align-items: center;
}

.ns-autoloop {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.ns-autoloop__svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  overflow: visible;
}

/* Track rings */
.ns-al-track {
  fill: none;
  stroke-dasharray: 7 5;
  stroke-width: 1;
}
.ns-al-track--outer { stroke: rgba(81, 237, 255, 0.18); }
.ns-al-track--mid   { stroke: rgba(167, 139, 250, 0.16); }
.ns-al-track--inner { stroke: rgba(52, 211, 153, 0.13); }

/* Core glows */
.ns-al-glow--3 { fill: rgba(81, 237, 255, 0.03); animation: ns-al-pulse 3.6s ease-in-out infinite; transform-origin: 150px 150px; }
.ns-al-glow--2 { fill: rgba(81, 237, 255, 0.06); animation: ns-al-pulse 3.6s ease-in-out infinite; animation-delay: 0.4s; transform-origin: 150px 150px; }
.ns-al-glow--1 { fill: rgba(81, 237, 255, 0.1);  animation: ns-al-pulse 3.6s ease-in-out infinite; animation-delay: 0.8s; transform-origin: 150px 150px; }

/* Core */
.ns-al-core {
  fill: rgba(7, 14, 30, 0.98);
  stroke: rgba(81, 237, 255, 0.6);
  stroke-width: 1.5;
}
.ns-al-core-ring {
  fill: none;
  stroke: rgba(81, 237, 255, 0.22);
  stroke-width: 1;
  stroke-dasharray: 3 2;
  animation: ns-al-ccw 5s linear infinite;
  transform-origin: 150px 150px;
}

/* Core labels */
.ns-al-core-txt {
  font-family: "IBM Plex Mono", monospace;
  pointer-events: none;
}
.ns-al-core-txt--main {
  font-size: 9px;
  font-weight: 600;
  fill: rgba(81, 237, 255, 0.95);
  letter-spacing: 0.14em;
}
.ns-al-core-txt--sub {
  font-size: 7px;
  fill: rgba(81, 237, 255, 0.5);
  letter-spacing: 0.1em;
}

/* Spoke arms */
.ns-al-spokes {
  animation: ns-al-cw 22s linear infinite;
  transform-origin: 150px 150px;
}
.ns-al-spoke {
  stroke: rgba(81, 237, 255, 0.16);
  stroke-width: 1;
}

/* Inner spin ring */
.ns-al-inner-spin {
  fill: none;
  stroke: rgba(52, 211, 153, 0.28);
  stroke-width: 1.5;
  stroke-dasharray: 14 7;
  animation: ns-al-ccw 10s linear infinite;
  transform-origin: 150px 150px;
}

/* Stage labels */
.ns-al-lbl {
  font-family: "IBM Plex Mono", monospace;
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  pointer-events: none;
}
.ns-al-lbl--cyan   { fill: rgba(81, 237, 255, 0.72); }
.ns-al-lbl--purple { fill: rgba(167, 139, 250, 0.72); }
.ns-al-lbl--amber  { fill: rgba(252, 211, 77, 0.72); }
.ns-al-lbl--green  { fill: rgba(52, 211, 153, 0.72); }

/* Orbit groups — all nodes start at top of their ring, staggered via delay */
.ns-al-orb { transform-origin: 150px 150px; }
.ns-al-orb--o1 { animation: ns-al-cw 13s linear infinite; }
.ns-al-orb--o2 { animation: ns-al-cw 13s linear infinite; animation-delay: -3.25s; }
.ns-al-orb--o3 { animation: ns-al-cw 13s linear infinite; animation-delay: -6.5s; }
.ns-al-orb--o4 { animation: ns-al-cw 13s linear infinite; animation-delay: -9.75s; }
.ns-al-orb--m1 { animation: ns-al-ccw 8s linear infinite; }
.ns-al-orb--m2 { animation: ns-al-ccw 8s linear infinite; animation-delay: -4s; }

/* Nodes */
.ns-al-node--cyan   { fill: rgba(81, 237, 255, 0.95);  filter: drop-shadow(0 0 6px rgba(81, 237, 255, 0.75)); }
.ns-al-node--purple { fill: rgba(167, 139, 250, 0.95); filter: drop-shadow(0 0 6px rgba(167, 139, 250, 0.65)); }
.ns-al-node--amber  { fill: rgba(252, 211, 77, 0.95);  filter: drop-shadow(0 0 6px rgba(252, 211, 77, 0.65)); }
.ns-al-node--green  { fill: rgba(52, 211, 153, 0.95);  filter: drop-shadow(0 0 6px rgba(52, 211, 153, 0.65)); }

/* Keyframes */
@keyframes ns-al-cw  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ns-al-ccw { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes ns-al-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.18); }
}


/* --- GDPR Consent Banner --------------------------------- */

#consent-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-radius: 14px;
  border: 1px solid rgba(151, 194, 248, 0.18);
  background: rgba(8, 14, 28, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(81,160,255,0.08);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.82rem;
  color: rgba(190, 212, 250, 0.82);
  white-space: nowrap;
  max-width: 90vw;
}

#consent-banner a {
  color: rgba(81, 237, 255, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(81, 237, 255, 0.3);
  text-underline-offset: 3px;
}

.consent-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.consent-btn {
  padding: 7px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.consent-btn--decline {
  background: transparent;
  border-color: rgba(151, 194, 248, 0.2);
  color: rgba(160, 190, 240, 0.7);
}

.consent-btn--decline:hover {
  border-color: rgba(151, 194, 248, 0.4);
  color: rgba(190, 212, 250, 0.9);
}

.consent-btn--accept {
  background: linear-gradient(135deg, rgba(36, 216, 255, 0.15), rgba(41, 116, 255, 0.15));
  border-color: rgba(81, 160, 255, 0.35);
  color: rgba(81, 237, 255, 0.95);
}

.consent-btn--accept:hover {
  background: linear-gradient(135deg, rgba(36, 216, 255, 0.25), rgba(41, 116, 255, 0.22));
  border-color: rgba(81, 160, 255, 0.55);
  box-shadow: 0 0 16px rgba(36, 216, 255, 0.15);
}

@media (max-width: 600px) {
  #consent-banner {
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
    bottom: 16px;
    padding: 14px 20px;
  }
}
