/**
 * Wag'n Tails Host Landing system
 * Airbnb host/homes flow, translated to Wag'n Tails tokens (cream / mist / purple / teal).
 * Components: .hl-chips, .hl-hero, .hl-estimate, .hl-pillars, .hl-story,
 * .hl-protect, .hl-gallery, .hl-faq, .hl-cta, .hl-form, .hl-points
 */

body.wagn-host-landing {
  --hl-canvas: var(--wp--preset--color--cream-warm, #fbf7f0);
  --hl-surface: #ffffff;
  --hl-mist: var(--wp--preset--color--mist, #f5f2f8);
  --hl-mint: var(--wp--preset--color--mint, #eef8f6);
  --hl-ink: var(--wp--preset--color--ink, #3a3048);
  /* Darker than stock ink-muted so body copy clears WCAG AA on cream/white */
  --hl-muted: #4a4258;
  --hl-faint: #6b6378;
  --hl-purple: var(--wp--preset--color--purple, #603387);
  --hl-purple-deep: var(--wp--preset--color--purple-deep, #3a1a5c);
  --hl-aqua: var(--wp--preset--color--aqua, #8ad6cc);
  --hl-aqua-deep: var(--wp--preset--color--aqua-deep, #3d8f86);
  --hl-line: rgba(58, 48, 72, 0.1);
  --hl-radius: var(--wp--custom--radius--xl, 24px);
  --hl-radius-sm: var(--wp--custom--radius--lg, 16px);
  --hl-ease: var(--wp--custom--ease-editorial, cubic-bezier(0.16, 1, 0.3, 1));
  --hl-measure: 40rem;
  background: var(--hl-canvas);
  color: var(--hl-ink);
}

body.wagn-host-landing .hl-main {
  overflow-x: clip;
}

body.wagn-host-landing .hl-main .container {
  width: min(1120px, calc(100% - 2 * var(--wp--custom--page-gutter, 1.25rem)));
  margin-inline: auto;
}

body.wagn-host-landing .hl-main .container--narrow {
  width: min(720px, calc(100% - 2 * var(--wp--custom--page-gutter, 1.25rem)));
}

/* -------------------------------------------------------------------------- */
/* Shared section chrome                                                       */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

body.wagn-host-landing .hl-section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

body.wagn-host-landing .hl-section--mist {
  background: var(--hl-mist);
}

body.wagn-host-landing .hl-section--mint {
  background: var(--hl-mint);
}

body.wagn-host-landing .hl-section--surface {
  background: var(--hl-surface);
}

body.wagn-host-landing .hl-brand {
  margin: 0 0 0.65rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--hl-purple);
}

body.wagn-chrome.wagn-host-landing .hl-brand--on-dark,
body.wagn-host-landing .hl-brand--on-dark {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  text-shadow: 0 2px 24px rgba(26, 16, 48, 0.35);
}

body.wagn-host-landing .hl-eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: var(--wp--preset--font-size--eyebrow);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hl-aqua-deep);
}

body.wagn-host-landing .hl-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.82);
}

body.wagn-host-landing .hl-section-header {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

body.wagn-host-landing .hl-section-header--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

body.wagn-host-landing .hl-section-header h2 {
  margin: 0 0 0.75rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-section-header p {
  margin: 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: var(--wp--preset--font-size--lead);
  line-height: 1.55;
  color: var(--hl-muted);
}

body.wagn-host-landing .hl-wave {
  display: block;
  line-height: 0;
  margin-top: -1px;
}

body.wagn-host-landing .hl-wave svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 72px);
}

body.wagn-host-landing .hl-wave__fill {
  fill: var(--hl-canvas);
}

body.wagn-host-landing .hl-wave--to-mist .hl-wave__fill {
  fill: var(--hl-mist);
}

body.wagn-host-landing .hl-wave--to-surface .hl-wave__fill {
  fill: var(--hl-surface);
}

body.wagn-host-landing .hl-wave--to-mint .hl-wave__fill {
  fill: var(--hl-mint);
}

/* Soft reveal (works with data-reveal / wagn-motion .is-inview) */
body.wagn-host-landing .hl-main [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.7s var(--hl-ease),
    transform 0.7s var(--hl-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

body.wagn-host-landing .hl-main [data-reveal].is-inview,
body.wagn-host-landing .hl-main [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  body.wagn-host-landing .hl-main [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Question chips                                                              */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-chips {
  padding: 1.15rem 0 0.35rem;
  background: var(--hl-surface);
  border-bottom: 1px solid var(--hl-line);
}

body.wagn-host-landing .hl-chips__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

body.wagn-host-landing .hl-chips__prompt {
  flex: 0 0 auto;
  margin: 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hl-ink);
  white-space: nowrap;
}

body.wagn-host-landing .hl-chips__scroller {
  display: flex;
  gap: 0.65rem;
  min-width: 0;
  overflow-x: auto;
  padding: 0.35rem 0 0.65rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body.wagn-host-landing .hl-chips__scroller::-webkit-scrollbar {
  display: none;
}

body.wagn-host-landing .hl-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0.55rem 0.95rem 0.55rem 0.55rem;
  border: 1px solid var(--hl-line);
  border-radius: 999px;
  background: var(--hl-canvas);
  color: var(--hl-ink);
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition:
    border-color 0.2s var(--hl-ease),
    background 0.2s var(--hl-ease),
    transform 0.2s var(--hl-ease);
}

body.wagn-host-landing .hl-chip:hover,
body.wagn-host-landing .hl-chip:focus-visible {
  border-color: rgba(96, 51, 135, 0.28);
  background: #fff;
  transform: translateY(-1px);
  outline: none;
}

body.wagn-host-landing .hl-chip__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

@media (max-width: 719px) {
  body.wagn-host-landing .hl-chips__row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  body.wagn-host-landing .hl-chips__prompt {
    white-space: normal;
    padding-inline: 0.1rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: clamp(5.5rem, 12vw, 7.5rem) 0 clamp(3rem, 7vw, 4.5rem);
  color: #fff;
  isolation: isolate;
}

body.wagn-host-landing .hl-hero--compact {
  min-height: min(72vh, 680px);
}

body.wagn-host-landing .hl-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.wagn-host-landing .hl-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

body.wagn-host-landing .hl-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26, 16, 48, 0.35) 0%, rgba(26, 16, 48, 0.48) 36%, rgba(26, 16, 48, 0.86) 100%),
    radial-gradient(120% 80% at 20% 10%, rgba(96, 51, 135, 0.28), transparent 55%);
  pointer-events: none;
}

body.wagn-host-landing .hl-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

body.wagn-chrome.wagn-host-landing .hl-hero__title,
body.wagn-host-landing .hl-hero__title {
  margin: 0 0 1rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: clamp(2.35rem, 5.8vw, 4.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  text-shadow: 0 2px 28px rgba(16, 10, 32, 0.45);
}

body.wagn-chrome.wagn-host-landing .hl-hero__lede,
body.wagn-host-landing .hl-hero__lede {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  text-shadow: 0 1px 18px rgba(16, 10, 32, 0.4);
}

body.wagn-host-landing .hl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Beat chrome .btn--outline purple !important on photo heroes */
body.wagn-chrome.wagn-host-landing .hl-hero a.btn--outline,
body.wagn-chrome.wagn-host-landing .hl-hero a.btn--outline:link,
body.wagn-chrome.wagn-host-landing .hl-hero a.btn--outline:visited,
body.wagn-chrome.wagn-host-landing .hl-hero .btn--outline,
body.wagn-host-landing .hl-hero .btn--outline,
body.wagn-host-landing .hl-hero .btn--outline:link,
body.wagn-host-landing .hl-hero .btn--outline:visited {
  border-color: rgba(255, 255, 255, 0.72) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  background: rgba(26, 16, 48, 0.42) !important;
  backdrop-filter: blur(8px);
}

body.wagn-chrome.wagn-host-landing .hl-hero a.btn--outline:hover,
body.wagn-chrome.wagn-host-landing .hl-hero a.btn--outline:focus,
body.wagn-chrome.wagn-host-landing .hl-hero a.btn--outline:focus-visible,
body.wagn-chrome.wagn-host-landing .hl-hero .btn--outline:hover,
body.wagn-chrome.wagn-host-landing .hl-hero .btn--outline:focus,
body.wagn-chrome.wagn-host-landing .hl-hero .btn--outline:focus-visible,
body.wagn-host-landing .hl-hero .btn--outline:hover,
body.wagn-host-landing .hl-hero .btn--outline:focus-visible {
  border-color: #fff !important;
  background: rgba(26, 16, 48, 0.58) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

/* Soft estimate (no invented dollar amounts) */
body.wagn-host-landing .hl-estimate {
  margin-top: 0.5rem;
  padding: 1rem 1.15rem 1.15rem;
  max-width: 26rem;
  border-radius: var(--hl-radius-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

body.wagn-host-landing .hl-estimate__label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.55rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

body.wagn-host-landing .hl-estimate__value {
  color: var(--hl-aqua);
  font-variant-numeric: tabular-nums;
}

body.wagn-host-landing .hl-estimate__range {
  width: 100%;
  accent-color: var(--hl-aqua);
  cursor: pointer;
}

body.wagn-host-landing .hl-estimate__hint {
  margin: 0.65rem 0 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

body.wagn-host-landing .hl-estimate__hint a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* -------------------------------------------------------------------------- */
/* Pillars                                                                     */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-pillars__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

body.wagn-host-landing .hl-pillars__item {
  text-align: left;
}

body.wagn-host-landing .hl-pillars__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  object-fit: cover;
}

body.wagn-host-landing .hl-pillars__item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-pillars__item p {
  margin: 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--hl-ink);
}

body.wagn-host-landing .hl-pillars__item a {
  color: var(--hl-purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 799px) {
  body.wagn-host-landing .hl-pillars__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Story + image                                                               */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

body.wagn-host-landing .hl-story__grid--flip {
  grid-template-columns: 0.95fr 1.05fr;
}

body.wagn-host-landing .hl-story__grid--flip .hl-story__media {
  order: -1;
}

body.wagn-host-landing .hl-story__copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-story__copy > p {
  margin: 0 0 1.15rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: var(--wp--preset--font-size--lead);
  line-height: 1.55;
  color: var(--hl-muted);
}

body.wagn-host-landing .hl-checklist {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

body.wagn-host-landing .hl-checklist li {
  position: relative;
  padding-left: 1.55rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--hl-ink);
}

body.wagn-host-landing .hl-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hl-aqua), var(--hl-purple));
}

body.wagn-host-landing .hl-story__media {
  margin: 0;
  border-radius: var(--hl-radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--hl-mist);
}

body.wagn-host-landing .hl-story__media--wide {
  aspect-ratio: 16 / 11;
}

body.wagn-host-landing .hl-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 899px) {
  body.wagn-host-landing .hl-story__grid,
  body.wagn-host-landing .hl-story__grid--flip {
    grid-template-columns: 1fr;
  }

  body.wagn-host-landing .hl-story__grid--flip .hl-story__media {
    order: 0;
  }

  body.wagn-host-landing .hl-story__media {
    aspect-ratio: 16 / 11;
  }
}

/* -------------------------------------------------------------------------- */
/* Protect / trust                                                             */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-protect {
  background:
    radial-gradient(90% 70% at 15% 20%, rgba(138, 214, 204, 0.18), transparent 55%),
    radial-gradient(80% 60% at 90% 80%, rgba(96, 51, 135, 0.1), transparent 50%),
    var(--hl-surface);
}

body.wagn-host-landing .hl-protect__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

body.wagn-host-landing .hl-protect__copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-protect__copy > p {
  margin: 0 0 1.25rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: var(--wp--preset--font-size--lead);
  line-height: 1.55;
  color: var(--hl-muted);
}

body.wagn-host-landing .hl-protect__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

body.wagn-host-landing .hl-protect__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: var(--hl-radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--hl-line);
}

body.wagn-host-landing .hl-protect__list img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

body.wagn-host-landing .hl-protect__list h3 {
  margin: 0 0 0.25rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-protect__list p {
  margin: 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--hl-muted);
}

@media (max-width: 799px) {
  body.wagn-host-landing .hl-protect__grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Points (what's inside)                                                      */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.5rem;
}

body.wagn-host-landing .hl-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.35rem 0;
}

body.wagn-host-landing .hl-points img,
body.wagn-host-landing .hl-points .tile-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
}

body.wagn-host-landing .hl-points h3 {
  margin: 0 0 0.3rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-points p {
  margin: 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--hl-muted);
}

body.wagn-host-landing .hl-inline-cta {
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 699px) {
  body.wagn-host-landing .hl-points {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Gallery                                                                     */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-gallery__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

body.wagn-host-landing .hl-gallery__item {
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--hl-radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--hl-mist);
}

body.wagn-host-landing .hl-gallery__item--wide {
  aspect-ratio: 16 / 11;
}

body.wagn-host-landing .hl-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.wagn-host-landing .hl-gallery__caption {
  margin: 0.65rem 0 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.875rem;
  color: var(--hl-muted);
}

/* Story cards (success stories) */
body.wagn-host-landing .hl-story-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

body.wagn-host-landing .hl-story-card {
  border-radius: var(--hl-radius);
  overflow: hidden;
  background: var(--hl-surface);
  border: 1px solid var(--hl-line);
}

body.wagn-host-landing .hl-story-card__video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1a1028;
}

body.wagn-host-landing .hl-story-card__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.wagn-host-landing .hl-story-card__facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #1a1028;
}

body.wagn-host-landing .hl-story-card__facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.wagn-host-landing .hl-story-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 3.5rem;
  height: 3.5rem;
  margin: -1.75rem 0 0 -1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(16, 10, 32, 0.28);
}

body.wagn-host-landing .hl-story-card__play::before {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent var(--hl-purple);
}

body.wagn-host-landing .hl-story-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
}

body.wagn-host-landing .hl-story-card__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: var(--wp--preset--font-size--eyebrow);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hl-aqua-deep);
}

body.wagn-host-landing .hl-story-card__body h3 {
  margin: 0 0 0.45rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-story-card__body p {
  margin: 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--hl-ink);
}

body.wagn-host-landing .hl-story-card--text {
  padding: 1.5rem 1.35rem;
}

body.wagn-host-landing .hl-story-card--text h3 {
  margin: 0 0 0.45rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-story-card--text > p {
  margin: 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--hl-ink);
}

body.wagn-host-landing .hl-segment {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  margin: 0 auto 1.75rem;
  border-radius: 999px;
  background: rgba(96, 51, 135, 0.08);
}

body.wagn-host-landing .hl-segment__btn {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  background: transparent;
  color: var(--hl-muted);
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

body.wagn-host-landing .hl-segment__btn.is-active,
body.wagn-host-landing .hl-segment__btn[aria-selected="true"] {
  background: #fff;
  color: var(--hl-purple-deep);
  box-shadow: 0 4px 14px rgba(42, 26, 64, 0.08);
}

body.wagn-host-landing .hl-quote-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

body.wagn-host-landing .hl-quote {
  margin: 0;
  padding: 1.25rem 1.2rem;
  border-radius: var(--hl-radius-sm);
  background: var(--hl-surface);
  border: 1px solid var(--hl-line);
}

body.wagn-host-landing .hl-quote p {
  margin: 0 0 1rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--hl-ink);
}

body.wagn-host-landing .hl-quote cite {
  font-style: normal;
  font-weight: 700;
  font-family: var(--wp--preset--font-family--outfit);
  color: var(--hl-purple);
}

@media (max-width: 899px) {
  body.wagn-host-landing .hl-story-grid,
  body.wagn-host-landing .hl-quote-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Form panel                                                                  */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-form {
  scroll-margin-top: 6rem;
}

body.wagn-host-landing .hl-form__shell {
  max-width: 34rem;
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--hl-radius);
  background: var(--hl-surface);
  border: 1px solid var(--hl-line);
  box-shadow: 0 18px 48px rgba(42, 26, 64, 0.08);
}

body.wagn-host-landing .hl-form__shell h2 {
  margin: 0 0 0.4rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-form__shell > p {
  margin: 0 0 1.15rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.95rem;
  color: var(--hl-muted);
}

body.wagn-host-landing .hl-download {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hl-line);
}

body.wagn-host-landing .hl-download__title {
  margin: 0 0 0.4rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: 1.25rem;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-download__lede {
  margin: 0 0 1rem;
  font-family: var(--wp--preset--font-family--onest);
  color: var(--hl-muted);
}

body.wagn-host-landing .hl-download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* -------------------------------------------------------------------------- */
/* FAQ                                                                         */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-faq__list {
  display: grid;
  gap: 0.65rem;
}

body.wagn-host-landing .hl-faq details {
  border-radius: var(--hl-radius-sm);
  background: var(--hl-surface);
  border: 1px solid var(--hl-line);
  padding: 0.15rem 1.1rem;
}

body.wagn-host-landing .hl-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.5rem 1rem 0;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hl-purple-deep);
  position: relative;
}

body.wagn-host-landing .hl-faq summary::-webkit-details-marker {
  display: none;
}

body.wagn-host-landing .hl-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  color: var(--hl-faint);
}

body.wagn-host-landing .hl-faq details[open] summary::after {
  content: "–";
}

body.wagn-host-landing .hl-faq details p {
  margin: 0 0 1.1rem;
  padding-right: 1rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.975rem;
  line-height: 1.55;
  color: var(--hl-ink);
}

body.wagn-host-landing .hl-faq details a {
  color: var(--hl-purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

body.wagn-host-landing .hl-faq details a:hover,
body.wagn-host-landing .hl-faq details a:focus-visible {
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-faq details[id] {
  scroll-margin-top: 6.5rem;
}

/* -------------------------------------------------------------------------- */
/* Steps                                                                       */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: hlstep;
}

body.wagn-host-landing .hl-steps li {
  counter-increment: hlstep;
}

body.wagn-host-landing .hl-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: rgba(96, 51, 135, 0.1);
  color: var(--hl-purple);
  font-family: var(--wp--preset--font-family--outfit);
  font-weight: 700;
  font-size: 0.9rem;
}

body.wagn-host-landing .hl-steps h3 {
  margin: 0 0 0.4rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-steps p {
  margin: 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--hl-muted);
}

@media (max-width: 899px) {
  body.wagn-host-landing .hl-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 559px) {
  body.wagn-host-landing .hl-steps {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Closing CTA                                                                 */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-cta {
  text-align: center;
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(138, 214, 204, 0.22), transparent 60%),
    var(--hl-mist);
}

body.wagn-host-landing .hl-cta__title {
  margin: 0 0 0.85rem;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--hl-purple-deep);
}

body.wagn-host-landing .hl-cta__lede {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: var(--wp--preset--font-size--lead);
  line-height: 1.55;
  color: var(--hl-muted);
}

body.wagn-host-landing .hl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

body.wagn-host-landing .hl-cta__secondary {
  margin: 1.15rem 0 0;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.9375rem;
}

body.wagn-host-landing .hl-cta__secondary a {
  color: var(--hl-purple);
  font-weight: 600;
}

body.wagn-host-landing .hl-cta__photo {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  border-radius: var(--hl-radius);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

body.wagn-host-landing .hl-cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -------------------------------------------------------------------------- */
/* Van strip (become page)                                                     */
/* -------------------------------------------------------------------------- */

body.wagn-host-landing .hl-van-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 28%);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
}

body.wagn-host-landing .hl-van-strip a {
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  border-radius: var(--hl-radius-sm);
  overflow: hidden;
  background: var(--hl-surface);
  border: 1px solid var(--hl-line);
  transition: transform 0.2s var(--hl-ease), border-color 0.2s var(--hl-ease);
}

body.wagn-host-landing .hl-van-strip a:hover,
body.wagn-host-landing .hl-van-strip a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(96, 51, 135, 0.28);
  outline: none;
}

body.wagn-host-landing .hl-van-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--hl-mist);
}

body.wagn-host-landing .hl-van-strip__body {
  display: block;
  padding: 0.85rem 1rem 1.05rem;
}

body.wagn-host-landing .hl-van-strip__eyebrow {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--wp--preset--font-family--onest);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hl-aqua-deep);
}

body.wagn-host-landing .hl-van-strip__title {
  display: block;
  font-family: var(--wp--preset--font-family--outfit);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hl-purple-deep);
}

@media (prefers-reduced-motion: reduce) {
  body.wagn-host-landing .hl-chip,
  body.wagn-host-landing .hl-van-strip a {
    transition: none;
  }

  body.wagn-host-landing .hl-chip:hover,
  body.wagn-host-landing .hl-van-strip a:hover {
    transform: none;
  }
}
