@import url("./brand-tokens.css");
@import url("./brand-base.css");
@import url("./brand-components.css");

/* =======================================================================
   Yo lo hago — Landing page styles
   ======================================================================= */

.brand-name {
  font-weight: 700;
  font-style: italic;
  color: var(--ylh-color-brand);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  min-height: calc(var(--ylh-tap-target) / 2);
  text-decoration: none;
}
.arrow-link::after {
  display: inline-block;
  margin-left: 0.35em;
  content: "\2192";
  text-decoration: none;
}

/* ---------- Top account CTAs ---------- */
.top-ctas {
  display: none;
}

.top-ctas__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.6rem 0.95rem;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border: 2px solid var(--ylh-color-brand);
  border-radius: var(--ylh-radius-pill);
  box-shadow: var(--ylh-shadow-sm);
  transition: transform .08s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}

.top-ctas__button:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: var(--ylh-shadow-md);
}

.top-ctas__button:active {
  transform: translateY(0);
}

.top-ctas__button--primary {
  color: var(--ylh-color-accent);
  background: var(--ylh-color-brand);
}

.top-ctas__button--secondary {
  color: var(--ylh-color-brand);
  background: var(--ylh-color-surface-overlay);
  backdrop-filter: blur(8px);
}

/* ---------- Global nav ---------- */
.global-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ylh-color-surface);
  border-bottom: 1px solid var(--ylh-color-border);
  box-shadow: var(--ylh-shadow-sm);
}

.global-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "logo actions"
    "nav nav";
  align-items: center;
  column-gap: 0.55rem;
  row-gap: 0.35rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.45rem max(0.75rem, env(safe-area-inset-left)) 0.5rem max(0.75rem, env(safe-area-inset-right));
  padding-top: max(0.45rem, env(safe-area-inset-top));
}

.global-nav__logo {
  grid-area: logo;
  align-self: center;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.global-nav__logo img {
  display: block;
  height: 1.55rem;
  width: auto;
}

.global-nav__primary {
  grid-area: nav;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0.35rem;
}

.global-nav__actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.global-nav__actions form {
  margin: 0;
}

.global-nav__actions button.top-ctas__button {
  cursor: pointer;
  font: inherit;
}

.global-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ylh-color-brand-ink);
  padding: 0.4rem 0.45rem;
  text-decoration: none;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1.5px;
  text-decoration-color: transparent;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.global-nav__link:hover {
  color: var(--ylh-color-brand);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.global-nav__link--current {
  color: var(--ylh-color-brand);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.global-nav__link--current:hover {
  color: var(--ylh-color-brand-ink);
  text-decoration-color: currentColor;
}

.global-nav__more {
  position: relative;
}

.global-nav__more-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.4rem 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ylh-color-brand-ink);
  cursor: pointer;
  list-style: none;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1.5px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.global-nav__more-toggle::-webkit-details-marker {
  display: none;
}

.global-nav__more-toggle::marker {
  content: "";
}

.global-nav__more-toggle::after {
  margin-left: 0.35rem;
  color: var(--ylh-color-text-muted);
  content: "\25BE";
}

.global-nav__more[open] .global-nav__more-toggle::after {
  content: "\25B4";
}

.global-nav__more-toggle:hover,
.global-nav__more--current .global-nav__more-toggle {
  color: var(--ylh-color-brand);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.global-nav__more-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 45;
  display: grid;
  min-width: 11rem;
  padding: 0.35rem;
  background: var(--ylh-color-surface);
  border: 1px solid var(--ylh-color-border-medium);
  border-radius: var(--ylh-radius-sm);
  box-shadow: var(--ylh-shadow-md);
}

.global-nav__more:not([open]) .global-nav__more-menu {
  display: none;
}

.global-nav__more-menu .global-nav__link {
  justify-content: flex-start;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.global-nav .top-ctas__button {
  min-height: 2.75rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.82rem;
}

@media (min-width: 900px) {
  .global-nav__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo nav actions";
    column-gap: 1.5rem;
    row-gap: 0;
    padding: 0.85rem max(1.5rem, env(safe-area-inset-left)) 0.9rem max(1.5rem, env(safe-area-inset-right));
    padding-top: max(0.85rem, env(safe-area-inset-top));
  }

  .global-nav__primary {
    justify-self: center;
    width: max-content;
    max-width: 100%;
    gap: 0.25rem 0.8rem;
  }

  .global-nav__logo img {
    height: 2rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0.8rem 1rem;
  background: var(--ylh-color-accent-bright);
  color: var(--ylh-color-brand);
}

.hero__media,
.hero__media picture,
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: 0;
}

.hero__image {
  object-fit: cover;
}

@media (max-width: 47.999rem) {
  .hero__media {
    display: none;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin: 0 auto;
  padding: 1rem 0 1rem;
}

.hero__logo {
  display: block;
  margin: 0 auto 1rem;
  width: clamp(6rem, 22vw, 8rem);
  height: auto;
}

.hero__title {
  font-size: clamp(1.85rem, 5vw + 1rem, 3.5rem);
  line-height: 1.08;
  margin: 1rem auto;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ylh-color-surface);
  text-align: center;
}
.hero__subtitle {
  font-size: clamp(1rem, 1vw + 0.75rem, 1.2rem);
  margin: 0.5rem auto;
  color: var(--ylh-color-brand-ink);
  max-width: 40ch;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--ylh-color-brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-top: 0.25rem;
  text-align: center;
}

.home-page main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 42rem;
}

/* ---------- Hero service request ---------- */
.service-request {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.service-request__field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 3.6rem;
  padding: 0.35rem;
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-brand);
  border-radius: var(--ylh-radius-pill);
  box-shadow: var(--ylh-shadow-md);
}

.service-request__field:focus-within {
  box-shadow: var(--ylh-shadow-focus-md);
}

.service-request__field input {
  min-width: 0;
  width: 100%;
  min-height: 2.75rem;
  padding: 0 0.65rem 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ylh-color-text);
  background: transparent;
  border: 0;
  outline: none;
}

.service-request__field input::placeholder {
  color: var(--ylh-color-text-placeholder);
}

.service-request__field button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ylh-color-accent);
  background: var(--ylh-color-brand);
  border: 0;
  border-radius: var(--ylh-radius-circle);
  cursor: pointer;
  transition: transform .08s ease, background .15s ease;
}

.service-request__field button:hover {
  transform: translateY(-1px);
  background: var(--ylh-color-brand-hover);
}

.service-request__field button:active {
  transform: translateY(0);
}

.service-request__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.service-request__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.35rem;
  padding: 0.25rem 0.75rem;
  color: var(--ylh-color-brand);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--ylh-color-surface-rgb);
  border-radius: var(--ylh-radius-pill);
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}

.service-request__save-link {
  justify-content: flex-start;
  text-align: left;
}

.service-request__save-icon {
  flex-shrink: 0;
  width: 0.9rem;
  height: auto;
  display: block;
  object-fit: contain;
}

.service-request__pill:hover {
  transform: translateY(-1px);
  text-decoration: none;
  background: var(--ylh-color-surface);
  box-shadow: var(--ylh-shadow-sm);
}

.service-request__how-link {
  color: var(--ylh-color-brand);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

/* ---------- Signup form (FR-04) ---------- */
.signup {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}
.signup input[type="email"] {
  width: 100%;
  min-height: var(--ylh-tap-target);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1.1rem;
  color: var(--ylh-color-text);
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-brand);
  border-radius: var(--ylh-radius-md);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.signup input[type="email"]::placeholder { color: var(--ylh-color-text-placeholder); }
.signup input[type="email"][aria-invalid="true"] {
  border-color: var(--ylh-color-danger);
  box-shadow: var(--ylh-shadow-danger-ring);
}
.signup button {
  min-height: var(--ylh-tap-target);
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ylh-color-accent);
  background: var(--ylh-color-brand);
  border: 0;
  border-radius: var(--ylh-radius-md);
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: var(--ylh-shadow-md);
}
.signup button:hover { transform: translateY(-1px); background: var(--ylh-color-brand-hover); }
.signup button:active { transform: translateY(0); }
.form-error {
  margin: 0;
  padding: 0.75rem 0.9rem;
  color: var(--ylh-color-danger-text);
  background: var(--ylh-color-danger-surface-soft);
  border: 1px solid var(--ylh-color-danger);
  border-left-width: 4px;
  border-radius: var(--ylh-radius-sm);
  font-weight: 700;
  line-height: 1.4;
}
.form-error p {
  margin: 0 0 0.35rem;
}
.form-error ul {
  margin: 0;
  padding-left: 1.2rem;
}
.form-success {
  margin: 0;
  padding: 0.75rem 0.9rem;
  color: var(--ylh-color-success-text);
  background: var(--ylh-color-success-surface-soft);
  border: 1px solid var(--ylh-color-success-border);
  border-left-width: 4px;
  border-radius: var(--ylh-radius-sm);
  font-weight: 700;
  line-height: 1.4;
}
.field-error {
  margin: -0.2rem 0 0;
  color: var(--ylh-color-danger);
  font-size: 0.86rem;
  font-weight: 700;
}
.service-request .field-error {
  margin-top: 0;
  text-align: left;
}
input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"],
.phone-input.is-invalid,
.email-input.is-invalid,
.service-request__field.is-invalid,
.registration-form__choice:has(input[aria-invalid="true"]) {
  border-color: var(--ylh-color-danger) !important;
  box-shadow: var(--ylh-shadow-danger-ring);
}

/* ---------- Provider social proof and hero ---------- */
.social-proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  --social-proof-accent: var(--ylh-color-brand);
  --social-proof-accent-soft: var(--ylh-color-accent-soft);

  color: var(--ylh-color-text-muted-strong);
  background:
    radial-gradient(circle at 8% 20%, var(--ylh-color-accent-alpha-20), transparent 22rem),
    linear-gradient(135deg, var(--ylh-color-surface) 0%, var(--ylh-color-surface-alt) 100%);
  border-block: 1px solid var(--ylh-color-border);
}

.provider-page .social-proof-bar {
  --social-proof-accent: var(--ylh-color-provider);
  --social-proof-accent-soft: var(--ylh-color-provider-surface);

  background:
    radial-gradient(circle at 8% 20%, var(--ylh-color-provider-alpha-16), transparent 22rem),
    linear-gradient(135deg, var(--ylh-color-surface) 0%, var(--ylh-color-provider-surface-muted) 100%);
}

.social-proof-bar__item {
  display: inline-flex;
  gap: 0.42rem;
  align-items: center;
  min-width: 0;
  padding: 0.2rem 0;
  text-align: left;
}

.social-proof-bar__icon {
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  background: var(--social-proof-accent);
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.social-proof-bar__icon--providers {
  -webkit-mask-image: url("/assets/icons/approved-worker.svg");
  mask-image: url("/assets/icons/approved-worker.svg");
}

.social-proof-bar__icon--clients {
  -webkit-mask-image: url("/assets/icons/group-icon.svg");
  mask-image: url("/assets/icons/group-icon.svg");
}

.social-proof-bar__icon--verified {
  -webkit-mask-image: url("/assets/icons/bar-chart-increase-icon.svg");
  mask-image: url("/assets/icons/bar-chart-increase-icon.svg");
}

.social-proof-bar__icon--verified-profile {
  -webkit-mask-image: url("/assets/icons/verified-profile-icon.svg");
  mask-image: url("/assets/icons/verified-profile-icon.svg");
}

.social-proof-bar__item strong {
  flex: 0 0 auto;
  color: var(--ylh-color-text-body);
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.35rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.social-proof-bar__item > span:not(.social-proof-bar__icon) {
  color: var(--ylh-color-text-muted-strong);
  font-size: clamp(0.78rem, 0.3vw + 0.72rem, 0.9rem);
  line-height: 1.15;
  font-weight: 800;
}

.audience-hero {
  --audience-hero-bg: var(--ylh-color-accent);
  --audience-hero-text: var(--ylh-color-brand);
  --audience-hero-heading: currentColor;
  --audience-hero-eyebrow: var(--ylh-color-brand-alpha-72);
  --audience-hero-subtitle: var(--ylh-color-brand-ink);
  --audience-hero-legal: var(--ylh-color-overlay-ink);
  --audience-hero-button-color: var(--ylh-color-accent);
  --audience-hero-button-bg: var(--ylh-color-brand);

  display: grid;
  min-height: auto;
  color: var(--audience-hero-text);
  background: var(--audience-hero-bg);
}

.audience-hero--provider {
  --audience-hero-bg: var(--ylh-color-provider);
  --audience-hero-text: var(--ylh-color-surface);
  --audience-hero-heading: var(--ylh-color-surface);
  --audience-hero-eyebrow: var(--ylh-color-white-alpha-82);
  --audience-hero-subtitle: var(--ylh-color-white-alpha-88);
  --audience-hero-legal: var(--ylh-color-white-alpha-78);
  --audience-hero-error: var(--ylh-color-warning); /* yellow: red error text lacks contrast on orange hero */
  --audience-hero-button-color: var(--ylh-color-provider);
  --audience-hero-button-bg: var(--ylh-color-surface);
}

.audience-hero--client {
  --audience-hero-bg: var(--ylh-color-accent);
}

.audience-hero__content {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  width: min(100%, 38rem);
  margin: 0 auto;
  padding: 2.25rem 1.25rem 1.25rem;
}

.audience-hero__eyebrow {
  margin: 0;
  color: var(--audience-hero-eyebrow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-hero h1 {
  margin: 0;
  color: var(--audience-hero-heading);
  font-size: clamp(2rem, 7vw + 0.6rem, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.audience-hero__subtitle {
  max-width: 34rem;
  margin: 0;
  color: var(--audience-hero-subtitle);
  font-size: clamp(1rem, 1vw + 0.85rem, 1.25rem);
}

.audience-hero__form {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.audience-hero__field {
  display: grid;
  gap: 0.35rem;
}

.audience-hero__form label {
  color: var(--audience-hero-heading);
  font-size: 0.92rem;
  font-weight: 800;
}

.audience-hero__form input {
  width: 100%;
  min-height: var(--ylh-tap-target);
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ylh-color-text);
  background: var(--ylh-color-surface);
  border: 2px solid transparent;
  border-radius: var(--ylh-radius-md);
  box-shadow: var(--ylh-shadow-sm);
}

.audience-hero__form input::placeholder {
  color: var(--ylh-color-text-placeholder);
}

.phone-input,
.email-input {
  display: grid;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  min-height: var(--ylh-tap-target);
  padding: 0.45rem 0.85rem;
  color: var(--ylh-color-text);
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-white-alpha-70);
  border-radius: var(--ylh-radius-md);
  box-shadow: var(--ylh-shadow-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.phone-input {
  grid-template-columns: auto auto minmax(0, 1fr);
}

.phone-input--country {
  grid-template-columns: auto minmax(4.5rem, 5.4rem) minmax(0, 1fr);
  gap: 0.55rem;
}

.email-input {
  grid-template-columns: auto minmax(0, 1fr);
}

.phone-input:focus-within,
.email-input:focus-within {
  border-color: var(--ylh-color-focus);
  box-shadow: var(--ylh-shadow-focus-sm);
}

.phone-input__icon {
  width: 1.65rem;
  height: 1.65rem;
  background: var(--ylh-color-brand);
  -webkit-mask: url("/assets/icons/smartphone-icon.svg") center / contain no-repeat;
  mask: url("/assets/icons/smartphone-icon.svg") center / contain no-repeat;
}

.email-input__icon {
  width: 1.65rem;
  height: 1.65rem;
  background: var(--ylh-color-brand);
  -webkit-mask: url("/assets/icons/email-icon.svg") center / contain no-repeat;
  mask: url("/assets/icons/email-icon.svg") center / contain no-repeat;
}

.phone-input__code {
  color: var(--ylh-color-brand);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.phone-input__country-code {
  width: 100%;
  min-width: 0;
  padding: 0.1rem 0.25rem 0.1rem 0;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--ylh-color-brand);
  text-overflow: ellipsis;
  background: transparent;
  border: 0;
  outline: none;
}

.phone-input .phone-input__number,
.email-input input.email-input__field {
  min-width: 0;
  min-height: auto;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: transparent;
  border: 0;
  border-radius: var(--ylh-radius-none);
  box-shadow: none;
  outline: none;
}

.signup .phone-input,
.signup .email-input {
  border-color: var(--ylh-color-brand);
}

.audience-hero__form button {
  justify-self: stretch;
  min-height: var(--ylh-tap-target);
  margin-top: 0.35rem;
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--audience-hero-button-color);
  background: var(--audience-hero-button-bg);
  border: 0;
  border-radius: var(--ylh-radius-md);
  cursor: pointer;
  box-shadow: var(--ylh-shadow-md);
  transition: transform .08s ease, filter .15s ease;
}

.audience-hero__form button:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.audience-hero__form button:active {
  transform: translateY(0);
}

.audience-hero--provider .audience-hero__form .field-error {
  color: var(--audience-hero-error);
}

.audience-hero__legal {
  max-width: 34rem;
  margin: 0;
  color: var(--audience-hero-legal);
  font-size: 0.82rem;
  line-height: 1.45;
}

.audience-hero__legal a {
  color: inherit;
  font-weight: 800;
}

.audience-hero__media {
  height: clamp(12rem, 34svh, 18rem);
  min-height: 12rem;
  background: var(--audience-hero-bg);
}

.audience-hero__media picture,
.audience-hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.audience-hero__image {
  object-fit: cover;
}

/* ---------- Conversion sections ---------- */
.section-heading {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.section-heading h2,
.story-section h2,
.final-cta h2 {
  margin: 0 0 0.75rem;
  color: var(--ylh-color-brand);
  font-size: clamp(1.65rem, 3vw + 1rem, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-heading p {
  margin: 0 auto;
  color: var(--ylh-color-text-muted);
  font-size: 1.05rem;
}

.join-options,
.benefits,
.how-it-works,
.faq {
  padding: 3.5rem 1.25rem;
  background: var(--ylh-color-surface);
}

.provider-heading {
  padding: 3.5rem 1.25rem;
  background: var(--ylh-color-surface-alt);
}

.provider-heading .section-heading {
  margin-bottom: 0;
}

.join-options {
  background: linear-gradient(180deg, var(--ylh-color-surface) 0%, var(--ylh-color-surface-alt) 100%);
}
.join-options__grid {
  display: grid;
  gap: 2.5rem;
  max-width: 68rem;
  margin: 0 auto;
}
.join-option {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}
.join-option img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1.1rem;
}
.join-option h3 {
  margin: 0 0 0.45rem;
  color: var(--ylh-color-brand);
  font-size: clamp(1.35rem, 2vw + 1rem, 2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.join-option p {
  max-width: 28rem;
  margin: 0 0 0.85rem;
  color: var(--ylh-color-text-muted);
  font-size: 1.03rem;
}
.join-option__learn-link {
  color: var(--ylh-color-brand);
  font-weight: 800;
}

/* ---------- Story sections ---------- */
.story-section {
  --story-section-bg: var(--ylh-color-surface);
  --story-section-media-max-height: none;

  display: grid;
  gap: 1.75rem;
  padding: 3.5rem 1.25rem;
  color: var(--ylh-color-text);
  background: var(--story-section-bg);
}

.story-section--surface {
  --story-section-bg: var(--ylh-color-surface);
}

.story-section--soft {
  --story-section-bg:var(--ylh-color-surface-alt);
}

.story-section--media-capped {
  --story-section-media-max-height: 32rem;
}

.story-section__content {
  display: grid;
  gap: 0.85rem;
  max-width: 34rem;
}

.story-section h2 {
  margin: 0;
  color: var(--ylh-color-brand);
  font-size: clamp(1.8rem, 4vw + 1rem, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.story-section p {
  margin: 0;
  color: var(--ylh-color-text-muted);
  font-size: 1.03rem;
}

.story-section__subheader {
  color: var(--ylh-color-brand-ink);
  font-size: 1.12rem;
  font-weight: 800;
}

.story-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: var(--ylh-tap-target);
  margin-top: 0.45rem;
  padding: 0.85rem 1.25rem;
  color: var(--ylh-color-accent);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--ylh-color-brand);
  border-radius: var(--ylh-radius-md);
  box-shadow: var(--ylh-shadow-md);
  transition: transform .08s ease, background .15s ease;
}

.story-section__button:hover {
  transform: translateY(-1px);
  text-decoration: none;
  background: var(--ylh-color-brand-hover);
}

.story-section__media img {
  width: 100%;
  max-height: var(--story-section-media-max-height);
  object-fit: cover;
  border-radius: var(--ylh-radius-lg);
  box-shadow: var(--ylh-shadow-md);
}

.story-section--edge-media {
  --story-section-padding-block: 3.5rem;
  --story-section-padding-inline: 1.25rem;
  --story-section-wedge-size: clamp(2rem, 8vw, 4rem);

  gap: 0;
  padding: 0;
}

.story-section--edge-media .story-section__content {
  align-content: center;
  width: 100%;
  max-width: calc(34rem + (var(--story-section-padding-inline) * 2));
  padding: var(--story-section-padding-block) var(--story-section-padding-inline);
}

.story-section--edge-media .story-section__media {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
}

.story-section--edge-media .story-section__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: var(--story-section-bg);
}

.story-section--edge-media .story-section__media:not(:first-child)::before {
  inset: 0 0 auto;
  height: var(--story-section-wedge-size);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.story-section--edge-media .story-section__media:first-child::before {
  inset: auto 0 0;
  height: var(--story-section-wedge-size);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.story-section--edge-media.story-section--wedge-left .story-section__media:not(:first-child)::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.story-section--edge-media.story-section--wedge-right .story-section__media:not(:first-child)::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.story-section--edge-media.story-section--wedge-left .story-section__media:first-child::before {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.story-section--edge-media.story-section--wedge-right .story-section__media:first-child::before {
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.story-section--edge-media .story-section__media img {
  height: 100%;
  min-height: 100%;
  max-height: none;
  border-radius: var(--ylh-radius-none);
  box-shadow: none;
}

/* ---------- Anything banner ---------- */
.anything-banner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 34rem;
  padding: 5rem 1.25rem;
  color: var(--ylh-color-surface);
  text-align: center;
  background:
    linear-gradient(var(--ylh-color-overlay-brand), var(--ylh-color-overlay-brand-strong)),
    url(/assets/media/trade_professionals_group_photo.webp) center / cover no-repeat;
}

.anything-banner__content {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  width: min(100%, 44rem);
}

.anything-banner__eyebrow {
  margin: 0;
  color: var(--ylh-color-accent-pale);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.anything-banner h2 {
  margin: 0;
  color: var(--ylh-color-surface);
  font-size: clamp(2rem, 5vw + 1rem, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.anything-banner p {
  margin: 0;
  color: var(--ylh-color-text-inverse-muted);
  font-size: 1.05rem;
}

.anything-banner__subheader {
  color: var(--ylh-color-accent-pale);
  font-size: 1.15rem;
  font-weight: 800;
}

.anything-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--ylh-tap-target);
  margin-top: 0.5rem;
  padding: 0.85rem 1.25rem;
  color: var(--ylh-color-provider);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: var(--ylh-color-surface);
  border-radius: var(--ylh-radius-md);
  box-shadow: var(--ylh-shadow-md);
  transition: transform .08s ease, filter .15s ease;
}

.anything-banner__button:hover {
  transform: translateY(-1px);
  text-decoration: none;
  filter: brightness(0.96);
}

/* ---------- Chores grid ---------- */
.chores-section {
  display: grid;
  gap: 1.5rem;
  padding: 3.5rem 1.25rem;
  background: var(--ylh-color-surface);
}

.chores-section__heading {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.chores-section h2 {
  margin: 0;
  color: var(--ylh-color-brand);
  font-size: clamp(1.85rem, 4vw + 1rem, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.chores-grid {
  display: grid;
  gap: 1rem;
  width: min(100%, 76rem);
  margin: 0 auto;
}

.chores-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--ylh-color-surface-alt);
  border: 1px solid var(--ylh-color-border);
  border-radius: var(--ylh-radius-lg);
  box-shadow: var(--ylh-shadow-sm);
}

.chores-card h3 {
  margin: 0;
  color: var(--ylh-color-brand);
  font-size: 1.25rem;
  line-height: 1.15;
}

.chores-card p {
  margin: 0;
  color: var(--ylh-color-text-muted);
}

.chores-card--desktop-only {
  display: none;
}

.chores-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2rem;
  margin-top: 0.1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ylh-color-border-soft);
}

.chores-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.7rem;
  padding: 0.2rem 0.25rem;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: var(--ylh-radius-ticket);
  transition: background .15s ease, color .15s ease;
}

.chores-card__button--primary {
  color: var(--ylh-color-brand);
  padding-inline: 0.55rem;
  background: var(--ylh-color-accent-alpha-18);
}

.chores-card__button--secondary {
  color: var(--ylh-color-text-muted);
}

.chores-section__more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 2.6rem;
  padding: 0.65rem 1rem;
  color: var(--ylh-color-accent);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--ylh-color-brand);
  border-radius: var(--ylh-radius-md);
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}

.chores-section__more-link:hover {
  transform: translateY(-1px);
}

.chores-card__button:hover {
  text-decoration: none;
}

.chores-card__button--primary:hover {
  background: var(--ylh-color-accent-ring-soft);
}

.chores-card__button--secondary:hover {
  color: var(--ylh-color-surface);
  background: var(--ylh-color-provider);
}

.chores-section__more-link:hover {
  text-decoration: none;
  background: var(--ylh-color-brand-hover);
  box-shadow: var(--ylh-shadow-sm);
}

.chores-section__more-link {
  justify-self: center;
  margin-top: 0.25rem;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
  max-width: 68rem;
  margin: 0 auto;
}
.benefit-card {
  padding: 1.5rem;
  background: var(--ylh-color-surface-alt);
  border-radius: var(--ylh-radius-lg);
  border-top: 6px solid var(--ylh-color-accent);
  box-shadow: var(--ylh-shadow-sm);
}
.benefit-card h3 {
  margin: 0 0 0.75rem;
  color: var(--ylh-color-brand);
  font-size: 1.3rem;
  line-height: 1.2;
}
.benefit-card p { margin: 0; color: var(--ylh-color-text-muted); }

.steps {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  background: var(--ylh-color-surface-alt);
  border: 1px solid var(--ylh-color-border);
  border-radius: var(--ylh-radius-md);
  counter-increment: step;
}
.steps li::before {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--ylh-color-accent);
  background: var(--ylh-color-brand);
  border-radius: var(--ylh-radius-pill);
  font-weight: 800;
  content: counter(step);
}
.steps span {
  padding-top: 0.15rem;
  font-weight: 700;
}

/* ---------- Provider & client page shared theming ---------- */
.provider-page .benefits,
.client-page .benefits {
  position: relative;
  overflow: hidden;
  color: var(--ylh-color-surface);
}
.provider-page .benefits {
  background:
    linear-gradient(var(--ylh-color-overlay-dark), var(--ylh-color-overlay-dark)),
    url(/assets/media/carpintero-enfocado.webp) center / cover no-repeat;
}
.client-page .benefits {
  background:
    linear-gradient(var(--ylh-color-overlay-ink), var(--ylh-color-overlay-ink)),
    url(/assets/media/client-browsing-yolohago.webp) center / cover no-repeat;
}
.provider-page .benefits .section-heading .eyebrow {
  color: var(--ylh-color-provider);
}
.client-page .benefits .section-heading .eyebrow {
  color: var(--ylh-color-accent-pale);
}
.provider-page .benefits .section-heading h2,
.client-page .benefits .section-heading h2 {
  color: var(--ylh-color-surface);
}
.provider-page .benefits .section-heading p,
.client-page .benefits .section-heading p {
  color: var(--ylh-color-text-inverse-muted);
}
.provider-page .benefit-grid,
.client-page .benefit-grid {
  gap: 1.25rem;
  counter-reset: benefit;
}
.provider-page .benefit-card,
.client-page .benefit-card {
  position: relative;
  padding: 2rem 1.5rem 1.65rem;
  background: var(--ylh-color-surface-overlay-strong);
  border: 1px solid var(--ylh-color-white-alpha-28);
  border-top: 1px solid var(--ylh-color-white-alpha-28);
  border-radius: var(--ylh-radius-lg);
  box-shadow: var(--ylh-shadow-lg);
  backdrop-filter: blur(6px);
  counter-increment: benefit;
}
.provider-page .benefit-card::before,
.client-page .benefit-card::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 1.1rem;
  color: var(--ylh-color-surface);
  border-radius: var(--ylh-radius-pill);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  content: counter(benefit, decimal-leading-zero);
}
.provider-page .benefit-card::before {
  background: var(--ylh-color-provider);
  box-shadow: var(--ylh-shadow-provider);
}
.client-page .benefit-card::before {
  background: var(--ylh-color-brand);
  box-shadow: var(--ylh-shadow-brand);
}
.provider-page .how-it-works,
.client-page .how-it-works {
  position: relative;
  overflow: hidden;
}
.provider-page .how-it-works {
  background: var(--ylh-color-provider-surface-soft);
}
.client-page .how-it-works {
  background: var(--ylh-color-accent-soft);
}
.provider-page .how-it-works::before,
.client-page .how-it-works::before {
  display: none;
}
.provider-page .how-it-works .section-heading h2 {
  color: var(--ylh-color-provider);
}
.client-page .how-it-works .section-heading h2 {
  color: var(--ylh-color-brand);
}
.provider-page .how-it-works .section-heading,
.provider-page .steps,
.client-page .how-it-works .section-heading,
.client-page .steps {
  position: relative;
  z-index: 1;
}
.provider-page .steps,
.client-page .steps {
  max-width: 54rem;
  gap: 1.15rem;
}
.provider-page .steps li,
.client-page .steps li {
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.25rem;
  padding: 1.25rem;
  background: var(--ylh-color-surface-overlay-soft);
  border-color: var(--ylh-color-border-soft);
  box-shadow: var(--ylh-shadow-card-hover);
}
.provider-page .steps li:not(:last-child)::after,
.client-page .steps li:not(:last-child)::after {
  position: absolute;
  top: 3.35rem;
  bottom: -1.15rem;
  left: 2.25rem;
  border-left: 2px dashed var(--ylh-color-green-alpha-24);
  content: "";
}
.client-page .steps li:not(:last-child)::after {
  border-left-color: var(--ylh-color-brand-alpha-24);
}
.provider-page .steps li::before,
.client-page .steps li::before {
  position: relative;
  z-index: 1;
  width: 2.45rem;
  height: 2.45rem;
  color: var(--ylh-color-surface);
}
.provider-page .steps li::before {
  background: var(--ylh-color-success);
  box-shadow: var(--ylh-shadow-success);
}
.client-page .steps li::before {
  color: var(--ylh-color-accent);
  background: var(--ylh-color-brand);
  box-shadow: var(--ylh-shadow-brand-strong);
}
.provider-page .steps strong,
.client-page .steps strong {
  grid-column: 2;
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ylh-color-brand);
  font-size: 1.05rem;
  line-height: 1.25;
}
.provider-page .steps span,
.client-page .steps span {
  grid-column: 2;
  display: block;
  padding: 0;
  color: var(--ylh-color-text-muted);
  font-weight: 600;
  line-height: 1.45;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ylh-color-text);
  font-weight: 700;
}
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--ylh-color-surface);
  background: var(--ylh-color-success);
  border-radius: var(--ylh-radius-pill);
  content: "✓";
  font-size: 0.85rem;
  font-weight: 900;
}

.story-section__content > p:not(.eyebrow) {
  margin: 0;
  color: var(--ylh-color-text-muted);
}

.faq__list {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin: 0 auto;
}
.faq details {
  padding: 1rem 1.1rem;
  background: var(--ylh-color-surface-alt);
  border: 1px solid var(--ylh-color-brand-alpha-09);
  border-radius: var(--ylh-radius-md);
}
.faq summary {
  color: var(--ylh-color-brand);
  cursor: pointer;
  font-weight: 800;
}
.faq details[open] {
  box-shadow: var(--ylh-shadow-sm);
}
.faq details p {
  margin: 0.75rem 0 0;
  color: var(--ylh-color-text-muted);
}

.final-cta {
  padding: 3.5rem 1.25rem;
  text-align: center;
  background: var(--ylh-color-provider);
}
.final-cta h2 {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--ylh-color-surface);
}
.final-cta p {
  margin: 0 auto 1.25rem;
  color: var(--ylh-color-surface-overlay);
  font-size: 1.05rem;
}
.final-cta .brand-name {
  color: var(--ylh-color-surface);
}
.final-cta .signup {
  max-width: 48rem;
  margin: 0 auto;
}
.final-cta .signup .email-input {
  border-color: var(--ylh-color-surface);
}
.final-cta .signup .phone-input {
  border-color: var(--ylh-color-surface);
}
.final-cta .signup button {
  color: var(--ylh-color-provider);
  background: var(--ylh-color-surface);
}
.final-cta .signup button:hover {
  background: var(--ylh-color-surface);
  filter: brightness(0.96);
}

/* Clientes: same final CTA layout as proveedores; colors only */
.client-page .final-cta {
  background: var(--ylh-color-brand);
}
.client-page .final-cta h2 {
  color: var(--ylh-color-accent);
}
.client-page .final-cta p {
  color: var(--ylh-color-accent-pale);
}
.client-page .final-cta .brand-name {
  color: var(--ylh-color-accent);
}
.client-page .final-cta .signup .email-input {
  border-color: var(--ylh-color-accent);
  background: var(--ylh-color-surface);
}
.client-page .final-cta .signup .phone-input {
  border-color: var(--ylh-color-accent);
}
.client-page .final-cta .signup button {
  color: var(--ylh-color-brand);
  background: var(--ylh-color-accent);
}
.client-page .final-cta .signup button:hover {
  background: var(--ylh-color-accent-cool);
  filter: none;
}

/* ---------- Bottom CTA ---------- */
.bottom-cta {
  padding: 1rem max(0.75rem, env(safe-area-inset-right)) 1rem max(0.75rem, env(safe-area-inset-left));
  background: var(--ylh-color-surface);
  border-top: 1px solid var(--ylh-color-border);
}

.bottom-cta__inner {
  display: grid;
  gap: 0.65rem;
  width: min(100%, 56rem);
  margin: 0 auto;
}

.bottom-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--ylh-tap-target);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  border-radius: var(--ylh-radius-pill);
  transition: transform .08s ease, filter .15s ease, box-shadow .15s ease;
}

.bottom-cta__button:hover {
  transform: translateY(-1px);
  text-decoration: none;
  filter: brightness(1.04);
  box-shadow: var(--ylh-shadow-md);
}

.bottom-cta__button:active {
  transform: translateY(0);
}

.bottom-cta__button--provider {
  color: var(--ylh-color-surface);
  background: var(--ylh-color-provider);
}

.bottom-cta__button--client {
  color: var(--ylh-color-brand);
  background: var(--ylh-color-accent);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 1.75rem 1.25rem;
  text-align: center;
  color: var(--ylh-color-text-muted);
  font-size: 0.9rem;
  background: var(--ylh-color-surface-alt);
  border-top: 1px solid var(--ylh-color-border);
}
.site-footer p { margin: 0.25rem 0; }
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: calc(var(--ylh-tap-target) / 2);
  color: var(--ylh-color-brand);
}
.site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.site-footer__brand-logo {
  width: 5rem;
  height: auto;
}
.site-footer__links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

/* ---------- Thank-you page ---------- */
.thanks {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  text-align: center;
}
.thanks__logo { margin: 0 auto 1.25rem; width: 96px; height: 96px; border-radius: var(--ylh-radius-xl); }
.thanks h1 {
  color: var(--ylh-color-brand);
  font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
  line-height: 1.1;
  margin: 0 0 0.5rem;
}
.thanks > p { color: var(--ylh-color-text-muted); font-size: 1.1rem; }
.thanks__back { margin-top: 2.5rem; }

.referral {
  margin-top: 2.25rem;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(180deg, var(--ylh-color-accent) 0%, var(--ylh-color-accent-pale) 100%);
  border-radius: var(--ylh-radius-lg);
  text-align: left;
  box-shadow: var(--ylh-shadow-md);
}
.referral h2 {
  margin: 0 0 0.35rem;
  color: var(--ylh-color-brand);
  font-size: 1.35rem;
}
.referral > p { color: var(--ylh-color-brand-ink); margin: 0 0 1rem; }

.referral__copy {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.referral__copy input {
  flex: 1;
  min-width: 0;
  min-height: var(--ylh-tap-target);
  padding: 0.5rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-brand);
  border-radius: var(--ylh-radius-md);
  color: var(--ylh-color-text);
}
.referral__copy button {
  flex: 0 0 auto;
  min-height: var(--ylh-tap-target);
  padding: 0 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ylh-color-accent);
  background: var(--ylh-color-brand);
  border: 0;
  border-radius: var(--ylh-radius-md);
  cursor: pointer;
}
.referral__copy button:hover { background: var(--ylh-color-brand-hover); }

.referral__share {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--ylh-tap-target);
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--ylh-radius-md);
  transition: transform .08s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn--primary { background: var(--ylh-color-brand); color: var(--ylh-color-accent); }
.btn--wa { background: var(--ylh-color-whatsapp); color: var(--ylh-color-surface); }
.btn--mail { background: var(--ylh-color-surface); color: var(--ylh-color-brand); border: 2px solid var(--ylh-color-brand); }

/* ---------- Registration form ---------- */
.registration-page {
  min-height: 72vh;
  background: linear-gradient(180deg, var(--ylh-color-accent) 0%, var(--ylh-color-surface-alt) 100%);
}
.registration-page--login {
  min-height: 100svh;
  background: var(--ylh-color-surface);
}
.registration {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}
.registration--login {
  display: grid;
  gap: 0;
  max-width: none;
  min-height: inherit;
  padding: 0;
}
.registration__logo-link {
  display: block;
  width: fit-content;
  margin: 0 auto 1.25rem;
}
.registration__logo-link img {
  width: 96px;
  height: auto;
}
.registration__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.registration__brand img {
  width: 9.5rem;
  height: auto;
}
.registration__back {
  position: relative;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  color: var(--ylh-color-text-muted);
  text-decoration: none;
}
.registration__back::before {
  width: 0.75rem;
  height: 0.75rem;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
.registration__back:hover {
  color: var(--ylh-color-brand);
}
.registration__panel {
  padding: 1.5rem;
  background: var(--ylh-color-surface);
  border-radius: var(--ylh-radius-lg);
  box-shadow: var(--ylh-shadow-md);
}
.registration h1 {
  margin: 0 0 0.75rem;
  color: var(--ylh-color-brand);
  font-size: clamp(1.85rem, 4vw + 1rem, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.registration__panel > p:not(.eyebrow) {
  margin: 0 0 1.35rem;
  color: var(--ylh-color-text-muted);
}
.registration__panel > .form-error {
  margin: 0;
  color: var(--ylh-color-danger);
}
.registration__panel > .form-success {
  margin: 0;
  color: var(--ylh-color-success-text);
}
.registration-page--signup {
  min-height: 100svh;
  background: var(--ylh-color-surface);
}
.registration--signup {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 45rem);
  max-width: none;
  padding: 1rem 1rem 2rem;
}
.registration__panel--signup {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  background: transparent;
  border-radius: var(--ylh-radius-none);
  box-shadow: none;
}
.registration__panel--signup h1 {
  margin-bottom: 0;
  max-width: none;
  color: var(--ylh-color-text);
  font-size: clamp(2rem, 2.5vw + 1.15rem, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.registration__panel--signup > p:not(.eyebrow, .form-error, .form-success) {
  margin: 0;
  max-width: 43rem;
  color: var(--ylh-color-text);
  font-size: 1.05rem;
  line-height: 1.35;
}
.login-showcase {
  position: relative;
  display: grid;
  align-content: end;
  gap: 1.25rem;
  min-height: 36svh;
  overflow: hidden;
  padding: 1.25rem;
  color: var(--ylh-color-text-inverse);
  isolation: isolate;
}
.login-showcase__brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}
.login-showcase__brand img {
  width: 10rem;
  height: auto;
}
.login-showcase__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  min-height: 100%;
  background: var(--ylh-color-surface-neutral);
}
.login-showcase__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, var(--ylh-color-overlay-brand) 0%, transparent 38%),
    linear-gradient(180deg, transparent 20%, var(--ylh-color-overlay-brand-strong) 100%);
}
.login-showcase__media picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.login-showcase__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.login-showcase__pill {
  position: absolute;
  z-index: 1;
  display: none;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  color: var(--ylh-color-brand);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--ylh-color-surface-overlay-strong);
  border: 1px solid var(--ylh-color-white-alpha-70);
  border-radius: var(--ylh-radius-pill);
  box-shadow: var(--ylh-shadow-sm);
}
.login-showcase__pill--top {
  top: 0.85rem;
  right: 0.85rem;
}
.login-showcase__pill--bottom {
  left: 0.85rem;
  bottom: 0.85rem;
}
.login-showcase__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.65rem;
}
.login-showcase__copy .eyebrow {
  margin: 0;
}
.login-showcase__copy h1 {
  margin: 0;
  max-width: 11ch;
  color: var(--ylh-color-text-inverse);
  font-size: 2.45rem;
  line-height: 1.02;
  letter-spacing: 0;
}
.login-showcase__copy p:not(.eyebrow) {
  margin: 0;
  max-width: 36rem;
  color: var(--ylh-color-text-inverse-muted);
  font-size: 1.02rem;
  font-weight: 650;
}
.login-panel {
  display: grid;
  gap: 0.85rem;
  align-self: center;
  width: min(100%, 29rem);
  justify-self: center;
  padding: 1.5rem 1.25rem 2rem;
  background: transparent;
  border: 0;
  border-radius: var(--ylh-radius-none);
  box-shadow: none;
}
.login-panel__header {
  display: grid;
  gap: 0.35rem;
}
.login-panel__header .eyebrow,
.login-panel__header p,
.login-panel__header h2 {
  margin: 0;
}
.login-panel__header h2 {
  color: var(--ylh-color-brand);
  font-size: 1.65rem;
  line-height: 1.12;
  letter-spacing: 0;
}
.login-panel__header p {
  color: var(--ylh-color-text-muted);
  font-weight: 650;
}
.login-panel__recover {
  margin: -0.15rem 0 0;
  text-align: right;
  font-size: 0.92rem;
  font-weight: 800;
}
.login-panel__recover a,
.login-panel__signup a {
  display: inline-flex;
  align-items: center;
  min-height: calc(var(--ylh-tap-target) / 2);
  text-underline-offset: 0.18em;
}
.login-social {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--ylh-color-border-soft);
}
.login-social__title {
  margin: 0;
  color: var(--ylh-color-text-muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}
.login-panel__signup {
  margin: 0;
  text-align: right;
  font-size: 0.95rem;
  font-weight: 900;
}
.registration-form {
  display: grid;
  gap: 0.85rem;
}
.registration-form__section {
  display: grid;
  gap: 0.65rem;
}
.registration-form__section-title {
  margin: 0;
  color: var(--ylh-color-text);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.2;
}
.registration-form__row {
  display: grid;
  gap: 1rem;
}
.registration-form__row.registration-form__row--stacked {
  grid-template-columns: minmax(0, 1fr);
}
.registration-form__field {
  display: grid;
  gap: 0.4rem;
}
.registration-form__field-label {
  margin: 0;
}
.registration-form__birth-date {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 0.45rem;
}
.registration-form__field > label,
.registration-form__field-label,
.registration-form__legend {
  color: var(--ylh-color-brand);
  font-weight: 800;
}
.registration-form input:not([type="radio"], [type="checkbox"], .phone-input__number, .email-input__field),
.registration-form select,
.registration-form textarea {
  width: 100%;
  min-height: var(--ylh-tap-target);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ylh-color-text);
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-border-strong);
  border-radius: var(--ylh-radius-md);
}
.registration-form input:not([type="radio"], [type="checkbox"], .phone-input__number, .email-input__field):focus,
.registration-form select:focus,
.registration-form textarea:focus {
  outline: none;
  border-color: var(--ylh-color-focus);
  box-shadow: var(--ylh-shadow-focus-subtle);
}
.registration-form textarea {
  min-height: 7rem;
  resize: vertical;
}
.registration-form .phone-input,
.registration-form .email-input {
  border-color: var(--ylh-color-border-strong);
}
.registration-form__answered {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--ylh-color-surface-alt);
  border: 2px solid var(--ylh-color-brand-alpha-14);
  border-radius: var(--ylh-radius-md);
}
.registration-form__answered-label {
  margin: 0;
  color: var(--ylh-color-brand);
  font-size: 0.88rem;
  font-weight: 800;
}
.registration-form__answered-value {
  margin: 0.15rem 0 0;
  color: var(--ylh-color-text);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.registration-form__answered-value strong {
  display: block;
  color: var(--ylh-color-brand);
  font-size: 1.08rem;
}
.registration-form__switch {
  width: fit-content;
  font-weight: 800;
  text-underline-offset: 0.18em;
}
.registration-form__answered--audience {
  gap: 0.3rem;
  padding: 0;
  color: var(--ylh-color-text-muted);
  background: transparent;
  border: 0;
  border-radius: var(--ylh-radius-none);
}
.registration-form__answered-summary {
  margin: 0;
  color: var(--ylh-color-text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}
.registration-form__answered-summary strong {
  color: var(--ylh-color-text);
  font-weight: 800;
}
.registration-form__answered-summary span::before {
  content: " · ";
}
.registration-form__answered--audience .registration-form__switch {
  color: var(--ylh-color-text-muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
}
.registration-form__answered--audience .registration-form__switch:hover {
  color: var(--ylh-color-brand);
}
.registration-form__answered-field {
  gap: 0.2rem;
}
.registration-form__answered-field .registration-form__answered-label {
  color: var(--ylh-color-text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.registration-form__answered-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--ylh-radius-none);
}
.registration-form__answered-field .registration-form__answered-value {
  margin: 0;
  color: var(--ylh-color-text);
  font-size: 0.95rem;
  font-weight: 700;
}
.registration-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ylh-color-brand);
  text-decoration: none;
}
.registration-form__social {
  margin: 0 0 1rem;
}
.registration-form__button--google {
  width: 100%;
  min-height: var(--ylh-tap-target);
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  color: var(--ylh-color-text);
  font-weight: 800;
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-border-strong);
  border-radius: var(--ylh-radius-md);
  box-shadow: var(--ylh-shadow-sm);
  transition: transform .08s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.registration-form__button--google:hover {
  transform: translateY(-1px);
  background: var(--ylh-color-surface-raised);
  border-color: var(--ylh-color-border-active);
  box-shadow: var(--ylh-shadow-md);
}
.registration-form__button--google:active {
  transform: translateY(0);
}
.registration-form__button--google:focus-visible,
.registration-form__button--icon:focus-visible,
.registration-form__secondary-action:focus-visible,
.registration__back:focus-visible,
.top-ctas__button:focus-visible,
.audience-hero__legal a:focus-visible,
.login-panel__recover a:focus-visible,
.login-panel__signup a:focus-visible {
  outline: var(--ylh-focus-ring-warm);
  outline-offset: 3px;
}
.registration-form__google-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}
.registration-form__button--icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-border-medium);
  border-radius: var(--ylh-radius-pill);
  box-shadow: var(--ylh-shadow-sm);
  transition: transform .08s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.registration-form__button--icon:hover {
  transform: translateY(-1px);
  background: var(--ylh-color-accent-softer);
  border-color: var(--ylh-color-brand);
  box-shadow: var(--ylh-shadow-md);
}
.registration-form__button--icon:active {
  transform: translateY(0);
}
.registration-form__answered-field .registration-form__button--icon {
  width: auto;
  height: auto;
  padding: 0.1rem;
  color: var(--ylh-color-text-muted);
  background: transparent;
  border: 0;
  border-radius: var(--ylh-radius-none);
  box-shadow: none;
}
.registration-form__answered-field .registration-form__button--icon:hover {
  color: var(--ylh-color-brand);
  background: transparent;
  box-shadow: none;
}
.registration-form__fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
}
.registration-form__legend {
  grid-column: 1 / -1;
  padding: 0;
}
.registration-form__choice {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--ylh-tap-target);
  padding: 0.85rem 1rem;
  color: var(--ylh-color-text);
  text-align: center;
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-border-strong);
  border-radius: var(--ylh-radius-md);
  cursor: pointer;
  box-shadow: var(--ylh-shadow-sm);
  transition: transform .08s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.registration-form__choice:has(input:checked) {
  color: var(--ylh-color-accent);
  background: var(--ylh-color-brand);
  border-color: var(--ylh-color-brand);
  box-shadow: var(--ylh-shadow-md);
}
.registration-form__choice:focus-within {
  outline: var(--ylh-focus-ring-warm);
  outline-offset: 2px;
}
.registration-form__choice:hover {
  transform: translateY(-1px);
}
.registration-form__choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.registration-form__choice strong {
  display: block;
  color: var(--ylh-color-brand);
}
.registration-form__choice:has(input:checked) strong {
  color: inherit;
}
.registration-form__legal {
  margin: 0;
  color: var(--ylh-color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.registration-form__legal a {
  display: inline-flex;
  align-items: center;
  min-height: calc(var(--ylh-tap-target) / 2);
}
.registration-form__beta {
  display: grid;
  gap: 0.45rem;
}
.registration-form__checkbox {
  display: inline-flex;
  gap: 0.65rem;
  align-items: flex-start;
  width: fit-content;
  color: var(--ylh-color-brand);
  font-weight: 800;
  cursor: pointer;
}
.registration-form__checkbox input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  accent-color: var(--ylh-color-brand);
  flex: 0 0 auto;
}
.registration-form__checkbox-note {
  display: none;
  margin: 0;
  padding: 0.65rem 0.85rem;
  color: var(--ylh-color-text);
  font-size: 0.92rem;
  line-height: 1.5;
  background: var(--ylh-color-surface-alt);
  border-left: 4px solid var(--ylh-color-brand);
  border-radius: var(--ylh-radius-md);
}
.registration-form__beta:has(input:checked) .registration-form__checkbox-note {
  display: block;
}
.registration-form button {
  min-height: var(--ylh-tap-target);
  margin-top: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ylh-color-accent);
  background: var(--ylh-color-brand);
  border: 0;
  border-radius: var(--ylh-radius-md);
  cursor: pointer;
  box-shadow: var(--ylh-shadow-md);
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}
.registration-form button:hover {
  transform: translateY(-1px);
  background: var(--ylh-color-brand-hover);
}
.registration-form button:active {
  transform: translateY(0);
}
.registration-form button:focus-visible,
.audience-hero__form button:focus-visible,
.signup button:focus-visible,
.service-request__field button:focus-visible {
  outline: var(--ylh-focus-ring-warm);
  outline-offset: 3px;
}
.registration-form button:disabled,
.registration-form button[aria-disabled="true"],
.audience-hero__form button:disabled,
.audience-hero__form button[aria-disabled="true"],
.signup button:disabled,
.signup button[aria-disabled="true"] {
  color: var(--ylh-color-text-disabled);
  background: var(--ylh-color-surface-alt);
  border-color: var(--ylh-color-border-disabled);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.registration-form__secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--ylh-tap-target);
  padding: 0.8rem 1.25rem;
  color: var(--ylh-color-text);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-border-control);
  border-radius: var(--ylh-radius-pill);
  transition: transform .08s ease, border-color .15s ease, background .15s ease;
}
.registration-form__secondary-action:hover {
  transform: translateY(-1px);
  background: var(--ylh-color-surface-raised);
  border-color: var(--ylh-color-border-active);
}
.registration--signup .registration-form {
  gap: 0.85rem;
  margin-top: 0.2rem;
}
.registration--signup .registration-form__field {
  gap: 0.5rem;
}
.registration--signup .registration-form__field > label,
.registration--signup .registration-form__field-label,
.registration--signup .registration-form__legend {
  color: var(--ylh-color-text);
  font-size: 1.05rem;
  font-weight: 850;
}
.registration--signup .registration-form input:not([type="radio"], [type="checkbox"], .phone-input__number, .email-input__field),
.registration--signup .registration-form select,
.registration--signup .registration-form textarea,
.registration--signup .registration-form .phone-input,
.registration--signup .registration-form .email-input {
  min-height: var(--ylh-tap-target);
  border: 2px solid var(--ylh-color-border-control);
  border-radius: var(--ylh-radius-md);
  box-shadow: none;
}
.registration--signup .registration-form input:not([type="radio"], [type="checkbox"], .phone-input__number, .email-input__field),
.registration--signup .registration-form select,
.registration--signup .registration-form textarea {
  padding: 0.75rem 0.9rem;
}
.registration--signup .registration-form .email-input {
  grid-template-columns: minmax(0, 1fr);
  padding: 0.75rem 0.9rem;
}
.registration--signup .email-input__icon {
  display: none;
}
.registration--signup .registration-form .phone-input {
  padding: 0.55rem 0.9rem;
}
.registration--signup .registration-form input:not([type="radio"], [type="checkbox"], .phone-input__number, .email-input__field):focus,
.registration--signup .registration-form select:focus,
.registration--signup .registration-form textarea:focus,
.registration--signup .registration-form .phone-input:focus-within,
.registration--signup .registration-form .email-input:focus-within {
  border-color: var(--ylh-color-accent-strong);
  box-shadow: var(--ylh-shadow-focus-subtle);
}
.registration--signup .registration-form__fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.registration--signup .registration-form__choice {
  min-height: var(--ylh-tap-target);
  border-width: 2px;
  border-color: var(--ylh-color-border-control);
  border-radius: var(--ylh-radius-md);
  box-shadow: none;
}
.registration--signup .registration-form__answered--audience {
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--ylh-color-border-control);
  border-radius: var(--ylh-radius-md);
}
.registration--signup .registration-form__legal {
  font-size: 0.9rem;
}
.registration--signup .registration-form button {
  width: 100%;
  min-height: var(--ylh-tap-target);
  border-radius: var(--ylh-radius-pill);
}

/* ---------- Contact page ---------- */
.contact {
  max-width: 48rem;
}
.contact__panel {
  margin-top: 1rem;
}
.contact-form {
  margin-top: 1.35rem;
}
.contact-captcha {
  padding: 0.9rem 1rem;
  background: var(--ylh-color-surface-alt);
  border: 2px solid var(--ylh-color-border-muted);
  border-radius: var(--ylh-radius-md);
}
.contact-captcha__hint {
  margin: 0;
  color: var(--ylh-color-text-muted);
  font-size: 0.9rem;
}

/* ---------- Pricing page ---------- */
.pricing-hero {
  background: linear-gradient(165deg, var(--ylh-color-accent-softer) 0%, var(--ylh-color-accent) 42%, var(--ylh-color-accent-paler) 100%);
  color: var(--ylh-color-brand);
  border-bottom: 1px solid var(--ylh-color-border);
}

.pricing-hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "intro"
    "video"
    "campaign";
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem max(1rem, env(safe-area-inset-left)) 2.25rem max(1rem, env(safe-area-inset-right));
}

.pricing-hero--standard .pricing-hero__layout {
  grid-template-columns: 1fr;
  grid-template-areas: "intro";
  max-width: 52rem;
  padding-block: 3.5rem;
}

.pricing-hero__intro {
  grid-area: intro;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  text-align: center;
  width: min(100%, 42rem);
  margin: 0 auto;
}

.pricing-hero__video-col {
  grid-area: video;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
  min-height: 0;
}

.pricing-hero__title {
  margin: 0;
  font-size: clamp(1.65rem, 4vw + 1rem, 2.75rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ylh-color-brand-ink);
  text-align: center;
}

.pricing-hero__lede {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(0.95rem, 0.5vw + 0.88rem, 1.08rem);
  line-height: 1.5;
  color: var(--ylh-color-brand-ink);
  text-align: center;
}

.pricing-hero__actions {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.pricing-hero__actions .story-section__button {
  margin-top: 0;
}

.pricing-hero__actions p {
  margin: 0;
  color: var(--ylh-color-brand-ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.pricing-hero__video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  flex-shrink: 0;
  border-radius: var(--ylh-radius-lg);
  background:
    linear-gradient(145deg, var(--ylh-color-border-muted) 0%, var(--ylh-color-brand-alpha-04) 50%, var(--ylh-color-white-alpha-35) 100%),
    repeating-linear-gradient(
      -12deg,
      var(--ylh-color-white-alpha-06) 0 10px,
      var(--ylh-color-brand-alpha-04) 10px 20px
    );
  border: 2px dashed var(--ylh-color-brand-alpha-22);
  box-shadow: var(--ylh-shadow-md);
  display: grid;
  place-items: center;
}

.pricing-hero__video-placeholder-label {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ylh-color-brand);
  background: var(--ylh-color-surface-overlay-muted);
  border-radius: var(--ylh-radius-pill);
}

.pricing-hero__campaign {
  grid-area: campaign;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--ylh-color-surface);
  border-radius: var(--ylh-radius-lg);
  border: 1px solid var(--ylh-color-border-soft);
  box-shadow: var(--ylh-shadow-md);
  overflow: hidden;
  min-width: 0;
}

.pricing-hero__ribbon {
  margin: 0;
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ylh-color-surface);
  background: linear-gradient(90deg, var(--ylh-color-brand) 0%, var(--ylh-color-brand-active) 100%);
}

.pricing-hero__campaign-body {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.2rem 1.35rem;
  justify-items: stretch;
  flex: 1;
  min-height: 0;
}

.pricing-hero__progress-wrap {
  display: grid;
  gap: 0.5rem;
}

.pricing-hero__progress {
  height: 0.55rem;
  border-radius: var(--ylh-radius-pill);
  background: var(--ylh-color-border-soft);
  overflow: hidden;
}

.pricing-hero__progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ylh-color-brand) 0%, var(--ylh-color-accent-link) 100%);
  transition: width 0.4s ease;
}

.pricing-hero__backers {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--ylh-color-text-muted);
}

.pricing-hero__backers strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--ylh-color-text);
  letter-spacing: -0.02em;
}

.pricing-hero__countdown {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--ylh-radius-md);
  background: var(--ylh-color-surface-alt);
  border: 1px solid var(--ylh-color-border);
}

.pricing-hero__countdown-value {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ylh-color-brand);
}

.pricing-hero__countdown-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ylh-color-brand-ink);
}

.pricing-hero__countdown-label--solo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ylh-color-brand-ink);
}

.pricing-hero__buy {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.pricing-hero__buy.story-section__button {
  justify-self: stretch;
  margin-top: 0;
}

.pricing-hero__learn {
  justify-self: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ylh-color-brand);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.pricing-hero__learn:hover {
  color: var(--ylh-color-brand-ink);
}

.pricing-section {
  padding: 3.5rem 1.25rem;
}

.pricing-section--surface {
  background: var(--ylh-color-surface);
}

.pricing-section--soft {
  background: var(--ylh-color-surface-alt);
}

#paquete-inicial {
  scroll-margin-top: 5.5rem;
}

#verificacion {
  scroll-margin-top: 5.5rem;
}

#paquete-fundadores {
  scroll-margin-top: 5.5rem;
}

.pricing-section .section-heading {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.pricing-section .section-heading p + p {
  margin-top: 1rem;
}

.starter-kit-offer {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 64rem;
  margin: 0 auto;
}

.starter-kit-offer .section-heading {
  align-self: center;
  margin-bottom: 0;
}

.pricing-promo-banner {
  padding: 1.25rem max(1rem, env(safe-area-inset-left)) 0 max(1rem, env(safe-area-inset-right));
  background: var(--ylh-color-surface);
}

.pricing-promo-banner__inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  max-width: 62rem;
  margin: 0 auto;
  padding: 1.35rem;
  color: var(--ylh-color-brand-ink);
  background: linear-gradient(135deg, var(--ylh-color-surface) 0%, var(--ylh-color-accent-wash) 100%);
  border: 1px solid var(--ylh-color-border-muted);
  border-radius: var(--ylh-radius-lg);
  box-shadow: var(--ylh-shadow-sm);
}

.pricing-promo-banner__inner h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2vw + 0.9rem, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.pricing-promo-banner__inner p:last-child {
  margin: 0;
  color: var(--ylh-color-text-muted);
}

.pricing-promo-banner__button {
  justify-self: start;
  margin-top: 0;
}

/* ---------- Promociones ---------- */
.promociones-page {
  background: var(--ylh-color-surface-alt);
}

.promociones-placeholder {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 12rem);
  padding: 4rem max(1rem, env(safe-area-inset-left)) 4.5rem max(1rem, env(safe-area-inset-right));
  background: linear-gradient(165deg, var(--ylh-color-accent-softer) 0%, var(--ylh-color-surface-alt) 52%, var(--ylh-color-surface) 100%);
}

.promociones-placeholder__card {
  width: min(100%, 42rem);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: var(--ylh-color-surface);
  border: 1px solid var(--ylh-color-border-soft);
  border-radius: var(--ylh-radius-lg);
  box-shadow: var(--ylh-shadow-md);
}

.promociones-placeholder__card h1 {
  margin: 0;
  color: var(--ylh-color-brand-ink);
  font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.starter-kit-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 52rem;
  margin: 0 auto 2rem;
}

.starter-kit-grid--single {
  max-width: 28rem;
}

.productivity-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}

.kit-card {
  padding: 1.5rem 1.35rem;
  background: var(--ylh-color-surface);
  border-radius: var(--ylh-radius-lg);
  border: 1px solid var(--ylh-color-border-soft);
  box-shadow: var(--ylh-shadow-sm);
}

.kit-card--starter {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.kit-card--tool {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  overflow: hidden;
  border-color: var(--ylh-color-brand-alpha-14);
  box-shadow: var(--ylh-shadow-md);
}

.kit-card--tool::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--ylh-color-brand) 0%, var(--ylh-color-accent) 100%);
  content: "";
}

.kit-card__tool-kicker {
  display: inline-flex;
  align-self: start;
  margin: 0 0 0.1rem;
  padding: 0.28rem 0.55rem;
  color: var(--ylh-color-brand-ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--ylh-color-accent-alpha-18);
  border: 1px solid var(--ylh-color-border);
  border-radius: var(--ylh-radius-pill);
}

.kit-card h3 {
  margin: 0 0 0.5rem;
  color: var(--ylh-color-brand);
  font-size: 1.35rem;
  line-height: 1.15;
}

.kit-card__price {
  margin: 0 0 0.65rem;
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ylh-color-text);
}

.kit-card__price--with-comparison {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.kit-card__price--monthly {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--ylh-color-brand-alpha-15);
}

.kit-card__billing-note {
  margin: -0.35rem 0 0;
  color: var(--ylh-color-text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.kit-card__original-price {
  color: var(--ylh-color-text-muted);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration-thickness: 0.12em;
}

.kit-card__price-list {
  display: grid;
  margin-top: 1rem;
  border-top: 1px dashed var(--ylh-color-brand-alpha-15);
}

.kit-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.45rem 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ylh-color-border);
}

.kit-card__price-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.kit-card__price-credits {
  font-weight: 800;
  color: var(--ylh-color-brand);
}

.kit-card__price-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ylh-color-text);
  letter-spacing: -0.02em;
}

.kit-card__detail,
.kit-card__note {
  margin: 0;
  color: var(--ylh-color-text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.kit-card__benefits {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 2rem;
  padding-left: 0;
  color: var(--ylh-color-text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
  list-style: none;
}

.kit-card__benefits--divided {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--ylh-color-brand-alpha-15);
}

.kit-card__benefits li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
}

.kit-card__benefits li::before {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25em;
  background: url("/assets/icons/checkmark-icon.svg") center / contain no-repeat;
  content: "";
}

.kit-card__cta.story-section__button {
  justify-content: center;
  margin-top: 0;
}

.kit-card__note {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--ylh-color-brand-alpha-15);
}

.kit-card--founder {
  border-color: var(--ylh-color-border-strong);
  box-shadow: var(--ylh-shadow-md);
  background: linear-gradient(165deg, var(--ylh-color-surface) 0%, var(--ylh-color-surface-cool) 100%);
}

.kit-card__badge {
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ylh-color-brand);
  background: var(--ylh-color-accent-ring);
  border-radius: var(--ylh-radius-pill);
}

.pricing-section__cta {
  margin: 0;
  text-align: center;
}

.pricing-section__cta .story-section__button {
  justify-self: center;
}

/* ---------- Jobs ---------- */
.jobs-page {
  background: var(--ylh-color-surface-alt);
}

.jobs-hero .pricing-hero__layout {
  grid-template-areas:
    "intro"
    "status";
  max-width: 68rem;
}

.jobs-hero__status-card {
  grid-area: status;
  display: grid;
  gap: 0.4rem;
  align-content: center;
  justify-items: center;
  width: min(100%, 22rem);
  margin: 0 auto;
  padding: 1.5rem;
  text-align: center;
  background: var(--ylh-color-surface);
  border: 1px solid var(--ylh-color-border-soft);
  border-radius: var(--ylh-radius-lg);
  box-shadow: var(--ylh-shadow-md);
}

.jobs-hero__status-kicker,
.jobs-empty__badge {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ylh-color-brand);
}

.jobs-hero__status-number {
  margin: 0;
  font-size: clamp(3.5rem, 12vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--ylh-color-brand-ink);
}

.jobs-hero__status-copy {
  margin: 0;
  color: var(--ylh-color-text-muted);
  font-weight: 700;
}

.jobs-board {
  padding: 3.5rem 1.25rem;
  background: var(--ylh-color-surface-alt);
}

.jobs-board__shell {
  max-width: 62rem;
  margin: 0 auto;
  background: var(--ylh-color-surface);
  border: 1px solid var(--ylh-color-border-soft);
  border-radius: var(--ylh-radius-lg);
  box-shadow: var(--ylh-shadow-md);
  overflow: hidden;
}

.jobs-board__toolbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.75rem;
  align-items: end;
  padding: 1rem;
  background: linear-gradient(180deg, var(--ylh-color-surface) 0%, var(--ylh-color-surface-alt) 100%);
  border-bottom: 1px solid var(--ylh-color-border);
}

.jobs-board__toolbar label {
  display: grid;
  gap: 0.35rem;
}

.jobs-board__toolbar span {
  display: block;
  color: var(--ylh-color-brand-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jobs-board__toolbar select {
  width: 100%;
  min-height: var(--ylh-tap-target);
  padding: 0.72rem 0.9rem;
  color: var(--ylh-color-text);
  font: inherit;
  font-weight: 700;
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-border-strong);
  border-radius: var(--ylh-radius-md);
}

.jobs-board__toolbar select:focus {
  outline: none;
  border-color: var(--ylh-color-focus);
  box-shadow: var(--ylh-shadow-focus-subtle);
}

.jobs-board__toolbar button {
  min-height: var(--ylh-tap-target);
  padding: 0.8rem 1.1rem;
  color: var(--ylh-color-accent);
  font: inherit;
  font-weight: 900;
  background: var(--ylh-color-brand);
  border: 0;
  border-radius: var(--ylh-radius-md);
  cursor: pointer;
  box-shadow: var(--ylh-shadow-md);
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}

.jobs-board__toolbar button:hover {
  transform: translateY(-1px);
  background: var(--ylh-color-brand-hover);
}

.jobs-board__toolbar button:active {
  transform: translateY(0);
}

.jobs-empty {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  padding: clamp(2rem, 6vw, 4rem) 1.25rem;
  text-align: center;
}

.jobs-empty h3 {
  margin: 0;
  color: var(--ylh-color-brand-ink);
  font-size: clamp(1.35rem, 2vw + 1rem, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.jobs-empty p:not(.jobs-empty__badge) {
  max-width: 34rem;
  margin: 0;
  color: var(--ylh-color-text-muted);
}

.jobs-interest {
  padding: 0 1.25rem 3.5rem;
  background: var(--ylh-color-surface-alt);
}

.jobs-interest__panel {
  display: grid;
  gap: 1.25rem;
  max-width: 62rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--ylh-color-surface);
  border: 1px solid var(--ylh-color-border-soft);
  border-radius: var(--ylh-radius-lg);
  box-shadow: var(--ylh-shadow-md);
}

.jobs-interest__intro {
  display: grid;
  gap: 0.55rem;
}

.jobs-interest__intro h2 {
  margin: 0;
  color: var(--ylh-color-brand-ink);
  font-size: clamp(1.55rem, 3vw + 1rem, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.jobs-interest__intro p:not(.eyebrow) {
  margin: 0;
  color: var(--ylh-color-text-muted);
}

.jobs-interest__notice {
  margin: 0;
}

.jobs-interest__form select {
  width: 100%;
  min-height: var(--ylh-tap-target);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ylh-color-text);
  background: var(--ylh-color-surface);
  border: 2px solid var(--ylh-color-border-strong);
  border-radius: var(--ylh-radius-md);
}

.jobs-interest__form select:focus {
  outline: none;
  border-color: var(--ylh-color-focus);
  box-shadow: var(--ylh-shadow-focus-subtle);
}

.jobs-interest__file-field input[type="file"] {
  padding: 0.65rem;
}

.jobs-interest__hint {
  margin: 0;
  color: var(--ylh-color-text-muted);
  font-size: 0.9rem;
}

.jobs-values__grid {
  display: grid;
  gap: 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}

/* ---------- Tienda ---------- */
.tienda-hero {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--ylh-color-border-muted);
}

.tienda-hero__head {
  width: 100%;
  padding: 1.35rem max(1rem, env(safe-area-inset-left)) 1.5rem max(1rem, env(safe-area-inset-right));
  background: linear-gradient(180deg, var(--ylh-color-surface-alt) 0%, var(--ylh-color-surface) 100%);
}

.tienda-hero__intro {
  display: grid;
  gap: 1rem;
  justify-items: center;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.tienda-hero__title {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(1.65rem, 4vw + 1rem, 2.5rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ylh-color-brand-ink);
}

.tienda-hero__intro .story-section__button {
  justify-self: center;
  margin-top: 0;
}

.tienda-hero__visual {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 21 / 10;
  background: var(--ylh-color-brand-alpha-06);
}

.tienda-hero__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tienda-popular {
  padding: 3rem 1.25rem 4rem;
  background: var(--ylh-color-surface-alt);
}

.tienda-popular__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .tienda-popular__grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 11rem), 1fr));
    gap: 1.25rem;
  }
}

.tienda-card {
  display: flex;
  flex-direction: column;
  background: var(--ylh-color-surface);
  border-radius: var(--ylh-radius-lg);
  box-shadow: var(--ylh-shadow-sm);
  border: 1px solid var(--ylh-color-border);
  overflow: hidden;
  min-height: 0;
}

.tienda-card__media {
  position: relative;
  aspect-ratio: 10 / 16;
  background: var(--ylh-color-brand-alpha-06);
}

.tienda-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tienda-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  padding: 1rem 1rem 1.15rem;
  min-height: 0;
}

.tienda-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ylh-color-brand-ink);
}

.tienda-card__price {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ylh-color-brand);
}

.tienda-card__buy {
  margin-top: auto;
  width: 100%;
  justify-self: stretch;
  text-align: center;
}

/* ---------- Desktop refinements ---------- */
@media (min-width: 768px) {
  .site-header { padding: 1.25rem 2rem; }
  .top-ctas {
    position: absolute;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    z-index: 20;
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .hero {
    padding: 2rem 1rem;
  }
  .hero__media { order: 2; }
  .hero__media img { aspect-ratio: 4 / 3; }
  .signup { flex-direction: row; }
  .signup input[type="email"],
  .signup .phone-input,
  .signup .email-input { flex: 1; }
  .signup button { flex: 0 0 auto; }

  .registration-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration--login {
    padding: 0;
  }

  .login-showcase {
    min-height: 58svh;
    padding: 2.5rem;
  }

  .login-showcase__copy h1 {
    font-size: 3.15rem;
  }

  .login-showcase__pill {
    display: inline-flex;
  }

  .login-panel {
    padding: 3rem 2rem;
  }

  .registration-form__answered--audience {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .audience-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .audience-hero__content {
    justify-self: end;
    padding: 4rem 3rem;
  }

  .audience-hero__media {
    min-height: 100svh;
  }

  .social-proof-bar {
    flex-wrap: nowrap;
    padding: 0.55rem 2rem;
  }

  .social-proof-bar__item + .social-proof-bar__item {
    padding-left: 1rem;
    border-left: 1px solid var(--ylh-color-border-medium);
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .starter-kit-offer {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
    gap: 2.5rem;
  }

  .kit-card__cta.story-section__button {
    margin-top: auto;
  }

  .starter-kit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .starter-kit-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-section {
    padding: 5rem 2.5rem;
  }

  .pricing-promo-banner {
    padding: 1.75rem 2.5rem 0;
  }

  .pricing-promo-banner__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1.5rem 1.75rem;
  }

  .pricing-hero__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 22rem);
    grid-template-areas:
      "intro intro"
      "video campaign";
    align-items: stretch;
    gap: 1.35rem 0.85rem;
    padding: 2rem max(1.5rem, env(safe-area-inset-left)) 2.75rem max(1.5rem, env(safe-area-inset-right));
  }

  .pricing-hero__video-col {
    height: 100%;
    min-height: 0;
  }

  .pricing-hero__campaign {
    height: 100%;
    min-height: 0;
  }

  .pricing-hero__campaign-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-height: 0;
  }

  .pricing-hero__buy {
    margin-top: auto;
  }

  .pricing-hero__video-placeholder {
    max-width: none;
  }

  .jobs-hero .pricing-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
    grid-template-areas: "intro status";
    align-items: center;
  }

  .jobs-hero__intro {
    justify-items: start;
    margin: 0;
    text-align: left;
  }

  .jobs-hero__intro .pricing-hero__title,
  .jobs-hero__intro .pricing-hero__lede {
    text-align: left;
  }

  .jobs-hero__status-card {
    justify-self: end;
  }

  .jobs-board {
    padding: 5rem 2.5rem;
  }

  .jobs-interest {
    padding: 0 2.5rem 5rem;
  }

  .jobs-values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .join-options,
  .benefits,
  .how-it-works,
  .faq {
    padding: 5rem 2.5rem;
  }

  .join-options__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .story-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    padding: 5rem 2.5rem;
  }
  .story-section--edge-media {
    --story-section-padding-block: 5rem;
    --story-section-padding-inline: 2.5rem;

    align-items: stretch;
    padding: 0;
  }
  .story-section__content {
    justify-self: center;
  }
  .story-section--media-left .story-section__content {
    order: 2;
  }
  .story-section--edge-media .story-section__media::before,
  .story-section--edge-media .story-section__media:first-child::before,
  .story-section--edge-media .story-section__media:not(:first-child)::before {
    inset: 0 auto 0 0;
    width: var(--story-section-wedge-size);
    height: auto;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
  .story-section--edge-media.story-section--media-left .story-section__media::before {
    inset: 0 0 0 auto;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }
  .story-section--edge-media.story-section--wedge-left .story-section__media::before {
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
  .story-section--edge-media.story-section--wedge-right .story-section__media::before {
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
  .story-section--edge-media.story-section--media-left.story-section--wedge-left .story-section__media::before {
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  .story-section--edge-media.story-section--media-left.story-section--wedge-right .story-section__media::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }

  .chores-section {
    padding: 5rem 2.5rem;
  }
  .chores-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    max-width: 64rem;
  }

  .provider-page .steps,
  .client-page .steps {
    grid-template-columns: minmax(0, 1fr);
    max-width: 54rem;
  }

  .final-cta { padding: 5rem 2rem; }
  .final-cta .signup { flex-direction: row; }

  .bottom-cta {
    padding: 0.85rem 1.5rem;
  }
  .bottom-cta__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bottom-cta__button {
    font-size: 1rem;
  }

  .referral__share { flex-direction: row; }
  .referral__share .btn { flex: 1; }
}

@media (min-width: 900px) {
  .registration--login {
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
  }

  .login-showcase {
    align-self: stretch;
    align-content: end;
    min-height: 100svh;
    padding: 3rem;
  }

  .login-showcase__copy h1 {
    font-size: 3.55rem;
  }

  .login-showcase__copy p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .login-panel {
    padding: 4rem 3rem;
  }
}

@media (min-width: 1100px) {
  .hero { padding: 4.5rem 4rem 5rem; gap: 4rem; }
  .join-options,
  .story-section,
  .chores-section,
  .benefits,
  .how-it-works,
  .faq,
  .pricing-section { padding: 6rem 4rem; }
  .story-section--edge-media {
    --story-section-padding-block: 6rem;
    --story-section-padding-inline: 4rem;

    padding: 0;
  }
  .provider-page .story-section,
  .client-page .story-section {
    padding: 6rem max(4rem, calc((100vw - 1200px) / 2));
  }
  .provider-page .story-section--edge-media,
  .client-page .story-section--edge-media {
    --story-section-padding-inline: max(4rem, calc((100vw - 1200px) / 2));

    padding: 0;
  }
  .chores-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .chores-card--desktop-only {
    display: grid;
  }
}

/* ---------- 404 page ---------- */
.not-found-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, var(--ylh-color-accent-alpha-18), var(--ylh-color-focus-alpha-14) 48%, var(--ylh-color-provider-alpha-10)),
    var(--ylh-color-surface);
}

.not-found {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2rem);
  width: min(100%, 74rem);
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem) max(1rem, env(safe-area-inset-left)) clamp(2.25rem, 7vw, 5rem) max(1rem, env(safe-area-inset-right));
}

.not-found__hero {
  display: grid;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
}

.not-found__copy {
  max-width: 42rem;
}

.not-found__code {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin: 0 0 0.85rem;
  padding: 0.28rem 0.7rem;
  border: 2px solid var(--ylh-color-provider);
  border-radius: var(--ylh-radius-pill);
  background: var(--ylh-color-surface);
  color: var(--ylh-color-provider);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.not-found h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--ylh-color-brand-ink);
  font-size: clamp(2.5rem, 9vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.not-found__lede {
  max-width: 39rem;
  margin: 1rem 0 0;
  color: var(--ylh-color-text-heading);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.55;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.not-found__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--ylh-color-brand);
  border-radius: var(--ylh-radius-pill);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--ylh-shadow-sm);
  transition: transform 0.08s ease, box-shadow 0.15s ease;
}

.not-found__button:hover {
  transform: translateY(-1px);
  box-shadow: var(--ylh-shadow-md);
  text-decoration: none;
}

.not-found__button--primary {
  background: var(--ylh-color-brand);
  color: var(--ylh-color-surface);
}

.not-found__button--secondary {
  background: var(--ylh-color-surface);
  color: var(--ylh-color-brand);
}

.not-found__ticket {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.65rem;
  border: 2px solid var(--ylh-color-border-medium);
  border-radius: var(--ylh-radius-sm);
  background: var(--ylh-color-surface);
  padding: clamp(1.1rem, 4vw, 1.6rem);
  box-shadow: var(--ylh-shadow-md);
}

.not-found__ticket::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.55rem;
  background: repeating-linear-gradient(90deg, var(--ylh-color-accent) 0 1rem, var(--ylh-color-focus) 1rem 2rem, var(--ylh-color-provider) 2rem 3rem);
  content: "";
}

.not-found__ticket-status {
  justify-self: start;
  margin-top: 0.45rem;
  padding: 0.32rem 0.55rem;
  border-radius: var(--ylh-radius-sm);
  background: var(--ylh-color-warning-surface);
  color: var(--ylh-color-warning-text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.not-found__ticket strong {
  color: var(--ylh-color-brand-ink);
  font-size: 1rem;
}

.not-found__ticket code {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  border-radius: var(--ylh-radius-sm);
  background: var(--ylh-color-surface-code);
  color: var(--ylh-color-text-code);
  padding: 0.8rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
}

.not-found__ticket p {
  margin: 0;
  color: var(--ylh-color-text-muted-cool);
}

.not-found__quick-links {
  display: grid;
  gap: 0.8rem;
}

.not-found__quick-links a {
  display: grid;
  gap: 0.25rem;
  min-height: 6rem;
  align-content: center;
  border: 1px solid var(--ylh-color-brand-alpha-14);
  border-radius: var(--ylh-radius-sm);
  background: var(--ylh-color-surface-overlay-soft);
  padding: 1rem;
  color: var(--ylh-color-brand-ink);
  text-decoration: none;
  box-shadow: var(--ylh-shadow-sm);
}

.not-found__quick-links a:hover {
  border-color: var(--ylh-color-border-hover);
  text-decoration: none;
}

.not-found__quick-links strong {
  font-size: 1.02rem;
}

.not-found__quick-links span {
  color: var(--ylh-color-text-muted-cool);
  line-height: 1.45;
}

@media (min-width: 760px) {
  .not-found__hero {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  }

  .not-found__quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .app-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-block: 0.65rem;
  }

  .app-header__search {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .loader {
    animation: none !important;
  }
}
