:root {
  --ink: #1a2e05;
  --ink-soft: #37521b;
  --lime: #a3e635;
  --lime-light: #d9f99d;
  --paper: #f8f9f1;
  --white: #ffffff;
  --line: #dfe5d5;
  --muted: #687261;
  --purple: #d9ccff;
  --blue: #b9e7f7;
  --shadow: 0 24px 60px rgba(26, 46, 5, 0.12);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
}
.page-width {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.045em;
}
.brand img {
  border-radius: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:not(.button):hover,
.footer-links a:hover,
.cta-login a:hover {
  color: var(--lime);
}
.nav-sign-in {
  color: var(--white);
}
.menu-cta {
  display: none;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 174px 0 40px;
  background: var(--ink);
  color: var(--white);
}
.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(163, 230, 53, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 230, 53, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}
.hero-glow-one {
  top: 140px;
  left: 42%;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(163, 230, 53, 0.19),
    transparent 68%
  );
}
.hero-glow-two {
  right: -180px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(163, 230, 53, 0.16),
    transparent 68%
  );
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 72px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
}
.section-label {
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(54px, 6.6vw, 86px);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 0.94;
}
h1 em {
  color: var(--lime);
  font-style: normal;
}
.hero-lede {
  max-width: 500px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  letter-spacing: -0.012em;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 20, 0, 0.18);
}
.button-lime {
  background: var(--lime);
  color: var(--ink);
}
.button-dark {
  background: var(--ink);
  color: var(--lime);
}
.button-small {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.text-link span {
  font-size: 18px;
  line-height: 0;
  transition: transform 0.2s ease;
}
.text-link:hover span {
  transform: translateX(4px);
}
.text-link-light {
  color: var(--white);
}
.text-link-light:hover {
  color: var(--lime);
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}
.note-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(163, 230, 53, 0.16);
  color: var(--lime);
  font-weight: 800;
}

.product-preview {
  position: relative;
  min-height: 500px;
  padding: 18px 0 0;
}
.preview-orbit {
  position: absolute;
  border: 1px solid rgba(163, 230, 53, 0.22);
  border-radius: 50%;
  transform: rotate(-28deg);
}
.preview-orbit-one {
  top: 28px;
  right: -74px;
  width: 540px;
  height: 260px;
}
.preview-orbit-two {
  right: -24px;
  bottom: 52px;
  width: 460px;
  height: 210px;
  border-color: rgba(255, 255, 255, 0.13);
}
.dashboard-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #f8faf4;
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.42),
    0 0 0 10px rgba(163, 230, 53, 0.04);
  color: var(--ink);
  transform: rotate(2deg);
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 19px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.window-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: -0.03em;
}
.window-brand img {
  border-radius: 5px;
}
.window-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #77816d;
  font-size: 9px;
  font-weight: 700;
}
.window-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67b20e;
}
.dashboard-body {
  padding: 25px 27px 28px;
}
.dashboard-heading,
.schedule-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-kicker {
  margin-bottom: 3px;
  color: #87907e;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dashboard-heading h2 {
  margin-bottom: 19px;
  font-size: 22px;
  letter-spacing: -0.05em;
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 25px;
}
.stat-card {
  min-height: 102px;
  padding: 13px;
  border: 1px solid #e4e9dc;
  border-radius: 9px;
  background: #fff;
}
.stat-card-lime {
  border-color: var(--lime);
  background: var(--lime);
}
.stat-card span,
.stat-card small {
  display: block;
  color: #7f8977;
  font-size: 9px;
  font-weight: 700;
}
.stat-card strong {
  display: block;
  margin: 7px 0 4px;
  font-size: 27px;
  letter-spacing: -0.07em;
  line-height: 1;
}
.stat-card-lime span,
.stat-card-lime small {
  color: #55751d;
}
.stat-card .stat-up {
  color: #659d1b;
}
.schedule-heading {
  margin-bottom: 10px;
  font-size: 11px;
}
.schedule-heading a {
  color: #75ab27;
  font-size: 9px;
  font-weight: 800;
}
.schedule-list {
  display: grid;
  gap: 7px;
}
.schedule-row {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 55px;
  padding: 7px 10px 7px 7px;
  border: 1px solid #e4e9dc;
  border-radius: 9px;
  background: #fff;
}
.date-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 40px;
  border-radius: 6px;
  background: var(--lime-light);
}
.date-tile strong {
  font-size: 15px;
  line-height: 1;
}
.date-tile span {
  margin-top: 2px;
  color: #638627;
  font-size: 7px;
  font-weight: 800;
}
.date-tile-purple {
  background: var(--purple);
}
.date-tile-purple span {
  color: #7762b2;
}
.date-tile-blue {
  background: var(--blue);
}
.date-tile-blue span {
  color: #397b98;
}
.schedule-detail {
  display: grid;
  flex: 1;
  gap: 2px;
}
.schedule-detail strong {
  font-size: 10px;
}
.schedule-detail span {
  color: #8a9283;
  font-size: 8px;
}
.schedule-pill {
  padding: 5px 7px;
  border-radius: 5px;
  background: #f0f4eb;
  color: #76816d;
  font-size: 8px;
  font-weight: 700;
}
.hero-bottom {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 31px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}
.hero-bottom > div {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}
.hero-bottom i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.6;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  padding-top: 145px;
  padding-bottom: 72px;
}
.section-label {
  margin: 0;
  color: #77ad24;
}
.intro-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}
.intro-content h2 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.05em;
  line-height: 0.98;
}
.intro-content p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.features-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 150px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  border-radius: 16px;
}
.feature-card-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  min-height: 410px;
}
.feature-card-tall {
  min-height: 410px;
}
.feature-card-dark {
  background: var(--ink);
  color: var(--white);
}
.feature-card-lime {
  background: var(--lime);
}
.feature-card-paper {
  background: #fff;
}
.feature-card-outline {
  display: grid;
  align-items: center;
  min-height: 310px;
  border: 1px solid #cfd8c6;
  background: transparent;
}
.feature-number {
  display: block;
  margin-bottom: 24px;
  color: #77ad24;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.feature-card-dark .feature-number {
  color: var(--lime);
}
.feature-card-lime .feature-number {
  color: #527b12;
}
.feature-card h3 {
  max-width: 330px;
  margin-bottom: 14px;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1.01;
}
.feature-card-tall h3 {
  font-size: 32px;
}
.feature-card p {
  max-width: 380px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}
.feature-card-dark p {
  color: rgba(255, 255, 255, 0.62);
}
.feature-card-lime p {
  color: #527019;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 38px;
  border: 1px solid rgba(26, 46, 5, 0.22);
  border-radius: 14px;
}
.icon-calendar {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: 6px repeat(2, 8px);
  gap: 5px;
  padding: 17px;
}
.icon-calendar::before {
  grid-column: 1 / -1;
  width: 100%;
  height: 2px;
  background: var(--ink);
  content: "";
}
.icon-calendar span {
  border: 1.5px solid var(--ink);
  border-radius: 2px;
}
.icon-court {
  position: relative;
}
.icon-court span {
  position: absolute;
  width: 36px;
  height: 24px;
  border: 1.5px solid var(--ink);
}
.icon-court span:first-child {
  border-right: 0;
}
.icon-court span:nth-child(2) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.icon-court span:nth-child(3) {
  width: 1px;
  height: 24px;
  border: 0;
  background: var(--ink);
}
.league-art {
  position: relative;
  min-height: 280px;
  align-self: end;
}
.art-ring {
  position: absolute;
  left: -80px;
  border: 1px solid rgba(163, 230, 53, 0.38);
  border-radius: 50%;
  transform: rotate(-20deg);
}
.ring-one {
  top: 34px;
  width: 370px;
  height: 180px;
}
.ring-two {
  top: 93px;
  left: -42px;
  width: 310px;
  height: 145px;
  border-color: rgba(255, 255, 255, 0.13);
}
.art-ball {
  position: absolute;
  top: 91px;
  left: 175px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 70px rgba(163, 230, 53, 0.28);
}
.art-ball::before,
.art-ball::after {
  position: absolute;
  width: 60px;
  height: 24px;
  border-top: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}
.art-ball::before {
  top: 17px;
  left: -6px;
  transform: rotate(34deg);
}
.art-ball::after {
  right: -5px;
  bottom: 17px;
  transform: rotate(34deg);
}
.art-line {
  position: absolute;
  height: 1px;
  background: rgba(163, 230, 53, 0.55);
  transform: rotate(-24deg);
}
.line-one {
  top: 66px;
  left: 112px;
  width: 190px;
}
.line-two {
  top: 235px;
  left: 10px;
  width: 260px;
}
.feature-content {
  align-self: end;
}
.feature-card-members {
  min-height: 380px;
}
.member-art {
  position: relative;
  min-height: 270px;
}
.member-avatar {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 4px solid #fff;
  border-radius: 50%;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(26, 46, 5, 0.12);
}
.avatar-one {
  top: 20px;
  left: 36px;
  background: #e8c7a7;
}
.avatar-two {
  top: 77px;
  left: 100px;
  background: var(--lime);
}
.avatar-three {
  top: 17px;
  left: 162px;
  background: var(--purple);
}
.avatar-four {
  top: 93px;
  right: 0;
  background: var(--blue);
}
.member-message {
  position: absolute;
  top: 170px;
  left: 46px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  width: 190px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}
.message-dot {
  grid-row: span 2;
  align-self: center;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.member-message span {
  color: #85907d;
  font-size: 8px;
  font-weight: 700;
}
.member-message strong {
  font-size: 10px;
}
.role-stack {
  display: grid;
  gap: 8px;
}
.role-stack > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}
.role-stack strong,
.role-stack small {
  grid-column: 2;
}
.role-stack strong {
  font-size: 10px;
}
.role-stack small {
  color: #87907e;
  font-size: 9px;
}
.role-icon {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  background: #e8f5c9;
  color: #6e9f24;
  font-size: 12px;
}
.role-icon-lime {
  background: var(--lime);
  color: var(--ink);
}
.role-icon-blue {
  background: var(--blue);
  color: #397b98;
}

.workflow-section {
  position: relative;
  overflow: hidden;
  padding: 126px 0 135px;
  background: var(--ink);
  color: var(--white);
}
.workflow-section::after {
  position: absolute;
  right: -200px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(163, 230, 53, 0.2);
  border-radius: 50%;
  content: "";
}
.workflow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}
.section-label-light {
  color: var(--lime);
}
.workflow-copy h2 {
  max-width: 430px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.05em;
  line-height: 0.95;
}
.workflow-copy p {
  max-width: 350px;
  margin-bottom: 33px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.65;
}
.workflow-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.workflow-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.workflow-steps li:first-child {
  padding-top: 5px;
}
.workflow-steps > li > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.workflow-steps strong {
  display: block;
  margin-bottom: 7px;
  font-size: 21px;
  letter-spacing: -0.04em;
}
.workflow-steps p {
  max-width: 400px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.55;
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 145px;
  text-align: center;
}
.cta-mark {
  margin-bottom: 24px;
  padding: 12px;
  border-radius: 14px;
  background: var(--ink);
}
.final-cta h2 {
  max-width: 730px;
  margin-bottom: 17px;
  font-size: clamp(42px, 5vw, 67px);
  letter-spacing: -0.05em;
  line-height: 0.97;
}
.final-cta > p {
  max-width: 430px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.final-cta .button {
  margin-bottom: 20px;
}
.final-cta .cta-login {
  margin: 0;
  color: #8a9384;
  font-size: 12px;
}
.cta-login a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer {
  padding: 32px 0 22px;
  border-top: 1px solid var(--line);
  background: #eef2e8;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 30px;
}
.brand-footer {
  color: var(--ink);
  font-size: 17px;
}
.footer-inner p {
  margin: 0;
  color: #87907e;
  font-size: 12px;
}
.footer-links {
  display: flex;
  gap: 21px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #9aa394;
  font-size: 10px;
}

.legal-site-header {
  position: static;
  background: var(--ink);
}

.legal-page {
  padding: 86px 0 120px;
}

.legal-shell {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-intro {
  padding: 66px 0 48px;
  border-bottom: 1px solid var(--line);
}

.legal-intro h1 {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.96;
}

.legal-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.legal-updated {
  margin-top: 20px !important;
  color: #87907e !important;
  font-size: 12px !important;
  font-weight: 700;
}

.legal-content {
  padding-top: 42px;
}

.legal-content section {
  margin-bottom: 38px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content p {
  margin-bottom: 14px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: #5b8616;
}

.legal-callout {
  margin-top: 40px;
  padding: 20px 22px;
  border-left: 4px solid var(--lime);
  background: #eef2e8;
}

.legal-callout p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .product-preview {
    max-width: 680px;
    width: 100%;
    margin: 20px auto 0;
  }
  .hero {
    padding-top: 145px;
  }
  .intro-content {
    gap: 30px;
  }
  .workflow-grid {
    gap: 65px;
  }
}
@media (max-width: 1100px) {
  .features-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .page-width {
    width: min(100% - 32px, 560px);
  }
  .site-nav {
    min-height: 74px;
  }
  .nav-links {
    display: none;
  }
  .menu-cta {
    display: block;
  }
  .hero {
    min-height: auto;
    padding-top: 125px;
  }
  .hero-grid {
    display: block;
  }
  .hero-copy {
    padding-bottom: 45px;
  }
  .hero-lede {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }
  .product-preview {
    min-height: 0;
    padding: 0;
  }
  .dashboard-window {
    transform: none;
  }
  .preview-orbit {
    display: none;
  }
  .dashboard-body {
    padding: 19px 16px;
  }
  .window-bar {
    padding: 12px 14px;
  }
  .stats-grid {
    gap: 6px;
  }
  .stat-card {
    min-height: 84px;
    padding: 9px;
  }
  .stat-card strong {
    font-size: 21px;
  }
  .stat-card span,
  .stat-card small {
    font-size: 7px;
  }
  .schedule-pill {
    display: none;
  }
  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 34px;
    padding-bottom: 12px;
  }
  .hero-bottom > div {
    flex-wrap: wrap;
    gap: 10px;
  }
  .intro-section {
    display: block;
    padding-top: 90px;
    padding-bottom: 48px;
  }
  .intro-section .section-label {
    margin-bottom: 23px;
  }
  .intro-content {
    display: block;
  }
  .intro-content h2 {
    margin-bottom: 24px;
    font-size: 42px;
  }
  .features-section {
    display: block;
    padding-bottom: 90px;
  }
  .feature-card,
  .feature-card-wide,
  .feature-card-tall,
  .feature-card-outline {
    min-height: 0;
    margin-bottom: 14px;
    padding: 27px;
  }
  .feature-card-wide {
    display: block;
  }
  .league-art,
  .member-art {
    min-height: 210px;
    margin-bottom: 10px;
  }
  .art-ball {
    top: 60px;
    left: calc(50% - 45px);
    width: 90px;
    height: 90px;
  }
  .ring-one {
    top: 10px;
    left: calc(50% - 185px);
  }
  .ring-two {
    top: 65px;
    left: calc(50% - 155px);
  }
  .line-one {
    top: 40px;
    left: 20%;
  }
  .line-two {
    top: 180px;
    left: 5%;
  }
  .feature-card-tall h3,
  .feature-card h3 {
    font-size: 31px;
  }
  .feature-icon {
    margin-bottom: 26px;
  }
  .member-avatar {
    transform: scale(0.9);
  }
  .avatar-one {
    left: 4%;
  }
  .avatar-two {
    left: 25%;
  }
  .avatar-three {
    left: 47%;
  }
  .avatar-four {
    right: 0;
  }
  .member-message {
    left: 12%;
  }
  .role-stack {
    margin-top: 28px;
  }
  .workflow-section {
    padding: 90px 0;
  }
  .workflow-grid {
    display: block;
  }
  .workflow-copy {
    margin-bottom: 60px;
  }
  .workflow-copy h2 {
    font-size: 51px;
  }
  .final-cta {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .final-cta h2 {
    font-size: 48px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .footer-links {
    margin-left: 0;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .legal-page {
    padding: 56px 0 80px;
  }
  .legal-shell {
    width: min(100% - 32px, 560px);
  }
  .legal-intro {
    padding: 42px 0 34px;
  }
  .legal-content {
    padding-top: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button,
  .text-link span {
    transition: none;
  }
}
