:root {
  --brand-citron: #e6e77e;
  --wetlp-menu-paper: #f5f3ee;
  --wetlp-menu-image: url("/assets/hero-hoop-iMoH_o9g.png");
  --wetlp-availability-height: 42px;
}

/* Shared Citron accents kept deliberately small: mark, orientation signals,
   interaction arrows and form focus. The underlying WETLP layout is intact. */
.nav__mark {
  background: var(--brand-citron);
  color: var(--ink, #2a2a2a);
  transform-origin: center;
  transition: transform 420ms cubic-bezier(.19, 1, .22, 1);
}

.nav__brand:hover .nav__mark,
.nav__brand:focus-visible .nav__mark {
  transform: rotate(90deg);
}

.nav__brand:focus-visible {
  outline: 2px solid var(--brand-citron);
  outline-offset: 4px;
}

.hero__eyebrow-sep,
.hero__line-aster,
.contact__h .aster {
  color: var(--brand-citron);
}

.heromedia__card-icon,
.agent-conversation__composer-send {
  border-color: var(--brand-citron);
  background: var(--brand-citron);
  color: var(--ink, #2a2a2a);
}

.blog-card__cta-arrow,
.solution__arrow {
  border-color: var(--brand-citron);
  background: var(--brand-citron);
  color: var(--bg-dark, #0f0f0f);
}

.blog-card--cta:hover .blog-card__cta-arrow,
.solution__row:hover .solution__arrow {
  background: var(--brand-citron);
  color: var(--bg-dark, #0f0f0f);
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--brand-citron);
}

.faq__q:hover .faq__q-icon,
.faq__q:focus-visible .faq__q-icon,
.faq__item.is-open .faq__q-icon {
  border-color: var(--brand-citron);
  background: var(--brand-citron);
  color: var(--ink, #2a2a2a);
}

/* The page opens with one editorial availability signal. It scrolls away
   naturally; the full navigation below it is deliberately not sticky. */
.wetlp-availability {
  position: relative;
  z-index: 109;
  width: 100%;
  height: var(--wetlp-availability-height);
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: #1c1c1d;
  color: #f5f3ee;
  font-family: var(--font-body, sans-serif);
  font-size: 11px;
  font-weight: 550;
  line-height: 1;
  letter-spacing: 0.045em;
}

.wetlp-availability__status {
  position: relative;
  z-index: 2;
  min-width: 238px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  background: #1c1c1d;
  border-right: 1px solid rgba(245, 243, 238, 0.09);
  text-transform: uppercase;
  perspective: 140px;
}

.wetlp-availability__status-icon,
.wetlp-availability__icon {
  width: 16px;
  height: 16px;
  flex: none;
  display: inline-grid;
  place-items: center;
  color: var(--brand-citron, #e6e77e);
}

.wetlp-availability__status-icon {
  width: 15px;
  height: 15px;
  transform-origin: center;
  transform-style: preserve-3d;
  animation: wetlp-status-icon-arrival 10s cubic-bezier(.19, 1, .22, 1) infinite;
}

.wetlp-availability__status-icon svg,
.wetlp-availability__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.wetlp-availability__viewport {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.wetlp-availability__track {
  width: max-content;
  height: 100%;
  display: flex;
  will-change: transform;
  animation: wetlp-availability-loop 27s linear infinite;
}

.wetlp-availability__group {
  height: 100%;
  flex: none;
  display: flex;
  align-items: center;
}

.wetlp-availability__item {
  padding: 0 clamp(19px, 1.7vw, 31px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(245, 243, 238, 0.66);
  white-space: nowrap;
}

@keyframes wetlp-availability-loop {
  to {
    transform: translate3d(
      calc(-1 * var(--wetlp-availability-loop-distance, 0px)),
      0,
      0
    );
  }
}

@keyframes wetlp-status-icon-arrival {
  0% {
    opacity: 0;
    filter: blur(3px);
    transform: translateZ(-90px) scale(.42) rotate(-12deg);
  }
  6% {
    opacity: 1;
    filter: blur(0);
    transform: translateZ(12px) scale(1.12) rotate(2deg);
  }
  10%,
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateZ(0) scale(1) rotate(0);
  }
}

/* The availability rail belongs exclusively to the page-entry state. Keep
   its document space stable while the compact header is active, but remove
   the rail itself (and its ongoing work) from the visible scroll state. */
body.wetlp-header-compact .wetlp-availability {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

body.wetlp-header-compact .wetlp-availability__track {
  animation-play-state: paused;
}

/* At the top the original header belongs to the document. Once it has
   genuinely left the viewport, only its menu control returns as a Citron
   bubble; no second navigation system is introduced. */
body.wetlp-floating-header-ready .nav {
  position: absolute !important;
  inset: 0 0 auto !important;
  overflow: visible;
  transition:
    padding 300ms cubic-bezier(.19, 1, .22, 1),
    background-color 240ms ease,
    box-shadow 240ms ease,
    -webkit-backdrop-filter 240ms ease,
    backdrop-filter 240ms ease;
}

body.wetlp-floating-header-ready .nav__brand {
  transition: opacity 180ms ease, transform 300ms cubic-bezier(.19, 1, .22, 1);
}

body.wetlp-floating-header-ready .nav__toggle {
  border: 1px solid transparent;
  border-radius: var(--r-pill, 999px);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 260ms ease,
    transform 300ms cubic-bezier(.19, 1, .22, 1);
}

body.wetlp-header-compact .nav {
  position: fixed !important;
  top: 0 !important;
  right: max(
    var(--gutter, 20px),
    calc((100vw - var(--container, 1280px)) / 2 + var(--gutter, 20px))
  ) !important;
  left: auto !important;
  width: 0;
  height: 0;
  padding: 0 !important;
  pointer-events: none;
  transition: none !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.wetlp-header-compact .nav__inner {
  position: absolute;
  top: 14px;
  right: 0;
  width: max-content;
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

body.wetlp-header-compact .nav__brand {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
}

body.wetlp-header-compact .nav__toggle {
  min-height: 50px;
  padding: 9px 13px 9px 18px;
  pointer-events: auto;
  background: var(--brand-citron, #e6e77e);
  border-color: rgba(15, 15, 15, 0.1);
  color: #161616;
  box-shadow: 0 12px 34px rgba(15, 15, 15, 0.18);
  animation: wetlp-floating-menu-in 440ms cubic-bezier(.19, 1, .22, 1) both;
}

body.wetlp-header-compact .nav__toggle:hover,
body.wetlp-header-compact .nav__toggle:focus-visible {
  color: #161616;
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.24);
  transform: translateY(-2px);
}

body.wetlp-header-compact .nav__burger > span {
  background: currentColor;
}

@keyframes wetlp-floating-menu-in {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 700px) {
  :root { --wetlp-availability-height: 38px; }

  .wetlp-availability {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .wetlp-availability__status {
    min-width: 177px;
    padding: 0 14px;
    gap: 8px;
  }

  .wetlp-availability__status-icon {
    width: 13px;
    height: 13px;
  }

  .wetlp-availability__item {
    padding-inline: 18px;
    gap: 8px;
  }

  .wetlp-availability__icon {
    width: 14px;
    height: 14px;
  }

  body.wetlp-header-compact .nav {
    padding: 0 !important;
  }

  body.wetlp-header-compact .nav__inner {
    top: 10px;
  }

  body.wetlp-header-compact .nav__toggle {
    min-height: 46px;
    padding: 8px 11px 8px 15px;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wetlp-availability__status-icon,
  .wetlp-availability__track {
    animation: none !important;
    transform: none !important;
  }

  .wetlp-availability__group[aria-hidden="true"] {
    display: none;
  }

  body.wetlp-floating-header-ready .nav,
  body.wetlp-floating-header-ready .nav__brand,
  body.wetlp-floating-header-ready .nav__toggle,
  body.wetlp-header-compact .nav__toggle {
    animation: none !important;
    transition: none !important;
  }
}

/* Wide Field-style precision cursor. It is enabled only after the companion
   script is running and only for devices with a fine pointer. */
@media (pointer: fine) {
  body.wetlp-cursor-ready,
  body.wetlp-cursor-ready a,
  body.wetlp-cursor-ready button,
  body.wetlp-cursor-ready [role="button"] {
    cursor: none !important;
  }

  #wetlp-frame-cursor {
    position: fixed;
    top: -19px;
    left: -19px;
    z-index: 6000;
    width: 38px;
    height: 38px;
    pointer-events: none;
    color: #fff;
    mix-blend-mode: difference;
    opacity: 0;
    transform: translate3d(var(--wetlp-pointer-x, -100px), var(--wetlp-pointer-y, -100px), 0);
    transition:
      opacity 160ms ease,
      width 180ms ease,
      height 180ms ease,
      top 180ms ease,
      left 180ms ease;
  }

  #wetlp-frame-cursor.is-visible {
    opacity: 1;
  }

  #wetlp-frame-cursor::before,
  #wetlp-frame-cursor::after,
  #wetlp-frame-cursor > i::before,
  #wetlp-frame-cursor > i::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: currentColor;
  }

  #wetlp-frame-cursor::before {
    top: 0;
    left: 0;
    border-top: 1px solid;
    border-left: 1px solid;
  }

  #wetlp-frame-cursor::after {
    top: 0;
    right: 0;
    border-top: 1px solid;
    border-right: 1px solid;
  }

  #wetlp-frame-cursor > i::before {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid;
    border-left: 1px solid;
  }

  #wetlp-frame-cursor > i::after {
    right: 0;
    bottom: 0;
    border-right: 1px solid;
    border-bottom: 1px solid;
  }

  #wetlp-frame-cursor[data-label]:not([data-label=""]) {
    top: -34px;
    left: -34px;
    width: 68px;
    height: 68px;
  }

  #wetlp-frame-cursor > span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--font-body, sans-serif);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}

/* Morrowfield-inspired navigation drawer: the page stays visible behind a
   softened scrim while one image and one calm navigation plane slide in. */
.nav__scrim {
  z-index: 5000 !important;
  inset: 0 !important;
  width: 100vw;
  height: 100svh;
  background: rgba(12, 12, 12, 0.48) !important;
  -webkit-backdrop-filter: blur(7px) saturate(72%);
  backdrop-filter: blur(7px) saturate(72%);
}

.nav__panel {
  --wetlp-menu-media-width: 56%;
  z-index: 5001 !important;
  top: 0 !important;
  right: 0 !important;
  width: min(80vw, 1600px) !important;
  max-width: none !important;
  height: 100svh !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 0 0 28px;
  background: var(--wetlp-menu-paper) !important;
  box-shadow: -28px 0 80px rgba(5, 5, 5, 0.14) !important;
  isolation: isolate;
  overflow: hidden !important;
}

.nav__panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 0;
  width: var(--wetlp-menu-media-width);
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.02), rgba(15, 15, 15, 0.1)),
    var(--wetlp-menu-image) 58% center / cover no-repeat;
  transform-origin: center;
  animation: wetlp-menu-image-in 820ms cubic-bezier(.19, 1, .22, 1) 70ms both;
}

.nav__panel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--wetlp-menu-media-width);
  width: 1px;
  background: rgba(15, 15, 15, 0.1);
  pointer-events: none;
}

.nav__panel-grain {
  z-index: 1 !important;
  opacity: 0.16 !important;
}

.nav__panel-head {
  position: absolute !important;
  z-index: 4 !important;
  top: 18px;
  right: 28px;
  left: calc(var(--wetlp-menu-media-width) + 28px);
  min-height: 44px;
  padding: 0 !important;
}

.nav__panel-eyebrow {
  display: none !important;
}

.nav__panel-actions {
  position: absolute !important;
  top: 0;
  right: 0;
}

.nav__panel-close {
  width: auto;
  height: 44px;
  justify-content: flex-end !important;
  gap: 12px !important;
  padding: 0;
  font-family: var(--font-body, sans-serif);
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav__panel-close > span:first-child {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: nowrap;
}

.nav__panel-close .nav__burger {
  width: 18px;
  height: 18px;
}

.nav__panel-close .nav__burger > span {
  top: 8px !important;
  height: 1px;
}

.wetlp-menu-mark {
  position: absolute !important;
  z-index: 4 !important;
  top: 25px;
  left: calc(var(--wetlp-menu-media-width) + 34px);
  width: 44px;
  aspect-ratio: 1;
  animation: wetlp-menu-mark-in 620ms cubic-bezier(.19, 1, .22, 1) 160ms both;
}

.wetlp-menu-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nav__list {
  position: absolute !important;
  z-index: 4 !important;
  top: clamp(144px, 20svh, 214px);
  right: 38px;
  bottom: auto;
  left: calc(var(--wetlp-menu-media-width) + 38px);
  gap: 2px !important;
  margin: 0 !important;
}

.nav__row {
  border-radius: 0 !important;
  animation: wetlp-menu-row-in 620ms cubic-bezier(.19, 1, .22, 1) both;
}

.nav__row:nth-child(1) { animation-delay: 190ms; }
.nav__row:nth-child(2) { animation-delay: 245ms; }
.nav__row:nth-child(3) { animation-delay: 300ms; }
.nav__row:nth-child(4) { animation-delay: 355ms; }
.nav__row:nth-child(5) { animation-delay: 410ms; }

.nav__link {
  position: relative;
  min-height: clamp(54px, 6.6svh, 68px);
  padding: 8px 0 !important;
  color: #161616 !important;
  font-size: clamp(30px, 2.45vw, 44px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  opacity: 1 !important;
  transition: transform 260ms cubic-bezier(.19, 1, .22, 1), color 220ms ease !important;
}

.nav__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-citron, #e6e77e);
  opacity: 0;
  transform: translate(-8px, -50%);
  transition: opacity 180ms ease, transform 260ms cubic-bezier(.19, 1, .22, 1);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: #0f0f0f !important;
  transform: translateX(10px);
}

.nav__link:hover::before,
.nav__link:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.nav__link-aster {
  display: none !important;
}

.nav__panel-foot {
  position: absolute !important;
  z-index: 4 !important;
  right: 38px;
  bottom: 26px;
  left: calc(var(--wetlp-menu-media-width) + 38px);
  display: block !important;
  margin: 0 !important;
}

.nav__panel-divider,
.nav__panel-note-avatars,
.nav__panel-note-text {
  display: none !important;
}

.nav__panel-note {
  display: block !important;
  padding: 0 !important;
}

.nav__panel-note-sig {
  padding: 4px 2px 8px !important;
  font-size: clamp(48px, 5vw, 76px) !important;
  line-height: 0.9 !important;
  transform: rotate(-6deg) !important;
}

@keyframes wetlp-menu-image-in {
  from {
    opacity: 0;
    transform: scale(1.055);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes wetlp-menu-row-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wetlp-menu-mark-in {
  from {
    opacity: 0;
    transform: translateY(10px) rotate(-16deg) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@media (max-width: 700px) {
  .nav__panel {
    --wetlp-menu-media-width: 100%;
    width: 100vw !important;
    height: 100svh !important;
    min-height: 0;
    border-radius: 0;
  }

  .nav__panel::before {
    inset: 0 0 auto;
    width: 100%;
    height: 36%;
    background-position: 58% 47%;
  }

  .nav__panel::after {
    top: 36%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .nav__panel-head {
    top: calc(36% + 8px);
    right: 16px;
    left: 16px;
  }

  .wetlp-menu-mark {
    top: calc(36% + 14px);
    left: 18px;
    width: 38px;
  }

  .nav__list {
    top: calc(36% + 72px);
    right: 18px;
    left: 18px;
    gap: 0 !important;
  }

  .nav__link {
    min-height: 47px;
    padding: 7px 0 !important;
    font-size: 29px !important;
  }

  .nav__link::before {
    left: -12px;
  }

  .nav__panel-foot {
    right: 18px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 18px;
  }

  .nav__panel-note-sig {
    font-size: 52px !important;
  }
}

@media (max-width: 420px) and (max-height: 620px) {
  .nav__panel::before { height: 31%; }
  .nav__panel::after { top: 31%; }
  .nav__panel-head { top: calc(31% + 6px); }
  .wetlp-menu-mark { top: calc(31% + 12px); }
  .nav__list { top: calc(31% + 60px); }

  .nav__link {
    min-height: 40px;
    font-size: 24px !important;
  }

  .nav__panel-note-sig {
    font-size: 44px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #wetlp-frame-cursor,
  .nav__panel::before,
  .wetlp-menu-mark,
  .nav__row,
  .nav__link,
  .nav__link::before {
    animation: none !important;
    transition: none !important;
  }
}

/* Shared Citron language across every production-preview subpage. */
.eyebrow .pin {
  background: var(--brand-citron, #e6e77e) !important;
}

.eyebrow--ondark .pin::after {
  background: var(--bg-dark, #0f0f0f) !important;
}

.spoke__eyebrow,
.blog-detail__meta,
.blog-detail__note-label {
  align-items: center;
  gap: 9px;
  display: inline-flex;
}

.spoke__eyebrow::before,
.blog-detail__meta::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-citron, #e6e77e);
}

.blog-detail__note-label::before {
  content: "";
  width: 18px;
  height: 2px;
  flex: none;
  background: var(--brand-citron, #e6e77e);
}

.learn-row__arrow,
.blog-row__arrow {
  border-color: var(--brand-citron, #e6e77e) !important;
  border-radius: 50% !important;
  background: var(--brand-citron, #e6e77e) !important;
  color: var(--ink, #2a2a2a) !important;
}

.learn-row:hover .learn-row__arrow,
.blog-row:hover .blog-row__arrow {
  background: var(--brand-citron, #e6e77e) !important;
  color: var(--ink, #2a2a2a) !important;
}

/* Generic subpage CTAs keep the split-button anatomy while returning to the
   soft pill silhouette used by the original WETLP button system. */
.cta.kinetic-cta {
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: var(--r-pill, 999px);
  background: var(--ink, #2a2a2a);
  color: var(--bg, #fff);
  overflow: hidden;
}

.cta.kinetic-cta:hover,
.cta.kinetic-cta:focus-visible {
  background: var(--ink, #2a2a2a);
  color: var(--bg, #fff);
}

/* Keep the split-button proportions, but make the complete CTA system a
   little leaner than the production baseline. */
.kinetic-cta {
  min-height: 58px;
  border-radius: var(--r-pill, 999px);
  grid-template-columns: minmax(0, auto) 58px;
  overflow: hidden;
}

.kinetic-cta__arrow {
  width: 58px;
  min-height: 58px;
}

.kinetic-cta--compact {
  min-height: 44px;
  grid-template-columns: minmax(0, auto) 44px;
}

.kinetic-cta--compact .kinetic-cta__arrow {
  width: 44px;
  min-height: 44px;
}

/* The CTA inside the lower hero image card still inherits padding and a gap
   from its legacy component styles. Reset those here so it uses the same
   seamless rounded split-button treatment as the other kinetic CTAs. */
.heromedia__card-cta.kinetic-cta {
  display: inline-grid;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: var(--r-pill, 999px);
  background: var(--ink, #2a2a2a);
  color: var(--bg, #fff);
  overflow: hidden;
}

.heromedia__card-cta.kinetic-cta:hover,
.heromedia__card-cta.kinetic-cta:focus-visible {
  background: var(--ink, #2a2a2a);
  color: var(--bg, #fff);
}

.cta.kinetic-cta.kinetic-cta--citron,
.cta.kinetic-cta.kinetic-cta--citron:hover,
.cta.kinetic-cta.kinetic-cta--citron:focus-visible {
  background: var(--brand-citron, #e6e77e);
  color: var(--ink, #2a2a2a);
}

.cta.kinetic-cta.wetlp-kinetic-ghost {
  border: 1px solid var(--line-strong, rgba(15, 15, 15, 0.16));
  background: transparent;
  color: var(--ink, #2a2a2a);
}

.cta.kinetic-cta.wetlp-kinetic-ghost:hover,
.cta.kinetic-cta.wetlp-kinetic-ghost:focus-visible {
  border-color: var(--ink, #2a2a2a);
  background: transparent;
  color: var(--ink, #2a2a2a);
}

.section-dark .cta.kinetic-cta.wetlp-kinetic-ghost,
.learn-proof .cta.kinetic-cta.wetlp-kinetic-ghost,
.learn-next .cta.kinetic-cta.wetlp-kinetic-ghost,
.portal-lock .cta.kinetic-cta.wetlp-kinetic-ghost {
  border-color: var(--line-on-dark, rgba(245, 243, 238, 0.1));
  color: var(--on-dark, #f5f3ee);
}

.section-dark .cta.kinetic-cta.wetlp-kinetic-ghost:hover,
.section-dark .cta.kinetic-cta.wetlp-kinetic-ghost:focus-visible,
.learn-proof .cta.kinetic-cta.wetlp-kinetic-ghost:hover,
.learn-proof .cta.kinetic-cta.wetlp-kinetic-ghost:focus-visible,
.learn-next .cta.kinetic-cta.wetlp-kinetic-ghost:hover,
.learn-next .cta.kinetic-cta.wetlp-kinetic-ghost:focus-visible,
.portal-lock .cta.kinetic-cta.wetlp-kinetic-ghost:hover,
.portal-lock .cta.kinetic-cta.wetlp-kinetic-ghost:focus-visible {
  border-color: var(--on-dark, #f5f3ee);
  color: var(--on-dark, #f5f3ee);
}

/* One glyph rolls only while that glyph itself is under the pointer. */
.kinetic-cta__char-track {
  transition-delay: 0ms !important;
}

.kinetic-cta:hover .kinetic-cta__char-track,
.kinetic-cta:focus-visible .kinetic-cta__char-track {
  transform: translateY(0) !important;
}

@media (pointer: fine) {
  .kinetic-cta .kinetic-cta__char:hover .kinetic-cta__char-track {
    transform: translateY(-33.333%) !important;
  }
}

@media (max-width: 560px) {
  .kinetic-cta {
    min-height: 50px;
    grid-template-columns: minmax(0, auto) 50px;
  }

  .kinetic-cta__arrow {
    width: 50px;
    min-height: 50px;
  }

  .kinetic-cta--compact {
    min-height: 44px;
    grid-template-columns: minmax(0, auto) 44px;
  }

  .kinetic-cta--compact .kinetic-cta__arrow {
    width: 44px;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-cta .kinetic-cta__char:hover .kinetic-cta__char-track,
  .learn-row__arrow,
  .blog-row__arrow {
    transform: none !important;
    transition: none !important;
  }
}

/* "Gefunden, wo gesucht wird" becomes a Shoremedia-inspired horizontal
   image rail, translated into WETLP's dark, rounded and Citron-led language. */
.spoke__showcase {
  --wetlp-rail-gutter: max(24px, calc((100vw - min(1180px, calc(100vw - 48px))) / 2));
  background: #171717;
  color: var(--on-dark, #f5f3ee);
  overflow: hidden;
}

.spoke__showcase-head {
  max-width: 900px;
}

.spoke__showcase .eyebrow,
.spoke__showcase-h {
  color: var(--on-dark, #f5f3ee);
}

.spoke__showcase .eyebrow .pin {
  box-shadow: 0 0 0 5px rgba(230, 231, 126, 0.08);
}

.spoke__showcase-grid.wetlp-discovery-rail {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0 var(--wetlp-rail-gutter) 22px;
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--wetlp-rail-gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.spoke__showcase-grid.wetlp-discovery-rail::-webkit-scrollbar {
  display: none;
}

.wetlp-discovery-card.spoke__case {
  width: min(72vw, 980px);
  min-width: min(72vw, 980px);
  height: clamp(520px, 53vw, 650px);
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: var(--r-lg, 24px);
  background: var(--brand-citron, #e6e77e);
  color: #151515;
  display: grid;
  grid-template-rows: 48px minmax(340px, 1fr) auto;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  isolation: isolate;
  overflow: hidden;
  transition: opacity 300ms ease, transform 500ms cubic-bezier(.19, 1, .22, 1);
}

.wetlp-discovery-card:not(.is-active) {
  opacity: 0.56;
}

.wetlp-discovery-card__head {
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wetlp-discovery-card .spoke__case-visual {
  height: auto;
  min-height: 0;
  margin: 0 12px;
  padding: 0;
  border-radius: var(--r-md, 16px);
  background: #0d0d0d;
  display: block;
  position: relative;
  overflow: hidden;
}

.wetlp-discovery-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  opacity: 0.82;
  transform: scale(1.035);
  transition: opacity 480ms ease, transform 900ms cubic-bezier(.19, 1, .22, 1);
}

.wetlp-discovery-card.is-active .wetlp-discovery-card__image {
  opacity: 1;
  transform: scale(1);
}

.wetlp-discovery-card--search .wetlp-discovery-card__image {
  object-position: 50% 50%;
}

.wetlp-discovery-card--ai .wetlp-discovery-card__image,
.wetlp-discovery-card--analytics .wetlp-discovery-card__image {
  object-position: center 48%;
}

.wetlp-discovery-card--agent .spoke__case-visual {
  background:
    radial-gradient(circle at 68% 52%, rgba(230, 231, 126, 0.23), transparent 34%),
    #111;
}

.wetlp-discovery-card--agent .wetlp-discovery-card__image {
  inset: 0 0 0 auto;
  width: 58%;
  margin-left: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(1) contrast(1.08);
}

.wetlp-discovery-card .spoke__case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 25%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.wetlp-discovery-card__image-meta {
  position: absolute;
  z-index: 2;
  inset: auto 22px 20px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  display: flex;
  color: #fff;
}

.wetlp-discovery-card__image-meta span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wetlp-discovery-card__image-meta strong {
  max-width: 70%;
  font-family: var(--font-display, serif);
  font-size: clamp(22px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-align: right;
}

.wetlp-discovery-card .spoke__case-body {
  min-height: 126px;
  padding: 18px;
  grid-template-columns: minmax(190px, 0.82fr) minmax(260px, 1.18fr);
  grid-template-rows: auto auto;
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 8px;
  display: grid;
}

.wetlp-discovery-card .spoke__case-tag {
  display: none;
}

.wetlp-discovery-card .spoke__case-name {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  color: #141414;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 0.98;
}

.wetlp-discovery-card .spoke__case-desc {
  grid-column: 2;
  align-self: end;
  max-width: 52ch;
  color: rgba(20, 20, 20, 0.78);
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.45;
}

.wetlp-discovery-controls {
  margin-top: clamp(18px, 2.4vw, 32px);
  align-items: center;
  gap: 22px;
  display: grid;
  grid-template-columns: auto minmax(120px, 360px) auto;
  color: var(--on-dark, #f5f3ee);
}

.wetlp-discovery-controls__buttons {
  display: flex;
  gap: 8px;
}

.wetlp-discovery-control {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(245, 243, 238, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--on-dark, #f5f3ee);
  display: grid;
  place-items: center;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.wetlp-discovery-control:hover,
.wetlp-discovery-control:focus-visible {
  border-color: var(--brand-citron, #e6e77e);
  background: var(--brand-citron, #e6e77e);
  color: #151515;
}

.wetlp-discovery-control:disabled {
  opacity: 0.28;
}

.wetlp-discovery-control svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.wetlp-discovery-progress {
  height: 2px;
  border-radius: var(--r-pill, 999px);
  background: rgba(245, 243, 238, 0.18);
  overflow: hidden;
}

.wetlp-discovery-progress i {
  width: var(--wetlp-discovery-progress, 25%);
  height: 100%;
  border-radius: inherit;
  background: var(--brand-citron, #e6e77e);
  display: block;
  transition: width 420ms cubic-bezier(.19, 1, .22, 1);
}

.wetlp-discovery-status {
  min-width: 58px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: right;
}

@media (max-width: 720px) {
  .spoke__showcase {
    --wetlp-rail-gutter: 18px;
  }

  .spoke__showcase-head {
    margin-bottom: 34px;
  }

  .wetlp-discovery-card.spoke__case {
    width: 86vw;
    min-width: 86vw;
    height: 490px;
    min-height: 0;
    grid-template-rows: 44px minmax(270px, 1fr) auto;
  }

  .wetlp-discovery-card__head {
    padding: 0 14px;
  }

  .wetlp-discovery-card .spoke__case-visual {
    margin: 0 9px;
  }

  .wetlp-discovery-card__image-meta {
    inset: auto 14px 14px;
    gap: 16px;
  }

  .wetlp-discovery-card__image-meta strong {
    max-width: 68%;
    font-size: clamp(21px, 8vw, 32px);
  }

  .wetlp-discovery-card .spoke__case-body {
    min-height: 152px;
    padding: 15px 14px 17px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .wetlp-discovery-card .spoke__case-name,
  .wetlp-discovery-card .spoke__case-desc {
    grid-column: 1;
    grid-row: auto;
  }

  .wetlp-discovery-controls {
    gap: 14px;
    grid-template-columns: auto 1fr auto;
  }

  .wetlp-discovery-control {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .wetlp-discovery-controls {
    grid-template-columns: auto 1fr;
  }

  .wetlp-discovery-status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wetlp-discovery-card,
  .wetlp-discovery-card__image,
  .wetlp-discovery-control,
  .wetlp-discovery-progress i {
    transition: none !important;
  }
}

/* "Meine Leistungen": a quiet Shoremedia-style media reveal. The image owns
   a real grid column so the title is physically displaced instead of merely
   being covered by an absolutely positioned preview. */
.solution__row .chip.dark {
  border-radius: var(--r-pill, 999px) !important;
}

.solution__row .solution__arrow {
  border-radius: 50% !important;
}

.wetlp-service-visual {
  display: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 981px) {
  .solution__row-link.wetlp-service-row {
    grid-template-columns: 0 minmax(0, 1fr) max-content 56px !important;
    align-items: center;
    overflow: hidden;
    transition:
      grid-template-columns 640ms cubic-bezier(.19, 1, .22, 1),
      color 220ms ease;
  }

  .wetlp-service-visual {
    display: block;
    position: relative;
    width: 100%;
    min-width: 0;
    height: 116px;
    border: 1px solid rgba(245, 243, 238, 0.16);
    border-radius: 16px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-18px) scale(0.94);
    transform-origin: left center;
    transition:
      opacity 220ms ease,
      transform 640ms cubic-bezier(.19, 1, .22, 1);
  }

  .wetlp-service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.04);
    transform: scale(1.08);
    transition: transform 760ms cubic-bezier(.19, 1, .22, 1);
  }

  .wetlp-service-visual__disclosure {
    position: absolute;
    z-index: 2;
    right: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    padding: 5px 7px;
    color: #f5f3ee;
    background: rgba(14, 13, 10, 0.78);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .wetlp-service-row .solution__t {
    min-width: 0;
    white-space: nowrap;
    transition:
      color 220ms ease,
      font-size 640ms cubic-bezier(.19, 1, .22, 1),
      transform 640ms cubic-bezier(.19, 1, .22, 1);
  }

  .solution__row-link.wetlp-service-row:hover,
  .solution__row-link.wetlp-service-row:focus-visible {
    grid-template-columns: clamp(180px, 18vw, 248px) minmax(0, 1fr) max-content 56px !important;
  }

  .solution__row-link.wetlp-service-row:hover .wetlp-service-visual,
  .solution__row-link.wetlp-service-row:focus-visible .wetlp-service-visual {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .solution__row-link.wetlp-service-row:hover .wetlp-service-visual img,
  .solution__row-link.wetlp-service-row:focus-visible .wetlp-service-visual img {
    transform: scale(1);
  }

  .solution__row-link.wetlp-service-row:hover .solution__t,
  .solution__row-link.wetlp-service-row:focus-visible .solution__t {
    font-size: clamp(38px, 3.8vw, 54px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution__row-link.wetlp-service-row,
  .wetlp-service-visual,
  .wetlp-service-visual img,
  .wetlp-service-row .solution__t {
    transition: none !important;
  }
}
