/* SOMA waitlist v2 - product-led landing page */

.wl-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(62, 99, 255, 0.10), transparent 32rem),
    var(--bg);
}

.wl-page [hidden] {
  display: none !important;
}

.wl-page .container {
  width: min(100% - clamp(32px, 7vw, 112px), 1180px);
}

.wl-page .headline {
  font-size: 3.25rem;
  letter-spacing: 0;
}

.wl-page .lede {
  font-size: 1.25rem;
}

.wl-page .section {
  min-height: 0;
  padding: clamp(88px, 12vw, 176px) 0;
  border-top: 1px solid var(--hairline);
}

.js .wl-page .nav__cta {
  opacity: 1;
  pointer-events: auto;
}

.wl-page .btn {
  min-height: 46px;
}

.wl-page .btn--solid {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.wl-page .btn--solid:hover {
  border-color: #5876ff;
  background: #5876ff;
}

.wl-muted {
  color: var(--ink-500);
}

.wl-section-head {
  display: grid;
  gap: 24px;
  max-width: 860px;
  margin-bottom: clamp(48px, 8vw, 88px);
}

.wl-section-head .lede {
  margin-top: -4px;
}

/* Hero */
.wl-hero {
  position: relative;
  min-height: min(900px, 92svh);
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 44px) 0 88px;
  isolation: isolate;
}

.wl-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 14% auto auto 50%;
  width: min(860px, 92vw);
  aspect-ratio: 1.6;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(62, 99, 255, 0.12), transparent 67%);
  pointer-events: none;
}

.wl-hero__inner {
  position: relative;
  text-align: center;
  display: grid;
  justify-items: center;
}

.wl-hero__title {
  max-width: 11ch;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: 0;
  text-wrap: balance;
}

.wl-hero__lede {
  max-width: 720px;
  margin-top: 36px;
  color: var(--ink-300);
  font-size: 1.35rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.wl-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 38px;
}

.wl-text-link {
  color: var(--ink-300);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.wl-text-link:hover {
  color: var(--ink-100);
}

.wl-hero__micro {
  margin-top: 24px;
  color: var(--ink-500);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}

.wl-hero__horizon {
  position: absolute;
  inset: auto 8vw 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 99, 255, 0.85), transparent);
  box-shadow: 0 -20px 70px rgba(62, 99, 255, 0.22);
}

/* Product proof */
.wl-product {
  padding-top: clamp(104px, 13vw, 176px);
}

.wl-app {
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  background: rgba(11, 12, 17, 0.86);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.38);
}

.wl-app__top {
  min-height: 64px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--hairline);
}

.wl-app__top .wordmark {
  font-size: 0.875rem;
}

.wl-app__date,
.wl-app__status {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.13em;
  color: var(--ink-500);
}

.wl-app__status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wl-app__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(62, 99, 255, 0.8);
}

.wl-app__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
}

.wl-panel {
  min-width: 0;
  min-height: 430px;
  padding: clamp(26px, 3vw, 40px);
}

.wl-panel + .wl-panel {
  border-left: 1px solid var(--hairline);
}

.wl-panel__label {
  margin-bottom: 30px;
  color: var(--ink-500);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wl-read {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wl-read__ring {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 99, 255, 0.12), transparent 64%);
  box-shadow: inset 0 0 30px rgba(62, 99, 255, 0.08);
}

.wl-read__ring span {
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
}

.wl-read h3,
.wl-panel--decision h3 {
  font-size: 2rem;
  letter-spacing: 0;
}

.wl-read p,
.wl-decision__why,
.wl-session__reason {
  margin-top: 6px;
  color: var(--ink-300);
  font-size: 0.875rem;
  line-height: 1.55;
}

.wl-metrics {
  margin: 28px 0 0;
  display: grid;
  gap: 0;
}

.wl-metrics div {
  padding: 13px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--hairline);
}

.wl-metrics dt {
  color: var(--ink-500);
  font-size: 0.8125rem;
}

.wl-metrics dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.wl-metrics small {
  color: var(--ink-500);
  font-size: 0.625rem;
}

.wl-evidence {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-500);
  font-family: var(--font-mono);
  font-size: 0.625rem;
}

.wl-evidence span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.wl-decision__state {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.wl-decision__state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.wl-decision__why {
  margin-top: 20px;
  font-size: 0.9375rem;
}

.wl-why {
  margin-top: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-100);
  font-size: 0.875rem;
  font-weight: 500;
}

.wl-adjustments {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wl-adjustments li {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--hairline);
}

.wl-adjustments li:last-child {
  border-bottom: 1px solid var(--hairline);
}

.wl-adjustments span {
  color: var(--ink-300);
  font-size: 0.875rem;
}

.wl-adjustments strong {
  text-align: right;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
}

.wl-session__reason {
  margin-top: 20px;
}

.wl-demo-cta {
  width: 100%;
  margin-top: 30px;
  font-size: 0.8125rem;
}

.wl-product__note {
  max-width: 720px;
  margin-top: 22px;
}

/* Plain-language explanation */
.wl-simple {
  background: var(--bg-raise);
}

.wl-simple__intro {
  max-width: 820px;
}

.wl-simple__intro .headline {
  margin-top: 24px;
}

.wl-simple__intro .lede {
  margin-top: 24px;
}

.wl-simple__steps {
  margin: clamp(52px, 8vw, 84px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--hairline-strong);
  border-left: 1px solid var(--hairline-strong);
}

.wl-simple__steps li {
  min-height: 260px;
  padding: clamp(26px, 3.5vw, 40px);
  border-right: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}

.wl-simple__steps > li > span {
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
}

.wl-simple__steps h3 {
  margin-top: 34px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.wl-simple__steps p {
  margin-top: 13px;
  color: var(--ink-300);
  font-size: 0.9rem;
}

.wl-examples {
  margin-top: clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wl-example {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  background: var(--bg);
}

.wl-example__head {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.wl-example__state,
.wl-example__call {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wl-example__state {
  color: var(--accent-soft);
}

.wl-example__call {
  text-align: right;
  color: var(--ink-500);
}

.wl-example h3 {
  min-height: 92px;
  color: var(--ink-100);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.wl-example ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.wl-example li {
  min-height: 48px;
  padding: 12px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--hairline);
}

.wl-example li:last-child {
  border-bottom: 1px solid var(--hairline);
}

.wl-example li span {
  color: var(--ink-500);
  font-size: 0.75rem;
}

.wl-example li strong {
  text-align: right;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.675rem;
  font-weight: 500;
}

.wl-example > p {
  margin-top: 22px;
  color: var(--ink-300);
  font-size: 0.825rem;
  line-height: 1.6;
}

.wl-simple__close {
  max-width: 760px;
  margin-top: clamp(52px, 8vw, 84px);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.15;
}

/* Multi-sport system */
.wl-sports__head {
  max-width: 900px;
}

.wl-sports__head .headline {
  margin-top: 24px;
}

.wl-sports__head .lede {
  margin-top: 24px;
}

.wl-sports__grid {
  margin-top: clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hairline-strong);
  border-left: 1px solid var(--hairline-strong);
}

.wl-sports__grid article {
  min-height: 230px;
  padding: clamp(26px, 3.5vw, 40px);
  border-right: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}

.wl-sports__grid span {
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wl-sports__grid h3 {
  margin-top: 30px;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.wl-sports__grid p {
  margin-top: 13px;
  color: var(--ink-300);
  font-size: 0.875rem;
}

.wl-sports__close {
  margin-top: 34px;
  color: var(--ink-300);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

/* Closed loop */
.wl-loop__diagram {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
}

.wl-loop__diagram::before,
.wl-loop__diagram::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.wl-loop__diagram::before {
  width: min(650px, 62vw);
  aspect-ratio: 1;
  border: 1px solid rgba(62, 99, 255, 0.28);
  box-shadow: 0 0 100px rgba(62, 99, 255, 0.07);
}

.wl-loop__diagram::after {
  width: min(520px, 50vw);
  aspect-ratio: 1;
  border: 1px dashed var(--hairline-strong);
}

.wl-loop__center {
  z-index: 1;
  width: 164px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 60px rgba(62, 99, 255, 0.14);
}

.wl-loop__arrow {
  position: absolute;
  z-index: 2;
  top: 13%;
  right: 24%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 1rem;
  box-shadow: 0 0 28px rgba(62, 99, 255, 0.18);
}

.wl-loop__center span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.wl-loop__center small {
  color: var(--ink-500);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  line-height: 1.55;
}

.wl-loop__steps {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wl-loop__step {
  position: absolute;
  width: min(255px, 25vw);
}

.wl-loop__step--1 { left: 2%; top: 14%; }
.wl-loop__step--2 { left: 38%; top: 1%; }
.wl-loop__step--3 { right: 1%; top: 18%; }
.wl-loop__step--4 { right: 2%; bottom: 12%; }
.wl-loop__step--5 { left: 39%; bottom: 0; }
.wl-loop__step--6 { left: 1%; bottom: 17%; }

.wl-loop__number {
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
}

.wl-loop__step h3 {
  margin-top: 7px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.wl-loop__step p {
  margin-top: 7px;
  color: var(--ink-500);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.wl-loop__statement {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
}

/* Pillars */
.wl-pillars {
  background: var(--bg-raise);
}

.wl-pillar-list {
  border-top: 1px solid var(--hairline-strong);
}

.wl-pillar {
  min-height: 144px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--hairline-strong);
}

.wl-pillar__index,
.wl-pillar__tag {
  color: var(--ink-500);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wl-pillar h3 {
  font-size: 2.75rem;
  letter-spacing: 0;
}

.wl-pillar p {
  max-width: 650px;
  margin-top: 7px;
  color: var(--ink-300);
  font-size: 0.9375rem;
}

.wl-pillar__tag {
  min-width: 90px;
  text-align: right;
  color: var(--accent-soft);
}

/* Long-term plan */
.wl-plan__intro {
  max-width: 820px;
}

.wl-plan__intro .headline {
  margin-top: 24px;
}

.wl-plan__intro .lede {
  margin-top: 24px;
}

.wl-plan__grid {
  margin-top: clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--hairline-strong);
  border-left: 1px solid var(--hairline-strong);
}

.wl-plan-card {
  min-height: 245px;
  padding: clamp(26px, 4vw, 44px);
  border-right: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}

.wl-plan-card__marker {
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.wl-plan-card h3 {
  margin-top: 32px;
  font-size: 1.85rem;
  letter-spacing: 0;
}

.wl-plan-card p {
  margin-top: 14px;
  color: var(--ink-300);
  font-size: 0.9375rem;
}

.wl-horizon {
  margin-top: clamp(56px, 8vw, 88px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
}

.wl-horizon__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wl-horizon__track {
  min-height: 96px;
  margin-top: 34px;
  display: flex;
  gap: 5px;
}

.wl-horizon__track div {
  flex-basis: var(--w);
  min-width: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(62, 99, 255, 0.10);
  border-top: 2px solid var(--accent);
}

.wl-horizon__track div:nth-child(2),
.wl-horizon__track div:nth-child(4) {
  background: rgba(244, 245, 247, 0.035);
  border-top-color: var(--ink-500);
}

.wl-horizon__track span {
  font-size: 0.8125rem;
  font-weight: 500;
}

.wl-horizon__track small {
  margin-top: 3px;
  color: var(--ink-500);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
}

.wl-horizon > p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--ink-300);
  font-size: 0.875rem;
}

/* Trust */
.wl-trust {
  background: var(--bg-raise);
}

.wl-trust__lead {
  max-width: 760px;
}

.wl-trust__lead .headline {
  margin-top: 24px;
}

.wl-trust__lead .lede {
  margin-top: 20px;
}

.wl-trust__rules {
  margin-top: clamp(56px, 8vw, 84px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline-strong);
  border: 1px solid var(--hairline-strong);
}

.wl-trust__rules article {
  min-height: 220px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--bg-raise);
}

.wl-trust__rules span {
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
}

.wl-trust__rules h3 {
  margin-top: 30px;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.wl-trust__rules p {
  margin-top: 12px;
  color: var(--ink-300);
  font-size: 0.9rem;
}

.wl-data-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--ink-300);
  font-size: 0.875rem;
  font-weight: 500;
}

.wl-data-link:hover {
  color: var(--ink-100);
}

/* Access + join */
.wl-access__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(56px, 10vw, 140px);
}

.wl-access__grid .headline {
  margin-top: 24px;
}

.wl-access__copy {
  color: var(--ink-300);
}

.wl-access__copy p + p {
  margin-top: 22px;
}

.wl-access__copy .mono-note {
  margin-top: 30px;
}

.wl-join {
  min-height: 0;
  padding: clamp(112px, 16vw, 210px) 0;
  border-top: 1px solid var(--hairline);
  background:
    radial-gradient(circle at 50% 44%, rgba(62, 99, 255, 0.13), transparent 32rem),
    var(--bg);
  text-align: center;
}

.wl-join__title {
  max-width: 13ch;
  margin: 26px auto 0;
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.wl-join .join__sub {
  max-width: 640px;
  margin-inline: auto;
}

.wl-join .profile {
  background: rgba(5, 5, 7, 0.85);
}

/* Motion */
.js .wl-page .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .wl-page .wl-hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js .wl-page .reveal.in,
.js .wl-page .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .wl-page .reveal[data-delay="1"] { transition-delay: 70ms; }
.js .wl-page .reveal[data-delay="2"] { transition-delay: 140ms; }
.js .wl-page .reveal[data-delay="3"] { transition-delay: 210ms; }

@media (max-width: 900px) {
  .wl-app__grid {
    grid-template-columns: 1fr;
  }

  .wl-panel {
    min-height: 0;
  }

  .wl-panel + .wl-panel {
    border-left: 0;
    border-top: 1px solid var(--hairline);
  }

  .wl-loop__diagram {
    min-height: 0;
    display: block;
  }

  .wl-loop__diagram::before,
  .wl-loop__diagram::after,
  .wl-loop__center,
  .wl-loop__arrow {
    display: none;
  }

  .wl-loop__steps {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--hairline-strong);
    border-left: 1px solid var(--hairline-strong);
  }

  .wl-loop__step {
    position: static;
    width: auto;
    min-height: 210px;
    padding: 28px;
    border-right: 1px solid var(--hairline-strong);
    border-bottom: 1px solid var(--hairline-strong);
  }

  .wl-loop__statement {
    margin-top: 52px;
  }
}

@media (max-width: 719px) {
  .wl-page .container {
    width: min(100% - 32px, 1180px);
  }

  .wl-page .section {
    padding: 88px 0;
  }

  .wl-page .nav__cta .btn {
    min-height: 38px;
    padding: 10px 15px;
    font-size: 0.75rem;
  }

  .wl-hero {
    min-height: 88svh;
    padding-bottom: 68px;
  }

  .wl-hero__title {
    font-size: 4rem;
    line-height: 0.92;
    letter-spacing: 0;
  }

  .wl-hero__lede {
    margin-top: 28px;
    font-size: 1rem;
  }

  .wl-hero__actions {
    width: 100%;
    flex-direction: column;
    margin-top: 32px;
  }

  .wl-hero__actions .btn {
    width: min(100%, 330px);
  }

  .wl-hero__micro {
    max-width: 320px;
    line-height: 1.6;
  }

  .wl-section-head {
    gap: 18px;
    margin-bottom: 42px;
  }

  .wl-page .headline {
    font-size: 2.25rem;
  }

  .wl-page .lede {
    font-size: 1.0625rem;
  }

  .wl-app__top {
    grid-template-columns: 1fr auto;
  }

  .wl-app__date {
    display: none;
  }

  .wl-app__status {
    font-size: 0.55rem;
  }

  .wl-panel {
    padding: 26px 22px;
  }

  .wl-read__ring {
    width: 74px;
    height: 74px;
  }

  .wl-access__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .wl-simple__steps,
  .wl-examples,
  .wl-sports__grid {
    grid-template-columns: 1fr;
  }

  .wl-simple__steps li {
    min-height: 0;
  }

  .wl-example h3 {
    min-height: 0;
  }

  .wl-loop__steps,
  .wl-plan__grid,
  .wl-trust__rules {
    grid-template-columns: 1fr;
  }

  .wl-loop__step {
    min-height: 0;
  }

  .wl-pillar {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
  }

  .wl-pillar__tag {
    display: none;
  }

  .wl-pillar h3 {
    font-size: 1.75rem;
  }

  .wl-plan-card {
    min-height: 0;
  }

  .wl-horizon {
    padding: 22px 18px;
  }

  .wl-horizon__track {
    min-height: 0;
    flex-direction: column;
  }

  .wl-horizon__track div {
    flex-basis: auto;
    min-height: 72px;
  }

  .wl-horizon__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .wl-join__title {
    font-size: 4rem;
    line-height: 0.98;
  }

  .wl-simple__close {
    font-size: 2rem;
  }
}

@media (min-width: 720px) and (max-height: 780px) {
  .wl-hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-h) + 24px);
    padding-bottom: 34px;
  }

  .wl-hero__title {
    margin-top: 18px;
    font-size: 6rem;
  }

  .wl-hero__lede {
    max-width: 650px;
    margin-top: 24px;
    font-size: 1.1rem;
  }

  .wl-hero__actions {
    margin-top: 26px;
  }

  .wl-hero__micro {
    margin-top: 14px;
  }
}

@media (max-width: 420px) {
  .wl-read {
    align-items: flex-start;
  }

  .wl-read__ring {
    width: 66px;
    height: 66px;
  }

  .wl-pillar {
    grid-template-columns: 1fr;
  }

  .wl-pillar__index {
    margin-bottom: -8px;
  }

  .wl-hero__title,
  .wl-join__title {
    font-size: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .wl-page .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
