/* CrossMart frame - in-flow header, logo dead-center, nav on sides. */

.frame {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: var(--page-padding);
  z-index: 1000;
  pointer-events: none;
  grid-template-columns: unset;
  grid-template-rows: unset;
  grid-template-areas: unset;
  grid-row-gap: unset;
  grid-column-gap: unset;
  justify-items: unset;
  align-content: unset;
}

.frame a {
  pointer-events: auto;
}

.frame__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1 1 0;
  min-width: 0;
  pointer-events: auto;
}

.frame__nav--left {
  justify-content: flex-start;
}

.frame__nav--right {
  justify-content: flex-end;
}

.frame__title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  width: auto;
  text-align: center;
  pointer-events: none;
}

.frame__logo {
  display: block;
  height: 2.4rem;
  width: auto;
  max-width: min(36vw, 220px);
}

.frame__title a {
  text-decoration: none;
  display: inline-block;
  pointer-events: auto;
  line-height: 0;
}

.frame__title a:hover,
.frame__title a:focus {
  background: transparent;
}

.frame__link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.frame__link:hover,
.frame__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.frame__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--color-link);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.frame__cta:hover {
  color: var(--color-bg);
  background: var(--color-link-hover);
  border-color: var(--color-link-hover);
  text-decoration: none;
}

@media screen and (min-width: 53em) {
  .frame {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    gap: 2rem;
    overflow: visible;
  }

  .frame__title {
    padding: 0;
    z-index: 1;
  }

  .frame__logo {
    height: 4rem;
    max-width: min(44vw, 340px);
  }
}

@media screen and (max-width: 52.99em) {
  .frame {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .frame__title {
    position: static;
    transform: none;
    order: -1;
  }

  .frame__nav {
    flex: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }

  .frame__link,
  .frame__cta {
    font-size: 0.95rem;
  }
}

/* Intro - raise scroll hint */
.intro__hint {
  transform: translateY(-2.5rem);
}

@media screen and (min-width: 53em) {
  .intro {
    grid-template-rows: 58vh 30vh auto;
  }

  .intro__hint {
    align-self: start;
    transform: translateY(-1.5rem);
  }
}

/* Stack section headers
   Active layout: Option E (editorial split) via .section-header--editorial
   Revert to B+C: remove --editorial from HTML + delete "Option E" block below */

.section-header {
  text-align: center;
  padding-inline: var(--page-padding);
  margin: 25vh auto 0;
}

.section-header .section-title {
  margin: 0 auto 1rem;
}

.section-title--single {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.75rem, 4.2vw, 4.75rem);
}

.section-title--lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.02em;
  white-space: normal;
}

.section-title--lines span {
  display: block;
  white-space: nowrap;
}

.section-hint {
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.48);
}

.section-lead {
  max-width: 34rem;
  margin: 0 auto 0.85rem;
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  line-height: 1.65;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
}

/* B - neon tiles (Discover Partners) */
.section-tiles {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
  margin: 0 auto 1.75rem;
  padding: 0;
  list-style: none;
}

.section-tile {
  --color-card: var(--color-card-1);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  outline: 1px solid var(--color-card);
  background: var(--color-bg-card-inner);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.section-tile--1 {
  --color-card: var(--color-card-1);
}

.section-tile--2 {
  --color-card: var(--color-card-2);
}

.section-tile--3 {
  --color-card: var(--color-card-3);
}

.section-tile__label {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}

.section-tile__detail {
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.48);
}

/* C - step strip (Send Terms) */
.section-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  padding: 0;
  list-style: none;
}

.section-steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 5.5rem;
}

.section-steps__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.section-steps__detail {
  font-size: clamp(0.68rem, 0.95vw, 0.76rem);
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.46);
}

.section-steps__num {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.38);
}

.section-steps__label {
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}

.section-steps__sep {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-link-hover);
  opacity: 0.75;
  user-select: none;
}

/* Stats row (Built on Trust) */
.section-stats {
  display: grid;
  gap: 1.25rem 1.5rem;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  padding: 0;
}

.section-stats__item {
  margin: 0;
}

.section-stats__value {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.section-stats__label {
  margin: 0.45rem 0 0;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.section-stats__copy {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  text-align: right;
}

.section-stats__detail {
  font-size: clamp(0.68rem, 0.95vw, 0.76rem);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.42);
}

.section-cta {
  display: inline-block;
  margin-bottom: 2.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-link);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-link);
  pointer-events: auto;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.section-cta:hover {
  color: var(--color-bg);
  background: var(--color-link-hover);
  border-color: var(--color-link-hover);
  box-shadow: 0 0 24px rgba(196, 113, 225, 0.35);
}

@media screen and (min-width: 53em) {
  .section-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 40em) {
  .section-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 52.99em) {
  .section-title--single {
    white-space: normal;
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }

  .section-header {
    margin-top: 18vh;
  }

  .section-steps__sep {
    display: none;
  }

  .section-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .section-steps__item {
    min-width: 0;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    outline: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Option E - split editorial (desktop) */
@media screen and (min-width: 53em) {
  .section-header--editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
    gap: 2.5rem 4rem;
    align-items: center;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .section-header--editorial .section-header__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }

  .section-header--editorial .section-title {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0 0 1rem;
    text-align: left;
    place-items: unset;
    justify-items: unset;
  }

  .section-header--editorial .section-title--single {
    white-space: normal;
    font-size: clamp(2.35rem, 4.2vw, 3.85rem);
    line-height: 1.02;
  }

  .section-header--editorial .section-title--lines {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header--editorial .section-hint {
    margin: 0;
    max-width: 30rem;
    width: 100%;
    text-align: left;
    align-self: stretch;
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: clamp(0.88rem, 1.05vw, 0.98rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.52);
  }

  .section-header--editorial .section-lead {
    margin: 0 0 0.75rem;
    max-width: 30rem;
    width: 100%;
    text-align: left;
    align-self: stretch;
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
  }

  .section-header--editorial .section-header__aside {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
    min-width: 0;
    padding-bottom: 0.15rem;
  }

  .section-header--editorial .section-tiles {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 0;
    gap: 0.6rem;
  }

  .section-header--editorial .section-tile {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0.9rem;
  }

  .section-header--editorial .section-tile__detail {
    text-align: right;
    flex-shrink: 0;
  }

  .section-header--editorial .section-steps {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    margin: 0;
    gap: 0;
  }

  .section-header--editorial .section-steps__sep {
    display: none;
  }

  .section-header--editorial .section-steps__item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.85rem;
    min-width: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: none;
    outline: none;
    border-radius: 0;
  }

  .section-header--editorial .section-steps__copy {
    align-items: flex-start;
    text-align: left;
  }

  .section-header--editorial .section-steps__item:last-child {
    border-bottom: 0;
  }

  .section-header--editorial .section-steps__num {
    width: 1.75rem;
    flex-shrink: 0;
    color: var(--color-link-hover);
  }

  .section-header--editorial .section-stats {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 0;
    gap: 0;
  }

  .section-header--editorial .section-stats__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section-header--editorial .section-stats__copy {
    align-items: flex-end;
  }

  .section-header--editorial .section-stats__item:last-child {
    border-bottom: 0;
  }

  .section-header--editorial .section-stats__value {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
  }

  .section-header--editorial .section-stats__label {
    margin: 0;
    text-align: right;
  }

  .section-header--editorial .section-cta {
    margin-bottom: 0;
    align-self: flex-start;
  }

  .section-header--editorial .section-cta--text {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    text-decoration: underline;
    text-underline-offset: 0.22em;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .section-header--editorial .section-cta--text:hover {
    background: none;
    color: var(--color-link-hover);
    box-shadow: none;
  }

  .section-header--request {
    grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.2fr);
    align-items: center;
  }

  .section-header--preview .section-header__aside {
    padding-top: 0.35rem;
  }

  .section-header--partners {
    align-items: center;
  }
}

@media screen and (max-width: 52.99em) {
  .section-header--editorial .section-header__aside {
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
  }

  .section-header--editorial .section-cta--text {
    margin-bottom: 2.5rem;
  }

  .section-header--request .section-header__aside {
    max-width: 36rem;
  }
}

/* Built for Partners panel */
.partners-panel {
  overflow: hidden;
  border-radius: 0.85rem;
  background: rgb(41 27 41 / 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px -12px rgb(0 0 0 / 0.5);
}

.partners-panel__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.partners-panel__item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.95rem 1.1rem;
}

.partners-panel__item + .partners-panel__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.partners-panel__mark {
  flex-shrink: 0;
  width: 1.6rem;
  padding-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-link-hover, #c471e1);
}

.partners-panel__body {
  min-width: 0;
}

.partners-panel__body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.25;
}

.partners-panel__body p {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.52);
}

/* Outro - Start here cards */
.outro {
  margin: 8vh 0 10vh;
}

.wrap--finale {
  min-height: 70vh;
}

.outro .card--rel {
  background: rgba(255, 255, 255, 0.06);
}

.outro .card--rel .card__img {
  filter: none;
  background-size: cover;
  background-position: center;
  opacity: 0.92;
}

.outro .card--rel .card__title {
  font-size: 1.15rem;
  padding-top: 1.5rem;
}

.outro .card--rel .card__title a {
  text-decoration: none;
}

.outro .card--rel .card__title a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Landing footer */
.landing-footer {
  position: relative;
  z-index: 10;
  margin-top: 12vh;
  padding: 3rem var(--page-padding) max(3rem, env(safe-area-inset-bottom));
  pointer-events: none;
}

.landing-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

.landing-footer__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.landing-footer a {
  pointer-events: auto;
}

.landing-footer__logo {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.landing-footer__logo img {
  display: block;
  height: 2rem;
  width: auto;
  max-width: min(52vw, 200px);
}

.landing-footer__logo:hover,
.landing-footer__logo:focus {
  background: transparent;
}

.landing-footer__tagline {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.65;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
}

.landing-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.landing-footer__nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
}

.landing-footer__nav a:hover,
.landing-footer__nav a:focus-visible {
  color: var(--color-link-hover);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.landing-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.landing-footer__social svg {
  width: 0.95rem;
  height: 0.95rem;
}

.landing-footer__social:hover,
.landing-footer__social:focus-visible {
  color: #fff;
  border-color: var(--color-link-hover);
  background: rgba(196, 113, 225, 0.12);
  text-decoration: none;
}

.landing-footer__copy {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

/* MIT attribution - in DOM + LICENSE file; not shown in normal UI */
.landing-license {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media screen and (min-width: 53em) {
  .landing-footer__logo img {
    height: 2.25rem;
    max-width: 220px;
  }

  .landing-footer__inner {
    gap: 1.35rem;
  }
}

/* Product previews in editorial asides */
.listing-preview,
.request-preview {
  display: block;
  pointer-events: auto;
  overflow: hidden;
  border-radius: 0.75rem;
  background: rgb(41 27 41 / 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px -12px rgb(0 0 0 / 0.5);
  text-decoration: none;
  color: inherit;
}

.listing-preview:hover {
  border-color: rgba(196, 113, 225, 0.45);
  box-shadow:
    0 14px 32px -14px rgb(0 0 0 / 0.55),
    0 0 28px -6px rgb(196 113 225 / 0.28);
}

.listing-preview__banner {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.35);
}

.listing-preview__row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem 0.45rem;
}

.listing-preview__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgb(12 8 14);
  flex-shrink: 0;
}

.listing-preview__identity {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
}

.listing-preview__name {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.25;
}

.listing-preview__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.listing-preview__trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  font-size: 0.68rem;
  font-weight: 700;
}

.listing-preview__live {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.listing-preview__live--on {
  padding: 0.12rem 0.4rem;
  border-radius: 0.25rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.listing-preview__trust--fair {
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
}

.listing-preview__desc {
  margin: 0;
  padding: 0 0.95rem 0.7rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}

.listing-preview__stats {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.listing-preview__stats strong {
  color: #fff;
  font-weight: 700;
}

.listing-preview__stats--soon {
  color: rgba(255, 255, 255, 0.42);
}

.listing-preview__dot {
  color: rgba(255, 255, 255, 0.22);
}

.request-preview {
  padding: 1.35rem 1.4rem 1.3rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 28px -16px rgb(0 0 0 / 0.65);
}

.request-preview__status {
  display: inline-flex;
  margin: 0 0 1.15rem;
  padding: 0.22rem 0.55rem;
  border-radius: 0.35rem;
  background: rgba(245, 158, 11, 0.16);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #fcd34d;
}

.request-preview__side {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.request-preview__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 0.12rem;
}

.request-preview__side + .request-preview__side {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.request-preview__side img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.7rem;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgb(12 8 14);
  flex-shrink: 0;
}

.request-preview__kicker {
  display: block;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.2;
}

.request-preview__side strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.2;
}

.request-preview__terms {
  margin: 1.15rem 0 1.2rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.request-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.request-preview__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.45rem 1.05rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.82);
}

.request-preview__btn--accept {
  flex: 1 1 10rem;
  background: #059669;
  border-color: #059669;
  color: #fff;
}

.request-preview__btn:not(.request-preview__btn--accept) {
  background: transparent;
}

/* -------------------------------------------------------------------------
   Phone-only landing polish (phones < 640px). Leaves tablet/iPad + desktop alone.
   Does not change Codrops 3D stack motion - only framing, nav, type, and CTAs.
   ------------------------------------------------------------------------- */
.mobile-dock {
  display: none;
}

@media screen and (max-width: 39.99em) {
  body {
    --page-padding: 1rem;
  }

  /* Compact header: logo + one usable action row */
  .frame {
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem 0.75rem;
    padding: 0.7rem var(--page-padding);
    background: linear-gradient(
      to bottom,
      rgb(0 0 0 / 0.94) 0%,
      rgb(0 0 0 / 0.78) 72%,
      rgb(0 0 0 / 0) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .frame__title {
    position: static;
    transform: none;
    order: 0;
    flex: 0 0 auto;
    pointer-events: auto;
  }

  .frame__logo {
    height: 1.85rem;
    max-width: min(42vw, 160px);
  }

  .frame__nav--left {
    display: none;
  }

  .frame__nav--right {
    order: 1;
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.55rem 0.85rem;
  }

  .frame__nav--right .frame__link[href="/pricing"] {
    display: none;
  }

  .frame__link,
  .frame__cta {
    min-height: 2.5rem;
    align-items: center;
    font-size: 0.82rem;
  }

  .frame__cta {
    padding: 0.45rem 0.9rem;
  }

  /* Hero: fit 3-up grid without horizontal overflow */
  .intro {
    grid-template-rows: 11vh 10vh auto;
    padding: 0.35rem var(--page-padding) 0;
  }

  .intro__title {
    font-size: clamp(1.45rem, 7.8vw, 1.95rem);
    line-height: 1.05;
    max-width: 17ch;
  }

  .intro__hint {
    font-size: 0.92rem;
    transform: translateY(-1.1rem);
  }

  .intro__hint::after {
    font-size: 2.1rem;
  }

  .grid {
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    justify-content: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card {
    width: 100%;
    min-width: 0;
    max-width: none;
    font-size: 6.5px;
    padding: 3px;
    border-radius: 8px;
  }

  .grid .card__description,
  .grid .card__subtitle {
    display: none;
  }

  .grid .card__title,
  .grid .card__meta {
    padding: 0.35rem 2px 0.2rem;
  }

  /* Stack cards stay readable without changing motion */
  .content .card {
    width: min(58vw, 12.5rem);
  }

  .wrap {
    min-height: 78vh;
  }

  /* Editorial sections: tighter, full-width, bigger taps */
  .section-header {
    margin-top: 12vh;
    padding-inline: var(--page-padding);
    scroll-margin-top: 4.25rem;
  }

  .section-title--single {
    font-size: clamp(1.55rem, 8.2vw, 2.15rem);
    line-height: 1.05;
  }

  .section-lead {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0.65rem;
  }

  .section-hint {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
  }

  .section-header--editorial .section-header__aside {
    max-width: none;
    width: 100%;
    margin-inline: 0;
  }

  .section-header--editorial .section-cta--text,
  .section-header--request .section-cta--text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.85rem;
    margin: 0.85rem 0 1.75rem;
    padding: 0.65rem 1rem;
    border: 1px solid #fff;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    font-weight: 600;
  }

  .section-header--editorial .section-cta--text:hover,
  .section-header--request .section-cta--text:hover {
    color: #000;
    background: var(--color-link-hover);
    border-color: var(--color-link-hover);
    box-shadow: 0 0 24px rgba(196, 113, 225, 0.35);
  }

  .listing-preview,
  .request-preview {
    width: 100%;
  }

  .request-preview {
    padding: 1.05rem 1rem 1.05rem;
  }

  .request-preview__side img {
    width: 2.55rem;
    height: 2.55rem;
  }

  .request-preview__side strong {
    font-size: 0.95rem;
  }

  .request-preview__terms {
    font-size: 0.88rem;
    margin: 0.95rem 0 1rem;
  }

  .request-preview__btn {
    min-height: 2.75rem;
    flex: 1 1 auto;
  }

  .section-stats__item {
    padding: 0.85rem 0;
  }

  .section-stats__value {
    font-size: 1.35rem;
  }

  /* Outro CTAs */
  .outro {
    margin: 6vh 0 8vh;
    padding-inline: var(--page-padding);
  }

  .wrap--finale {
    min-height: 58vh;
  }

  .outro__title {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
    margin-bottom: 0.25rem;
  }

  .card-wrap {
    width: 100%;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    margin-top: 1.5rem;
  }

  .outro .card--rel {
    width: 100%;
    max-width: 22rem;
  }

  .outro .card--rel .card__title {
    font-size: 1.05rem;
    padding-top: 1rem;
  }

  /* Footer */
  .landing-footer {
    margin-top: 6vh;
    padding: 2.25rem var(--page-padding) calc(5.5rem + env(safe-area-inset-bottom));
  }

  .landing-footer__nav {
    gap: 0.35rem 1.1rem;
  }

  .landing-footer__nav a {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
  }

  .landing-footer__social {
    width: 2.75rem;
    height: 2.75rem;
  }

  /* Sticky conversion dock */
  .mobile-dock {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem var(--page-padding) calc(0.65rem + env(safe-area-inset-bottom));
    background: linear-gradient(
      to top,
      rgb(0 0 0 / 0.96) 0%,
      rgb(0 0 0 / 0.88) 70%,
      rgb(0 0 0 / 0.35) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: auto;
  }

  .mobile-dock__link,
  .mobile-dock__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
    font-weight: 600;
  }

  .mobile-dock__link {
    flex: 0 0 auto;
    padding: 0.45rem 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-dock__cta {
    flex: 1 1 auto;
    padding: 0.45rem 1rem;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
  }

  .mobile-dock__cta:hover,
  .mobile-dock__cta:focus-visible {
    color: #000;
    background: var(--color-link-hover);
    border-color: var(--color-link-hover);
  }

  .mobile-dock__link:hover,
  .mobile-dock__link:focus-visible {
    color: #fff;
    border-color: var(--color-link-hover);
  }
}

@media screen and (max-width: 39.99em) and (prefers-reduced-motion: reduce) {
  .frame,
  .mobile-dock {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

