@font-face {
  font-family: Inter;
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Space;
  src: url("../fonts/space-grotesk-latin-wght-normal.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
:root {
  --paper: #f3f4f0;
  --ink: #20251f;
  --muted: #60675e;
  --line: #d5d9d0;
  --lime: #c0f552;
  --pad: 64px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.6 Inter,
    sans-serif;
}
[hidden] {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
:focus-visible {
  outline: 3px solid #8260b3;
  outline-offset: 5px;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3,
.brand,
.hero-statement {
  font-family: Space, sans-serif;
  font-weight: 400;
}
h2 {
  font-size: 50px;
  line-height: 1.08;
}
h3 {
  font-size: 30px;
  line-height: 1.2;
}
.skip {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 5;
  background: var(--lime);
  padding: 12px;
}
.skip:focus {
  top: 12px;
}
header {
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  gap: 40px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 3;
}
.brand {
  font-size: 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  font-size: 21px;
  background: var(--ink);
  color: var(--lime);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}
nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 13px;
}
nav a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: var(--lime);
  color: var(--ink);
  border: 0;
  padding: 17px 22px;
  font-size: 13px;
  font-weight: 600;
  min-height: 50px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0 100%
  );
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #d8ff8c;
  transform: translateY(-2px);
}
.button:focus-visible {
  clip-path: none;
}
.header-cta {
  padding: 12px 20px;
  min-height: 44px;
}
#menu-toggle {
  display: none;
}
.hero {
  position: relative;
  height: calc(100svh - 144px);
  min-height: 590px;
  max-height: 800px;
  color: #fff;
  overflow: hidden;
  background: #151914;
}
.hero-art {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: art-in 1.8s ease-out both;
}
.hero-copy {
  position: relative;
  padding: 54px var(--pad) 85px;
  width: 760px;
}
h1 {
  font-size: 104px;
  line-height: 1.05;
  margin: 25px 0 12px;
}
.hero-statement {
  font-size: 58px;
  line-height: 1.04;
}
.hero-description {
  margin-top: 28px;
  color: #e2e6de;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
}
.text-link span {
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.hero-copy > * {
  animation: enter 0.9s both;
}
.hero-copy h1 {
  animation-delay: 0.08s;
}
.hero-statement {
  animation-delay: 0.16s;
}
.hero-description {
  animation-delay: 0.24s;
}
.hero-actions {
  animation-delay: 0.32s;
}
.connection-band {
  padding: 28px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.connection-band > p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-family: Space, sans-serif;
  font-size: 21px;
}
.connection-band > p:last-child > span[aria-hidden] {
  color: #737d68;
}
.section {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 9%;
  padding: 110px var(--pad);
  border-bottom: 1px solid var(--line);
}
.section-intro > h2 + p {
  margin-top: 26px;
  max-width: 380px;
  color: var(--muted);
}
.tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
}
.tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 14px 8px;
  flex: 1;
  font-size: 12px;
  text-align: left;
}
.tabs button[aria-selected="true"] {
  border-color: var(--ink);
  font-weight: 600;
}
.tab-copy {
  min-height: 134px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 14px;
}
.tab-copy p:not([hidden]) {
  animation: enter 0.3s;
}
.demo {
  background: #313239;
  color: #eceef1;
  border-radius: 4px;
  overflow: hidden;
}
.demo-bar {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #41434a;
  padding: 16px 22px;
  font-size: 13px;
}
.demo-bar > span:last-child {
  color: #b5b9c1;
  font:
    10px ui-monospace,
    monospace;
}
.demo-body {
  padding: 22px;
}
.author {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  margin-bottom: 16px;
}
.avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-family: Space, sans-serif;
}
.app-label {
  background: #7261ab;
  font-size: 9px;
  padding: 0 4px;
}
.author small {
  color: #b5b9c1;
  font-size: 10px;
}
.report {
  border: 1px solid #46474e;
  border-left: 4px solid #00df27;
  border-radius: 8px;
  padding: 20px;
  margin-left: 39px;
  background: #393a42;
}
.report h3 {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 16px;
  border-bottom: 1px solid #4d4e55;
  padding-bottom: 16px;
}
.report-fields {
  margin: 0;
}
.report-fields div {
  margin-bottom: 16px;
  font-size: 14px;
}
.report-fields dt {
  font-weight: 700;
}
.report-fields dd {
  margin: 3px 0 0;
}
#report-status {
  min-height: 45px;
}
.demo .author strong {
  color: #b3f3e4;
  font-size: 15px;
}
.demo .app-label {
  background: #6262f5;
  border-radius: 4px;
  color: white;
}
.export-example {
  background: #494a53;
  border: 0;
  color: #fff;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
}
.export-example:hover {
  background: #555660;
}
.export-preview {
  position: relative;
}
#export-tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: min(280px, 100%);
  padding: 10px 12px;
  background: #15161a;
  color: #fff;
  border: 1px solid #62636b;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.5;
  z-index: 2;
}
.report + .vote-row {
  margin-left: 39px;
}
.vote-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 11px;
  color: #b5b9c1;
}
#vote {
  border: 1px solid transparent;
  border-radius: 8px;
  width: 70px;
  height: 38px;
  background: #3d3e46;
  color: #fff;
  font-size: 15px;
}
#vote[aria-pressed="true"] {
  border-color: var(--lime);
  color: var(--lime);
}
.principles {
  background: #191e1a;
  color: #f3f4f0;
}
.section-intro {
  position: sticky;
  top: 60px;
  align-self: start;
}
.principle-list article {
  padding: 36px 0;
  border-top: 1px solid #424840;
}
.principle-list article:first-child {
  padding-top: 0;
  border: 0;
}
.principle-list h3 {
  margin: 16px 0;
}
.principle-list p {
  max-width: 410px;
  color: #bfc7bd;
  font-size: 15px;
}
.integrations {
  background: #e8ece3;
}
.section-intro .text-link {
  margin-top: 24px;
}
.integration-examples {
  min-width: 0;
}
.integration-tabs button {
  text-align: center;
}
.integration-panels {
  display: grid;
  margin-top: 28px;
}
/* Reserve the tallest example's space so switching tabs never moves the CTA. */
.integration-panels > [role="tabpanel"] {
  grid-area: 1 / 1;
  min-width: 0;
}
.integration-panels > [hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}
.integration-panels > :not([hidden]) {
  animation: enter 0.3s;
}
.preview-copy {
  min-height: 152px;
}
.preview-copy h3 {
  font-size: 26px;
  margin-bottom: 14px;
}
.preview-copy > p:last-child {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.integration-visual {
  height: 390px;
  border: 1px solid #c4c9c1;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  color: #292d33;
  font-size: 12px;
}
.workspace-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #dce0da;
  font-size: 11px;
}
.workspace-bar span {
  color: #626772;
}
.workspace-body {
  padding: 24px;
}
.integration-visual .author {
  color: inherit;
}
.integration-visual .author small {
  color: #656a73;
}
.integration-visual h4 {
  font:
    600 18px/1.3 Inter,
    sans-serif;
  margin: 12px 0;
}
.integration-visual h5 {
  font-size: 12px;
  margin: 20px 0 8px;
}
.integration-visual small {
  font-size: 10px;
}
.integration-visual dl {
  display: flex;
  gap: 40px;
  margin: 18px 0;
}
.integration-visual dt {
  font-size: 10px;
  color: #676e74;
}
.integration-visual dd {
  margin: 3px 0 0;
}
.sample-message {
  padding-left: 16px;
  border-left: 3px solid #99b85d;
}
.sample-actions {
  display: flex;
  gap: 20px;
  font-weight: 600;
  color: #306b4d;
}
.sample-actions span {
  border-bottom: 1px solid;
  padding-bottom: 3px;
}
.sample-reply {
  border-top: 1px solid #e1e3e0;
  padding-top: 16px;
  margin-top: 18px;
  color: #69716a;
  font-size: 11px;
}
.integration-visual.slack-preview {
  height: auto;
  background: #1b1d21;
  color: #d1d2d4;
  border-color: #3d3f44;
}
.slack-preview .workspace-bar {
  border-color: #37393e;
}
.slack-preview .workspace-bar span,
.slack-preview .author small {
  color: #a6a7ab;
}
.slack-preview .author strong {
  color: #f4f4f5;
  font-size: 15px;
}
.slack-preview .app-label {
  background: #292b30;
  color: #b6b7ba;
  font-size: 10px;
}
.slack-message {
  margin-left: 39px;
}
.slack-message h4 {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #37393e;
  font-size: 16px;
}
.slack-preview .slack-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 20px 0;
}
.slack-preview dt {
  font-size: 13px;
  font-weight: 600;
  color: #cfd0d2;
}
.slack-preview dd {
  font-size: 13px;
  overflow-wrap: anywhere;
}
.slack-preview .slack-description {
  display: block;
  margin: 20px 0;
}
.slack-description > div + div {
  margin-top: 20px;
}
.slack-preview .sample-link {
  color: #27acd0;
}
.sample-attachment {
  font-size: 12px;
  margin-bottom: 18px;
  color: #a6a7ab;
}
.slack-status {
  padding: 18px 0;
  border-block: 1px solid #37393e;
  font-size: 13px;
}
.slack-status p {
  margin-top: 4px;
  min-height: 42px;
}
.slack-actions {
  display: flex;
  gap: 10px;
  padding-top: 18px;
}
.slack-actions button {
  background: transparent;
  border: 1px solid #56585e;
  border-radius: 4px;
  color: #f4f4f5;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
}
.slack-actions button:hover {
  background: #303238;
}
.slack-actions button[aria-pressed="true"] {
  border-color: #8c9199;
}
.teams-preview .workspace-bar {
  background: #e9e8f4;
}
.teams-preview .sample-message {
  border-color: #7873b4;
}
.teams-preview .sample-actions {
  color: #5b5593;
  gap: 10px;
  margin-top: 16px;
}
.teams-preview .sample-actions button {
  background: #fff;
  color: inherit;
  border: 1px solid #7873b4;
  border-radius: 4px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
}
.teams-preview .sample-actions button:hover,
.teams-preview .sample-actions button[aria-pressed="true"] {
  background: #e9e8f4;
}
.sheets-preview .workspace-bar {
  background: #e4f0e6;
}
.sheet-toolbar {
  padding: 14px 20px;
  border-bottom: 1px solid #dce0da;
  font-size: 11px;
}
.sheet-scroll {
  overflow-x: auto;
  height: 252px;
}
.sheets-preview table {
  border-collapse: collapse;
  width: 100%;
  min-width: 540px;
  font-size: 11px;
}
.sheets-preview th,
.sheets-preview td {
  border: 1px solid #dce0da;
  text-align: left;
  padding: 14px 10px;
}
.sheets-preview th {
  font-weight: 600;
  background: #f5f7f3;
}
.sheets-preview .approved {
  color: #27683e;
  background: #ecf6ec;
}
.sheets-preview input[type="checkbox"] {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  accent-color: #35744a;
  cursor: pointer;
}
.sheet-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid #dce0da;
  color: #27683e;
  font-size: 10px;
}
.linear-preview {
  background: #242529;
  color: #edeef1;
  border-color: #414248;
}
.linear-preview .workspace-bar {
  border-color: #414248;
}
.linear-preview .workspace-bar span,
.linear-preview dt {
  color: #b4b6bf;
}
.issue-meta {
  display: flex;
  gap: 18px;
  font-size: 11px;
  color: #c5c2de;
}
.issue-meta span {
  color: #e8b992;
}
.linear-preview ol {
  padding-left: 18px;
}
.jira-preview .workspace-bar {
  background: #e8edf4;
}
.jira-board {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  padding: 24px 20px;
  height: 330px;
}
.jira-board > div {
  background: #f2f3f5;
  padding: 12px;
  min-width: 0;
}
.board-heading {
  font-size: 9px;
  color: #656d78;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.jira-issue {
  background: #fff;
  border: 1px solid #dce0e6;
  border-radius: 3px;
  padding: 12px;
  margin-top: 16px;
}
.jira-issue h4 {
  font-size: 14px;
}
.jira-issue p {
  margin: 18px 0;
  font-size: 10px;
}
.board-empty {
  margin-top: 24px;
  color: #767b84;
  font-size: 11px;
}
.integration-cta {
  margin-top: 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
details {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  font-size: 16px;
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  flex-shrink: 0;
}
details[open] summary::after {
  content: "-";
}
details p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}
.contact {
  background: var(--lime);
}
.contact h2 {
  font-size: 54px;
}
.contact .section-intro > p:last-child {
  color: #3d4f29;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
label {
  display: block;
  font-size: 12px;
}
input,
textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #799c45;
  border-radius: 0;
  padding: 12px 0;
  color: var(--ink);
  font-size: 16px;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
form > label {
  margin-top: 32px;
}
.counter {
  text-align: right;
  font:
    10px ui-monospace,
    monospace;
  margin: 8px 0 24px;
}
.contact .button {
  background: var(--ink);
  color: white;
}
.contact .button:hover {
  background: #384b2b;
}
#contact-notice {
  margin-top: 20px;
  font-size: 14px;
}
footer {
  padding: 48px var(--pad) 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
footer p {
  color: var(--muted);
  font-size: 13px;
}
footer small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 10px;
  color: var(--muted);
}
.js-reveals .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.js-reveals .reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes art-in {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1700px) {
  :root {
    --pad: 100px;
  }
  h1 {
    font-size: 120px;
  }
  .hero-copy {
    width: 900px;
  }
}
@media (max-width: 1100px) {
  :root {
    --pad: 36px;
  }
  header {
    gap: 24px;
  }
  nav {
    gap: 22px;
  }
  h1 {
    font-size: 92px;
  }
  h2 {
    font-size: 42px;
  }
  .section {
    gap: 6%;
  }
  .connection-band > p:last-child {
    font-size: 17px;
    gap: 16px;
  }
  .contact h2 {
    font-size: 44px;
  }
}
@media (max-width: 760px) {
  :root {
    --pad: 24px;
  }
  header {
    height: 64px;
    justify-content: space-between;
  }
  header > nav:not(#mobile-nav),
  .header-cta {
    display: none;
  }
  #menu-toggle {
    display: flex;
    gap: 16px;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 12px 0 12px 12px;
    font-size: 13px;
  }
  #mobile-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px var(--pad);
    border-bottom: 1px solid var(--line);
  }
  #mobile-nav a {
    padding: 12px 0;
  }
  .hero {
    height: calc(100svh - 125px);
    min-height: 510px;
    max-height: 700px;
  }
  .hero-art {
    object-position: 37% center;
    filter: brightness(0.65);
  }
  .hero-copy {
    width: 100%;
    padding: 36px var(--pad) 70px;
  }
  h1 {
    font-size: 64px;
    margin-top: 24px;
  }
  .hero-statement {
    font-size: 46px;
  }
  .hero-description {
    font-size: 15px;
    margin-top: 24px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  .connection-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .connection-band > p:last-child {
    font-size: 15px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  h2 {
    font-size: 40px;
  }
  .section-intro > h2 + p {
    margin-top: 20px;
    font-size: 15px;
  }
  .tab-copy {
    min-height: 144px;
  }
  .tabs button {
    font-size: 11px;
    padding-left: 0;
  }
  .demo-body {
    padding: 16px;
  }
  .report,
  .report + .vote-row,
  .slack-message {
    margin-left: 0;
  }
  .report {
    padding: 16px;
  }
  .demo-bar {
    padding: 14px 16px;
  }
  .author {
    gap: 7px;
  }
  .author small {
    margin-left: auto;
  }
  .section-intro {
    position: static;
  }
  .preview-copy {
    min-height: 176px;
  }
  .integration-visual {
    height: 420px;
  }
  .preview-copy h3 {
    font-size: 24px;
  }
  .workspace-body {
    padding: 18px;
  }
  .workspace-bar {
    padding: 14px 16px;
  }
  .jira-board {
    gap: 8px;
    padding: 16px 10px;
  }
  .jira-board > div {
    padding: 8px;
  }
  .jira-issue {
    padding: 10px;
  }
  .contact h2 {
    font-size: 44px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  footer {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }
  footer p {
    grid-row: 2;
    grid-column: 1/-1;
  }
}
@media (max-width: 380px) {
  :root {
    --pad: 20px;
  }
  h1 {
    font-size: 54px;
  }
  .hero-statement {
    font-size: 40px;
  }
  .hero {
    min-height: 490px;
  }
  .hero-copy {
    padding-top: 26px;
  }
  .hero-description {
    margin-top: 18px;
  }
  .hero-actions {
    margin-top: 18px;
  }
  h2 {
    font-size: 36px;
  }
  .contact h2 {
    font-size: 38px;
  }
  .author small {
    display: none;
  }
  .tab-copy {
    min-height: 166px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js-reveals .reveal {
    opacity: 1;
    transform: none;
  }
}
