:root {
  --ink: #18202a;
  --ink-soft: #26313d;
  --paper: #eef3f7;
  --lime: #c9ff63;
  --card: #ffffff;
  --panel: #dfe7ec;
  --muted: #65717b;
  --line: #d3dde4;
  --white: #f7f9fa;
  --blue: #6f94e8;
  --peach: #f09a78;
  --violet: #aa8be6;
  --shadow: 0 24px 70px rgb(24 32 42 / 12%);
  --radius-sm: 0.75rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.75rem;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .38;
  background-image: radial-gradient(rgb(24 32 42 / 9%) .55px, transparent .55px);
  background-size: 6px 6px;
  pointer-events: none;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

:focus-visible {
  outline: 3px solid #557d00;
  outline-offset: 4px;
}

.shell {
  width: min(100% - 2.25rem, 76rem);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
  transition: transform .2s var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 50;
  padding-top: .8rem;
}

.nav {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: -.035em;
}

.logo-mark {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 2px;
  padding: .3rem;
  border-radius: .5rem;
  background: var(--ink);
}

.logo-mark i { display: block; border-radius: 2px; background: var(--lime); }
.logo-mark i:nth-child(1) { height: 42%; }
.logo-mark i:nth-child(2) { height: 100%; }
.logo-mark i:nth-child(3) { height: 68%; }

.menu-toggle {
  min-width: 4.7rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 48%);
  color: var(--ink);
  cursor: pointer;
}

.menu-icon { width: 1rem; display: grid; gap: 4px; }
.menu-icon i { width: 100%; height: 1px; background: currentColor; transition: transform .25s var(--ease); }
.menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(2.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-2.5px) rotate(-45deg); }

.nav-menu {
  position: absolute;
  top: 4.85rem;
  left: 1.125rem;
  right: 1.125rem;
  display: grid;
  gap: .25rem;
  padding: .65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgb(247 249 250 / 96%);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-.65rem) scale(.98);
  transform-origin: top;
  transition: opacity .22s, transform .22s, visibility .22s;
  backdrop-filter: blur(18px);
}

.nav-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.nav-menu > a:not(.button) { padding: .85rem 1rem; border-radius: .7rem; font-weight: 650; }
.nav-menu > a:not(.button):hover { background: var(--panel); }

.button {
  position: relative;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .8rem 1.25rem;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  font-weight: 760;
  cursor: pointer;
  isolation: isolate;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s;
}

.button::before {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 25%, rgb(255 255 255 / 28%) 48%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .65s var(--ease);
}

.button:hover::before { transform: translateX(110%); }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgb(24 32 42 / 18%); }
.button:active { transform: translateY(0) scale(.97); }
.button svg { width: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: #242f3b; }
.button--small { min-height: 2.75rem; padding: .6rem 1rem; font-size: .88rem; }

.eyebrow, .section-number {
  margin: 0;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow { display: inline-flex; align-items: center; gap: .65rem; }
.eyebrow > span { width: .5rem; height: .5rem; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgb(201 255 99 / 20%); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: .98; letter-spacing: -.058em; }
h1 { margin-bottom: 1.25rem; font-size: clamp(3.15rem, 13vw, 7.2rem); font-weight: 650; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.65rem, 10vw, 5.8rem); font-weight: 620; }
h3 { margin-bottom: .65rem; font-size: clamp(1.45rem, 6vw, 2rem); }
h1 mark { display: inline-block; padding: 0 .12em .08em; border-radius: .13em; background: var(--lime); color: inherit; transform: rotate(-1deg); }
h2 em { color: var(--lime); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.hero {
  min-height: calc(100svh - 4.8rem);
  padding-block: clamp(4.5rem, 14vw, 8.5rem) clamp(4.5rem, 10vw, 7rem);
  display: grid;
  align-content: center;
}

.hero-copy { max-width: 68rem; margin-inline: auto; text-align: center; }
.hero-copy .eyebrow { margin-bottom: 1.55rem; }
.hero-lead { max-width: 36rem; margin: 0 auto 1.6rem; color: var(--muted); font-size: clamp(1.05rem, 3vw, 1.3rem); }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.hero-actions > span { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .72rem; }
.hero-actions i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

.board-stage { position: relative; min-width: 0; margin-top: clamp(3rem, 8vw, 5rem); perspective: 1200px; }
.board-glow { position: absolute; top: 8%; left: 50%; width: 78%; height: 74%; border-radius: 50%; background: var(--lime); opacity: .14; filter: blur(70px); transform: translateX(-50%); }
.board-window { position: relative; width: 100%; min-width: 0; border: 1px solid rgb(255 255 255 / 72%); border-radius: var(--radius-lg); background: rgb(223 231 236 / 74%); box-shadow: 0 38px 90px rgb(38 56 70 / 20%), inset 0 1px rgb(255 255 255 / 80%); transition: transform .55s var(--ease); backdrop-filter: blur(18px); }
.board-toolbar { min-height: 4.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 1rem; border-bottom: 1px solid rgb(24 32 42 / 9%); }
.project-title { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.project-icon { width: 2.25rem; height: 2.25rem; flex: 0 0 auto; display: grid; place-items: center; border-radius: .7rem; background: var(--ink); color: var(--lime); font-weight: 850; }
.project-title div { display: grid; min-width: 0; }
.project-title small { color: var(--muted); font-size: .6rem; }
.project-title strong { overflow: hidden; font-size: .8rem; text-overflow: ellipsis; white-space: nowrap; }
.toolbar-actions { display: flex; align-items: center; gap: .45rem; }
.avatar-stack { display: flex; padding-left: .4rem; }
.avatar { width: 1.75rem; height: 1.75rem; display: grid; place-items: center; flex: 0 0 auto; margin-left: -.4rem; border: 2px solid var(--card); border-radius: 50%; color: var(--ink); font-size: .55rem; font-weight: 850; }
.avatar--peach { background: var(--peach); }
.avatar--blue { background: var(--blue); }
.avatar--violet { background: var(--violet); }
.avatar--lime { background: var(--lime); }
.icon-button { min-width: 2.5rem; min-height: 2.5rem; display: grid; place-items: center; border: 1px solid rgb(24 32 42 / 9%); border-radius: .75rem; background: rgb(255 255 255 / 58%); color: var(--ink); cursor: pointer; }
.icon-button svg { width: 1rem; fill: none; stroke: currentColor; stroke-width: 1.8; }

.kanban {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: flex;
  gap: .75rem;
  padding: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--muted) transparent;
  overscroll-behavior-inline: contain;
}

.kanban-column { width: min(78vw, 16.75rem); min-height: 19rem; flex: 0 0 auto; padding: .72rem; border: 1px solid transparent; border-radius: .95rem; scroll-snap-align: start; transition: background .25s, border-color .25s, transform .25s; }
.kanban-column.is-drop-target { border-color: #82ad2d; background: rgb(201 255 99 / 28%); transform: translateY(-3px); }
.column-head { width: 100%; min-height: 2.75rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-bottom: .35rem; padding: .35rem .15rem; border: 0; border-radius: .55rem; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.column-head:hover { background: rgb(255 255 255 / 45%); }
.column-title { display: flex; align-items: center; gap: .5rem; font-size: .69rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.column-title i { width: .5rem; height: .5rem; border-radius: 50%; background: var(--column-color, var(--muted)); }
.column-count { min-width: 1.45rem; min-height: 1.45rem; display: grid; place-items: center; border-radius: 999px; background: rgb(24 32 42 / 8%); color: var(--muted); font-size: .62rem; font-weight: 800; }
.task-list { min-height: 14rem; display: grid; align-content: start; gap: .55rem; }
.task-card { position: relative; padding: .82rem; border: 1px solid rgb(24 32 42 / 8%); border-radius: .85rem; background: var(--card); box-shadow: 0 8px 22px rgb(24 32 42 / 7%); cursor: grab; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s; }
.task-card:hover { transform: translateY(-3px); border-color: rgb(24 32 42 / 18%); box-shadow: 0 14px 28px rgb(24 32 42 / 12%); }
.task-card.is-dragging { opacity: .52; transform: rotate(1.5deg) scale(1.025); box-shadow: 0 20px 45px rgb(24 32 42 / 23%); cursor: grabbing; }
.task-card.is-selected { border-color: #608700; box-shadow: 0 0 0 3px rgb(201 255 99 / 55%), 0 15px 35px rgb(24 32 42 / 14%); }
.task-priority { display: inline-flex; align-items: center; gap: .32rem; margin-bottom: .65rem; padding: .22rem .4rem; border-radius: .35rem; background: var(--priority-bg, var(--panel)); color: var(--priority-ink, var(--ink)); font-size: .52rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.task-priority::before { width: .35rem; height: .35rem; border-radius: 50%; background: currentColor; content: ""; }
.task-priority[data-tone="orange"] { --priority-bg: #fff0e9; --priority-ink: #a64827; }
.task-priority[data-tone="blue"] { --priority-bg: #eaf0ff; --priority-ink: #365da9; }
.task-priority[data-tone="violet"] { --priority-bg: #f1eaff; --priority-ink: #6743a7; }
.task-priority[data-tone="neutral"] { --priority-bg: #edf0f2; --priority-ink: #56616c; }
.task-card h3 { margin-bottom: .8rem; font-size: .82rem; line-height: 1.25; letter-spacing: -.02em; }
.task-meta { display: flex; align-items: center; justify-content: space-between; gap: .5rem; color: var(--muted); font-size: .58rem; }
.task-meta .avatar { width: 1.45rem; height: 1.45rem; margin: 0; border: 0; font-size: .46rem; }
.board-hint { display: flex; align-items: center; justify-content: center; gap: .5rem; margin: .9rem 0 0; color: var(--muted); font-size: .7rem; }
.board-hint span { width: 1.45rem; height: 1.45rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }

.outcome { position: relative; padding-block: clamp(5rem, 14vw, 9rem) 3.5rem; overflow: hidden; background: var(--ink); color: var(--white); }
.outcome::before { position: absolute; top: -20%; right: -25%; width: 40rem; aspect-ratio: 1; border: 1px solid rgb(201 255 99 / 18%); border-radius: 50%; box-shadow: 0 0 0 7rem rgb(201 255 99 / 3%), 0 0 0 14rem rgb(201 255 99 / 2%); content: ""; }
.outcome .section-number { color: #96a2ad; }
.outcome-grid { position: relative; display: grid; gap: 2rem; }
.outcome h2 { max-width: 52rem; }
.section-lead { max-width: 35rem; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); }
.outcome .section-lead { color: #aeb7c0; }
.metrics { position: relative; display: grid; margin-top: 3.5rem; border-top: 1px solid rgb(255 255 255 / 14%); }
.metrics article { padding: 1.6rem 0; border-bottom: 1px solid rgb(255 255 255 / 14%); }
.metrics strong { display: flex; align-items: flex-start; color: var(--lime); font-size: clamp(3.1rem, 12vw, 5.7rem); font-weight: 560; line-height: 1; letter-spacing: -.07em; }
.metrics sup { margin: .5rem 0 0 .1rem; font-size: .35em; }
.metrics p { margin: .55rem 0 0; color: #aeb7c0; font-size: .8rem; }
.signal-line { position: relative; display: flex; align-items: center; gap: .8rem; margin-top: 3.5rem; padding-inline: 1.125rem; color: #85919d; font-size: .55rem; font-weight: 850; letter-spacing: .12em; }
.signal-line i { height: 1px; flex: 1; background: linear-gradient(90deg, var(--lime), transparent); }

.features { padding-block: clamp(5rem, 14vw, 9rem); }
.section-head { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
.section-head .section-number, .collab-copy .section-number { margin-bottom: 1.25rem; }
.section-head h2, .collaboration h2 { margin-bottom: 0; }
.bento { display: grid; gap: .8rem; }
.feature-card { position: relative; min-height: 20rem; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; padding: 1.35rem; overflow: hidden; border: 1px solid rgb(255 255 255 / 76%); border-radius: var(--radius-lg); background: rgb(255 255 255 / 68%); box-shadow: inset 0 1px rgb(255 255 255 / 86%); }
.feature-card h3 { max-width: 23rem; }
.feature-card p { max-width: 25rem; margin-bottom: 0; color: var(--muted); }
.feature-icon { width: 2.65rem; height: 2.65rem; display: grid; place-items: center; margin-bottom: 1.8rem; border: 1px solid var(--line); border-radius: .8rem; background: var(--white); }
.feature-icon svg { width: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.7; }
.feature-card--metric { min-height: 17rem; background: var(--lime); }
.feature-card--metric strong { margin-top: auto; font-size: clamp(4rem, 20vw, 7rem); font-weight: 560; line-height: .8; letter-spacing: -.085em; }
.feature-card--metric p { max-width: 12rem; color: var(--ink); font-weight: 680; }
.orbit { position: absolute; top: -5rem; right: -5rem; width: 15rem; aspect-ratio: 1; border: 1px solid rgb(24 32 42 / 18%); border-radius: 50%; }
.orbit::before, .orbit::after { position: absolute; inset: 20%; border: inherit; border-radius: inherit; content: ""; }
.orbit::after { inset: 40%; }
.orbit i { position: absolute; width: .65rem; height: .65rem; border-radius: 50%; background: var(--ink); }
.orbit i:nth-child(1) { top: 48%; left: -5px; }
.orbit i:nth-child(2) { top: 8%; left: 55%; }
.orbit i:nth-child(3) { right: 18%; bottom: 6%; }
.mini-board { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .85rem; border-radius: 1rem; background: var(--panel); transform: rotate(-1.5deg); }
.mini-board > div { display: grid; align-content: start; gap: .45rem; }
.mini-board small { padding: .25rem; color: var(--muted); font-size: .48rem; font-weight: 850; }
.mini-board span { display: flex; align-items: center; gap: .4rem; padding: .65rem; border-radius: .6rem; background: var(--card); font-size: .6rem; box-shadow: 0 5px 15px rgb(24 32 42 / 7%); }
.mini-board .mini-card--active { background: var(--lime); transform: translateY(1.5rem) rotate(2deg); box-shadow: 0 14px 28px rgb(24 32 42 / 15%); }
.tag { width: .42rem; height: .42rem; border-radius: 50%; }
.tag--orange { background: var(--peach); }
.tag--blue { background: var(--blue); }
.tag--lime { background: #588100; }
.filter-pills { display: flex; flex-wrap: wrap; gap: .45rem; }
.filter-pills span { padding: .5rem .75rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--muted); font-size: .65rem; }
.filter-pills span:first-child { border-color: var(--ink); background: var(--ink); color: var(--white); }
.comment-preview { display: flex; align-items: flex-start; gap: .7rem; padding: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--card); box-shadow: 0 12px 30px rgb(24 32 42 / 8%); }
.comment-preview .avatar { width: 2rem; height: 2rem; margin: 0; border: 0; }
.comment-preview p { display: grid; flex: 1; gap: .15rem; color: var(--ink); font-size: .68rem; }
.comment-preview small { color: var(--muted); font-weight: 400; }

.collaboration { padding-bottom: clamp(5rem, 14vw, 9rem); display: grid; gap: 3.5rem; align-items: center; }
.collaboration em { color: var(--ink); }
.team-row { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; color: var(--muted); font-size: .7rem; }
.avatar-stack--large .avatar { width: 2.3rem; height: 2.3rem; margin-left: -.55rem; font-size: .62rem; }
.collab-scene { position: relative; min-height: 25rem; border-radius: var(--radius-lg); background: var(--panel); overflow: hidden; isolation: isolate; }
.collab-scene::before { position: absolute; inset: 12%; z-index: -1; border-radius: 50%; background: var(--lime); filter: blur(2px); content: ""; }
.scene-ring { position: absolute; top: 50%; left: 50%; width: 18rem; aspect-ratio: 1; border: 1px solid rgb(24 32 42 / 18%); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 3rem rgb(24 32 42 / 4%), 0 0 0 6rem rgb(24 32 42 / 3%); }
.activity-card { position: absolute; z-index: 2; width: min(80%, 18rem); display: grid; grid-template-columns: auto 1fr; gap: .7rem; padding: .95rem; border: 1px solid rgb(24 32 42 / 10%); border-radius: 1rem; background: rgb(255 255 255 / 88%); box-shadow: 0 20px 45px rgb(24 32 42 / 13%); backdrop-filter: blur(12px); }
.activity-card .avatar { width: 2.1rem; height: 2.1rem; margin: 0; border: 0; }
.activity-card p { margin: 0; font-size: .68rem; }
.activity-card p strong { display: inline-block; margin-top: .2rem; }
.activity-card small { grid-column: 2; color: var(--muted); font-size: .55rem; }
.activity-card--one { top: 18%; left: 6%; transform: rotate(-2deg); }
.activity-card--two { right: 5%; bottom: 17%; transform: rotate(2deg); }
.presence-cursor { position: absolute; z-index: 4; display: flex; align-items: center; gap: .3rem; color: var(--ink); font-size: .55rem; font-weight: 800; animation: cursor-float 4s ease-in-out infinite; }
.presence-cursor svg { width: 1.1rem; fill: var(--ink); stroke: var(--white); stroke-width: 1.2; }
.presence-cursor span { padding: .2rem .4rem; border-radius: .35rem; background: var(--ink); color: var(--white); }
.presence-cursor--one { top: 12%; right: 12%; }
.presence-cursor--two { left: 12%; bottom: 10%; animation-delay: -2s; }

.final-cta { position: relative; min-height: 31rem; display: grid; place-items: center; align-content: center; margin-bottom: 1rem; padding: clamp(3rem, 10vw, 6rem) 1.25rem; overflow: hidden; border-radius: var(--radius-lg); background: var(--lime); text-align: center; }
.final-cta .eyebrow { margin-bottom: 1.5rem; color: var(--ink); }
.final-cta .eyebrow > span { background: var(--ink); box-shadow: 0 0 0 5px rgb(24 32 42 / 10%); }
.final-cta h2 { position: relative; max-width: 62rem; margin-bottom: 1rem; }
.final-cta h2 em { color: var(--ink); }
.final-cta > p:not(.eyebrow) { position: relative; color: var(--ink-soft); }
.final-cta .button { position: relative; margin-top: .75rem; }
.cta-art span { position: absolute; border: 1px solid rgb(24 32 42 / 14%); border-radius: 50%; }
.cta-art span:nth-child(1) { width: 22rem; aspect-ratio: 1; top: -13rem; left: -10rem; }
.cta-art span:nth-child(2) { width: 10rem; aspect-ratio: 1; right: -4rem; bottom: -3rem; }
.cta-art span:nth-child(3) { width: .8rem; height: .8rem; top: 18%; right: 10%; background: var(--ink); }

.footer { min-height: 7rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.5rem; }
.footer nav { display: flex; flex-wrap: wrap; gap: .85rem 1.2rem; color: var(--muted); font-size: .75rem; }
.footer nav a:hover { color: var(--ink); }
.footer small { width: 100%; color: var(--muted); font-size: .65rem; }

.toast { position: fixed; left: 50%; bottom: 1rem; z-index: 80; width: min(calc(100% - 2rem), 30rem); padding: .9rem 1rem; border-radius: 999px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); font-size: .78rem; text-align: center; opacity: 0; visibility: hidden; transform: translate(-50%, 1rem); transition: opacity .28s, transform .28s, visibility .28s; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.js-ready [data-reveal] { opacity: 0; transform: translateY(1.5rem); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js-ready [data-reveal].is-visible { opacity: 1; transform: none; }
.js-ready .hero [data-reveal]:nth-child(2) { transition-delay: .08s; }
.js-ready .hero [data-reveal]:nth-child(3) { transition-delay: .16s; }
.js-ready .hero [data-reveal]:nth-child(4) { transition-delay: .24s; }

@keyframes cursor-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(.65rem, -.8rem, 0); }
}

@media (min-width: 48rem) {
  .shell { width: min(100% - 4rem, 76rem); }
  .site-header { padding-top: 1rem; }
  .menu-toggle { display: none; }
  .nav-menu { position: static; display: flex; align-items: center; gap: 1.6rem; padding: 0; border: 0; background: none; box-shadow: none; opacity: 1; visibility: visible; transform: none; backdrop-filter: none; }
  .nav-menu > a:not(.button) { padding: .5rem 0; font-size: .82rem; }
  .nav-menu > a:not(.button):hover { background: none; color: var(--muted); }
  .hero-actions { flex-direction: row; justify-content: center; gap: 1rem; }
  .board-toolbar { padding: 1rem 1.2rem; }
  .kanban { padding: 1.15rem; }
  .kanban-column { width: 15rem; }
  .outcome-grid { grid-template-columns: minmax(8rem, .35fr) 1fr; }
  .metrics { grid-template-columns: repeat(3, 1fr); }
  .metrics article { padding: 2rem 1.4rem; border-right: 1px solid rgb(255 255 255 / 14%); border-bottom: 0; }
  .metrics article:first-child { padding-left: 0; }
  .metrics article:last-child { border-right: 0; }
  .section-head { grid-template-columns: 1fr minmax(16rem, .45fr); align-items: end; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .feature-card--wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1.1fr; align-items: end; }
  .feature-card--comments { grid-column: span 2; display: grid; grid-template-columns: 1fr .85fr; align-items: end; }
  .collaboration { grid-template-columns: .9fr 1.1fr; }
  .final-cta { min-height: 38rem; }
  .footer small { width: auto; }
}

@media (min-width: 64rem) {
  .hero { padding-top: 6.2rem; }
  .board-window { transform: rotateX(1deg) rotateZ(-.5deg); }
  .kanban { overflow-x: visible; }
  .kanban-column { width: auto; min-width: 0; flex: 1 1 0; }
  .bento { grid-template-columns: 1.15fr .85fr .85fr; }
  .feature-card { min-height: 22rem; padding: 1.75rem; }
  .feature-card--wide { grid-column: span 2; }
  .feature-card--metric { grid-column: 3; grid-row: 1; }
  .feature-card--compact { grid-column: 1; }
  .feature-card--comments { grid-column: span 2; }
  .activity-card--one { top: 18%; left: 9%; }
  .activity-card--two { right: 8%; bottom: 18%; }
}

@media (pointer: fine) {
  .task-card, .button, .feature-card { will-change: transform; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js-ready [data-reveal] { opacity: 1; transform: none; }
  .board-window { transform: none !important; }
}
