/**
 * ShyneTyme.Works — shared stylesheet
 *
 * CONTENTS
 * 1. Foundation, typography, buttons and shared page shell
 * 2. Primary navigation
 * 3. Shared hero objects
 * 4. Chuck helper
 * 5. Chuck message cloud
 * 6. Infotainment header
 *
 * Page-only objects belong in that page's single stylesheet.
 */

/* ==========================================================================
   Foundation, typography, buttons and shared page shell
   ========================================================================== */

:root {
  --night: #030918;
  --night-2: #06152f;
  --panel: #0a1d38;
  --panel-soft: #102747;
  --line: rgba(138, 220, 255, .24);
  --text: #f4f8ff;
  --muted: #b8c6dc;
  --cyan: #31e6ff;
  --ice: #dffaff;
  --violet: #9b83ff;
  --blue: #48a9ff;
  --pink: #ff5ab9;
  --amber: #ffc562;
  --mint: #55e6b5;
  --coral: #ff7c82;
  --heading-font: "Oxanium", "Trebuchet MS", sans-serif;
  --body-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 18%, rgba(49, 230, 255, .08), transparent 25rem),
    radial-gradient(circle at 92% 42%, rgba(255, 90, 185, .07), transparent 28rem),
    var(--night);
  font-family: var(--body-font);
  line-height: 1.65;
}


p { color: var(--muted); }
a { color: var(--cyan); }
a:hover { color: var(--ice); }
.text-secondary { color: var(--muted) !important; }

::selection { color: var(--night); background: var(--cyan); }



/* BEGIN OBJECT: Scoped contextual neon hover button system.
   Description: Approved ShyneTyme.Works button treatment for ordinary contextual CTA buttons only.
   Resting buttons stay dark and readable. Hover/focus fills the button with the three-color
   neon yellow/pink/blue gradient and a tight contour glow. Simulator controls, navigation,
   hero/banner controls, Chuck, Project Power specialty controls, and other component-owned buttons
   are intentionally not selected here. The navigation section below owns the same treatment,
   and the current-page state keeps the gradient persistently. */
:root {
  --button-neon-pink: #ff2aa8;
  --button-neon-yellow: #f6ff48;
  --button-neon-blue: #31e6ff;
  --button-neon-wave: linear-gradient(
    105deg,
    transparent 0%,
    var(--button-neon-pink) 18%,
    var(--button-neon-yellow) 50%,
    var(--button-neon-blue) 82%,
    transparent 100%
  );
  --button-surface: #11131c;
  --button-text: #ffffff;
  --button-hover-ink: #07111f;
}

/* Only the six non-SIM site surfaces approved for contextual CTA treatment. */
html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .32) !important;
  border-radius: .7rem !important;
  color: var(--button-text) !important;
  background-color: var(--button-surface) !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  font-family: var(--body-font) !important;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: none !important;
  transform: translateY(0) !important;
  animation: none !important;
  transition:
    color .18s ease,
    border-color .18s ease,
    background .18s ease,
    transform .18s ease,
    box-shadow .18s ease !important;
}

html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px -42%;
  pointer-events: none;
  opacity: 0;
  background: var(--button-neon-wave);
  transform: translate3d(-58%, 0, 0) skewX(-16deg);
}

html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn:hover,
html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn:focus-visible {
  color: var(--button-text) !important;
  border-color: transparent !important;
  background-color: var(--button-surface) !important;
  background-image: none !important;
  box-shadow:
    0 0 5px rgba(255, 42, 168, .28),
    0 0 7px rgba(246, 255, 72, .28),
    0 0 9px rgba(49, 230, 255, .28) !important;
  filter: none !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .82) !important;
  transform: translateY(-1px) !important;
  animation: none !important;
}

html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn:hover::before,
html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn:focus-visible::before {
  opacity: .98;
  animation: shynetyme-button-neon-wave 1.8s ease-in-out infinite alternate !important;
}

html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn:active {
  transform: translateY(0) !important;
}

html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn:focus-visible {
  outline: 2px solid #fff !important;
  outline-offset: 3px !important;
}

html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn:disabled,
html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn[aria-disabled="true"] {
  cursor: not-allowed !important;
  opacity: .44 !important;
  box-shadow: none !important;
  filter: grayscale(.25) !important;
  transform: none !important;
  animation: none !important;
}

.btn-lg { padding: .82rem 1.24rem; }

@keyframes shynetyme-button-neon-wave {
  from { transform: translate3d(-58%, 0, 0) skewX(-16deg); }
  to { transform: translate3d(58%, 0, 0) skewX(-16deg); }
}

@media (prefers-reduced-motion: reduce) {
  html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn {
    transition: none !important;
  }

  html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn:hover::before,
  html body:is(.home-page, .deke-page, .contact-page, .ledexpo-page, .Project Power-page, .recommendations-page) main .btn:focus-visible::before {
    animation-duration: 3.6s !important;
  }
}
/* END OBJECT: Scoped contextual neon hover button system. */

.home-page main { overflow: hidden; }
.home-page main > section { position: relative; border-top: 1px solid rgba(138, 220, 255, .1); }
.home-page main > section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle, rgba(49, 230, 255, .13) 0 1px, transparent 1.6px); background-size: 46px 46px; mask-image: linear-gradient(90deg, #000, transparent 38%); opacity: .24; }

.section-title { font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.05; }

.card, .ad-copy-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 45, 78, .96), rgba(5, 18, 39, .96));
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.card { color: var(--text); border-radius: 1rem; overflow: hidden; }
.card p { color: var(--muted); }
.card:hover { transform: translateY(-5px); border-color: rgba(49, 230, 255, .46); box-shadow: 0 22px 44px rgba(0, 0, 0, .34), 0 0 22px rgba(49, 230, 255, .1); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.effects-stage {
  background:
    radial-gradient(circle at 50% 5%, rgba(155, 131, 255, .18), transparent 30rem),
    linear-gradient(180deg, #030918, #07162c 52%, #030918);
}

.effects-stage__shell { max-width: 1500px; padding-right: clamp(1rem, 3vw, 3rem); padding-left: clamp(1rem, 3vw, 3rem); }

.effects-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, .72fr) minmax(480px, 1.7fr) minmax(210px, .72fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}

.effects-center {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2.5rem);
  border: 1px solid transparent;
  border-radius: 1.4rem;
  background:
    linear-gradient(150deg, rgba(16, 39, 71, .97), rgba(3, 9, 24, .985)) padding-box,
    linear-gradient(110deg, var(--cyan), var(--violet), var(--pink), var(--amber), var(--cyan)) border-box;
  background-size: auto, 320% 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38), 0 0 42px rgba(155, 131, 255, .1), inset 0 1px 0 rgba(255, 255, 255, .08);
  animation: story-border 14s linear infinite;
}

.shynetyme-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .24;
  background-image: radial-gradient(circle, rgba(49, 230, 255, .85) 0 1px, transparent 1.6px);
  background-size: 10px 10px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.shynetyme-story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(3, 9, 24, .5), rgba(3, 9, 24, .9) 78%);
  pointer-events: none;
}

.shynetyme-story__content { position: relative; z-index: 2; max-width: 790px; margin-inline: auto; }
.shynetyme-story .section-kicker { text-align: center; }
.shynetyme-story .section-title { max-width: 20ch; margin: 0 auto 1.35rem; text-align: center; }
.shynetyme-story__content > p:not(.section-kicker) { color: #dbe9f7; font-size: clamp(1rem, 1.25vw, 1.12rem); line-height: 1.78; }
.shynetyme-story__signoff { margin-bottom: 0; color: var(--ice) !important; font-weight: 650; }

.story-led-matrix { position: absolute; inset: 0; z-index: 0; display: grid; align-content: space-around; overflow: hidden; pointer-events: none; }
.story-led-matrix span {
  display: block;
  width: max-content;
  color: rgba(126, 235, 255, .2);
  font-family: var(--heading-font);
  font-size: clamp(.72rem, 1.15vw, 1rem);
  font-weight: 800;
  letter-spacing: .22em;
  white-space: nowrap;
  text-shadow: 0 0 7px rgba(49, 230, 255, .52);
  animation: story-message 34s linear infinite;
}
.story-led-matrix span:nth-child(2) { color: rgba(255, 90, 185, .17); animation-direction: reverse; animation-duration: 41s; text-shadow: 0 0 7px rgba(255, 90, 185, .45); }
.story-led-matrix span:nth-child(3) { color: rgba(255, 197, 98, .15); animation-duration: 37s; text-shadow: 0 0 7px rgba(255, 197, 98, .42); }

@keyframes story-message {
  from { transform: translateX(-12%); }
  to { transform: translateX(-55%); }
}

@keyframes story-border {
  to { background-position: 0 0, 320% 0; }
}

.ad-copy-card {
  --accent: var(--cyan);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 1.25rem;
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .3), 0 0 28px color-mix(in srgb, var(--accent) 11%, transparent), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.ad-copy-card--pink { --accent: var(--pink); }
.ad-copy-card h2 { font-size: clamp(1.65rem, 2.5vw, 2.55rem); line-height: 1; }
.ad-copy-card p:not(.section-kicker) { margin-bottom: 1.4rem; }
.ad-copy-card .btn { align-self: flex-start; margin-top: auto; font-size: .88rem; }

#Project Power { background: linear-gradient(180deg, #06152f, #0a1d38); }
.Project Power-filter, .form-select {
  color: var(--text);
  background-color: #07172c;
  border-color: rgba(49, 230, 255, .32);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, .38);
}
.Project Power-filter option, .form-select option { color: #fff; background: #07172c; }
.product-meta { font-size: .9rem; color: #aebed5; }
.badge-soft { color: #bff8ff; background: rgba(49, 230, 255, .12); border: 1px solid rgba(49, 230, 255, .26); }

#request {
  background:
    radial-gradient(circle at 85% 40%, rgba(255, 90, 185, .18), transparent 22rem),
    linear-gradient(110deg, #07162c, #161342) !important;
  border-top-color: rgba(155, 131, 255, .34);
}

footer { color: var(--muted); background: #020611; border-color: rgba(49, 230, 255, .16) !important; }
footer a { color: var(--ice); }

/* Shared compact legal footer for full-viewport tools and simulators. */
footer.site-footer--compact {
  min-height: 34px;
  padding: .32rem 0;
  font-size: .7rem;
  line-height: 1.2;
}

footer.site-footer--compact .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .18rem .7rem;
  text-align: center;
}

.site-footer--compact__notice { color: #aebccc; }

@media (max-width: 575.98px) {
  footer.site-footer--compact { font-size: .64rem; }
  footer.site-footer--compact .container { gap: .12rem .45rem; }
}

@media (max-width: 1199.98px) {
  .effects-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .effects-center { grid-column: 1 / -1; grid-row: 1; }
  .ad-copy-card { min-height: 280px; }
}

@media (max-width: 991.98px) {
  /* Keep the expanded mobile navigation above page content instead of reflowing it. */
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1040;
    padding: .7rem .75rem 1rem;
    border-top: 1px solid rgba(49, 230, 255, .18);
    border-bottom: 1px solid rgba(49, 230, 255, .22);
    background: rgba(3, 9, 24, .98);
    box-shadow:
      0 16px 28px rgba(0, 0, 0, .38),
      0 0 24px rgba(49, 230, 255, .08);
  }
}

@media (max-width: 767.98px) {
  body { font-size: .96rem; }
  .effects-layout { grid-template-columns: 1fr; }
  .effects-center { grid-column: auto; }
  .ad-copy-card { min-height: 0; }
  .section-title { font-size: clamp(1.85rem, 9vw, 2.7rem); }
  .btn { width: auto; min-height: 46px; }
  #request .text-lg-end { margin-top: .5rem; }
}

@media (max-width: 575.98px) {
  .effects-stage__shell { padding-right: .8rem; padding-left: .8rem; }
  .effects-center, .ad-copy-card { border-radius: 1rem; }
  .shynetyme-story__content > p:not(.section-kicker) { line-height: 1.68; }
}



/* Contact page request form, map and animated socials */
.contact-main {
  background:
    radial-gradient(circle at 12% 18%, rgba(49, 230, 255, .12), transparent 24rem),
    radial-gradient(circle at 86% 30%, rgba(255, 90, 185, .13), transparent 25rem),
    linear-gradient(180deg, #030918, #07162c 48%, #030918);
}

.contact-panel {
  height: 100%;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 2px solid transparent;
  border-radius: 1.35rem;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(8, 24, 48, .97), rgba(3, 9, 24, .98)) padding-box,
    linear-gradient(125deg, var(--cyan), var(--violet), var(--pink), var(--amber), var(--cyan)) border-box;
  background-size: auto, 260% 100%;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, .34),
    0 0 30px rgba(49, 230, 255, .12),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  animation: contact-border-flow 12s linear infinite;
}

.contact-form .form-label {
  color: var(--ice);
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-form .form-control,
.contact-form .form-select {
  color: var(--text);
  background-color: rgba(3, 9, 24, .72);
  border-color: rgba(49, 230, 255, .34);
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, .42);
}

.contact-form .form-control::placeholder { color: rgba(216, 233, 247, .58); }
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  color: #fff;
  background-color: rgba(6, 21, 47, .94);
  border-color: var(--cyan);
  box-shadow: 0 0 0 .22rem rgba(49, 230, 255, .18), inset 0 1px 6px rgba(0, 0, 0, .35);
}

.map-frame {
  overflow: hidden;
  min-height: 430px;
  border: 2px solid transparent;
  border-radius: 1.1rem;
  background:
    linear-gradient(145deg, rgba(3, 9, 24, .9), rgba(6, 21, 47, .88)) padding-box,
    linear-gradient(125deg, var(--cyan), var(--violet), var(--pink), var(--amber), var(--cyan)) border-box;
  background-size: auto, 260% 100%;
  box-shadow: inset 0 0 26px rgba(49, 230, 255, .08), 0 14px 34px rgba(0, 0, 0, .28);
  animation: contact-border-flow 12s linear infinite;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(.92) contrast(1.05) brightness(.9);
}

.social-led-banner {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(2, 6, 17, .96), rgba(7, 22, 44, .94)) padding-box,
    linear-gradient(90deg, #ff5ab9, #ffe45e, #48a9ff, #55e6b5, #ff5ab9) border-box;
  background-size: auto, 320% 100%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34), 0 0 24px rgba(72, 169, 255, .18);
  animation: hero-led-border-flow 4.4s linear infinite;
}

.social-led-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 4px),
    radial-gradient(circle, rgba(134, 224, 255, .14) 0 1px, transparent 1.35px);
  background-size: auto, 7px 7px;
}

.social-led-banner__track {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  padding: 1rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .72rem 1rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 21, 47, .82);
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(49, 230, 255, .72);
  box-shadow: 0 6px 0 rgba(0, 0, 0, .38), 0 0 18px rgba(49, 230, 255, .12);
  opacity: 0;
  transform: translateX(-24px) translateY(18px) scale(.92);
  animation: social-roll-bounce .9s cubic-bezier(.2, 1.38, .42, 1) both;
}

.social-chip__icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  padding: .38rem;
  border-radius: 50%;
  color: var(--night);
  fill: currentColor;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(49, 230, 255, .62);
}

.social-chip--instagram { animation-delay: .18s; }
.social-chip--whatsapp { animation-delay: .36s; }
.social-chip--facebook .social-chip__icon { background: var(--blue); }
.social-chip--instagram .social-chip__icon { background: linear-gradient(135deg, var(--amber), var(--pink), var(--violet)); }
.social-chip--whatsapp .social-chip__icon { background: var(--mint); }
.social-chip:hover,
.social-chip:focus-visible {
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 0 rgba(0, 0, 0, .4), 0 0 24px rgba(255, 90, 185, .22);
}

@keyframes contact-border-flow {
  to { background-position: 0 0, 260% 0; }
}

@keyframes social-roll-bounce {
  0% { opacity: 0; transform: translateX(-36px) translateY(18px) rotate(-10deg) scale(.9); }
  72% { opacity: 1; transform: translateX(4px) translateY(-8px) rotate(2deg) scale(1.04); }
  100% { opacity: 1; transform: translateX(0) translateY(0) rotate(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .contact-panel,
  .map-frame,
  .social-led-banner,
  .social-chip {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .map-frame,
  .map-frame iframe { min-height: 320px; height: 320px; }
  .social-led-banner__track { justify-content: flex-start; }
}

/* Shared page subheader. */
#page-subheader {
  position: relative;
  background: linear-gradient(90deg, #020611, #0b1c3a 50%, #120b2a, #020611);
}

#page-subheader::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), #ff8a00, var(--amber), var(--pink), var(--violet), var(--cyan), var(--coral));
  background-size: 300% 100%;
  animation: page-subheader-border-flow 6s linear infinite;
}

#page-subheader-row {
  max-width: 1140px;
  margin: auto;
  padding: .72rem 1rem .82rem;
}

#page-subheader-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font: 800 clamp(1rem, 1.2vw, 1.125rem)/1.2 var(--heading-font);
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.page-subheader-item { display: flex; align-items: center; gap: .45rem; }
.page-subheader-item + .page-subheader-item::before {
  content: "›";
  color: var(--amber);
  text-shadow: 0 0 8px rgba(255, 197, 98, .7);
}

#page-subheader-text :is(a, [aria-current="page"]) {
  color: #fff3d2;
  background: linear-gradient(180deg, #fff, #fff2bd 34%, #ffc562 58%, #ff7c82 78%, #ff9bd2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 7px rgba(255, 138, 0, .38), 0 0 13px rgba(255, 90, 185, .28);
}

#page-subheader-text a { text-decoration: none; }
@keyframes page-subheader-border-flow { to { background-position: 300% 0; } }

@media (max-width: 575.98px) {
  #page-subheader-row { padding: .62rem .75rem .72rem; }
  #page-subheader-text { font-size: .95rem; letter-spacing: .045em; }
}

@media (prefers-reduced-motion: reduce) {
  #page-subheader::after { animation: none; }
}

/* --------------------------------------------------------------------------
   Shared object: simulator-to-project handoff
   -------------------------------------------------------------------------- */
.design-chain-coming-soon {
  margin: .8rem 0;
  padding: .85rem;
  border: 1px dashed rgba(255, 120, 199, .6);
  border-radius: .85rem;
  background: linear-gradient(135deg, rgba(255, 90, 185, .1), rgba(49, 230, 255, .08));
}
.design-chain-coming-soon strong { display: block; margin-bottom: .25rem; color: #fff; }
.design-chain-coming-soon p { margin: 0 0 .65rem; color: #c7d8e5; font-size: .84rem; }
.design-chain-coming-soon button { font-weight: 800; }



/* ==========================================================================
   Primary navigation
   ========================================================================== */

/* Canonical site-wide navigation styling. */
.skip-link {
  position: fixed;
  top: .5rem;
  left: .5rem;
  z-index: 2000;
  padding: .7rem 1rem;
  border: 2px solid #fff;
  border-radius: .65rem;
  color: #06111f;
  background: var(--cyan, #31e6ff);
  font-family: var(--heading-font, sans-serif);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0 0 4px rgba(3, 9, 24, .9), 0 0 22px rgba(49, 230, 255, .65);
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  color: #06111f;
  outline: none;
  transform: translateY(0);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--cyan, #31e6ff);
  outline-offset: 3px;
}

#main-content:focus { outline: none; }

.navbar {
  background: rgba(3, 9, 24, .92) !important;
  border-bottom: 1px solid rgba(49, 230, 255, .26);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .32), 0 0 24px rgba(49, 230, 255, .07);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand-lockup img { filter: drop-shadow(0 0 7px rgba(49, 230, 255, .8)); }
.brand-lockup em { color: var(--cyan); font-style: normal; text-shadow: 0 0 11px rgba(49, 230, 255, .72); }

.navbar .nav-link {
  position: relative;
  overflow: hidden;
  border-radius: .72rem;
  color: #d9e8fb;
  font-family: var(--heading-font);
  font-weight: 650;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible {
  color: #d9e8fb;
}

.navbar .nav-link.active {
  color: #fff3d2;
  background-image: linear-gradient(180deg, #fff, #fff2bd 34%, #ffc562 58%, #ff7c82 78%, #ff9bd2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 7px rgba(255, 138, 0, .38), 0 0 13px rgba(255, 90, 185, .28);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  right: .5rem;
  bottom: .2rem;
  left: .5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transition: transform .2s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus-visible::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
  border-color: rgba(49, 230, 255, .55);
  box-shadow: 0 5px 0 rgba(0, 83, 111, .75), 0 0 14px rgba(49, 230, 255, .2);
}
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(49, 230, 255, .28); }

.shynetyme-build-menu,
.shynetyme-language-menu { position: relative; }

.shynetyme-build-menu > .nav-link,
.shynetyme-language-menu > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 0;
  background-color: transparent;
}

.shynetyme-build-menu .dropdown-menu,
.shynetyme-language-menu .dropdown-menu {
  min-width: 13.5rem;
  margin-top: .55rem;
  padding: .48rem;
  overflow: hidden;
  border: 1px solid rgba(49, 230, 255, .46);
  border-radius: .85rem;
  background: radial-gradient(circle at 15% 10%, rgba(49, 230, 255, .12), transparent 9rem), linear-gradient(155deg, rgba(6, 21, 47, .99), rgba(18, 12, 48, .99));
  box-shadow: 0 18px 38px rgba(0, 0, 0, .48), 0 0 20px rgba(49, 230, 255, .14), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.shynetyme-language-menu .dropdown-menu { min-width: 10.5rem; }

.shynetyme-build-menu .dropdown-item,
.shynetyme-language-menu .dropdown-item {
  position: relative;
  padding: .72rem .82rem;
  border-radius: .62rem;
  color: #dcecff;
  font-family: var(--heading-font);
  font-weight: 750;
  letter-spacing: .015em;
  transition: color .18s ease, background-color .18s ease;
}

.shynetyme-build-menu li + li .dropdown-item,
.shynetyme-language-menu li + li .dropdown-item { margin-top: .18rem; }

.shynetyme-build-menu .dropdown-item:hover,
.shynetyme-build-menu .dropdown-item:focus,
.shynetyme-build-menu .dropdown-item.active,
.shynetyme-language-menu .dropdown-item:hover,
.shynetyme-language-menu .dropdown-item:focus,
.shynetyme-language-menu .dropdown-item.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(49, 230, 255, .2), rgba(155, 131, 255, .24));
}

.shynetyme-build-menu .dropdown-item.active,
.shynetyme-language-menu .dropdown-item.active { box-shadow: inset 3px 0 0 var(--cyan); }

@media (prefers-reduced-motion: reduce) {
  .skip-link,
  .navbar .nav-link::after,
  .dropdown-item {
    transition: none !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse { padding: .7rem 0 1rem; }
  .navbar .nav-link { padding: .68rem .5rem; }
  .shynetyme-build-menu > .nav-link,
  .shynetyme-language-menu > .nav-link { width: 100%; justify-content: space-between; text-align: left; }
  .shynetyme-build-menu .dropdown-menu,
  .shynetyme-language-menu .dropdown-menu { margin: .25rem 0 .45rem .55rem; border-radius: .72rem; box-shadow: inset 0 0 18px rgba(49, 230, 255, .06); }
}

/* Shared navbar LED edge strip. */
.navbar { position: sticky; top: 0; isolation: isolate; z-index: 1030; }
.navbar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  z-index: 2;
  height: 4px;
  pointer-events: none;
  background:
    radial-gradient(circle at 2px 2px, var(--hero-led-a, #31e6ff) 0 1.45px, transparent 1.8px) 0 0 / 16px 4px repeat-x,
    radial-gradient(circle at 2px 2px, var(--hero-led-b, #9b83ff) 0 1.45px, transparent 1.8px) 8px 0 / 16px 4px repeat-x;
  filter: drop-shadow(0 0 3px var(--hero-led-a, #31e6ff));
  animation: navbar-led-chase var(--hero-led-speed, 5.8s) linear infinite var(--hero-led-direction, normal);
}

@keyframes navbar-led-chase { to { background-position: 96px 0, 104px 0; } }
html.site-led-mode--stack .navbar::after { animation-timing-function: steps(16, end); }
html.site-led-mode--pulse .navbar::after { animation-name: navbar-led-chase, navbar-led-soft-pulse; animation-duration: var(--hero-led-speed, 5.8s), 2.8s; }
@keyframes navbar-led-soft-pulse { 0%, 100% { opacity: .68; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .navbar::after { animation: none !important; opacity: .82; }
}

/* Canonical typography for every primary-nav destination and LED SIMS child link. */
.navbar .navbar-nav > .nav-link,
.navbar .navbar-nav > .nav-item > .nav-link,
.navbar .navbar-nav .dropdown-item {
  font-family: var(--heading-font, "Oxanium", sans-serif);
  font-weight: 750;
  letter-spacing: .02em;
}

/* BEGIN OBJECT: Approved neon navigation button treatment. */
/* Top-level navigation uses the same approved hover wave as contextual CTAs.
   Resting/current states stay dark; hover/focus receives the gradual
   pink/yellow/blue animated wave. */
.navbar .navbar-nav > .nav-link,
.navbar .navbar-nav > .nav-item > .nav-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 .12rem;
  padding: .5rem .7rem;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: .68rem;
  color: #f4f8ff !important;
  background-color: #11131c !important;
  background-image: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transition:
    color .18s ease,
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease !important;
}

.navbar .navbar-nav > .nav-link::before,
.navbar .navbar-nav > .nav-item > .nav-link::before,
.shynetyme-build-menu .dropdown-item::before,
.shynetyme-language-menu .dropdown-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px -42%;
  pointer-events: none;
  opacity: 0;
  background: var(--button-neon-wave);
  transform: translate3d(-58%, 0, 0) skewX(-16deg);
}

.navbar .navbar-nav > .nav-link:hover,
.navbar .navbar-nav > .nav-link:focus-visible,
.navbar .navbar-nav > .nav-item > .nav-link:hover,
.navbar .navbar-nav > .nav-item > .nav-link:focus-visible {
  color: #f4f8ff !important;
  border-color: transparent !important;
  background-color: #11131c !important;
  background-image: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: #f4f8ff !important;
  box-shadow:
    0 0 5px rgba(255, 42, 168, .28),
    0 0 7px rgba(246, 255, 72, .28),
    0 0 9px rgba(49, 230, 255, .28) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .82) !important;
  transform: translateY(-1px);
  animation: none;
}

.navbar .navbar-nav > .nav-link:hover::before,
.navbar .navbar-nav > .nav-link:focus-visible::before,
.navbar .navbar-nav > .nav-item > .nav-link:hover::before,
.navbar .navbar-nav > .nav-item > .nav-link:focus-visible::before {
  opacity: .98;
  animation: shynetyme-button-neon-wave 1.8s ease-in-out infinite alternate;
}

/* Current destination remains identifiable without running the hover animation. */
.navbar .navbar-nav > .nav-link.active:not(:hover):not(:focus-visible),
.navbar .navbar-nav > .nav-item > .nav-link.active:not(:hover):not(:focus-visible) {
  color: #f4f8ff !important;
  border-color: rgba(49, 230, 255, .52) !important;
  background-color: #11131c !important;
  background-image: none !important;
  -webkit-text-fill-color: currentColor !important;
  box-shadow: inset 0 -2px 0 var(--button-neon-blue), 0 0 9px rgba(49, 230, 255, .16) !important;
  transform: translateY(0);
  animation: none;
}

.navbar .nav-link::after { content: none !important; display: none !important; }

/* LED SIMS / language dropdown trigger is still a navigation button, so do not clear its skin. */
.shynetyme-build-menu > .nav-link,
.shynetyme-language-menu > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

/* Dropdown destinations follow the same hover/current-page treatment. */
.shynetyme-build-menu .dropdown-item,
.shynetyme-language-menu .dropdown-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  color: #f4f8ff !important;
  background-color: #11131c;
  background-image: none;
  box-shadow: none;
}

.shynetyme-build-menu .dropdown-item:hover,
.shynetyme-build-menu .dropdown-item:focus,
.shynetyme-language-menu .dropdown-item:hover,
.shynetyme-language-menu .dropdown-item:focus {
  color: #f4f8ff !important;
  border-color: transparent;
  background-color: #11131c !important;
  background-image: none !important;
  box-shadow:
    0 0 4px rgba(255, 42, 168, .24),
    0 0 6px rgba(246, 255, 72, .24),
    0 0 8px rgba(49, 230, 255, .24) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .82) !important;
  animation: none;
}

.shynetyme-build-menu .dropdown-item:hover::before,
.shynetyme-build-menu .dropdown-item:focus::before,
.shynetyme-language-menu .dropdown-item:hover::before,
.shynetyme-language-menu .dropdown-item:focus::before {
  opacity: .98;
  animation: shynetyme-button-neon-wave 1.8s ease-in-out infinite alternate;
}

.shynetyme-build-menu .dropdown-item.active:not(:hover):not(:focus),
.shynetyme-language-menu .dropdown-item.active:not(:hover):not(:focus) {
  color: #f4f8ff !important;
  border-color: rgba(49, 230, 255, .46);
  background-color: #11131c !important;
  background-image: none !important;
  box-shadow:
    inset 3px 0 0 var(--button-neon-blue),
    0 0 8px rgba(49, 230, 255, .14) !important;
  animation: none;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav > .nav-link,
  .navbar .navbar-nav > .nav-item > .nav-link {
    width: 100%;
    margin: .12rem 0;
    padding: .62rem .66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar .navbar-nav > .nav-link,
  .navbar .navbar-nav > .nav-item > .nav-link,
  .navbar .navbar-nav .dropdown-item {
    transition: none !important;
  }

  .navbar .navbar-nav > .nav-link:hover::before,
  .navbar .navbar-nav > .nav-link:focus-visible::before,
  .navbar .navbar-nav > .nav-item > .nav-link:hover::before,
  .navbar .navbar-nav > .nav-item > .nav-link:focus-visible::before,
  .navbar .navbar-nav .dropdown-item:hover::before,
  .navbar .navbar-nav .dropdown-item:focus::before {
    animation-duration: 3.6s !important;
  }
}
/* END OBJECT: Approved neon navigation button treatment. */



/* ==========================================================================
   Shared hero objects
   ========================================================================== */

/* Shared Bootstrap 5.3 banner sizing and caption treatment. */
.site-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #030918;
  border-bottom: 1px solid rgba(49, 230, 255, .22);
}

.site-banner .carousel,
.site-banner .carousel-inner,
.site-banner .carousel-item {
  height: clamp(400px, 40vw, 550px);
}

.site-banner-image {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-banner-caption {
  right: auto;
  bottom: 1.2rem;
  left: clamp(1rem, 6vw, 5rem);
  padding: 0;
  text-align: left;
}

.site-banner-callout {
  --banner-accent: var(--cyan);
  display: inline-block;
  padding: .52rem .82rem;
  border: 2px solid var(--banner-accent);
  border-radius: .7rem;
  color: #fff;
  background: rgba(3, 9, 24, .76);
  box-shadow: 0 0 18px color-mix(in srgb, var(--banner-accent) 34%, transparent);
  font-family: var(--heading-font);
  font-size: clamp(.9rem, 1.4vw, 1.15rem);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 0 10px color-mix(in srgb, var(--banner-accent) 55%, transparent);
  backdrop-filter: blur(4px);
}

.site-banner-callout--pink { --banner-accent: var(--pink); }
.site-banner-callout--amber { --banner-accent: var(--amber); }
.site-banner-callout--violet { --banner-accent: var(--violet); }

.site-banner .carousel-control-prev,
.site-banner .carousel-control-next { width: 8%; }

.site-banner .carousel-indicators { margin-bottom: .45rem; }
.site-banner .carousel-indicators [data-bs-target] { height: 3px; }

/* Bike and Home simulators use the compact SIM Auto-style heading instead of a rotating banner. */
.builder-page,
.home-builder-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(49, 230, 255, .075), transparent 28rem),
    radial-gradient(circle at 88% 32%, rgba(255, 90, 185, .06), transparent 30rem),
    linear-gradient(180deg, #030918, #07162c 48%, #030918);
}

.builder-page .site-banner,
.home-builder-page .site-banner {
  padding: clamp(1.25rem, 3vw, 2.4rem) 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(155, 92, 255, .24), transparent 30rem),
    linear-gradient(180deg, rgba(6, 21, 47, .98), rgba(3, 9, 24, .98));
  border-bottom: 1px solid rgba(49, 230, 255, .24);
}

.builder-page .site-banner .carousel,
.home-builder-page .site-banner .carousel {
  display: none !important;
}

.builder-page .site-banner > .visually-hidden,
.home-builder-page .site-banner > .visually-hidden {
  position: static !important;
  width: min(100%, 980px) !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  border: 0 !important;
  text-align: center;
}

.builder-page .site-banner > .visually-hidden p:first-child,
.home-builder-page .site-banner > .visually-hidden p:first-child {
  margin: 0 0 .35rem;
  color: var(--cyan, #31e6ff);
  font-family: var(--heading-font, Oxanium, sans-serif);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.builder-page .site-banner > .visually-hidden h1,
.home-builder-page .site-banner > .visually-hidden h1 {
  margin: 0;
  color: #fff;
  font-family: var(--heading-font, Oxanium, sans-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 0 24px rgba(155, 92, 255, .22);
}

.builder-page .site-banner > .visually-hidden p:last-child,
.home-builder-page .site-banner > .visually-hidden p:last-child {
  max-width: 820px;
  margin: .7rem auto 0;
  color: #c6d0e1;
  line-height: 1.6;
}

.builder-page main,
.home-builder-page main {
  background:
    radial-gradient(circle at 12% 8%, rgba(49, 230, 255, .08), transparent 28rem),
    radial-gradient(circle at 88% 32%, rgba(255, 90, 185, .07), transparent 30rem),
    linear-gradient(180deg, rgba(3, 9, 24, .88), rgba(7, 22, 44, .94) 48%, rgba(3, 9, 24, .96));
}

.builder-page .preview-card,
.home-builder-page .home-preview-card {
  border: 1px solid rgba(49, 230, 255, .38) !important;
  box-shadow:
    0 .9rem 2.4rem rgba(0, 0, 0, .38),
    0 0 24px rgba(49, 230, 255, .1) !important;
}

.builder-page .bike-stage,
.home-builder-page .home-stage {
  box-shadow: inset 0 0 0 1px rgba(138, 220, 255, .12);
}

@media (max-width: 991.98px) {
  .site-banner .carousel,
  .site-banner .carousel-inner,
  .site-banner .carousel-item { height: clamp(250px, 44vw, 340px); }
}

@media (max-width: 575.98px) {
  .site-banner .carousel,
  .site-banner .carousel-inner,
  .site-banner .carousel-item { height: clamp(220px, 58vw, 280px); }

  .site-banner-caption {
    bottom: .9rem;
    left: .8rem;
  }

  .site-banner-callout {
    padding: .42rem .65rem;
    font-size: .82rem;
    letter-spacing: .055em;
  }

  .builder-page .site-banner,
  .home-builder-page .site-banner {
    padding: 1.1rem .75rem 1.25rem;
  }

  .builder-page .site-banner > .visually-hidden h1,
  .home-builder-page .site-banner > .visually-hidden h1 {
    font-size: 2rem;
  }
}



/* ==========================================================================
   Chuck helper
   ========================================================================== */

/* Canonical site-wide Chuck pet styling. Recovered v2 atlas edition. */

.deke-chuck-widget {
  position: fixed;
  right: clamp(.65rem, 2vw, 1.15rem);
  bottom: .7rem;
  z-index: 1090;
  width: 140px;
  height: 140px;
  pointer-events: none;
}

.deke-chuck-trigger {
  --chuck-neon-yellow: #f6ff48;
  --chuck-neon-pink: #ff2aa8;
  --chuck-neon-blue: #31e6ff;
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 126px;
  height: 126px;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 50% 54%, rgba(49,230,255,.11) 0 27%, rgba(255,42,168,.055) 50%, rgba(246,255,72,.035) 66%, transparent 74%);
  box-shadow: 0 7px 18px rgba(0,0,0,.32), inset 0 0 14px rgba(255,255,255,.04);
  cursor: pointer;
  pointer-events: auto;
  isolation: isolate;
  z-index: 12;
  touch-action: manipulation;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Two staggered center-out neon radiation waves. Nothing rotates around Chuck. */
.deke-chuck-trigger::before,
.deke-chuck-trigger::after {
  content: "";
  position: absolute;
  inset: -11px;
  z-index: 0;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 54%,
    rgba(246,255,72,.54) 0 17%,
    rgba(255,42,168,.39) 34%,
    rgba(49,230,255,.32) 52%,
    rgba(49,230,255,.11) 66%,
    transparent 77%);
  filter: blur(7px);
  pointer-events: none;
  transform-origin: 50% 54%;
  animation: deke-chuck-radiate 3.35s ease-out infinite;
}

.deke-chuck-trigger::after {
  animation-delay: 1.675s;
  opacity: .52;
}

@keyframes deke-chuck-radiate {
  0%   { opacity: .12; transform: scale(.72); filter: blur(5px); }
  32%  { opacity: .7; }
  70%  { opacity: .3; }
  100% { opacity: 0; transform: scale(1.36); filter: blur(9px); }
}

.deke-chuck-trigger .chuck-fallback-image {
  position: absolute;
  inset: 5px;
  z-index: 2;
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: contain;
  border-radius: 50%;
  transform: translateY(4px);
}

/* Crisp 192x208 cells from the recovered 8x11 atlas. No radial mask or fuzzy edge. */
.deke-chuck-trigger .deke-chuck-atlas-sprite {
  position: absolute;
  left: 7px;
  top: 2px;
  z-index: 3;
  display: block;
  width: 112px;
  height: 121px;
  background-repeat: no-repeat;
  background-size: 800% 1100%;
  background-position: 0 0;
  image-rendering: auto;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.28));
  pointer-events: none;
  transform-origin: 50% 72%;
  animation: deke-chuck-ambient-bob 2.8s ease-in-out infinite;
  will-change: transform, background-position;
}

/* Scroll-direction actions use the existing approved six-frame Chuck strips.
   Upward scroll: map/research. Downward scroll: laptop typing. Running is never used. */
.deke-chuck-trigger .deke-chuck-scroll-sprite {
  position: absolute;
  left: 7px;
  top: 15px;
  z-index: 4;
  display: none;
  width: 112px;
  height: 102px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 600% auto;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.28));
  pointer-events: none;
  will-change: background-position;
}

.deke-chuck-widget.is-searching .deke-chuck-atlas-sprite,
.deke-chuck-widget.is-searching .chuck-fallback-image { display: none; }

.deke-chuck-widget.is-scroll-research .deke-chuck-scroll-sprite {
  display: block;
  background-image: url("../brand/chuck-search-map.webp");
  animation: deke-chuck-scroll-action .78s steps(5, end) infinite;
}

.deke-chuck-widget.is-scroll-laptop .deke-chuck-scroll-sprite {
  display: block;
  background-image: url("../brand/chuck-search-laptop.webp");
  animation: deke-chuck-scroll-action .78s steps(5, end) infinite;
}

@keyframes deke-chuck-scroll-action {
  from { background-position: 0 50%; }
  to { background-position: 100% 50%; }
}

.deke-chuck-trigger.is-chuck-running .deke-chuck-atlas-sprite {
  animation-duration: .9s;
}

.deke-chuck-trigger.is-chuck-sleeping .deke-chuck-atlas-sprite {
  animation-duration: 4.2s;
}

@keyframes deke-chuck-ambient-bob {
  0%, 100% { transform: translateY(4px) rotate(-.7deg); }
  50% { transform: translateY(0) rotate(.7deg); }
}

.deke-chuck-trigger:hover,
.deke-chuck-trigger:focus-visible {
  transform: translateY(-3px) scale(1.025);
  box-shadow:
    0 14px 26px rgba(0,0,0,.36),
    0 0 10px rgba(246,255,72,.18),
    0 0 13px rgba(255,42,168,.2),
    0 0 16px rgba(49,230,255,.2);
}

.deke-chuck-trigger:active { transform: translateY(2px) scale(.99); }
.deke-chuck-trigger:focus-visible { outline: 3px solid #fff; outline-offset: 7px; }

/* Old magnifier/search ornament retired; movement now comes from the full PetChuck atlas. */
.deke-chuck-search-light,
.deke-chuck-widget.is-searching .deke-chuck-search-light { display: none !important; }

@media (max-width: 575.98px) {
  .deke-chuck-widget { width: 118px; height: 118px; }
  .deke-chuck-trigger { right: 7px; bottom: 7px; width: 104px; height: 104px; }
  .deke-chuck-trigger::before,
  .deke-chuck-trigger::after { inset: -8px; }
  .deke-chuck-trigger .deke-chuck-atlas-sprite {
    left: 6px;
    top: 2px;
    width: 92px;
    height: 100px;
  }
  .deke-chuck-trigger .deke-chuck-scroll-sprite {
    left: 6px;
    top: 12px;
    width: 92px;
    height: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deke-chuck-trigger::before,
  .deke-chuck-trigger::after,
  .deke-chuck-trigger .deke-chuck-atlas-sprite,
  .deke-chuck-trigger .deke-chuck-scroll-sprite {
    animation: none !important;
  }
}



/* ==========================================================================
   Chuck message cloud
   ========================================================================== */

/* Canonical Chuck thought cloud: compact wide cloud anchored above viewer-left ear. */

.deke-chuck-thought {
  --cloud-fill: rgba(239, 248, 255, .97);
  --cloud-fill-2: rgba(219, 242, 255, .96);
  --cloud-ink: #07111f;
  position: absolute;
  right: 78px;
  bottom: 119px;
  z-index: 20;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .34rem;
  width: min(224px, calc(100vw - 78px));
  height: 152px;
  min-height: 0;
  aspect-ratio: auto;
  padding: 30px 30px 24px 25px;
  overflow: visible;
  color: var(--cloud-ink);
  text-align: center;
  background: linear-gradient(155deg, var(--cloud-fill), var(--cloud-fill-2));
  border: 1px solid rgba(49,230,255,.36);
  border-radius: 47% 53% 49% 51% / 53% 48% 52% 47%;
  box-shadow:
    0 12px 24px rgba(0,0,0,.24),
    0 0 7px rgba(246,255,72,.16),
    0 0 10px rgba(255,42,168,.16),
    0 0 13px rgba(49,230,255,.18);
  filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(12px, 14px) scale(.18);
  transform-origin: calc(100% - 29px) calc(100% + 13px);
  transition:
    opacity .48s ease,
    transform 1.08s cubic-bezier(.16,.78,.22,1),
    visibility 0s linear 1.08s;
}

/* Cloud lobes: breaks the body out of a balloon/ellipse silhouette. */
.deke-chuck-thought::before {
  content: "";
  position: absolute;
  left: 26px;
  top: -13px;
  z-index: -1;
  width: 74px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--cloud-fill);
  box-shadow:
    55px -11px 0 5px rgba(239,248,255,.97),
    108px 1px 0 0 rgba(226,244,255,.97);
  opacity: 1;
  filter: none;
  pointer-events: none;
  transform: none;
  animation: none;
}

/* Tail puffs terminate just above Chuck's viewer-left ear (his physical right ear). */
.deke-chuck-thought::after {
  content: "";
  position: absolute;
  right: 23px;
  bottom: -12px;
  z-index: -1;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(49,230,255,.25);
  border-radius: 50%;
  background: rgba(232,247,255,.97);
  box-shadow: 12px 15px 0 -5px rgba(232,247,255,.95);
  opacity: 1;
  filter: none;
  pointer-events: none;
  transform: none;
  animation: none;
}

.deke-chuck-thought.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, 0) scale(1);
  transition:
    opacity .48s ease,
    transform 1.08s cubic-bezier(.16,.78,.22,1),
    visibility 0s;
}

.deke-chuck-thought.is-materializing > .deke-chuck-thought__close,
.deke-chuck-thought.is-materializing > .deke-chuck-thought__text,
.deke-chuck-thought.is-materializing > .deke-chuck-thought__action,
.deke-chuck-thought.is-materializing > .deke-chuck-thought__choices {
  animation: deke-chuck-cloud-content 1.05s ease both;
}

@keyframes deke-chuck-cloud-content {
  0%, 32% { opacity: 0; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.deke-chuck-thought > * {
  position: relative;
  z-index: 2;
}

.deke-chuck-thought__close {
  position: absolute;
  top: 15px;
  right: 23px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid rgba(7,17,31,.2);
  border-radius: 50%;
  color: #07111f;
  background: rgba(255,255,255,.74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  font: 900 .92rem/1 system-ui, sans-serif;
  cursor: pointer;
}

.deke-chuck-thought__text,
.deke-chuck-thought.has-choices .deke-chuck-thought__text {
  width: 100%;
  max-width: 164px;
  margin: 0 auto;
  padding: 0;
  color: var(--cloud-ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: var(--heading-font, "Oxanium", system-ui, sans-serif);
  font-size: clamp(.74rem, 1.65vw, .84rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  text-align: center;
  white-space: pre-line;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  text-shadow: none;
}

.deke-chuck-thought__action,
.deke-chuck-thought__choice {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 72px;
  max-width: 102px;
  min-height: 28px;
  margin: 0 auto;
  padding: .34rem .68rem;
  border: 1px solid rgba(49,230,255,.42);
  border-radius: 10px;
  color: #f4f8ff;
  background: linear-gradient(180deg, #18304a 0%, #0b1728 55%, #07111f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 3px 0 rgba(1,7,15,.7),
    0 0 6px rgba(49,230,255,.14);
  font-family: var(--heading-font, "Oxanium", system-ui, sans-serif);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}

.deke-chuck-thought__action:hover,
.deke-chuck-thought__action:focus-visible,
.deke-chuck-thought__choice:hover,
.deke-chuck-thought__choice:focus-visible,
.deke-chuck-thought__choice.is-primary {
  color: #07111f;
  border-color: transparent;
  background: linear-gradient(110deg, #f6ff48 0%, #ff2aa8 48%, #31e6ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    0 2px 0 rgba(1,7,15,.45),
    0 0 5px rgba(246,255,72,.22),
    0 0 7px rgba(255,42,168,.22),
    0 0 8px rgba(49,230,255,.22);
  transform: translateY(-1px);
}

.deke-chuck-thought__choices {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .26rem;
  width: 96px;
  max-width: 96px;
  margin: 0 auto;
  padding: 0;
}

.deke-chuck-thought__choices[hidden] { display: none; }
.deke-chuck-thought__choice { width: 92px; min-width: 92px; max-width: 92px; }

.deke-chuck-thought__close:focus-visible,
.deke-chuck-thought__action:focus-visible,
.deke-chuck-thought__choice:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 575.98px) {
  .deke-chuck-thought {
    right: 66px;
    bottom: 101px;
    width: min(190px, calc(100vw - 62px));
    height: 132px;
    padding: 26px 25px 20px 21px;
    transform-origin: calc(100% - 25px) calc(100% + 11px);
  }

  .deke-chuck-thought::before {
    left: 22px;
    top: -11px;
    width: 62px;
    height: 48px;
    box-shadow:
      46px -9px 0 4px rgba(239,248,255,.97),
      90px 1px 0 -1px rgba(226,244,255,.97);
  }

  .deke-chuck-thought::after { right: 19px; bottom: -10px; }
  .deke-chuck-thought__close { top: 12px; right: 18px; width: 20px; height: 20px; }
  .deke-chuck-thought__text,
  .deke-chuck-thought.has-choices .deke-chuck-thought__text { max-width: 140px; font-size: clamp(.68rem, 3.2vw, .78rem); }
  .deke-chuck-thought__choices { width: 90px; max-width: 90px; }
  .deke-chuck-thought__choice { width: 86px; min-width: 86px; max-width: 86px; }
  .deke-chuck-thought__action { min-width: 68px; max-width: 94px; }
}

@media (max-width: 390px) {
  .deke-chuck-thought {
    right: 61px;
    bottom: 98px;
    width: min(178px, calc(100vw - 56px));
    height: 126px;
  }
  .deke-chuck-thought__text,
  .deke-chuck-thought.has-choices .deke-chuck-thought__text { max-width: 130px; }
}

@media (prefers-reduced-motion: reduce) {
  .deke-chuck-thought,
  .deke-chuck-thought.is-visible { transition: opacity .18s ease; transform: none; }
  .deke-chuck-thought.is-materializing > * { animation: none; }
}



/* ==========================================================================
   Infotainment header
   ========================================================================== */

/* Shared ShyneTyme.Works rotating spotlight banner. */
.shynetyme-infotainment,
.shynetyme-infotainment * { box-sizing: border-box; }

.shynetyme-infotainment {
  --infotainment-cyan: var(--cyan, #31e6ff);
  --infotainment-pink: var(--pink, #ff5ab9);
  --infotainment-yellow: var(--yellow, #ffe76a);
  --infotainment-duration: 10000ms;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 18rem;
  overflow: hidden;
  color: #f5fbff;
  background: #020817;
  border-bottom: 1px solid rgba(49, 230, 255, .24);
}

.shynetyme-infotainment:focus-visible {
  outline: 2px solid var(--infotainment-cyan);
  outline-offset: -2px;
}

.shynetyme-infotainment__fallback {
  width: min(100% - 1.25rem, 64rem);
  min-height: 18rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .45rem;
  padding: 1.25rem 1rem;
}

.shynetyme-infotainment__fallback h1 {
  margin: 0;
  color: #fff;
  font-family: var(--heading-font, "Oxanium", sans-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
}

.shynetyme-infotainment__eyebrow,
.shynetyme-infotainment .infotainment-kicker {
  margin: 0;
  color: var(--infotainment-cyan);
  font-family: var(--heading-font, "Oxanium", sans-serif);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.shynetyme-infotainment.is-ready > .shynetyme-infotainment__fallback { display: none; }

.shynetyme-infotainment .infotainment-stage {
  position: relative;
  height: clamp(18rem, 24vw, 20rem);
}

.shynetyme-infotainment .infotainment-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
  display: grid;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .42s ease, visibility 0s linear .42s;
}

.shynetyme-infotainment .infotainment-slide::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.shynetyme-infotainment .infotainment-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.shynetyme-infotainment .infotainment-slide__media,
.shynetyme-infotainment .infotainment-slide__wash,
.shynetyme-infotainment .infotainment-motion-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shynetyme-infotainment .infotainment-slide__media {
  z-index: 0;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.85) contrast(1.04) brightness(.60);
  transform: scale(1.015);
  animation: infotainment-media-drift 18s ease-in-out infinite alternate;
}

.shynetyme-infotainment .infotainment-slide__wash {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 7, 18, .68), rgba(2, 9, 24, .25) 58%, rgba(1, 7, 18, .48)),
    radial-gradient(circle at 76% 18%, rgba(49, 230, 255, .11), transparent 24rem);
}

.shynetyme-infotainment .infotainment-slide[data-slide-kind="rights"] .infotainment-slide__wash {
  background: linear-gradient(90deg, rgba(1,7,18,.66), rgba(28,21,6,.23) 58%, rgba(1,7,18,.46));
}

.shynetyme-infotainment .infotainment-slide[data-slide-kind="service"] .infotainment-slide__wash {
  background: linear-gradient(90deg, rgba(1,7,18,.72), rgba(21,8,20,.25) 60%, rgba(1,7,18,.52));
}

.shynetyme-infotainment .infotainment-motion-art {
  z-index: 2;
  inset: -8%;
  width: 116%;
  height: 116%;
  overflow: hidden;
  pointer-events: none;
  opacity: .42;
}

.shynetyme-infotainment .infotainment-motion-art svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--infotainment-cyan);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px currentColor);
  animation: infotainment-line-drift 9s ease-in-out infinite alternate;
}

.shynetyme-infotainment .infotainment-slide[data-slide-kind="rights"] .infotainment-motion-art svg {
  stroke: var(--infotainment-yellow);
}

.shynetyme-infotainment .infotainment-slide[data-slide-kind="service"] .infotainment-motion-art svg,
.shynetyme-infotainment .infotainment-slide[data-slide-kind="quote"] .infotainment-motion-art svg {
  stroke: var(--infotainment-pink);
}

.shynetyme-infotainment .motion-art__pulse {
  stroke-width: 3;
  stroke-dasharray: 14 10;
  animation: infotainment-dash 4.8s linear infinite;
}

.shynetyme-infotainment .infotainment-shell {
  position: relative;
  z-index: 3;
  width: min(100% - 1rem, 72rem);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding: .7rem .4rem;
}

@property --infotainment-progress-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.shynetyme-infotainment .infotainment-frame {
  --infotainment-progress-angle: 0deg;
  position: relative;
  width: min(46rem, 100%);
  padding: .14rem;
  border-radius: .95rem;
}

.shynetyme-infotainment .infotainment-slide[data-slide-kind="service"] .infotainment-frame {
  width: min(69rem, 100%);
}

.shynetyme-infotainment .infotainment-frame::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: -.18rem;
  padding: .12rem;
  border-radius: 1.05rem;
  pointer-events: none;
  background: conic-gradient(
    from -90deg,
    var(--infotainment-cyan) 0deg,
    var(--infotainment-pink) var(--infotainment-progress-angle),
    rgba(255,255,255,.12) var(--infotainment-progress-angle),
    rgba(255,255,255,.12) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 7px rgba(49,230,255,.34));
}

.shynetyme-infotainment.is-timing .infotainment-slide.is-active .infotainment-frame::before {
  animation: infotainment-border-progress var(--infotainment-duration) linear forwards;
}

.shynetyme-infotainment .infotainment-panel {
  width: 100%;
  padding: clamp(.8rem, 1.55vw, 1.15rem);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: .84rem;
  background: linear-gradient(145deg, rgba(3, 13, 31, .48), rgba(8, 9, 29, .34));
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.shynetyme-infotainment .infotainment-panel > * + * { margin-top: .48rem; }

.shynetyme-infotainment .infotainment-panel h2 {
  margin: 0;
  max-width: 34ch;
  color: #fff;
  font-family: var(--heading-font, "Oxanium", sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.13;
  text-wrap: balance;
}

.shynetyme-infotainment .infotainment-panel > p:not(.infotainment-kicker):not(.infotainment-live-line) {
  max-width: 58ch;
  margin-bottom: 0;
  color: #e1edf5;
  font-size: clamp(.9rem, 1vw, 1rem);
  line-height: 1.45;
}

.shynetyme-infotainment .infotainment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .62rem;
}

.shynetyme-infotainment .infotainment-icon-button {
  position: relative;
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  flex: 0 0 2.75rem;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 50%;
  background: rgba(2, 12, 29, .48);
  box-shadow: 0 5px 16px rgba(0,0,0,.18);
  text-decoration: none;
}

.shynetyme-infotainment .infotainment-icon-button:hover,
.shynetyme-infotainment .infotainment-icon-button:focus-visible {
  border-color: var(--infotainment-cyan);
  background: rgba(49,230,255,.16);
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(49,230,255,.18);
}


.shynetyme-infotainment .infotainment-icon-fallback {
  position: absolute;
  color: #fff;
  font-family: var(--heading-font, "Oxanium", sans-serif);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.shynetyme-infotainment .infotainment-icon-button img {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
  border-radius: .32rem;
  background: #fff;
}

.shynetyme-infotainment .infotainment-live-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .45rem;
  align-items: baseline;
  max-width: 62ch;
  margin: .5rem 0 0;
  color: #bdd0dc;
  font-size: .78rem;
  line-height: 1.35;
}

.shynetyme-infotainment .infotainment-live-line > span {
  color: var(--infotainment-cyan);
  font-family: var(--heading-font, "Oxanium", sans-serif);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.shynetyme-infotainment .infotainment-live-line a {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-weight: 650;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shynetyme-infotainment .infotainment-live-line a:hover,
.shynetyme-infotainment .infotainment-live-line a:focus-visible {
  color: var(--infotainment-cyan);
  text-decoration: underline;
}

.shynetyme-infotainment .infotainment-live-stack {
  display: grid;
  gap: .18rem;
  margin-top: .48rem;
}

.shynetyme-infotainment .infotainment-quote {
  margin: .4rem 0 0;
  color: #fff;
  font-family: var(--heading-font, "Oxanium", sans-serif);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
}

.shynetyme-infotainment .infotainment-quote p { margin: 0; }

.shynetyme-infotainment .infotainment-quote footer {
  margin-top: .45rem;
  color: var(--infotainment-cyan);
  font-family: var(--body-font, "Inter", sans-serif);
  font-size: .78rem;
  font-weight: 800;
}

.shynetyme-infotainment .infotainment-service-grid {
  display: grid;
  grid-template-columns: minmax(15rem, .78fr) minmax(0, 1.22fr);
  gap: .65rem;
  align-items: stretch;
}

.shynetyme-infotainment .infotainment-video {
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .8rem;
  background: #000;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
}

.shynetyme-infotainment .infotainment-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 14.4rem;
  border: 0;
}

.shynetyme-infotainment .infotainment-slide.is-entering .infotainment-frame {
  transform: translate3d(1.5rem, 0, 0);
  opacity: 0;
}

.shynetyme-infotainment .infotainment-slide .infotainment-frame {
  transform: none;
  opacity: 1;
  transition: transform .5s cubic-bezier(.2,.72,.24,1), opacity .5s ease;
}

@keyframes infotainment-border-progress {
  from { --infotainment-progress-angle: 0deg; }
  to { --infotainment-progress-angle: 360deg; }
}

@keyframes infotainment-media-drift {
  from { transform: scale(1.015) translate3d(-.4%, 0, 0); }
  to { transform: scale(1.055) translate3d(.8%, -.5%, 0); }
}

@keyframes infotainment-line-drift {
  from { transform: translate3d(-1%, 1%, 0) scale(.99); opacity: .65; }
  to { transform: translate3d(1.2%, -1%, 0) scale(1.03); opacity: 1; }
}

@keyframes infotainment-dash { to { stroke-dashoffset: -96; } }

@media (max-width: 900px) {
  .shynetyme-infotainment,
  .shynetyme-infotainment__fallback { min-height: 21rem; }
  .shynetyme-infotainment .infotainment-stage { height: 21rem; }
  .shynetyme-infotainment .infotainment-service-grid {
    grid-template-columns: minmax(11rem, .72fr) minmax(0, 1.28fr);
  }
  .shynetyme-infotainment .infotainment-video iframe { min-height: 16rem; }
}

@media (max-width: 680px) {
  .shynetyme-infotainment,
  .shynetyme-infotainment__fallback { min-height: 23rem; }
  .shynetyme-infotainment .infotainment-stage { height: 23rem; }
  .shynetyme-infotainment .infotainment-shell {
    width: calc(100% - .55rem);
    padding: .45rem 0;
    align-items: center;
  }
  .shynetyme-infotainment .infotainment-panel { padding: .75rem; }
  .shynetyme-infotainment .infotainment-panel h2 { font-size: clamp(1.15rem, 5.7vw, 1.45rem); }
  .shynetyme-infotainment .infotainment-panel > p:not(.infotainment-kicker):not(.infotainment-live-line) {
    font-size: .9rem;
    line-height: 1.4;
  }
  .shynetyme-infotainment .infotainment-service-grid {
    grid-template-columns: 1fr;
    gap: .4rem;
  }
  .shynetyme-infotainment .infotainment-video { display: none; }
  .shynetyme-infotainment .infotainment-live-line { font-size: .73rem; }
  .shynetyme-infotainment .infotainment-live-line a { white-space: normal; }
}

@media (max-width: 420px) {
  .shynetyme-infotainment,
  .shynetyme-infotainment__fallback { min-height: 24rem; }
  .shynetyme-infotainment .infotainment-stage { height: 24rem; }
  .shynetyme-infotainment .infotainment-actions { gap: .35rem; }
}

@media (prefers-reduced-motion: reduce) {
  .shynetyme-infotainment .infotainment-slide,
  .shynetyme-infotainment .infotainment-frame,
  .shynetyme-infotainment .infotainment-slide__media,
  .shynetyme-infotainment .infotainment-motion-art svg,
  .shynetyme-infotainment .motion-art__pulse {
    animation: none !important;
    transition: none !important;
  }
  .shynetyme-infotainment .infotainment-frame::before {
    --infotainment-progress-angle: 360deg;
  }
}


/* Compact floating infotainment cards + ghosted live-content layer. */
.shynetyme-infotainment .infotainment-shell {
  z-index: 4;
}

.shynetyme-infotainment .infotainment-frame {
  width: min(36rem, 84vw);
}

.shynetyme-infotainment .infotainment-slide[data-slide-kind="humanitarian"] .infotainment-shell {
  justify-content: flex-start;
}

.shynetyme-infotainment .infotainment-slide[data-slide-kind="rights"] .infotainment-shell {
  justify-content: flex-end;
}

.shynetyme-infotainment .infotainment-slide[data-slide-kind="service"] .infotainment-shell,
.shynetyme-infotainment .infotainment-slide[data-slide-kind="quote"] .infotainment-shell {
  justify-content: center;
}

.shynetyme-infotainment .infotainment-slide[data-slide-kind="service"] .infotainment-frame {
  width: min(42rem, 88vw);
}

.shynetyme-infotainment .infotainment-panel {
  width: auto;
  max-width: 100%;
}

.shynetyme-infotainment .infotainment-panel--service {
  max-width: 42rem;
}

.shynetyme-infotainment .infotainment-ghost-layer {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shynetyme-infotainment .infotainment-ghost-card {
  position: absolute;
  width: min(24rem, 32vw);
  min-height: 4.4rem;
  padding: .62rem .72rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .8rem;
  color: rgba(235,247,255,.72);
  background: rgba(2, 10, 27, .12);
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  opacity: .12;
  filter: blur(.5px);
  transform: translate3d(0,0,0) scale(.97);
  transition: opacity .8s ease, filter .8s ease, transform .8s ease, background .8s ease, border-color .8s ease;
  animation: infotainment-ghost-float 9s ease-in-out infinite alternate;
}

.shynetyme-infotainment .infotainment-ghost-card:nth-child(1) { top: 12%; right: 4%; }
.shynetyme-infotainment .infotainment-ghost-card:nth-child(2) { left: 8%; bottom: 10%; animation-delay: -3s; }
.shynetyme-infotainment .infotainment-ghost-card:nth-child(3) { right: 16%; bottom: 18%; animation-delay: -6s; }

.shynetyme-infotainment .infotainment-ghost-card span {
  display: block;
  margin-bottom: .2rem;
  color: var(--infotainment-cyan);
  font-family: var(--heading-font, "Oxanium", sans-serif);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shynetyme-infotainment .infotainment-ghost-card strong {
  display: block;
  font-size: clamp(.72rem, .9vw, .86rem);
  font-weight: 650;
  line-height: 1.3;
}

.shynetyme-infotainment .infotainment-ghost-card.is-readable {
  z-index: 2;
  opacity: .72;
  filter: blur(0);
  transform: translate3d(0,-.2rem,0) scale(1);
  border-color: rgba(49,230,255,.22);
  background: rgba(2, 10, 27, .28);
  box-shadow: 0 12px 34px rgba(0,0,0,.18), 0 0 20px rgba(49,230,255,.05);
}

@keyframes infotainment-ghost-float {
  from { transform: translate3d(-1.2rem,.4rem,0) scale(.97); }
  to { transform: translate3d(1.2rem,-.5rem,0) scale(1); }
}

@media (max-width: 680px) {
  .shynetyme-infotainment .infotainment-frame,
  .shynetyme-infotainment .infotainment-slide[data-slide-kind="service"] .infotainment-frame {
    width: min(32rem, calc(100vw - 1.35rem));
  }

  .shynetyme-infotainment .infotainment-ghost-card {
    width: min(19rem, 78vw);
    opacity: .08;
  }

  .shynetyme-infotainment .infotainment-ghost-card:nth-child(1) { top: 3%; right: -3rem; }
  .shynetyme-infotainment .infotainment-ghost-card:nth-child(2) { left: -4rem; bottom: 2%; }
  .shynetyme-infotainment .infotainment-ghost-card:nth-child(3) { display: none; }

  .shynetyme-infotainment .infotainment-ghost-card.is-readable { opacity: .28; }
}

@media (prefers-reduced-motion: reduce) {
  .shynetyme-infotainment .infotainment-ghost-card {
    animation: none !important;
    transition: none !important;
  }
}


/* First-approved split-banner structure; content engine remains dynamic. */
.shynetyme-infotainment .infotainment-shell {
  z-index: 5;
  width: min(100% - 1rem, 72rem);
  justify-content: center !important;
}

.shynetyme-infotainment .infotainment-frame,
.shynetyme-infotainment .infotainment-slide[data-slide-kind="service"] .infotainment-frame {
  width: min(69rem, 100%);
}

.shynetyme-infotainment .infotainment-split {
  display: grid;
  grid-template-columns: minmax(17rem, .78fr) minmax(0, 1.22fr);
  gap: .55rem;
  align-items: stretch;
}

.shynetyme-infotainment .infotainment-feature-media {
  position: relative;
  min-height: 14.6rem;
  overflow: hidden;
  border: 1px solid rgba(49,230,255,.45);
  border-radius: .82rem;
  background: #050b16;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  text-decoration: none;
}

.shynetyme-infotainment .infotainment-feature-scene,
.shynetyme-infotainment .infotainment-feature-person {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(1.04) brightness(.74);
}

.shynetyme-infotainment .infotainment-feature-person { object-position: center 24%; }

.shynetyme-infotainment .infotainment-feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,7,18,.06), rgba(2,7,18,.72));
}

.shynetyme-infotainment .infotainment-feature-mark {
  position: absolute;
  z-index: 2;
  left: .8rem;
  right: .8rem;
  bottom: .72rem;
  display: flex;
  align-items: center;
  gap: .62rem;
  color: #fff;
  font-family: var(--heading-font, "Oxanium", sans-serif);
  font-size: clamp(.88rem,1.2vw,1.05rem);
  line-height: 1.15;
  text-shadow: 0 2px 10px #000;
}

.shynetyme-infotainment .infotainment-feature-mark img {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  object-fit: contain;
  padding: .24rem;
  border-radius: .58rem;
  background: rgba(255,255,255,.94);
}

.shynetyme-infotainment .infotainment-feature-source {
  position: absolute;
  z-index: 2;
  left: .72rem;
  bottom: .68rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .34rem .48rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: .55rem;
  color: #fff;
  background: rgba(2,9,24,.58);
  backdrop-filter: blur(4px);
  font: 800 .68rem/1 var(--heading-font, "Oxanium", sans-serif);
  letter-spacing: .08em;
}

.shynetyme-infotainment .infotainment-feature-source img {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
  border-radius: .25rem;
  background: #fff;
}

.shynetyme-infotainment .infotainment-split > .infotainment-panel {
  min-width: 0;
  height: 100%;
  background: linear-gradient(145deg, rgba(3,13,31,.46), rgba(8,9,29,.32));
}

.shynetyme-infotainment .infotainment-ghost-layer { z-index: 7; }

.shynetyme-infotainment .infotainment-ghost-card {
  width: min(23rem, 30vw);
  min-height: 4rem;
  opacity: .07;
  color: rgba(244,250,255,.78);
  background: rgba(2,10,27,.08);
}

.shynetyme-infotainment .infotainment-ghost-card p {
  margin: .28rem 0 0;
  color: rgba(221,237,247,.76);
  font-size: .69rem;
  line-height: 1.3;
}

.shynetyme-infotainment .infotainment-ghost-card.is-readable {
  z-index: 8;
  opacity: 1 !important;
  filter: blur(0) !important;
  color: #f5fbff;
  border-color: rgba(49,230,255,.52);
  background: rgba(2,10,27,.72);
  box-shadow: 0 12px 34px rgba(0,0,0,.26), 0 0 24px rgba(49,230,255,.09);
}

.shynetyme-infotainment .infotainment-ghost-card:nth-child(1) { top: auto; left: auto; right: 2.5%; bottom: 5%; }
.shynetyme-infotainment .infotainment-ghost-card:nth-child(2) { top: 6%; left: 2.5%; right: auto; bottom: auto; }
.shynetyme-infotainment .infotainment-ghost-card:nth-child(3) { top: auto; left: 38%; right: auto; bottom: 4%; }

@media (max-width: 760px) {
  .shynetyme-infotainment .infotainment-split { grid-template-columns: minmax(9.5rem,.7fr) minmax(0,1.3fr); }
  .shynetyme-infotainment .infotainment-feature-media { min-height: 18rem; }
  .shynetyme-infotainment .infotainment-feature-mark strong { display: none; }
  .shynetyme-infotainment .infotainment-feature-mark img { width: 2.5rem; height: 2.5rem; flex-basis: 2.5rem; }
  .shynetyme-infotainment .infotainment-ghost-card { width: min(18rem, 72vw); }
  .shynetyme-infotainment .infotainment-ghost-card.is-readable { opacity: .72; }
}

@media (max-width: 520px) {
  .shynetyme-infotainment .infotainment-split { grid-template-columns: 1fr; }
  .shynetyme-infotainment .infotainment-feature-media { min-height: 7.2rem; }
  .shynetyme-infotainment .infotainment-feature-person { object-position: center 28%; }
  .shynetyme-infotainment .infotainment-ghost-card.is-readable { opacity: .42; }
}

.shynetyme-infotainment .infotainment-ghost-card.is-readable span { color: var(--infotainment-cyan); }
.shynetyme-infotainment .infotainment-ghost-card.is-readable strong { color: #fff; }
.shynetyme-infotainment .infotainment-ghost-card.is-readable p { color: #dcebf5; }

@media (max-width: 520px) {
  .shynetyme-infotainment .infotainment-ghost-card,
  .shynetyme-infotainment .infotainment-ghost-card:nth-child(1),
  .shynetyme-infotainment .infotainment-ghost-card:nth-child(2),
  .shynetyme-infotainment .infotainment-ghost-card:nth-child(3) {
    top: .55rem;
    left: 10%;
    right: auto;
    bottom: auto;
    width: 80%;
    max-height: 6.2rem;
    overflow: hidden;
    animation: none;
  }
  .shynetyme-infotainment .infotainment-ghost-card:not(.is-readable) { opacity: .03; }
  .shynetyme-infotainment .infotainment-ghost-card.is-readable { opacity: .46 !important; }
}
