body.home-page {
  --home-bg: #f1eadf;
  --home-paper: #f8f2e8;
  --home-paper-strong: #fffaf2;
  --home-ink: #111111;
  --home-ink-soft: rgba(17, 17, 17, 0.72);
  --home-line: rgba(17, 17, 17, 0.14);
  --home-line-strong: rgba(17, 17, 17, 0.24);
  --home-accent: #efb63b;
  --home-accent-deep: #d8970f;
  --home-dark: #111111;
  --home-dark-soft: #1b1b1b;
  --home-cream: #f7eddb;
  --home-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.35), transparent 22%),
    linear-gradient(180deg, #eee5d8, var(--home-bg));
  color: var(--home-ink);
  font-family: var(--home-sans);
}

.home-page .site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 250, 242, 0.9);
}

.home-topbar {
  position: relative;
  z-index: 5;
  background: var(--home-dark);
  color: var(--home-cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: end;
}

.home-mark {
  display: grid;
  gap: 4px;
}

.home-mark-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 237, 219, 0.72);
}

.home-mark-wordmark {
  color: var(--home-cream);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 0.92;
}

.home-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.home-nav a {
  color: rgba(247, 237, 219, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-nav a:hover,
.home-nav a:focus-visible,
.home-mark-wordmark:hover,
.home-mark-wordmark:focus-visible {
  color: #ffffff;
}

.home-reset {
  display: grid;
  gap: 3px;
  justify-items: end;
}

.home-reset-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247, 237, 219, 0.7);
}

.home-reset-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(1.05rem, 0.34vw + 1rem, 1.2rem);
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.home-stage {
  display: grid;
  gap: 0;
}

.home-status {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  padding: 10px 24px 0;
  color: var(--home-cream);
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  color: var(--home-cream);
  min-height: calc(100svh - 92px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 0 26%),
    radial-gradient(circle at 78% 24%, rgba(239, 182, 59, 0.34), transparent 0 20%),
    linear-gradient(135deg, #202020 0%, #111111 62%, #181512 100%);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shell::before {
  background:
    radial-gradient(circle at 74% 28%, rgba(239, 182, 59, 0.42), transparent 0 24%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12), transparent 0 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%);
  opacity: 0.95;
}

.hero-shell::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) 24px 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.hero-copy {
  max-width: 640px;
  display: grid;
  gap: 16px;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.home-ready .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy > *:nth-child(1) { transition-delay: 0.04s; }
.hero-copy > *:nth-child(2) { transition-delay: 0.11s; }
.hero-copy > *:nth-child(3) { transition-delay: 0.18s; }
.hero-copy > *:nth-child(4) { transition-delay: 0.25s; }
.hero-copy > *:nth-child(5) { transition-delay: 0.32s; }
.hero-copy > *:nth-child(6) { transition-delay: 0.39s; }

.hero-kicker {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 237, 219, 0.74);
}

.hero-brand {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(4.4rem, 11vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.hero-headline {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.02;
}

.hero-body {
  margin: 0;
  max-width: 46ch;
  color: rgba(247, 237, 219, 0.78);
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.14rem);
  line-height: 1.58;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(247, 237, 219, 0.82);
  background: rgba(255, 255, 255, 0.04);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions .btn {
  min-width: 0;
}

.hero-note {
  margin: 0;
  color: rgba(247, 237, 219, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-visual > * {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 520ms ease, transform 520ms ease;
}

.home-ready .hero-visual > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-ready .hero-visual > .hero-orbit-chip {
  transition-delay: calc(0.28s + (var(--orbit-index) * 0.03s));
}

.hero-orbit {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
}

.hero-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(56%, 310px);
  transform: translate(-50%, -50%);
  border-radius: 34px;
  padding: 28px 24px;
  display: grid;
  gap: 12px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(249, 239, 224, 0.98), rgba(243, 231, 212, 0.96));
  color: var(--home-ink);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-core:hover,
.hero-core:focus-visible {
  transform: translate(-50%, calc(-50% - 4px));
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-core-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f2e6d1);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--home-ink);
}

.hero-core-icon .icon-img {
  width: 44px;
  height: 44px;
}

.hero-core-label,
.support-kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(17, 17, 17, 0.52);
}

.hero-core-title,
.support-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.02;
}

.hero-core-copy,
.support-copy {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.48;
}

.hero-core-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hero-core-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(17, 17, 17, 0.06);
}

.hero-orbit-chip {
  --orbit-radius: clamp(11rem, 16vw, 15.5rem);
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--home-ink);
  background: rgba(250, 243, 232, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--orbit-index) * 30deg))
    translateY(calc(var(--orbit-radius) * -1))
    rotate(calc(var(--orbit-index) * -30deg));
  animation: home-orbit-float 7s ease-in-out infinite;
  animation-delay: calc(var(--orbit-index) * -0.28s);
}

.hero-orbit-chip .icon-img {
  width: 34px;
  height: 34px;
}

.hero-orbit-chip::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 7px;
  top: 7px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.14);
}

.hero-orbit-chip.is-complete::after {
  background: #2f9f5d;
  box-shadow: 0 0 0 3px rgba(47, 159, 93, 0.16);
}

.hero-orbit-chip.is-featured {
  background: linear-gradient(180deg, #f8d27a, #efb63b);
  box-shadow:
    0 24px 48px rgba(239, 182, 59, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.hero-orbit-chip:hover,
.hero-orbit-chip:focus-visible {
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--orbit-index) * 30deg))
    translateY(calc((var(--orbit-radius) * -1) - 6px))
    rotate(calc(var(--orbit-index) * -30deg))
    scale(1.03);
}

.pulse-strip {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: -46px auto 0;
  width: calc(100% - 48px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  box-shadow: 0 24px 45px rgba(17, 17, 17, 0.12);
}

.pulse-item {
  padding: 18px 20px;
  display: grid;
  gap: 6px;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
}

.pulse-item:last-child {
  border-right: 0;
}

.pulse-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.48);
}

.pulse-value {
  margin: 0;
  font-size: clamp(1.05rem, 0.8vw + 0.95rem, 1.4rem);
  font-weight: 800;
  line-height: 1.04;
}

.pulse-copy {
  margin: 0;
  color: var(--home-ink-soft);
  font-size: 0.92rem;
  line-height: 1.42;
}

.home-board {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px 0;
  width: 100%;
}

.home-board-head {
  margin-bottom: 28px;
  display: grid;
  gap: 8px;
}

.home-section-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.52);
}

.home-section-title {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.98;
  color: var(--home-ink);
}

.home-section-copy {
  margin: 0;
  max-width: 48ch;
  color: var(--home-ink-soft);
  font-size: 1rem;
  line-height: 1.58;
}

.home-board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

.lane-grid {
  display: grid;
  gap: 34px;
}

.lane-block {
  padding-top: 20px;
  border-top: 1px solid var(--home-line);
}

.lane-head {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.lane-title-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.lane-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.04;
}

.lane-tag {
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(17, 17, 17, 0.48);
}

.lane-copy {
  margin: 0;
  max-width: 54ch;
  color: var(--home-ink-soft);
  line-height: 1.52;
}

.lane-list {
  display: grid;
}

.lane-entry {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--home-line);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease;
}

.lane-entry:first-child {
  border-top: 0;
}

.lane-entry::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: rgba(17, 17, 17, 0);
  transition: background-color 180ms ease, transform 180ms ease;
  transform: scaleY(0.55);
}

.lane-entry:hover,
.lane-entry:focus-visible {
  transform: translateX(8px);
}

.lane-entry:hover::before,
.lane-entry:focus-visible::before,
.lane-entry[data-featured="true"]::before {
  background: var(--home-accent);
  transform: scaleY(1);
}

.lane-entry.is-complete {
  color: rgba(17, 17, 17, 0.78);
}

.lane-entry-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--home-paper-strong), #eadfc9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--home-ink);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lane-entry:hover .lane-entry-icon,
.lane-entry:focus-visible .lane-entry-icon {
  transform: rotate(-4deg) scale(1.04);
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.12);
}

.lane-entry-icon .icon-img {
  width: 30px;
  height: 30px;
}

.lane-entry-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.15;
}

.lane-entry-subtitle {
  margin: 6px 0 0;
  color: var(--home-ink-soft);
  line-height: 1.45;
}

.lane-entry-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.lane-entry-badge,
.lane-entry-state,
.lane-entry-cta {
  font-size: 0.86rem;
  font-weight: 700;
}

.lane-entry-badge {
  color: rgba(17, 17, 17, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lane-entry-state {
  color: rgba(17, 17, 17, 0.72);
}

.lane-entry-cta {
  color: var(--home-ink);
  white-space: nowrap;
}

.support-rail {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 22px;
}

.support-panel {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--home-line);
  display: grid;
  gap: 12px;
}

.support-panel-body {
  display: grid;
  gap: 12px;
}

.support-panel:last-child {
  border-bottom: 0;
}

.support-actions,
.support-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-inline-list span,
.support-task {
  font-size: 0.92rem;
  color: var(--home-ink-soft);
}

.support-task {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.support-task::before {
  content: "·";
  color: var(--home-accent-deep);
  font-weight: 900;
}

.support-task.is-complete::before {
  content: "✓";
}

.support-pick-list {
  display: grid;
  gap: 10px;
}

.support-pick {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.support-pick-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fffaf2, #ede1c7);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.support-pick-icon .icon-img {
  width: 22px;
  height: 22px;
}

.support-pick strong,
.support-metric strong {
  display: block;
  font-size: 0.98rem;
}

.support-pick span,
.support-metric span {
  color: var(--home-ink-soft);
  font-size: 0.9rem;
  line-height: 1.42;
}

.support-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-metric {
  display: grid;
  gap: 4px;
}

.support-link {
  color: var(--home-ink);
  font-weight: 700;
  text-decoration: none;
}

.home-finale {
  margin-top: 68px;
  padding: 56px 24px 66px;
  background:
    radial-gradient(circle at top right, rgba(239, 182, 59, 0.24), transparent 0 28%),
    linear-gradient(180deg, #141414, #0f0f0f);
  color: var(--home-cream);
}

.home-finale-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.home-finale .home-section-kicker,
.home-finale .home-section-copy,
.home-finale .support-copy,
.home-finale .auth-saved-email {
  color: rgba(247, 237, 219, 0.74);
}

.home-finale .home-section-title {
  color: #ffffff;
}

.finale-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.finale-points span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(247, 237, 219, 0.82);
}

.finale-points span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--home-accent);
  box-shadow: 0 0 0 4px rgba(239, 182, 59, 0.12);
}

.home-finale-form {
  display: grid;
  gap: 14px;
  padding: 22px 0 0;
}

.finale-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(247, 237, 219, 0.62);
}

.home-finale .auth-row {
  margin-top: 0;
  grid-template-columns: minmax(0, 1fr) auto;
}

.home-finale .auth-input,
.home-finale .auth-row .btn {
  min-height: 58px;
}

.home-finale .auth-input {
  background: rgba(255, 255, 255, 0.96);
}

.home-finale .auth-optin {
  margin-top: 0;
  color: rgba(247, 237, 219, 0.82);
}

.home-finale .auth-status {
  margin-top: 0;
  color: rgba(247, 237, 219, 0.82);
  text-align: left;
}

.home-finale .auth-status.error {
  color: #ff9a9a;
}

@keyframes home-orbit-float {
  0%, 100% {
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--orbit-index) * 30deg))
      translateY(calc(var(--orbit-radius) * -1))
      rotate(calc(var(--orbit-index) * -30deg));
  }
  50% {
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--orbit-index) * 30deg))
      translateY(calc((var(--orbit-radius) * -1) - 8px))
      rotate(calc(var(--orbit-index) * -30deg));
  }
}

@media (max-width: 1120px) {
  .hero-inner,
  .home-board-layout,
  .home-finale-inner {
    grid-template-columns: 1fr;
  }

  .support-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .hero-visual {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .home-topbar-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-nav,
  .home-reset {
    justify-content: flex-start;
  }

  .home-reset {
    justify-items: start;
  }

  .hero-shell {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 22px;
  }

  .hero-brand {
    font-size: clamp(3.6rem, 19vw, 5.8rem);
  }

  .hero-headline,
  .home-section-title {
    max-width: 100%;
  }

  .hero-orbit {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .hero-core {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    grid-column: 1 / -1;
    transform: none;
    margin-bottom: 12px;
    order: -1;
  }

  .hero-core:hover,
  .hero-core:focus-visible {
    transform: translateY(-4px);
  }

  .hero-orbit-chip {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 72px;
    transform: none;
    animation: none;
  }

  .hero-orbit-chip:hover,
  .hero-orbit-chip:focus-visible {
    transform: translateY(-4px);
  }

  .pulse-strip {
    margin-top: -18px;
    width: calc(100% - 32px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-topbar-inner,
  .hero-inner,
  .home-board,
  .home-finale {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pulse-strip {
    width: calc(100% - 24px);
  }

  .pulse-item {
    padding: 16px;
  }

  .lane-entry {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
  }

  .lane-entry-meta {
    justify-items: start;
    text-align: left;
  }

  .lane-entry-cta {
    display: none;
  }

  .home-finale .auth-row {
    grid-template-columns: 1fr;
  }
}
