.chat-launcher {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 90;
  width: min(460px, calc(100vw - 44px));
  font-family: var(--font-body, "Manrope", ui-sans-serif, system-ui, sans-serif);
  color: var(--text, #fff);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.98);
  transition: opacity .24s ease, transform .24s ease;
}

.sound-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 82;
  width: 76px;
  min-width: 76px;
  height: 48px;
  display: inline-grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  border: 1px solid rgba(248, 223, 152, .34);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035)),
    rgba(13, 14, 17, .82);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .11);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: width .24s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease, color .2s ease;
}

.sound-toggle::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(112deg, transparent 32%, rgba(248, 223, 152, .32) 48%, transparent 64%);
  transform: translateX(-68%) skewX(-18deg);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.sound-toggle:hover,
.sound-toggle.is-on {
  color: var(--dark, #101114);
  border-color: rgba(248, 223, 152, .56);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  box-shadow: 0 26px 66px rgba(0, 0, 0, .36), 0 14px 34px rgba(215, 173, 79, .25), inset 0 1px 0 rgba(255, 255, 255, .48);
  transform: translateY(-2px);
}

.sound-toggle:hover::before,
.sound-toggle.is-on::before {
  opacity: 1;
  animation: soundSweep 2.8s ease-in-out infinite;
}

.sound-toggle-icon {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.sound-toggle-icon svg {
  width: 48px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sound-toggle-icon::after {
  content: "";
  position: absolute;
  inset: 9px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .14;
}

.sound-toggle.is-on .sound-toggle-icon::after {
  animation: soundPulse 2.4s ease-in-out infinite;
}

.sound-toggle-label {
  display: none;
}

.sound-toggle-label strong {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 13px;
  line-height: 1;
}

.sound-toggle-label span {
  font-size: 11px;
  font-weight: 850;
  opacity: .7;
}

.sound-toggle.is-on .sound-toggle-label span {
  opacity: .78;
}

.sound-wave-path {
  fill: none;
  vector-effect: non-scaling-stroke;
  transform-origin: center;
}

.sound-wave-path-back {
  opacity: .22;
}

.sound-wave-path-front {
  stroke-dasharray: 28 18;
  stroke-dashoffset: 0;
  opacity: .92;
}

.sound-toggle:hover .sound-wave-path-front,
.sound-toggle.is-on .sound-wave-path-front {
  animation: waveTrace 1.6s linear infinite;
}

.sound-toggle.is-on .sound-wave-icon svg {
  animation: waveBreath 2.6s ease-in-out infinite;
}

/* Fast, polished content transitions. The navigation remains visually stable. */
main,
footer {
  transform-origin: 50% 0;
}

html.is-page-exiting main,
html.is-page-exiting footer {
  opacity: 0;
  transform: translateY(5px) scale(.998);
  filter: blur(1px);
  transition:
    opacity .15s cubic-bezier(.4, 0, 1, 1),
    transform .15s cubic-bezier(.4, 0, 1, 1),
    filter .15s ease;
}

html.is-page-entering main,
html.is-page-entering footer {
  animation: deltywebPageEnter .34s cubic-bezier(.18, .72, .22, 1) both;
}

@keyframes deltywebPageEnter {
  from {
    opacity: 0;
    transform: translateY(6px) scale(.998);
    filter: blur(1px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 700px) {
  html.is-page-exiting main,
  html.is-page-exiting footer { transition-duration: .11s; }
  html.is-page-entering main,
  html.is-page-entering footer { animation-duration: .26s; }
}

@media (prefers-reduced-motion: reduce) {
  html.is-page-exiting main,
  html.is-page-exiting footer,
  html.is-page-entering main,
  html.is-page-entering footer {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
  }
}

/* Final AI assistant skin: intentionally last in the cascade. */
.web-assistant-panel {
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(238, 196, 93, .3);
  border-radius: 20px;
  background:
    radial-gradient(circle at 6% -8%, rgba(238, 196, 93, .13), transparent 30%),
    radial-gradient(circle at 102% 14%, rgba(104, 222, 217, .08), transparent 28%),
    linear-gradient(145deg, rgba(28, 30, 35, .98), rgba(7, 8, 11, .995) 72%);
  box-shadow: 0 38px 110px rgba(0, 0, 0, .7), 0 18px 44px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(34px) saturate(132%);
  -webkit-backdrop-filter: blur(34px) saturate(132%);
}

.web-assistant-panel::before {
  top: 0;
  right: 20px;
  left: 20px;
  width: auto;
  height: 2px;
  transform: none;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #f4cf72 0 44%, #6de0db 72%, #df669f 100%);
  box-shadow: 0 0 22px rgba(238, 196, 93, .28);
}

.web-assistant-head,
.web-assistant-form {
  background: rgba(5, 6, 9, .35);
}

.web-assistant-head {
  padding: 17px 18px 15px;
  border-bottom-color: rgba(255, 255, 255, .08);
}

.web-assistant-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #07080a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 10px 28px rgba(0, 0, 0, .34);
}

.web-assistant-close {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .045);
}

.web-assistant-feed {
  max-height: 250px;
  padding: 14px 16px 10px;
}

.web-assistant-message {
  max-width: 92%;
  padding: 11px 13px;
  border-color: rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
  font-size: 13px;
}

.web-assistant-message.is-user {
  color: #131418;
  border-color: rgba(255, 228, 158, .52);
  background: linear-gradient(135deg, #f5d77b, #c99331);
}

.web-assistant-actions a,
.web-assistant-chip,
.web-assistant-more {
  border-color: rgba(238, 196, 93, .3);
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.web-assistant-actions a:hover,
.web-assistant-chip:hover,
.web-assistant-more:hover {
  color: #f5d77b;
  border-color: rgba(245, 215, 123, .62);
  background: rgba(238, 196, 93, .08);
}

.web-assistant-quick {
  gap: 7px;
  padding: 6px 16px 12px;
}

.web-assistant-chip,
.web-assistant-more {
  min-height: 30px;
  border-radius: 999px;
  font-size: 10.5px;
}

.web-assistant-form {
  gap: 8px;
  padding: 12px 14px 14px;
  border-top-color: rgba(255, 255, 255, .08);
}

.web-assistant-input {
  min-height: 46px;
  border-color: rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
}

.web-assistant-send {
  width: 46px;
  min-height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5d77b, #c99331);
}

.web-assistant-launcher {
  width: 48px;
  height: 48px;
  color: #f5d77b;
  border: 1px solid rgba(245, 215, 123, .72);
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 235, 172, .14), transparent 34%),
    linear-gradient(145deg, #1c1e23, #08090c 72%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .42), 0 0 24px rgba(215, 173, 79, .14), inset 0 1px 0 rgba(255, 255, 255, .12);
  animation: none;
}

.web-assistant-launcher::before {
  inset: -5px;
  border-color: rgba(248, 223, 152, .16);
  opacity: 1;
  animation: none;
}

.web-assistant-launcher:hover,
.web-assistant.is-open .web-assistant-launcher {
  color: #ffe7a4;
  background: linear-gradient(145deg, #24262c, #0a0b0e 72%);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .5), 0 0 30px rgba(215, 173, 79, .22), inset 0 1px 0 rgba(255, 255, 255, .14);
}

.web-assistant-launcher svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.45;
}

.web-assistant-launcher svg circle {
  fill: currentColor;
  stroke: none;
}

.web-assistant-prompt {
  left: 61px;
  bottom: 7px;
  min-height: 34px;
  border-color: rgba(238, 196, 93, .28);
  border-radius: 10px;
  color: rgba(255, 255, 255, .9);
  background: linear-gradient(145deg, rgba(25, 27, 32, .96), rgba(10, 11, 14, .97));
  box-shadow: 0 16px 38px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .07);
}

@media (max-width: 660px) {
  .web-assistant-panel {
    width: 100%;
    height: auto;
    max-height: min(78dvh, 650px);
    border-radius: 18px;
  }

  .web-assistant-feed {
    max-height: 242px;
  }

  .web-assistant-chip:nth-child(n+4) {
    display: inline-flex;
  }

  .web-assistant-more {
    display: none;
  }
}

/* Premium compact assistant — dark mirror edition */
.web-assistant-panel {
  width: min(374px, calc(100vw - 40px));
  border-color: rgba(239, 194, 87, .28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(239, 194, 87, .11), transparent 31%),
    radial-gradient(circle at 100% 22%, rgba(105, 220, 214, .055), transparent 34%),
    linear-gradient(145deg, rgba(25, 27, 32, .97), rgba(8, 9, 12, .985));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .58), 0 0 0 1px rgba(255, 255, 255, .025) inset;
  backdrop-filter: blur(28px) saturate(125%);
  -webkit-backdrop-filter: blur(28px) saturate(125%);
}

.web-assistant-panel::before {
  left: 22px;
  right: 22px;
  height: 2px;
  transform: none;
  background: linear-gradient(90deg, #efc257 0 46%, #69dcd6 72%, #df5d99 100%);
  box-shadow: 0 0 24px rgba(239, 194, 87, .3);
}

.web-assistant-head {
  padding: 17px 18px 15px;
  border-bottom-color: rgba(255, 255, 255, .075);
}

.web-assistant-mark {
  width: 38px;
  height: 38px;
}

.web-assistant-title strong { font-size: 15px; }
.web-assistant-title span { color: rgba(255, 255, 255, .52); font-size: 11px; }

.web-assistant-title strong {
  display: flex;
  align-items: center;
  gap: 7px;
}

.web-assistant-title .web-assistant-ai-badge {
  display: inline-grid;
  min-width: 24px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(105, 220, 214, .42);
  border-radius: 999px;
  color: #8fe7e2;
  background: rgba(105, 220, 214, .08);
  box-shadow: 0 0 16px rgba(105, 220, 214, .1);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.web-assistant-close {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .035);
}

.web-assistant-feed {
  max-height: 238px;
  padding: 14px 16px 9px;
}

.web-assistant-message {
  max-width: 94%;
  padding: 11px 12px;
  border-color: rgba(255, 255, 255, .085);
  border-radius: 12px;
  color: rgba(255, 255, 255, .76);
  background: linear-gradient(135deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .035));
  font-size: 13px;
  line-height: 1.5;
}

.web-assistant-quick {
  gap: 7px;
  padding: 4px 16px 13px;
}

.web-assistant-chip {
  min-height: 32px;
  padding: 0 10px;
  border-color: rgba(239, 194, 87, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
}

.web-assistant-form {
  padding: 11px 12px 12px;
  border-top-color: rgba(255, 255, 255, .075);
  background: rgba(3, 4, 6, .32);
}

.web-assistant-input {
  min-height: 46px;
  border-color: rgba(239, 194, 87, .24);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
}

.web-assistant-input:disabled {
  cursor: wait;
  opacity: .58;
}

.web-assistant-send {
  width: 46px;
  min-height: 46px;
  border-radius: 12px;
}

@media (max-width: 700px) {
  .web-assistant-panel {
    height: auto;
    max-height: min(78dvh, 610px);
    border-radius: 18px;
  }
  .web-assistant-feed {
    flex: 0 1 auto;
    max-height: 238px;
  }
  .web-assistant-chip:nth-child(n+4) { display: inline-flex; }
  .web-assistant-more { display: none; }
}

.web-assistant-mode-choice {
  margin: 2px 16px 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .022));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.web-assistant-mode-choice > p { margin: 0 0 9px; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 750; }
.web-assistant-mode-choice > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.web-assistant-mode-choice button {
  min-width: 0; padding: 10px; display: grid; grid-template-columns: 26px 1fr; column-gap: 8px; text-align: left;
  border: 1px solid rgba(238,196,93,.24); border-radius: 11px; color: #fff;
  background: rgba(7,8,11,.62); cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.web-assistant-mode-choice button:hover { transform: translateY(-1px); border-color: rgba(245,215,123,.64); background: rgba(238,196,93,.08); }
.web-assistant-mode-choice button > span { grid-row: 1 / span 2; width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid rgba(245,215,123,.42); border-radius: 50%; color: #f5d77b; font-size: 9px; font-weight: 900; }
.web-assistant-mode-choice button:last-child > span { color: #6de0db; border-color: rgba(109,224,219,.42); }
.web-assistant-mode-choice strong { overflow: hidden; font-size: 11px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.web-assistant-mode-choice small { color: rgba(255,255,255,.46); font-size: 9px; line-height: 1.25; }
.web-assistant-input:disabled { cursor: not-allowed; opacity: .58; }
.web-assistant.is-human-mode .web-assistant-quick { display: none; }

@media (max-width: 420px) {
  .web-assistant-mode-choice > div { grid-template-columns: 1fr; }
}

/* ENQIVO AI & Live Support — obsidian glass presentation layer.
   Kept at the end of the cascade so legacy widget rules cannot reintroduce
   the former stripe texture or gold-filled launcher. */
.web-assistant-panel {
  width: min(390px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid rgba(238, 196, 93, .3);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% -8%, rgba(238, 196, 93, .12), transparent 29%),
    radial-gradient(circle at 102% 18%, rgba(104, 222, 217, .075), transparent 28%),
    linear-gradient(145deg, rgba(25, 27, 32, .985), rgba(7, 8, 11, .995) 72%);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, .7),
    0 18px 44px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(255, 255, 255, .035) inset,
    0 1px 0 rgba(255, 255, 255, .08) inset;
  backdrop-filter: blur(34px) saturate(132%);
  -webkit-backdrop-filter: blur(34px) saturate(132%);
}

.web-assistant-panel::before {
  top: 0;
  left: 20px;
  right: 20px;
  width: auto;
  height: 2px;
  border-radius: 0 0 999px 999px;
  transform: none;
  background: linear-gradient(90deg, #f4cf72 0 44%, #6de0db 72%, #df669f 100%);
  box-shadow: 0 0 22px rgba(238, 196, 93, .28);
}

.web-assistant-head {
  padding: 17px 18px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent);
}

.web-assistant-mark {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(238, 196, 93, .24);
  border-radius: 12px;
  background-color: #07080a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .36), 0 0 18px rgba(215, 173, 79, .08);
}

.web-assistant-title strong { font-size: 15px; letter-spacing: -.015em; }
.web-assistant-title > span { color: rgba(240, 241, 245, .5); font-size: 10.5px; }
.web-assistant-title .web-assistant-ai-badge {
  min-width: 25px;
  height: 18px;
  border-color: rgba(109, 224, 219, .42);
  color: #8de8e4;
  background: rgba(109, 224, 219, .075);
}

.web-assistant-close {
  width: 36px;
  height: 36px;
  border-color: rgba(255, 255, 255, .1);
  border-radius: 11px;
  color: rgba(255, 255, 255, .66);
  background: rgba(255, 255, 255, .035);
}

.web-assistant-feed {
  max-height: 250px;
  padding: 15px 16px 10px;
  scrollbar-color: rgba(215, 173, 79, .55) rgba(255, 255, 255, .035);
}

.web-assistant-message {
  max-width: 92%;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 13px;
  color: rgba(241, 242, 245, .76);
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
  font-size: 13px;
  line-height: 1.52;
}

.web-assistant-message.is-user {
  color: #111216;
  border-color: rgba(255, 225, 145, .56);
  background: linear-gradient(135deg, #f6d980, #d8a93d 72%, #ad7928);
  box-shadow: 0 12px 28px rgba(215, 173, 79, .15), inset 0 1px 0 rgba(255, 255, 255, .48);
}

.web-assistant-action {
  border-color: rgba(238, 196, 93, .32);
  color: #efc75f;
  background: rgba(238, 196, 93, .065);
}

.web-assistant-quick {
  gap: 7px;
  padding: 4px 16px 13px;
}

.web-assistant-chip {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(238, 196, 93, .18);
  border-radius: 999px;
  color: rgba(241, 242, 245, .68);
  background: rgba(255, 255, 255, .025);
  font-size: 10.5px;
}

.web-assistant-chip:hover {
  color: #f8e4ad;
  border-color: rgba(238, 196, 93, .42);
  background: rgba(238, 196, 93, .075);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.web-assistant-form {
  padding: 11px 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, .075);
  background: rgba(2, 3, 5, .42);
}

.web-assistant-input {
  min-height: 46px;
  border-color: rgba(238, 196, 93, .23);
  border-radius: 12px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .035);
}

.web-assistant-send {
  width: 46px;
  min-height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #f5d77b, #c58f2e);
}

.web-assistant-launcher {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 211, 119, .72);
  color: #f5d77b;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 235, 172, .14), transparent 34%),
    linear-gradient(145deg, #1c1e23, #08090c 72%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .42),
    0 0 24px rgba(215, 173, 79, .14),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  animation: none;
}

.web-assistant-launcher::before {
  inset: -5px;
  border-color: rgba(245, 211, 119, .16);
  opacity: 1;
  animation: none;
}

.web-assistant-launcher svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.45;
}

.web-assistant-launcher svg circle {
  fill: currentColor;
  stroke: none;
}

.web-assistant-launcher:hover,
.web-assistant.is-open .web-assistant-launcher {
  color: #fff0bd;
  border-color: #f5d77b;
  background: linear-gradient(145deg, #262830, #0b0c10 74%);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .5), 0 0 30px rgba(215, 173, 79, .2), inset 0 1px 0 rgba(255, 255, 255, .15);
  transform: translateY(-2px);
}

.web-assistant-prompt {
  left: 61px;
  bottom: 7px;
  min-height: 34px;
  border: 1px solid rgba(238, 196, 93, .22);
  border-radius: 10px;
  color: rgba(255, 255, 255, .72);
  background: rgba(10, 11, 14, .9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (max-width: 700px) {
  .web-assistant-panel {
    height: auto;
    max-height: min(78dvh, 610px);
    border-radius: 18px;
  }
  .web-assistant-feed { flex: 0 1 auto; max-height: 242px; }
  .web-assistant-head { grid-template-columns: 40px minmax(0, 1fr) 38px; }
  .web-assistant-chip:nth-child(n+4) { display: inline-flex; }
  .web-assistant-more { display: none; }
}

/* Unified premium dark canvas. Dark sections share one continuous surface so
   transitions feel architectural rather than like stacked colour blocks. */
main {
  background-color: #101114;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(215, 173, 79, .055), transparent 24%),
    radial-gradient(circle at 91% 48%, rgba(118, 223, 227, .025), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(239, 125, 167, .018), transparent 25%),
    linear-gradient(135deg, #101114 0%, #191b21 46%, #111216 72%, #101114 100%);
}

main > :is(
  .page-hero,
  .article-hero,
  .article-reader,
  .blog-hub-hero,
  .blog-editorial,
  .process,
  .why,
  .pricing,
  .portfolio,
  .insights,
  .faq,
  .portal-section,
  .booking-section,
  .global-presence,
  .faq-page-section,
  .portfolio-index-section,
  .pricing-services-section,
  .trust-services
) {
  background: transparent !important;
}

/* Remove decorative diagonal stripes; depth now comes from light and tone. */
.blog-hub-hero::before,
.blog-editorial::before,
.article-hero::before,
.article-reader::before,
main > .insights::before {
  background: none !important;
  opacity: 0 !important;
}

/* Client feedback keeps its warm identity without creating a separate block. */
body:has(main > .hero) main > .testimonials {
  isolation: isolate;
  background: transparent !important;
  background-color: transparent !important;
}

body:has(main > .hero) main > .testimonials::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(ellipse 48% 62% at 7% 50%, rgba(215, 173, 79, .13) 0%, rgba(215, 173, 79, .05) 38%, transparent 76%),
    radial-gradient(ellipse 34% 48% at 84% 52%, rgba(215, 173, 79, .04) 0%, transparent 74%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  pointer-events: none;
}

body:has(main > .hero) main > .testimonials > .container {
  position: relative;
  z-index: 1;
}

/* Premium gold carousel scrollbar — solid colours also support Firefox. */
.reviews-carousel {
  scrollbar-width: thin;
  scrollbar-color: #d7ad4f #17191f !important;
}

.reviews-carousel::-webkit-scrollbar {
  height: 8px;
}

.reviews-carousel::-webkit-scrollbar-track {
  border: 1px solid rgba(248, 223, 152, .08);
  border-radius: 999px;
  background: #17191f !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .62);
}

.reviews-carousel::-webkit-scrollbar-thumb {
  min-width: 84px;
  border: 1px solid rgba(248, 223, 152, .48);
  border-radius: 999px;
  background: linear-gradient(90deg, #9a6b25 0%, #d7ad4f 44%, #f8df98 68%, #b98122 100%) !important;
  box-shadow: 0 0 14px rgba(215, 173, 79, .24), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.reviews-carousel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #b98122 0%, #f2cc69 50%, #f8df98 72%, #c28b2c 100%) !important;
}

/* Conversation signet replaces the former decorative line motif. */
.hero .hero-consultation-link::before {
  content: none;
}

.hero-chat-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(248, 223, 152, .4);
  border-radius: 50%;
  color: #f8df98;
  background:
    radial-gradient(circle at 30% 22%, rgba(248, 223, 152, .18), transparent 38%),
    linear-gradient(145deg, rgba(31, 33, 39, .96), rgba(9, 10, 13, .94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .13),
    0 9px 24px rgba(0, 0, 0, .28),
    0 0 18px rgba(215, 173, 79, .13);
  transition: color .22s ease, border-color .22s ease, transform .25s ease, box-shadow .25s ease;
}

.hero-chat-icon::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(from 210deg, transparent, rgba(118, 223, 227, .22), transparent 30%, rgba(239, 125, 167, .15), transparent 64%);
  opacity: .52;
  pointer-events: none;
}

.hero-chat-icon svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-consultation-link:hover .hero-chat-icon,
.hero-consultation-link.is-near .hero-chat-icon,
.hero-consultation-link.is-scroll-cue .hero-chat-icon {
  color: #fff4c8;
  border-color: rgba(248, 223, 152, .72);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 12px 30px rgba(0, 0, 0, .32), 0 0 28px rgba(215, 173, 79, .3);
}

/* Linked editorial section labels: a restrained vertical navigation marker. */
.eyebrow::before,
.privacy-book-header .eyebrow::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: currentColor;
  opacity: .82;
}

.eyebrow {
  gap: 10px;
  color: #969aa5 !important;
}

a.eyebrow {
  width: fit-content;
  text-decoration: none;
  transition: color .22s ease, transform .22s ease;
}

a.eyebrow:hover {
  color: #f0c85d !important;
  transform: translateX(2px);
}

a.eyebrow:focus-visible {
  color: #f0c85d !important;
  outline: 1px solid rgba(240, 200, 93, .72);
  outline-offset: 6px;
  border-radius: 2px;
}

/* Gold is reserved for the primary homepage statement. */
.hero .eyebrow {
  color: #d7ad4f !important;
}

/* Light surfaces use a measured graphite label for reliable contrast. */
.light .eyebrow,
.privacy-book-header .eyebrow,
.contact-map-section .eyebrow {
  color: #686d79 !important;
}

@media (max-width: 700px) {
  main {
    background-image:
      radial-gradient(circle at 4% 16%, rgba(215, 173, 79, .045), transparent 20%),
      linear-gradient(145deg, #101114 0%, #181a20 48%, #101114 100%);
  }
}

/* Premium footer layer — isolated here so it can be reverted as one block. */
footer {
  isolation: isolate;
}

footer::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(1320px, calc(100% - 40px));
  height: 1px;
  opacity: .7;
  transform: translateX(-50%) scaleX(.08);
  transform-origin: 50% 50%;
  background: linear-gradient(90deg, transparent, #76dfe3 12%, #d7ad4f 48%, #ef7da7 86%, transparent);
  box-shadow: 0 0 20px rgba(215, 173, 79, .18);
  transition: transform 1.05s cubic-bezier(.18,.72,.22,1), opacity .6s ease;
}

footer.is-footer-revealed::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

footer .footer-grid > div {
  opacity: 0;
  transform: translateY(12px);
}

footer.is-footer-revealed .footer-grid > div {
  animation: premiumFooterColumn .5s cubic-bezier(.18,.72,.22,1) both;
}

footer.is-footer-revealed .footer-grid > div:nth-child(2) { animation-delay: .055s; }
footer.is-footer-revealed .footer-grid > div:nth-child(3) { animation-delay: .11s; }
footer.is-footer-revealed .footer-grid > div:nth-child(4) { animation-delay: .165s; }

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

footer .brand-mark {
  transition: transform .38s cubic-bezier(.18,.72,.22,1), filter .38s ease;
}

footer .brand:hover .brand-mark {
  transform: translateY(-2px) scale(1.035);
  filter: drop-shadow(0 0 14px rgba(215,173,79,.34));
}

footer .footer-links a {
  transition: color .22s ease, transform .22s cubic-bezier(.18,.72,.22,1), text-shadow .22s ease;
}

footer .footer-links a:hover {
  transform: translateX(5px);
  text-shadow: 0 0 16px rgba(215,173,79,.2);
}

footer .button-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

footer .button-primary::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -30% auto -30% -55%;
  width: 34%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transition: left .62s cubic-bezier(.18,.72,.22,1);
}

footer .button-primary:hover::after { left: 122%; }

footer .social-links a {
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 24px rgba(0,0,0,.13);
}

footer .footer-bottom {
  position: relative;
}

footer .footer-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #76dfe3, #d7ad4f, #ef7da7);
  transform: translateX(-50%);
  transition: width .85s .2s cubic-bezier(.18,.72,.22,1);
}

footer.is-footer-revealed .footer-bottom::before { width: 100%; }

.back-to-top {
  position: fixed;
  z-index: 39;
  right: 22px;
  bottom: 92px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(248,223,152,.28);
  border-radius: 50%;
  color: #f4f2ed;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025)), rgba(13,14,17,.8);
  box-shadow: 0 16px 38px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.94);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, border-color .2s ease, color .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  color: #d7ad4f;
  border-color: rgba(215,173,79,.58);
  transform: translateY(-2px) scale(1.02);
}

.back-to-top svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

@media (max-width: 700px) {
  footer .footer-grid > div { opacity: 1; transform: none; }
  footer.is-footer-revealed .footer-grid > div { animation: none; }
  footer .footer-grid > div:not(:first-child) > h3 {
    position: relative;
    margin-bottom: 0;
    padding: 12px 32px 12px 0;
    border-bottom: 1px solid rgba(248,223,152,.1);
    cursor: pointer;
  }
  footer .footer-grid > div:not(:first-child) > h3::after {
    content: "+";
    position: absolute;
    right: 4px;
    color: #d7ad4f;
    font-size: 18px;
    line-height: 1;
  }
  footer .footer-grid > div.is-footer-group-open > h3::after { content: "−"; }
  footer .footer-grid > div:not(:first-child) > :not(h3) { display: none; }
  footer .footer-grid > div.is-footer-group-open > :not(h3) { display: grid; margin-top: 16px; }
  footer .footer-grid > div.is-footer-group-open > p { display: block; }
  .back-to-top { right: 16px; bottom: 82px; width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  footer .footer-grid > div { opacity: 1; transform: none; animation: none !important; }
  footer::before, footer .footer-bottom::before { transition: none; }
}

/* One-time cinematic DeltyWeb entrance. */
.site-loader {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f4f2ed;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  background:
    radial-gradient(circle at 50% 47%, rgba(215,173,79,.24), transparent 20%),
    radial-gradient(circle at 31% 22%, rgba(130,237,244,.075), transparent 31%),
    radial-gradient(circle at 72% 76%, rgba(255,122,168,.06), transparent 29%),
    linear-gradient(145deg, #15171c 0%, #090a0d 56%, #030405 100%);
  transition: opacity 1.02s cubic-bezier(.22,.72,.22,1), visibility 1.02s ease;
}
.site-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 30%, rgba(255,255,255,.035) 48%, transparent 62%),
    repeating-linear-gradient(118deg, transparent 0 92px, rgba(255,255,255,.012) 93px, transparent 94px 180px);
  background-size: 240% 100%, auto;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
  animation: cinematicSweep 2.35s cubic-bezier(.2,.75,.2,1) both;
}
.site-loader::before {
  width: min(560px, 82vw);
  border-color: rgba(215,173,79,.16);
  box-shadow: 0 0 135px rgba(215,173,79,.095), inset 0 0 110px rgba(130,237,244,.025);
  animation: cinematicHalo 2.35s cubic-bezier(.2,.72,.2,1) both;
}
.site-loader-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 19px;
  isolation: isolate;
}
.site-loader-inner::before,
.site-loader-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 41%;
  width: min(390px, 70vw);
  aspect-ratio: 1;
  border: 1px solid rgba(215,173,79,.1);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(.68);
  opacity: 0;
  animation: cinematicRing 2.15s .18s cubic-bezier(.2,.75,.2,1) both;
}
.site-loader-inner::after {
  width: min(300px, 56vw);
  border-color: rgba(130,237,244,.07);
  animation-delay: .34s;
}
.site-loader-mark {
  display: block;
  width: clamp(106px, 9vw, 142px);
  height: clamp(91px, 7.75vw, 122px);
  background: url("deltyweb-pyramid-exact.png?v=exact-logo-1") center / contain no-repeat;
  filter: drop-shadow(0 0 20px rgba(215,173,79,.38)) drop-shadow(0 24px 34px rgba(0,0,0,.52));
  animation: cinematicMark 1.35s .18s cubic-bezier(.16,.86,.24,1) both;
}
.site-loader-name {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #f4f2ed;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-weight: 800;
  line-height: 1;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: .075em;
  animation: cinematicName .9s .84s cubic-bezier(.2,.75,.2,1) both;
}
.site-loader-name::after {
  content: "WEB & DIGITAL TECHNOLOGY";
  color: rgba(244,242,237,.52);
  font-family: var(--font-body);
  font-size: clamp(8px, .72vw, 10px);
  font-weight: 800;
  letter-spacing: .25em;
}
.site-loader-line {
  display: block;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #80e6e7 12%, #d7ad4f 54%, #f47ca5 88%, transparent);
  box-shadow: 0 0 18px rgba(215,173,79,.3);
  width: min(220px, 54vw);
  transform-origin: 50% 50%;
  animation: cinematicLine 1.05s 1.2s cubic-bezier(.2,.8,.2,1) both;
}
.site-loader.is-leaving .site-loader-inner {
  transform: translateY(-2px) scale(1.008);
  filter: blur(.6px);
  opacity: .82;
  transition: transform 1s cubic-bezier(.2,.72,.2,1), filter 1s ease, opacity 1s ease;
}
.site-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
}
@keyframes cinematicMark {
  0% { opacity: 0; transform: translateY(12px) scale(.86); filter: blur(6px) drop-shadow(0 0 0 rgba(215,173,79,0)); }
  58% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) drop-shadow(0 0 20px rgba(215,173,79,.38)) drop-shadow(0 24px 34px rgba(0,0,0,.52)); }
}
@keyframes cinematicName {
  from { opacity: 0; transform: translateY(12px); filter: blur(8px); letter-spacing: .16em; }
  to { opacity: 1; transform: translateY(0); filter: blur(0); letter-spacing: .075em; }
}
@keyframes cinematicLine {
  from { opacity: 0; transform: scaleX(0); filter: blur(5px); }
  to { opacity: 1; transform: scaleX(1); filter: blur(0); }
}
@keyframes cinematicRing {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.68); }
  45% { opacity: .46; }
  100% { opacity: .13; transform: translate(-50%,-50%) scale(1.04); }
}
@keyframes cinematicHalo {
  from { opacity: 0; transform: translate(-50%,-50%) scale(.72); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
@keyframes cinematicSweep {
  from { opacity: 0; background-position: 130% 0, 0 0; }
  30% { opacity: 1; }
  to { opacity: .68; background-position: -80% 0, 0 0; }
}
@media (max-width: 660px) {
  .site-loader-inner { gap: 14px; }
  .site-loader-mark { width: 104px; height: 89px; }
  .site-loader-name { font-size: 23px; }
  .site-loader-name::after { font-size: 7px; letter-spacing: .2em; }
  .site-loader-inner::before { width: min(310px, 78vw); }
  .site-loader-inner::after { width: min(238px, 61vw); }
  .site-loader-line { width: 148px; }
}

.sound-hint {
  position: fixed;
  right: 22px;
  bottom: 80px;
  z-index: 83;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .88);
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) scale(.98);
  transition: opacity .24s ease, transform .24s ease;
}

.sound-hint.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sound-hint-copy {
  display: grid;
  gap: 2px;
  min-width: 120px;
  padding: 9px 12px;
  text-align: center;
  border: 1px solid rgba(248, 223, 152, .28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .025)),
    rgba(13, 14, 17, .76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .30), inset 0 1px 0 rgba(255, 255, 255, .10);
  backdrop-filter: blur(15px);
}

.sound-hint-copy strong {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
}

.sound-hint-copy span {
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  color: rgba(255, 255, 255, .62);
}

.sound-hint-arrow {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--dark, #101114);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  box-shadow: 0 10px 26px rgba(215, 173, 79, .24);
  animation: soundArrow 1.2s ease-in-out infinite;
}

.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cookie-consent.is-leaving {
  opacity: 0;
  transform: translateY(18px) scale(.98);
}

.cookie-consent * {
  box-sizing: border-box;
}

.cookie-consent-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(248, 223, 152, .28);
  border-radius: 8px;
  background:
    repeating-linear-gradient(112deg, transparent 0 34px, rgba(255, 255, 255, .035) 35px 36px, transparent 37px 66px),
    linear-gradient(135deg, rgba(30, 32, 39, .98), rgba(13, 14, 17, .98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42), 0 18px 46px rgba(215, 173, 79, .13);
  backdrop-filter: blur(18px);
}

.cookie-consent-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  transform: skewX(-26deg);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  box-shadow: 0 0 30px rgba(215, 173, 79, .5);
}

.cookie-consent-head {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-consent-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(248, 223, 152, .42);
  border-radius: 8px;
  color: var(--dark, #101114);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42);
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-weight: 900;
}

.cookie-consent-title {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.cookie-consent-title strong {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 17px;
  line-height: 1.1;
}

.cookie-consent-title span {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
}

.cookie-consent p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent a {
  color: var(--yellow, #d7ad4f);
  font-weight: 900;
}

.cookie-preferences {
  position: relative;
  margin-top: 14px;
}

.cookie-preferences summary {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow, #d7ad4f);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.cookie-preferences summary::-webkit-details-marker {
  display: none;
}

.cookie-preferences summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}

.cookie-preferences[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.cookie-options {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  background: rgba(255, 255, 255, .055);
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #d7ad4f;
}

.cookie-option strong {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
}

.cookie-option span {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cookie-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 7px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font: inherit;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.cookie-button:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 223, 152, .36);
}

.cookie-button-primary {
  color: var(--dark, #101114);
  border-color: rgba(248, 223, 152, .42);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  box-shadow: 0 16px 34px rgba(215, 173, 79, .18), inset 0 1px 0 rgba(255, 255, 255, .38);
}

.cookie-mini {
  margin-top: 12px !important;
  color: rgba(255, 255, 255, .48) !important;
  font-size: 12px !important;
}

/* Premium cookie control — glass, colour and measured motion. */
.cookie-consent {
  width: min(486px, calc(100vw - 44px));
  transform: translateY(22px) scale(.965);
  transition: opacity .38s ease, transform .52s cubic-bezier(.18,.78,.22,1);
  perspective: 1000px;
}

.cookie-consent.is-visible .cookie-consent-card {
  animation: premiumCookieArrival .72s cubic-bezier(.16,.82,.22,1) both;
}

.cookie-consent-card {
  isolation: isolate;
  padding: 24px;
  border-color: rgba(248,223,152,.3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 13% 7%, rgba(118,223,227,.075), transparent 27%),
    radial-gradient(circle at 90% 92%, rgba(239,125,167,.06), transparent 31%),
    linear-gradient(118deg, rgba(255,255,255,.075) 0%, rgba(255,255,255,.018) 21%, transparent 43%),
    linear-gradient(145deg, rgba(27,29,35,.985), rgba(8,9,12,.995));
  box-shadow:
    0 38px 110px rgba(0,0,0,.55),
    0 18px 55px rgba(215,173,79,.11),
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 0 -1px 0 rgba(255,255,255,.025);
}

.cookie-consent-card::before {
  left: 26px;
  right: 26px;
  height: 2px;
  border-radius: 999px;
  transform: none;
  background: linear-gradient(90deg, #76dfe3 0%, #f7dc91 49%, #ef7da7 100%);
  box-shadow: 0 0 22px rgba(118,223,227,.2), 0 0 30px rgba(239,125,167,.13);
}

.cookie-consent-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -90px;
  top: -110px;
  width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,173,79,.12), rgba(239,125,167,.035) 42%, transparent 70%);
  filter: blur(3px);
  pointer-events: none;
  animation: cookieAura 5.5s ease-in-out infinite;
}

.cookie-consent-head {
  gap: 15px;
  margin-bottom: 16px;
}

.cookie-consent-mark {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  color: transparent;
  background:
    url("deltyweb-pyramid-exact.png?v=exact-logo-1") center / 68% auto no-repeat,
    linear-gradient(145deg, #15171c, #07080a);
  box-shadow:
    0 13px 30px rgba(0,0,0,.3),
    0 0 24px rgba(215,173,79,.13),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.cookie-consent-title small {
  color: #d7ad4f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-consent-title strong {
  margin-top: 2px;
  font-size: 19px;
  letter-spacing: -.02em;
}

.cookie-consent-title span { color: rgba(255,255,255,.58); }

.cookie-consent > .cookie-consent-card > p:not(.cookie-mini) {
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 11px;
  background: rgba(255,255,255,.028);
}

.cookie-preferences { margin-top: 13px; }

.cookie-preferences summary {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(215,173,79,.18);
  border-radius: 999px;
  background: rgba(215,173,79,.045);
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}

.cookie-preferences summary:hover {
  color: #f7dc91;
  border-color: rgba(215,173,79,.38);
  background: rgba(215,173,79,.085);
  transform: translateY(-1px);
}

.cookie-options {
  gap: 9px;
  margin-top: 12px;
  animation: premiumCookieOptions .34s cubic-bezier(.18,.72,.22,1) both;
}

.cookie-option {
  position: relative;
  overflow: hidden;
  padding: 13px;
  border-color: rgba(255,255,255,.09);
  border-radius: 11px;
  background: linear-gradient(125deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.cookie-option:hover {
  transform: translateY(-1px);
  border-color: rgba(118,223,227,.2);
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.cookie-option:has(input:checked) {
  border-color: rgba(118,223,227,.3);
  background: linear-gradient(125deg, rgba(118,223,227,.095), rgba(215,173,79,.045) 54%, rgba(239,125,167,.04));
}

.cookie-option input {
  accent-color: #76dfe3;
  filter: drop-shadow(0 0 6px rgba(118,223,227,.28));
}

.cookie-actions {
  gap: 9px;
  margin-top: 18px;
}

.cookie-button {
  min-height: 44px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
}

.cookie-button:hover {
  border-color: rgba(118,223,227,.3);
  box-shadow: 0 12px 28px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.08);
}

.cookie-button-primary {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #f6dc93, #d7ad4f 58%, #aa772b);
  box-shadow: 0 15px 38px rgba(215,173,79,.2), inset 0 1px 0 rgba(255,255,255,.42);
}

.cookie-button-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 34%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transition: left .62s cubic-bezier(.18,.72,.22,1);
}

.cookie-button-primary:hover::after { left: 125%; }

.cookie-mini {
  padding-left: 2px;
  letter-spacing: .005em;
}

@keyframes premiumCookieArrival {
  from { opacity: 0; transform: translateY(18px) rotateX(3deg) scale(.975); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) rotateX(0) scale(1); filter: blur(0); }
}

@keyframes premiumCookieOptions {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cookieAura {
  0%,100% { transform: translate3d(0,0,0) scale(1); opacity: .65; }
  50% { transform: translate3d(-12px,10px,0) scale(1.08); opacity: 1; }
}

@media (max-width: 660px) {
  .cookie-consent-card { padding: 19px; border-radius: 15px; }
  .cookie-consent-mark { width: 46px; height: 46px; }
  .cookie-consent-title strong { font-size: 18px; }
  .cookie-consent > .cookie-consent-card > p:not(.cookie-mini) { padding: 12px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent.is-visible .cookie-consent-card,
  .cookie-options,
  .cookie-consent-card::after { animation: none; }
}

.web-assistant {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  font-family: var(--font-body, "Manrope", ui-sans-serif, system-ui, sans-serif);
  color: var(--text, #fff);
}

.web-assistant * {
  box-sizing: border-box;
}

.web-assistant-panel {
  position: absolute;
  left: 0;
  bottom: 74px;
  width: min(392px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid rgba(248, 223, 152, .26);
  border-radius: 8px;
  background:
    repeating-linear-gradient(112deg, transparent 0 34px, rgba(255, 255, 255, .035) 35px 36px, transparent 37px 66px),
    linear-gradient(135deg, rgba(30, 32, 39, .98), rgba(13, 14, 17, .98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42), 0 18px 46px rgba(215, 173, 79, .13);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.97);
  transform-origin: bottom left;
  transition: opacity .22s ease, transform .22s ease;
}

.web-assistant.is-open .web-assistant-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.web-assistant-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  transform: skewX(-26deg);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  box-shadow: 0 0 30px rgba(215, 173, 79, .5);
}

.web-assistant-head {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.web-assistant-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent url("deltyweb-pyramid-exact.png") center / contain no-repeat;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, .42)) drop-shadow(0 0 7px rgba(215, 173, 79, .25));
}

.web-assistant-title {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.web-assistant-title strong {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 16px;
  line-height: 1.1;
}

.web-assistant-title span {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
}

.web-assistant-title small {
  color: rgba(255, 255, 255, .38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.15;
  text-transform: uppercase;
}

.web-assistant-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .055);
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.web-assistant-close:hover {
  color: var(--dark, #101114);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  transform: translateY(-1px);
}

.web-assistant-close svg,
.web-assistant-launcher svg,
.web-assistant-send svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.web-assistant-feed {
  position: relative;
  display: grid;
  gap: 10px;
  max-height: 310px;
  overflow-y: auto;
  padding: 18px 18px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(248, 223, 152, .42) rgba(255, 255, 255, .06);
}

.web-assistant-message {
  max-width: 88%;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .06);
  font-size: 14px;
  line-height: 1.55;
  animation: assistantMessage .22s ease both;
}

.web-assistant-message p {
  margin: 0;
}

.web-assistant-message p + p {
  margin-top: 8px;
}

.web-assistant-message.is-user {
  justify-self: end;
  color: var(--dark, #101114);
  border-color: rgba(248, 223, 152, .48);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  box-shadow: 0 10px 26px rgba(215, 173, 79, .16);
}

.web-assistant-message.is-bot {
  justify-self: start;
}

.web-assistant-message.is-typing {
  width: 72px;
  color: rgba(255, 255, 255, .5);
}

.web-assistant-dots {
  display: inline-grid;
  grid-template-columns: repeat(3, 6px);
  gap: 4px;
  align-items: center;
}

.web-assistant-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow, #d7ad4f);
  animation: assistantDots 1s ease-in-out infinite;
}

.web-assistant-dots span:nth-child(2) {
  animation-delay: .14s;
}

.web-assistant-dots span:nth-child(3) {
  animation-delay: .28s;
}

.web-assistant-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 16px;
}

.web-assistant-chip {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(248, 223, 152, .24);
  border-radius: 7px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .055);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease, border-color .18s ease;
}

.web-assistant-chip:hover {
  color: var(--dark, #101114);
  border-color: rgba(248, 223, 152, .46);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  transform: translateY(-2px);
}

.web-assistant-more { display: none; min-height: 34px; align-items: center; justify-content: center; gap: 7px; padding: 0 12px; border: 1px solid rgba(248, 223, 152, .28); border-radius: 999px; color: var(--yellow, #d7ad4f); background: rgba(215, 173, 79, .07); font: 850 11px/1 var(--font-body, "Manrope", sans-serif); cursor: pointer; }
.web-assistant-more span { font-size: 15px; line-height: 1; }

.web-assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.web-assistant-action {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(248, 223, 152, .32);
  border-radius: 7px;
  color: var(--dark, #101114);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  font-size: 12px;
  font-weight: 900;
}

.web-assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .16);
}

.web-assistant-input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 7px;
  color: var(--text, #fff);
  background: rgba(255, 255, 255, .065);
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.web-assistant-input:focus {
  border-color: rgba(248, 223, 152, .56);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 0 0 4px rgba(215, 173, 79, .13);
}

.web-assistant-input::placeholder {
  color: rgba(255, 255, 255, .38);
}

.web-assistant-send {
  width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(248, 223, 152, .42);
  border-radius: 7px;
  color: var(--dark, #101114);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .38);
  transition: transform .18s ease, box-shadow .18s ease;
}

.web-assistant-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(215, 173, 79, .2), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.web-assistant-launcher {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(248, 223, 152, .48);
  border-radius: 50%;
  color: var(--dark, #101114);
  background: var(--gold, linear-gradient(135deg, #f8df98, #d7ad4f, #9a6b25));
  cursor: pointer;
  box-shadow: 0 22px 52px rgba(0, 0, 0, .34), 0 14px 30px rgba(215, 173, 79, .24), inset 0 1px 0 rgba(255, 255, 255, .44);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: assistantPulse 3.8s ease-in-out infinite;
}

.web-assistant-launcher::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(248, 223, 152, .28);
  border-radius: inherit;
  opacity: .7;
  animation: assistantRing 2.8s ease-in-out infinite;
}

.web-assistant-launcher:hover,
.web-assistant.is-open .web-assistant-launcher {
  transform: translateY(-3px);
  box-shadow: 0 28px 68px rgba(0, 0, 0, .4), 0 16px 38px rgba(215, 173, 79, .32), inset 0 1px 0 rgba(255, 255, 255, .5);
}

.web-assistant-prompt {
  position: absolute;
  left: 70px;
  bottom: 8px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(248, 223, 152, .2);
  border-radius: 7px;
  color: rgba(255, 255, 255, .78);
  background: rgba(16, 17, 20, .78);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.web-assistant.is-open .web-assistant-prompt {
  opacity: 0;
  transform: translateX(-8px);
}

@keyframes assistantMessage {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes assistantDots {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@keyframes assistantPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes assistantRing {
  0%, 100% { transform: scale(.92); opacity: .2; }
  50% { transform: scale(1.05); opacity: .65; }
}

@keyframes soundSweep {
  0% { transform: translateX(-70%) skewX(-18deg); opacity: 0; }
  28% { opacity: .5; }
  100% { transform: translateX(76%) skewX(-18deg); opacity: 0; }
}

@keyframes soundPulse {
  0%, 100% { transform: scale(.82); opacity: .12; }
  50% { transform: scale(1.2); opacity: .32; }
}

@keyframes waveTrace {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -46; }
}

@keyframes waveBreath {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.045); }
}

@keyframes soundArrow {
  0%, 100% { transform: translateY(-1px); }
  50% { transform: translateY(4px); }
}

@media (max-width: 660px) {
  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 88px;
    width: auto;
  }

  .sound-toggle {
    right: 16px;
    bottom: 84px;
    width: 72px;
    min-width: 72px;
    height: 46px;
  }

  .sound-toggle:hover,
  .sound-toggle.is-on {
    width: 72px;
  }

  .sound-toggle-icon {
    width: 100%;
    height: 100%;
  }

  .sound-hint {
    right: 16px;
    bottom: 136px;
  }

  .sound-hint-copy {
    min-width: 112px;
  }

  .cookie-actions {
    display: grid;
  }

  .cookie-button {
    width: 100%;
  }

  .web-assistant {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .web-assistant-panel {
    left: 0;
    bottom: 70px;
    width: 100%;
    height: min(75dvh, 620px);
    max-height: calc(100dvh - 104px - env(safe-area-inset-top));
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    transform-origin: bottom center;
  }

  .web-assistant-feed {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    padding: 12px 14px 9px;
    overscroll-behavior: contain;
  }

  .web-assistant-head { flex: 0 0 auto; grid-template-columns: 36px minmax(0, 1fr) 44px; gap: 10px; padding: 13px 14px; }
  .web-assistant-mark { width: 36px; height: 34px; }
  .web-assistant-title strong { font-size: 14px; }
  .web-assistant-title span { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
  .web-assistant-title small { font-size: 8px; }
  .web-assistant-close { width: 44px; height: 44px; border-radius: 12px; }
  .web-assistant-message { padding: 10px 11px; font-size: 13px; line-height: 1.48; }
  .web-assistant-quick { flex: 0 0 auto; gap: 6px; padding: 6px 14px 10px; }
  .web-assistant-chip { min-height: 32px; padding: 0 10px; font-size: 11px; }
  .web-assistant-chip:nth-child(n+4) { display: none; }
  .web-assistant.show-all-questions .web-assistant-chip:nth-child(n+4) { display: inline-flex; }
  .web-assistant-more { display: inline-flex; }
  .web-assistant-form { flex: 0 0 auto; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(5, 6, 8, .86); backdrop-filter: blur(18px); }
  .web-assistant-input, .web-assistant-send { min-height: 46px; }

  .web-assistant-prompt {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .web-assistant *,
  .web-assistant *::before,
  .web-assistant *::after,
  .sound-toggle,
  .sound-toggle::before,
  .sound-toggle-icon::after,
  .sound-wave-path-front,
  .sound-wave-icon svg,
  .sound-hint-arrow {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Definitive assistant presentation override. Keep this block at EOF. */
.web-assistant-panel {
  width: min(390px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid rgba(238, 196, 93, .3);
  border-radius: 20px;
  background: radial-gradient(circle at 6% -8%, rgba(238, 196, 93, .13), transparent 30%), radial-gradient(circle at 102% 14%, rgba(104, 222, 217, .08), transparent 28%), linear-gradient(145deg, rgba(28, 30, 35, .98), rgba(7, 8, 11, .995) 72%);
  box-shadow: 0 38px 110px rgba(0, 0, 0, .7), 0 18px 44px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(34px) saturate(132%);
  -webkit-backdrop-filter: blur(34px) saturate(132%);
}
.web-assistant-panel::before {
  top: 0; right: 20px; left: 20px; width: auto; height: 2px; transform: none;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #f4cf72 0 44%, #6de0db 72%, #df669f 100%);
  box-shadow: 0 0 22px rgba(238, 196, 93, .28);
}
.web-assistant-head, .web-assistant-form { background: rgba(5, 6, 9, .35); }
.web-assistant-head { padding: 17px 18px 15px; border-bottom-color: rgba(255, 255, 255, .08); }
.web-assistant-mark { width: 40px; height: 40px; border-radius: 12px; background: #07080a; box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 10px 28px rgba(0,0,0,.34); }
.web-assistant-close { width: 36px; height: 36px; border-radius: 11px; background: rgba(255,255,255,.045); }
.web-assistant-feed { max-height: 250px; padding: 14px 16px 10px; }
.web-assistant-message { max-width: 92%; padding: 11px 13px; border-color: rgba(255,255,255,.1); border-radius: 12px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035)); font-size: 13px; }
.web-assistant-message.is-user { color: #131418; border-color: rgba(255,228,158,.52); background: linear-gradient(135deg,#f5d77b,#c99331); }
.web-assistant-actions a, .web-assistant-chip, .web-assistant-more { border-color: rgba(238,196,93,.3); color: rgba(255,255,255,.86); background: rgba(255,255,255,.035); }
.web-assistant-actions a:hover, .web-assistant-chip:hover, .web-assistant-more:hover { color: #f5d77b; border-color: rgba(245,215,123,.62); background: rgba(238,196,93,.08); }
.web-assistant-quick { gap: 7px; padding: 6px 16px 12px; }
.web-assistant-chip, .web-assistant-more { min-height: 30px; border-radius: 999px; font-size: 10.5px; }
.web-assistant-form { gap: 8px; padding: 12px 14px 14px; border-top-color: rgba(255,255,255,.08); }
.web-assistant-input { min-height: 46px; border-color: rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.045); }
.web-assistant-send { width: 46px; min-height: 46px; border-radius: 12px; background: linear-gradient(135deg,#f5d77b,#c99331); }
.web-assistant-launcher {
  width: 48px; height: 48px; color: #f5d77b;
  border: 1px solid rgba(245,215,123,.72);
  background: radial-gradient(circle at 34% 20%,rgba(255,235,172,.14),transparent 34%), linear-gradient(145deg,#1c1e23,#08090c 72%);
  box-shadow: 0 18px 44px rgba(0,0,0,.42), 0 0 24px rgba(215,173,79,.14), inset 0 1px 0 rgba(255,255,255,.12);
  animation: none;
}
.web-assistant-launcher::before { inset: -5px; border-color: rgba(248,223,152,.16); opacity: 1; animation: none; }
.web-assistant-launcher:hover, .web-assistant.is-open .web-assistant-launcher { color: #ffe7a4; background: linear-gradient(145deg,#24262c,#0a0b0e 72%); box-shadow: 0 24px 58px rgba(0,0,0,.5), 0 0 30px rgba(215,173,79,.22), inset 0 1px 0 rgba(255,255,255,.14); }
.web-assistant-launcher svg { width: 22px; height: 22px; stroke-width: 1.45; }
.web-assistant-launcher svg circle { fill: currentColor; stroke: none; }
.web-assistant-prompt { left: 61px; bottom: 7px; min-height: 34px; border-color: rgba(238,196,93,.28); border-radius: 10px; color: rgba(255,255,255,.9); background: linear-gradient(145deg,rgba(25,27,32,.96),rgba(10,11,14,.97)); box-shadow: 0 16px 38px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.07); }
.web-assistant-prompt:empty { opacity: 0; transform: translateX(-8px); }
.web-assistant.has-proactive-greeting:not(.is-open) .web-assistant-prompt { animation: assistantMessage .42s ease both; }
.web-assistant.has-unread-greeting .web-assistant-launcher::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 9px;
  height: 9px;
  border: 2px solid #101114;
  border-radius: 50%;
  background: #68d7d2;
  box-shadow: 0 0 16px rgba(104,215,210,.8);
}
@media (max-width: 660px) {
  .web-assistant-panel { width: 100%; height: auto; max-height: min(78dvh,650px); border-radius: 18px; }
  .web-assistant-feed { max-height: 242px; }
  .web-assistant-chip:nth-child(n+4) { display: inline-flex; }
  .web-assistant-more { display: none; }
}

/* Hybrid assistant: no AI request is available until the visitor explicitly chooses AI. */
.web-assistant:not(.is-ai-mode) .web-assistant-quick { display: none; }
.web-assistant-input:disabled { cursor: not-allowed; opacity: .58; }
.web-assistant-mode-choice {
  width: 100%;
  margin-top: 2px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}
.web-assistant-mode-choice > p { margin: 0 0 10px; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 750; }
.web-assistant-mode-choice > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.web-assistant-mode-choice button {
  display: grid; grid-template-columns: 28px minmax(0,1fr); grid-template-rows: auto auto; column-gap: 8px;
  min-width: 0; padding: 10px; text-align: left; color: #fff; cursor: pointer;
  border: 1px solid rgba(238,196,93,.25); border-radius: 11px; background: rgba(5,6,9,.42);
  transition: transform .2s ease,border-color .2s ease,background .2s ease;
}
.web-assistant-mode-choice button:hover { transform: translateY(-1px); border-color: rgba(245,215,123,.64); background: rgba(238,196,93,.08); }
.web-assistant-mode-choice button > span { grid-row: 1 / span 2; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(245,215,123,.42); border-radius: 50%; color: #f5d77b; font-size: 9px; font-weight: 900; }
.web-assistant-mode-choice button:last-child > span { color: #6de0db; border-color: rgba(109,224,219,.42); }
.web-assistant-mode-choice strong { overflow: hidden; font-size: 11px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.web-assistant-mode-choice small { color: rgba(255,255,255,.46); font-size: 9px; line-height: 1.25; }
@media (max-width: 420px) { .web-assistant-mode-choice > div { grid-template-columns: 1fr; } }
.web-assistant-action[type="button"] {
  font: inherit;
  cursor: pointer;
}

.web-assistant-message.is-system {
  margin-inline: auto;
  border: 1px solid rgba(103, 222, 216, .22);
  background: rgba(14, 20, 23, .82);
  color: rgba(242, 244, 246, .76);
  font-size: .78rem;
}

.web-assistant-live-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 10px 12px;
  padding: 10px 12px;
  border: 1px solid rgba(224, 177, 71, .28);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(18, 21, 25, .96), rgba(24, 28, 32, .9));
  box-shadow: inset 0 1px rgba(255,255,255,.04), 0 12px 32px rgba(0,0,0,.2);
}

.web-assistant-live-status > span {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #e0b147;
  box-shadow: 0 0 0 5px rgba(224,177,71,.1), 0 0 16px rgba(224,177,71,.5);
  animation: liveQueuePulse 2.2s ease-in-out infinite;
}

.web-assistant-live-status.is-claimed > span { background: #69ddd7; box-shadow: 0 0 0 5px rgba(105,221,215,.1), 0 0 16px rgba(105,221,215,.5); }
.web-assistant-live-status.is-agent-away > span { background: #e0b147; animation: none; box-shadow: 0 0 0 5px rgba(224,177,71,.08); }
.web-assistant-live-status.is-closed > span { background: #777d85; animation: none; box-shadow: none; }
.web-assistant-live-status div { display: grid; gap: 2px; min-width: 0; }
.web-assistant-live-status strong { color: #f5f5f4; font-size: .75rem; line-height: 1.25; }
.web-assistant-live-status small { color: rgba(255,255,255,.42); font-size: .62rem; letter-spacing: .08em; }
.web-assistant-live-status.has-connection-issue { border-color: rgba(216,93,145,.35); }
.web-assistant-live-typing{padding:0 18px 8px;color:#9fe8e3;font-size:11px;font-weight:700;letter-spacing:.02em;background:rgba(5,6,9,.35)}
.web-assistant-live-typing:not([hidden])::after{content:"";display:inline-block;width:3px;height:3px;margin-left:4px;border-radius:50%;background:currentColor;box-shadow:6px 0 currentColor,12px 0 currentColor;animation:enqivoTypingPulse 1.1s ease-in-out infinite}
.web-assistant-message-receipt{display:block;margin-top:6px;text-align:right;font-size:9px;font-weight:700;letter-spacing:.04em;opacity:.62}
@keyframes enqivoTypingPulse{0%,100%{opacity:.3;transform:translateY(0)}50%{opacity:1;transform:translateY(-1px)}}

@keyframes liveQueuePulse { 50% { opacity: .55; transform: scale(.78); } }

.web-assistant-live-feedback {
  display: grid;
  gap: 10px;
  margin: 10px;
  padding: 14px;
  border: 1px solid rgba(105, 221, 215, .24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(216, 93, 145, .09), transparent 42%),
    linear-gradient(145deg, rgba(24, 29, 35, .97), rgba(10, 14, 18, .96));
  box-shadow: inset 0 1px rgba(255,255,255,.045), 0 16px 35px rgba(0,0,0,.24);
}
.web-assistant-feedback-kicker { color: #e0b147; font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.web-assistant-live-feedback > strong { color: #f4f5f5; font-size: .82rem; }
.web-assistant-feedback-stars { display: flex; gap: 5px; color: rgba(224,177,71,.34); font-size: 1.3rem; letter-spacing: .08em; }
.web-assistant-feedback-stars button { appearance: none; border: 0; padding: 0; background: transparent; color: rgba(224,177,71,.3); font: inherit; box-shadow: none; cursor: pointer; }
.web-assistant-feedback-stars button:hover,
.web-assistant-feedback-stars button.is-active { color: #e9bb51; filter: drop-shadow(0 0 7px rgba(224,177,71,.34)); transform: none; }
.web-assistant-feedback-stars.is-readonly { color: #e9bb51; }
.web-assistant-live-feedback textarea { box-sizing: border-box; width: 100%; min-height: 54px; resize: vertical; padding: 10px 11px; color: #f4f5f5; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(4,7,10,.58); font: inherit; font-size: .72rem; }
.web-assistant-feedback-submit { justify-self: start; padding: 9px 13px; border: 1px solid rgba(224,177,71,.5); border-radius: 9px; background: linear-gradient(135deg,#f0cf77,#b98324); color: #101216; font: inherit; font-size: .68rem; font-weight: 800; cursor: pointer; }
.web-assistant-feedback-submit:disabled { opacity: .42; cursor: default; }
.web-assistant-live-feedback small[data-feedback-error] { color: #e38aac; font-size: .65rem; }
.web-assistant-live-lead{display:grid;gap:8px;margin:10px 12px;padding:13px;border:1px solid rgba(105,221,215,.2);border-radius:12px;background:linear-gradient(145deg,rgba(18,25,29,.96),rgba(8,12,16,.97))}.web-assistant-live-lead>span{color:#e0b147;font-size:.58rem;font-weight:800;letter-spacing:.13em}.web-assistant-live-lead>strong{color:#eef1f1;font-size:.73rem;line-height:1.4}.web-assistant-live-lead input:not([type=checkbox]){box-sizing:border-box;width:100%;padding:9px 10px;border:1px solid rgba(255,255,255,.1);border-radius:9px;background:rgba(4,7,10,.68);color:#f2f4f4;font:inherit;font-size:.7rem}.web-assistant-live-lead label{display:flex;align-items:flex-start;gap:7px;color:rgba(255,255,255,.58);font-size:.62rem;line-height:1.4}.web-assistant-live-lead label input{margin-top:2px}.web-assistant-live-lead button{justify-self:start;padding:9px 12px;border:1px solid rgba(224,177,71,.45);border-radius:9px;background:linear-gradient(135deg,#efcd72,#bd892e);color:#101216;font:inherit;font-size:.66rem;font-weight:800}.web-assistant-live-lead small{color:#e38aac;font-size:.62rem}
/* ENQIVO: stable premium live-support experience */
.web-assistant-panel {
  height: min(540px, calc(100dvh - 112px));
  min-height: min(460px, calc(100dvh - 112px));
  max-height: min(540px, calc(100dvh - 112px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  isolation: isolate;
}

.web-assistant-feed {
  min-height: 0;
  max-height: none;
  align-content: start;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scroll-padding-block: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(109, 224, 219, .035), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .012), transparent 22%);
}

.web-assistant-feed::after {
  content: "";
  display: block;
  height: 6px;
}

.web-assistant-mark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(109, 230, 221, .18), transparent 42%),
    linear-gradient(145deg, rgba(31, 35, 42, .96), rgba(5, 7, 10, .98));
  border: 1px solid rgba(225, 178, 66, .42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 28px rgba(0, 0, 0, .34);
}

.web-assistant-mark::before {
  content: "";
  position: absolute;
  inset: 24% 20% 20%;
  border: 1px solid rgba(232, 190, 79, .86);
  border-radius: 42% 42% 48% 48%;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .01));
}

.web-assistant-mark::after {
  content: "••";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #76e4dc;
  font-size: 11px;
  letter-spacing: 5px;
  transform: translateX(2px);
  text-shadow: 0 0 12px rgba(118, 228, 220, .9);
}

.web-assistant-panel[data-support-mode="queue"] .web-assistant-ai-badge {
  color: #e9bd53;
  border-color: rgba(233, 189, 83, .55);
  animation: enqivoHandoffPulse 1.8s ease-in-out infinite;
}

.web-assistant-panel[data-support-mode="agent"] .web-assistant-ai-badge {
  color: #76e4dc;
  border-color: rgba(118, 228, 220, .58);
  box-shadow: 0 0 18px rgba(118, 228, 220, .18);
}

.web-assistant-panel[data-support-mode="away"] .web-assistant-ai-badge {
  color: #e9bd53;
  border-color: rgba(233, 189, 83, .42);
  box-shadow: none;
}

.web-assistant-panel[data-support-mode="agent"] .web-assistant-head {
  box-shadow: inset 0 -1px 0 rgba(118, 228, 220, .26), 0 12px 34px rgba(0, 0, 0, .2);
}

.web-assistant-panel[data-support-mode="agent"] .web-assistant-form,
.web-assistant-panel[data-support-mode="queue"] .web-assistant-form {
  border-top-color: rgba(118, 228, 220, .18);
  box-shadow: 0 -18px 46px rgba(0, 0, 0, .24);
}

.web-assistant-panel[data-support-mode="agent"] .web-assistant-input {
  border-color: rgba(118, 228, 220, .24);
  background: linear-gradient(145deg, rgba(118, 228, 220, .045), rgba(255, 255, 255, .035));
}

.web-assistant-panel[data-support-mode="agent"] .web-assistant-send {
  border-color: rgba(255, 226, 143, .62);
  box-shadow: 0 10px 26px rgba(213, 166, 55, .18), inset 0 1px 0 rgba(255, 255, 255, .42);
}

.web-assistant-message .web-assistant-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 13px;
}

.web-assistant-message .web-assistant-action {
  min-width: 0;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(238, 196, 93, .26);
  border-radius: 11px;
  color: rgba(248, 247, 243, .88);
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .022));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.web-assistant-message button.web-assistant-action {
  appearance: none;
  font-family: inherit;
  cursor: pointer;
}

.web-assistant-message .web-assistant-action:hover {
  color: #ffe69e;
  border-color: rgba(245, 215, 123, .58);
  background: linear-gradient(145deg, rgba(238, 196, 93, .12), rgba(109, 224, 219, .04));
  transform: translateY(-1px);
}

.web-assistant-send:disabled {
  transform: none;
  box-shadow: none;
  cursor: default;
  opacity: .48;
}

.web-assistant-panel[data-support-mode="closed"] .web-assistant-ai-badge {
  color: #9da3ad;
  border-color: rgba(157, 163, 173, .3);
}

.web-assistant-panel[data-support-mode="closed"] {
  height: auto;
  min-height: 0;
  grid-template-rows: auto minmax(0, auto) auto;
}

.web-assistant-panel[data-support-mode="closed"] .web-assistant-feed {
  max-height: min(380px, calc(100dvh - 250px));
}

.web-assistant-panel[data-support-mode="closed"] .web-assistant-form {
  background: rgba(5, 6, 9, .72);
}

.web-assistant-panel[data-support-mode="closed"] .web-assistant-send {
  color: rgba(255, 255, 255, .34);
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
  box-shadow: none;
  cursor: default;
}

[data-live-feedback],
.web-assistant-live-feedback {
  margin: 12px 6px 6px;
  padding: 16px;
  border: 1px solid rgba(225, 178, 66, .32);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(225, 178, 66, .08), transparent 46%),
    rgba(17, 20, 25, .9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

[data-live-feedback] button,
.web-assistant-live-feedback button {
  min-width: 42px;
  min-height: 42px;
  border-radius: 12px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

[data-live-feedback] button:hover,
.web-assistant-live-feedback button:hover {
  transform: translateY(-2px);
  border-color: rgba(118, 228, 220, .7);
  background: rgba(118, 228, 220, .09);
}

.web-assistant-feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.web-assistant-new-conversation {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(118, 228, 220, .3);
  border-radius: 11px;
  color: #9beae4;
  background: rgba(118, 228, 220, .055);
  font: 800 .68rem/1.2 var(--font-body, "Manrope", sans-serif);
  cursor: pointer;
}

.web-assistant-new-conversation:hover {
  border-color: rgba(118, 228, 220, .62);
  background: rgba(118, 228, 220, .1);
  transform: translateY(-1px);
}

@keyframes enqivoHandoffPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233, 189, 83, 0); }
  50% { box-shadow: 0 0 0 7px rgba(233, 189, 83, .1); }
}

@media (max-width: 680px) {
  .web-assistant-panel {
    width: min(360px, calc(100vw - 32px));
    height: min(520px, calc(100dvh - 104px));
    min-height: min(440px, calc(100dvh - 104px));
    max-height: min(520px, calc(100dvh - 104px));
  }

  .web-assistant-panel[data-support-mode="closed"] {
    height: auto;
    min-height: 0;
    max-height: calc(100dvh - 86px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .web-assistant-panel[data-support-mode="queue"] .web-assistant-ai-badge {
    animation: none;
  }
}
