:root {
  --paper: #f5f2ea;
  --paper-deep: #ece7dc;
  --surface: #fffefa;
  --surface-soft: #f8f7f2;
  --ink: #101914;
  --forest: #173c34;
  --forest-light: #24574c;
  --blue: #2457e6;
  --blue-dark: #1943bd;
  --blue-soft: #e9eeff;
  --rust: #c96745;
  --sage: #dcebdd;
  --sage-ink: #2f694a;
  --line: #d8ddd7;
  --line-dark: #bfc7c0;
  --muted: #647068;
  --muted-light: #9ba79f;
  --white: #ffffff;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --container: 1320px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 32px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 760px;
  background: var(--paper);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(16, 25, 20, .07) 50%, transparent calc(50% + .5px)),
    linear-gradient(rgba(16, 25, 20, .035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 72px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  background: var(--paper);
  border-bottom: 1px solid rgba(16, 25, 20, .16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--surface);
  background: var(--forest);
  border-radius: 6px;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.brand-mark circle {
  fill: var(--rust);
}

.brand-name {
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -.025em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  justify-self: center;
}

.site-nav a,
.header-login {
  position: relative;
  color: #3e4942;
  font-size: .89rem;
  font-weight: 600;
}

.site-nav a::after,
.header-login::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.site-nav a:hover::after,
.header-login:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 650;
  font-size: .92rem;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  cursor: default;
  opacity: .68;
  transform: none;
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: .82rem;
}

.btn-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.btn-ink {
  color: var(--white);
  background: var(--ink);
}

.btn-ink:hover {
  background: var(--forest);
  box-shadow: 0 8px 20px rgba(16, 25, 20, .16);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(390px, .82fr) minmax(620px, 1.28fr);
  gap: clamp(50px, 6vw, 96px);
  align-items: center;
  min-height: 700px;
}

.hero-copy {
  position: relative;
  padding-block: 106px 114px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--rust);
}

.hero h1 {
  max-width: 620px;
  margin-top: 25px;
  font-family: var(--font-serif);
  font-size: clamp(3.55rem, 5.15vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero-lead {
  max-width: 550px;
  margin-top: 27px;
  color: #48534c;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 35px;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 22px rgba(36, 87, 230, .16);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(36, 87, 230, .22);
}

.btn-paper {
  color: var(--ink);
  background: rgba(255, 254, 250, .48);
  border-color: #aeb7af;
}

.btn-paper:hover,
.btn-paper.is-ready {
  background: var(--surface);
  border-color: var(--ink);
}

.btn-paper.is-ready::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -6px;
  background: var(--rust);
  border-radius: 50%;
}

.btn-paper.is-installed::after {
  display: none;
}

.install-note {
  position: absolute;
  z-index: 10;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: start;
  width: min(420px, calc(100vw - 64px));
  margin-top: 12px;
  padding: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(16, 25, 20, .14);
}

.install-note[hidden] {
  display: none;
}

.install-note-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--forest);
  border-radius: 5px;
  font-weight: 600;
}

.install-note p {
  line-height: 1.35;
}

.install-note strong,
.install-note span {
  display: block;
}

.install-note strong {
  margin-bottom: 3px;
  font-size: .82rem;
}

.install-note p span {
  color: var(--muted);
  font-size: .75rem;
}

.install-note button {
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 25px;
  margin: 26px 0 0;
  padding: 0;
  color: #5c675f;
  list-style: none;
  font-size: .76rem;
  font-weight: 600;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--forest-light);
  border-radius: 50%;
}

.product-preview {
  position: relative;
  width: min(760px, 100%);
  margin-block: 76px 90px;
}

.preview-shadow {
  position: absolute;
  inset: 15px -15px -15px 15px;
  background: var(--blue);
  border-radius: 9px;
}

.app-window {
  position: relative;
  min-height: 520px;
  color: #1d2922;
  background: var(--surface-soft);
  border: 1px solid #aeb7af;
  border-radius: 9px;
  box-shadow: 0 30px 70px rgba(16, 25, 20, .2);
  overflow: visible;
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  min-height: 68px;
  padding: 0 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-radius: 9px 9px 0 0;
}

.window-brand,
.window-context {
  display: flex;
  align-items: center;
}

.window-brand {
  gap: 9px;
}

.mini-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--forest);
  border-radius: 5px;
  font-size: .76rem;
  font-weight: 700;
}

.window-brand > span:last-child {
  display: grid;
  line-height: 1.15;
}

.window-brand strong {
  font-size: .72rem;
}

.window-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .57rem;
}

.window-context {
  gap: 7px;
  color: #4d5951;
  font-size: .64rem;
  font-weight: 600;
}

.demo-label {
  padding: 3px 7px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 3px;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.window-avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  font-size: .54rem;
  font-weight: 700;
}

.board-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 0 20px;
  background: #f8f7f2;
  border-bottom: 1px solid var(--line);
}

.stage-track {
  display: flex;
  align-items: center;
  min-width: 0;
}

.stage-track span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: .57rem;
  font-weight: 650;
  white-space: nowrap;
}

.stage-track i {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: .48rem;
  font-style: normal;
}

.stage-track b {
  width: clamp(12px, 2.6vw, 33px);
  height: 1px;
  margin-inline: 7px;
  background: var(--line-dark);
}

.stage-track .stage-done {
  color: var(--sage-ink);
}

.stage-track .stage-done i {
  color: var(--white);
  background: var(--sage-ink);
  border-color: var(--sage-ink);
}

.stage-track .stage-active {
  color: var(--blue-dark);
}

.stage-track .stage-active i {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.mock-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 31px;
  padding: 0 10px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 4px;
  font-size: .57rem;
  font-weight: 650;
}

.mock-action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.board-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 388px;
}

.supervisor-rail {
  padding: 20px 14px;
  background: #f1f3ee;
  border-right: 1px solid var(--line);
}

.rail-title {
  display: flex;
  justify-content: space-between;
  padding: 0 5px 10px;
  color: var(--muted);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rail-title b {
  color: var(--ink);
}

.supervisor {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 7px;
  padding: 9px 8px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid transparent;
  border-radius: 5px;
}

.supervisor.is-active {
  background: var(--surface);
  border-color: rgba(36, 87, 230, .35);
  box-shadow: 0 4px 12px rgba(16, 25, 20, .06);
}

.person-avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: .48rem;
  font-weight: 700;
}

.avatar-blue {
  color: #2145a1;
  background: #dfe6ff;
}

.avatar-rust {
  color: #8c4128;
  background: #f3ddd4;
}

.avatar-green {
  color: #2f674a;
  background: #dcebdd;
}

.supervisor > span:nth-child(2) {
  display: grid;
  min-width: 0;
  line-height: 1.2;
}

.supervisor strong {
  overflow: hidden;
  font-size: .56rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.supervisor small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .46rem;
}

.supervisor em {
  color: #58645c;
  font-size: .5rem;
  font-style: normal;
  font-weight: 650;
}

.rail-capacity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 5px 0;
  padding-top: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .48rem;
}

.rail-capacity span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rail-capacity i {
  width: 5px;
  height: 5px;
  background: var(--sage-ink);
  border-radius: 50%;
}

.rail-capacity b {
  color: var(--forest);
  font-size: .7rem;
}

.group-board {
  min-width: 0;
  padding: 19px 20px 24px;
  background: #f9f9f6;
}

.board-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.board-heading > span:first-child {
  display: grid;
  line-height: 1.2;
}

.board-heading strong {
  font-size: .68rem;
}

.board-heading small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .48rem;
}

.board-count {
  color: var(--muted);
  font-size: .52rem;
  font-weight: 600;
}

.group-card {
  position: relative;
  margin-top: 9px;
  padding: 13px 14px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.group-card-focus {
  border-left: 3px solid var(--blue);
  box-shadow: 0 5px 16px rgba(36, 87, 230, .06);
}

.group-title,
.member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.group-title > span:first-child {
  display: grid;
  min-width: 0;
  line-height: 1.2;
}

.group-title b {
  font-size: .61rem;
}

.group-title small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: .48rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-state {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--sage-ink);
  font-size: .48rem;
  font-weight: 700;
}

.match-state i {
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  color: var(--white);
  background: var(--sage-ink);
  border-radius: 50%;
  font-size: .4rem;
  font-style: normal;
}

.member-row {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid #e8ebe6;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: -4px;
  color: #47534b;
  background: #edf0eb;
  border: 2px solid var(--surface);
  border-radius: 50%;
  font-size: .41rem;
  font-weight: 700;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.assigned-supervisor {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  color: #4d5951;
  font-size: .48rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex: none;
}

.dot-rust {
  background: var(--rust);
}

.dot-green {
  background: var(--sage-ink);
}

.match-toast {
  position: absolute;
  right: -24px;
  bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 220px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  box-shadow: 0 16px 35px rgba(16, 25, 20, .18);
  animation: toast-settle .7s .4s both cubic-bezier(.2, .8, .2, 1);
}

.match-toast > span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--white);
  background: var(--sage-ink);
  border-radius: 50%;
  font-size: .65rem;
}

.match-toast p {
  display: grid;
  line-height: 1.2;
}

.match-toast strong {
  font-size: .61rem;
}

.match-toast small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .49rem;
}

@keyframes toast-settle {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-foot {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 23px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #737d76;
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-foot i {
  width: 42px;
  height: 1px;
  background: #aeb7af;
}

.features {
  position: relative;
  padding-block: 132px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc((100% - min(100%, var(--container))) / 2 + 32px);
  left: 50%;
  height: 4px;
  background: var(--rust);
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(520px, 1.35fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 122px;
}

.section-kicker {
  color: var(--blue-dark);
}

.section-intro h2,
.join-heading h2 {
  margin-top: 22px;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 3.6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.section-intro > p:not(.section-kicker) {
  max-width: 470px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  padding-bottom: 5px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: .8rem;
  font-weight: 700;
}

.text-link span {
  color: var(--rust);
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

.feature-list {
  border-bottom: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 56px;
  gap: 24px;
  align-items: center;
  min-height: 190px;
  padding: 32px 8px 32px 0;
  border-top: 1px solid var(--line);
  transition: border-color .2s ease, transform .2s ease;
}

.feature-row:hover {
  border-top-color: var(--ink);
  transform: translateX(5px);
}

.feature-number {
  align-self: start;
  padding-top: 5px;
  color: var(--rust);
  font-family: var(--font-serif);
  font-size: .8rem;
  font-weight: 600;
}

.feature-copy h3 {
  font-family: var(--font-serif);
  font-size: 1.58rem;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.feature-copy p {
  max-width: 610px;
  margin-top: 11px;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.7;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--forest);
  background: var(--paper);
  border-radius: 6px;
}

.feature-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.join {
  position: relative;
  padding-block: 124px 100px;
  color: var(--white);
  background: var(--forest);
  overflow: hidden;
}

.join::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(90deg, transparent calc(33.333% - .5px), #fff 33.333%, transparent calc(33.333% + .5px), transparent calc(66.666% - .5px), #fff 66.666%, transparent calc(66.666% + .5px));
}

.join-inner {
  position: relative;
}

.join-heading {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(500px, 1.25fr);
  gap: 30px 80px;
  align-items: end;
}

.join-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-kicker-light {
  color: #a9cfc5;
}

.join-heading h2 {
  max-width: 690px;
  margin-top: 0;
  font-size: clamp(2.65rem, 4.2vw, 4.25rem);
}

.join-heading > p:last-child {
  max-width: 470px;
  padding-bottom: 8px;
  color: #b7c7c1;
  font-size: .96rem;
  line-height: 1.75;
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
  border-top: 1px solid rgba(255, 255, 255, .24);
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.join-step {
  min-height: 255px;
  padding: 29px 42px 35px;
  border-right: 1px solid rgba(255, 255, 255, .24);
}

.join-step:first-child {
  padding-left: 0;
}

.join-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.join-number {
  display: block;
  color: #96bfb4;
  font-family: var(--font-serif);
  font-size: .83rem;
}

.join-step > div {
  margin-top: 72px;
}

.join-step h3 {
  font-family: var(--font-serif);
  font-size: 1.52rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.join-step p {
  max-width: 310px;
  margin-top: 12px;
  color: #b7c7c1;
  font-size: .86rem;
  line-height: 1.7;
}

.join-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 42px;
}

.join-action > p {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #d6e1dd;
  font-family: var(--font-serif);
  font-size: 1.16rem;
}

.join-action > p span {
  color: #96bfb4;
  font-size: 1.4rem;
}

.join-action > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-light {
  color: var(--forest);
  background: var(--white);
  border-color: var(--white);
}

.btn-light:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.join-login {
  color: #d6e1dd;
  border-bottom: 1px solid rgba(214, 225, 221, .55);
  font-size: .76rem;
  font-weight: 600;
}

.join-login:hover {
  color: var(--white);
  border-color: var(--white);
}

.footer {
  color: #bac3bd;
  background: #0d1611;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  padding-top: 76px;
  padding-bottom: 62px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: #dce7e0;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 19px;
  color: #87928b;
  font-size: .85rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav span {
  margin-bottom: 7px;
  color: #68746c;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-nav a {
  width: max-content;
  color: #bac3bd;
  font-size: .8rem;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 26px;
  color: #69736d;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: .68rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-row:nth-child(2),
.join-step:nth-child(2) {
  transition-delay: .06s;
}

.feature-row:nth-child(3),
.join-step:nth-child(3) {
  transition-delay: .12s;
}

.feature-row:nth-child(4) {
  transition-delay: .18s;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(340px, .8fr) minmax(550px, 1.2fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 5.4vw, 4.6rem);
  }

  .product-preview {
    width: 700px;
  }

  .join-heading {
    grid-template-columns: 1.05fr .75fr;
  }
}

@media (max-width: 1020px) {
  .hero::before {
    background-image: linear-gradient(rgba(16, 25, 20, .035) 1px, transparent 1px);
    background-size: 100% 72px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    max-width: 760px;
    padding: 88px 0 54px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.7rem, 8vw, 5.2rem);
  }

  .product-preview {
    width: min(760px, calc(100% - 18px));
    margin: 18px auto 104px;
  }

  .hero-foot {
    bottom: 25px;
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .section-intro {
    position: static;
    max-width: 760px;
  }

  .features::before {
    left: 32px;
  }

  .join-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .join-heading > p:last-child {
    padding-bottom: 0;
  }

  .join-step {
    padding-inline: 28px;
  }
}

@media (max-width: 760px) {
  .container {
    padding-inline: 20px;
  }

  .site-header {
    min-height: 72px;
  }

  .header-actions {
    gap: 13px;
  }

  .header-login {
    font-size: .78rem;
  }

  .btn-small {
    padding-inline: 12px;
  }

  .btn-small .btn-icon {
    display: none;
  }

  .hero-copy {
    padding-top: 68px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 13.6vw, 4.25rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .product-preview {
    width: calc(100% - 4px);
    margin-top: 8px;
  }

  .preview-shadow {
    inset: 10px -10px -10px 10px;
  }

  .app-window {
    min-height: 490px;
  }

  .window-bar {
    padding-inline: 14px;
  }

  .window-context {
    display: none;
  }

  .board-toolbar {
    padding-inline: 14px;
  }

  .board-body {
    grid-template-columns: 1fr;
    min-height: 356px;
  }

  .supervisor-rail {
    display: none;
  }

  .group-board {
    padding-inline: 14px;
  }

  .group-card-muted {
    display: none;
  }

  .match-toast {
    right: 13px;
    bottom: -19px;
  }

  .features {
    padding-block: 92px;
  }

  .features::before {
    right: 20px;
    left: 20px;
  }

  .feature-row {
    grid-template-columns: 38px minmax(0, 1fr) 48px;
    gap: 14px;
    min-height: 175px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
  }

  .feature-copy h3 {
    font-size: 1.4rem;
  }

  .join {
    padding-block: 92px 78px;
  }

  .join::before {
    background-image: none;
  }

  .join-steps {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .join-step,
  .join-step:first-child,
  .join-step:last-child {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .join-step:last-child {
    border-bottom: 0;
  }

  .join-step > div {
    margin-top: 0;
  }

  .join-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .join-action > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 540px) {
  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-mark svg {
    width: 23px;
    height: 23px;
  }

  .brand-name {
    max-width: 92px;
    overflow: hidden;
    font-size: .95rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-login {
    display: none;
  }

  .hero-copy {
    padding-top: 55px;
  }

  .eyebrow {
    font-size: .63rem;
    letter-spacing: .1em;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(2.8rem, 14vw, 3.65rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .install-note {
    position: relative;
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .app-window {
    min-height: 475px;
  }

  .window-brand small,
  .window-avatar {
    display: none;
  }

  .stage-track span {
    font-size: .49rem;
  }

  .stage-track b {
    width: 8px;
    margin-inline: 4px;
  }

  .mock-action {
    padding-inline: 8px;
    font-size: .5rem;
  }

  .mock-action svg {
    display: none;
  }

  .group-title,
  .member-row {
    gap: 7px;
  }

  .match-toast {
    min-width: 195px;
  }

  .hero-foot {
    font-size: .55rem;
  }

  .section-intro h2,
  .join-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  .feature-row {
    grid-template-columns: 31px minmax(0, 1fr);
    padding-block: 27px;
  }

  .feature-icon {
    display: none;
  }

  .feature-copy h3 {
    font-size: 1.27rem;
  }

  .footer-nav {
    gap: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
