/* FOLIO — edit these tokens to change the entire visual direction. */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(./assets/fonts/dm-mono-normal-400.woff2) format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(./assets/fonts/dm-mono-normal-500.woff2) format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(./assets/fonts/dm-sans-normal-400-700.woff2) format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(./assets/fonts/instrument-serif-italic-400.woff2) format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(./assets/fonts/instrument-serif-normal-400.woff2) format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
:root {
  --pine: #082e25;
  --pine-deep: #06241d;
  --lime: #d5f675;
  --paper: #f4f5ef;
  --ink: #163b30;
  --muted: #68776c;
  --line: #d8dfd4;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --mono: 'DM Mono', monospace;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --page: clamp(24px, 5.3vw, 100px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #80a03e;
  outline-offset: 5px;
}
button {
  border: 0;
}
::selection {
  background: var(--lime);
  color: var(--pine);
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 12px;
  background: var(--lime);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
  z-index: 100;
}
.site-header {
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page);
  color: var(--paper);
  border-bottom: 1px solid #ffffff16;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 39px;
  letter-spacing: -2.5px;
  font-weight: 550;
  line-height: 1;
}
.brand-dot {
  align-self: flex-start;
  font: 12px var(--sans);
  letter-spacing: 0;
  margin: 5px 0 0 -4px;
}
.brand-mark {
  width: 30px;
  height: 35px;
  display: flex;
  align-items: center;
  gap: 3px;
  transform: rotate(-15deg);
  margin-right: 2px;
}
.brand-mark i {
  height: 30px;
  width: 7px;
  background: var(--lime);
  border-radius: 5px 1px 5px 1px;
}
.brand-mark i:nth-child(2) {
  height: 24px;
}
.brand-mark i:nth-child(3) {
  height: 17px;
}
.site-header nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  color: #d7e0d6;
}
.site-header nav a {
  position: relative;
  padding: 12px 0;
}
.site-header nav a:after {
  content: '';
  position: absolute;
  height: 1px;
  background: var(--lime);
  bottom: 5px;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.site-header nav a:hover:after {
  transform: scaleX(1);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 58px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 550;
  border-radius: 5px;
  position: relative;
  transition:
    background 0.25s,
    box-shadow 0.3s,
    transform 0.4s var(--ease);
  overflow: hidden;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px #0002;
}
.button-header {
  background: var(--paper);
  color: var(--pine);
  min-height: 43px;
  padding: 0 20px;
  gap: 30px;
  font-size: 14px;
}
.button-lime {
  background: var(--lime);
  color: var(--pine);
}
.button-lime:hover {
  background: #e0ff91;
}
.button-arrow {
  margin-left: 20px;
  transition: transform 0.3s;
}
.button:hover .button-arrow {
  transform: translate(3px, -3px);
}
.download-icon {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.hero {
  position: relative;
  min-height: 830px;
  height: min(960px, 100svh);
  background: var(--pine);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-art {
  position: absolute;
  inset: 50px -4% 0 31%;
  z-index: -2;
  transform: translate3d(var(--art-x, 0px), var(--art-y, 0px), 0) scale(1.08);
  will-change: transform;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  opacity: 0.85;
  mask-image: linear-gradient(to right, transparent 0%, #000 18%);
  filter: saturate(0.88);
}
.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--pine) 5%, #082e25e0 25%, #082e2500 55%),
    linear-gradient(
      0deg,
      #082e25 0%,
      transparent 20%,
      transparent 75%,
      #082e2530
    );
}
.hero-grid {
  position: absolute;
  inset: 100px var(--page) 85px;
  z-index: -1;
  border-inline: 1px solid #ffffff07;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  margin-left: var(--page);
  padding-top: clamp(178px, 22vh, 232px);
  z-index: 2;
  width: 53%;
}
.eyebrow {
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 1.1px;
  font-size: 12px;
  line-height: 1.8;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d5e2cf;
  margin: 0 0 27px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px #d5f67512;
  flex-shrink: 0;
}
.hero h1 {
  font: clamp(76px, 8.3vw, 146px)/0.93 var(--serif);
  letter-spacing: -0.035em;
  margin: 0 0 31px;
  font-weight: 400;
}
.line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.2em;
  margin-bottom: -0.16em;
}
.line > span,
.line > em {
  display: block;
  animation: title-in 1.25s var(--ease) both;
}
.line > em {
  color: var(--lime);
  animation-delay: 0.13s;
  font-weight: 400;
}
.hero-description {
  color: #c2d0c4;
  line-height: 1.65;
  font-size: 17px;
  margin: 0 0 30px;
  animation: fade-up 1s 0.3s var(--ease) both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  animation: fade-up 1s 0.4s var(--ease) both;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  white-space: nowrap;
}
.play-icon {
  height: 29px;
  width: 29px;
  border: 1px solid #cbd9c05c;
  border-radius: 50%;
  font-size: 9px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  transition: background 0.3s;
}
.text-link:hover .play-icon {
  background: #d5f67533;
}
.hero-note {
  font-size: 12px;
  color: #a4b8a8;
  margin: 17px 0 0 2px;
  animation: fade-up 1s 0.5s var(--ease) both;
}
.hero-note span {
  margin: 0 8px;
}
.hero-scene {
  position: absolute;
  right: var(--page);
  top: 230px;
  width: 35%;
  height: 440px;
  perspective: 1000px;
  transform: translate3d(var(--scene-x, 0px), var(--scene-y, 0px), 0);
  will-change: transform;
}
.scene-label {
  position: absolute;
  top: -52px;
  right: 0;
  font: 10px var(--mono);
  letter-spacing: 1px;
  color: #bfcca5;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tiny-cross {
  font-size: 25px;
}
.tax-card {
  background: #f4f5ed;
  color: var(--ink);
  width: 340px;
  position: absolute;
  left: -15px;
  top: 144px;
  padding: 19px 20px 17px;
  border-radius: 9px;
  box-shadow: 0 30px 60px #00150f40;
  transform: rotate(-6deg);
  overflow: hidden;
  animation:
    card-arrive 1.5s 0.35s var(--ease) both,
    card-float 8s 1.85s ease-in-out infinite;
}
.tax-card-top {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  color: #5e7268;
}
.mini-logo {
  font: italic 28px var(--serif);
  font-weight: bold;
  color: var(--pine);
}
.dots {
  margin-left: auto;
  font-size: 22px;
  letter-spacing: 2px;
}
.document-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 15px 0 20px;
}
.file-symbol {
  background: #e6eadc;
  color: #576b4d;
  border: 1px solid #d4ddc7;
  padding: 7px 11px;
  border-radius: 4px;
  font-size: 24px;
}
.document-row strong {
  font-size: 13px;
  display: block;
  font-weight: 550;
  margin-bottom: 4px;
}
.document-row div > span {
  font-size: 10px;
  color: #738174;
}
.file-check {
  margin-left: auto;
  border: 1px solid #a6b798;
  border-radius: 50%;
  font-size: 10px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}
.card-rule {
  border-top: 1px solid #dae0d2;
}
.tax-value {
  margin: 17px 0 15px;
}
.tax-value > span {
  font-size: 11px;
  display: block;
  color: #6f7d6f;
}
.tax-value strong {
  font-size: 32px;
  letter-spacing: -1.5px;
  display: block;
  font-weight: 500;
  margin-top: 7px;
}
.tax-value strong span {
  font-size: 22px;
  color: #7a8474;
  letter-spacing: -1px;
}
.scan-track {
  height: 3px;
  background: #e0e6d6;
  overflow: hidden;
}
.scan-track > span {
  display: block;
  height: 100%;
  background: #688e3d;
  transform-origin: left;
  animation: scan-progress 7s ease infinite;
}
.card-bottom {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: #586e51;
  margin-top: 13px;
}
.card-bottom .status-dot {
  width: 5px;
  height: 5px;
  background: #718e3a;
  box-shadow: none;
}
.scan-percent {
  margin-left: auto;
  font: 9px var(--mono);
}
.scan-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, #b4d68738, transparent);
  height: 85px;
  animation: scan-beam 7s ease infinite;
  pointer-events: none;
}
.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #153e31e8;
  border: 1px solid #b8ce931f;
  backdrop-filter: blur(14px);
  color: #e7eedc;
  border-radius: 7px;
  box-shadow: 0 10px 25px #00150f20;
}
.chip-top {
  right: -6px;
  top: 62px;
  font-size: 11px;
  padding: 13px 17px;
  transform: rotate(5deg);
  animation: float-alt 7s ease-in-out infinite;
}
.chip-icon {
  width: 19px;
  height: 19px;
  background: var(--lime);
  color: var(--pine);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
}
.chip-bottom {
  right: 4px;
  bottom: -10px;
  padding: 14px 19px;
  transform: rotate(4deg);
  animation: float-alt 6s -2s ease-in-out infinite;
}
.chip-bottom strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}
.chip-bottom div > span {
  font-size: 10px;
  color: #b6c5af;
}
.folio-spark {
  font-size: 29px;
  color: var(--lime);
  margin-right: 2px;
}
.scene-caption {
  position: absolute;
  left: 0;
  bottom: -45px;
  font: 9px var(--mono);
  letter-spacing: 1px;
  color: #96ad90;
}
.hero-bottom {
  position: absolute;
  bottom: 29px;
  left: var(--page);
  right: var(--page);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ffffff20;
  padding-top: 23px;
  color: #b6c7b5;
  font: 10px var(--mono);
  letter-spacing: 0.6px;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-cue {
  font-size: 17px;
  animation: nudge 2s ease infinite;
}
.motion-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  background: none;
  color: #b6c7b5;
  padding: 8px;
}
.hero-index {
  font-size: 10px;
}
.topics-strip {
  padding: 25px var(--page);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 30px;
  background: #e8eddc;
}
.topics-strip > span {
  font: 10px var(--mono);
  max-width: 135px;
  line-height: 1.7;
  color: #657654;
  letter-spacing: 0.5px;
}
.topics-strip > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  max-width: 900px;
  gap: 22px;
  font-size: 15px;
  white-space: nowrap;
}
.topics-strip i {
  font-style: normal;
  color: #708a54;
  font-size: 19px;
}
.section-pad {
  padding: 115px var(--page);
}
.section-heading {
  position: relative;
}
.section-heading .eyebrow {
  margin: 0 0 27px;
  color: #67785a;
}
.section-heading h2 {
  font: clamp(52px, 5.3vw, 84px)/1 var(--serif);
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0;
}
.section-heading h2 em {
  font-weight: 400;
  color: #78914f;
}
.section-heading > p:last-child {
  position: absolute;
  right: 10px;
  bottom: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #6a796b;
  margin: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes title-in {
  from {
    transform: translateY(115%) rotate(2deg);
    opacity: 0.1;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes card-arrive {
  from {
    opacity: 0;
    translate: 0 35px;
    rotate: 6deg;
  }
  to {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
  }
}
@keyframes card-float {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-13px) rotate(-4deg);
  }
}
@keyframes float-alt {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}
@keyframes scan-progress {
  0%,
  10% {
    transform: scaleX(0.05);
  }
  55%,
  90% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0.05);
  }
}
@keyframes scan-beam {
  0%,
  5% {
    transform: translateY(-100px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  65%,
  100% {
    transform: translateY(370px);
    opacity: 0;
  }
}
@keyframes nudge {
  0%,
  100% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(3px);
  }
}
@media (min-width: 1600px) {
  .hero-scene {
    right: 9%;
    width: 33%;
    top: 270px;
  }
  .tax-card {
    width: 390px;
    padding: 24px;
    top: 145px;
  }
  .chip-bottom {
    bottom: -50px;
  }
  .scene-caption {
    bottom: -86px;
  }
  .hero-copy {
    padding-top: 220px;
  }
  .hero {
    min-height: 930px;
  }
}
@media (max-width: 1100px) {
  .site-header nav {
    gap: 20px;
  }
  .hero h1 {
    font-size: 90px;
  }
  .hero-copy {
    width: 59%;
    padding-top: 210px;
  }
  .hero-art {
    left: 20%;
  }
  .hero-scene {
    width: 32%;
    right: 4%;
    top: 250px;
  }
  .tax-card {
    left: -20px;
    width: 290px;
  }
  .hero-actions {
    gap: 18px;
  }
  .text-link {
    font-size: 12px;
  }
  .button {
    padding: 0 21px;
  }
  .chip-top {
    right: -10px;
    top: 55px;
  }
  .chip-bottom {
    right: -10px;
  }
  .scene-label {
    display: none;
  }
  .topics-strip > span {
    display: none;
  }
  .section-heading > p:last-child {
    position: static;
    margin-top: 25px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 82px;
  }
  .brand {
    font-size: 32px;
  }
  .site-header nav {
    display: none;
  }
  .button-header {
    min-height: 40px;
  }
  .hero {
    height: auto;
    min-height: 1100px;
  }
  .hero-copy {
    width: auto;
    margin-right: var(--page);
    padding-top: 155px;
  }
  .hero h1 {
    font-size: clamp(64px, 13vw, 98px);
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-art {
    inset: 420px -20% 70px -25%;
    opacity: 0.8;
  }
  .hero-art img {
    mask-image: linear-gradient(0deg, #000 70%, transparent);
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      var(--pine),
      transparent 18%,
      transparent 45%,
      var(--pine) 65%
    );
  }
  .hero-scene {
    top: 550px;
    left: 16%;
    right: auto;
    width: 70%;
    height: 385px;
  }
  .tax-card {
    top: 94px;
    left: 0;
    width: min(300px, 85vw);
  }
  .chip-top {
    top: 35px;
    right: -15px;
  }
  .chip-bottom {
    right: -6px;
    bottom: 0;
  }
  .scene-caption {
    bottom: -28px;
  }
  .hero-bottom {
    bottom: 24px;
    gap: 20px;
  }
  .hero-bottom a {
    font-size: 8px;
    max-width: 180px;
    line-height: 1.8;
  }
  .hero-index {
    display: none;
  }
  .hero-note {
    font-size: 11px;
  }
  .topics-strip {
    overflow: hidden;
    padding-block: 20px;
  }
  .topics-strip > div {
    gap: 22px;
    overflow-x: auto;
    font-size: 13px;
    scrollbar-width: none;
  }
  .section-pad {
    padding: 75px var(--page);
  }
  .section-heading h2 {
    font-size: 53px;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-eyebrow {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
  animation-play-state: paused !important;
}
.motion-paused .reveal {
  opacity: 1;
  transform: none;
}

/* Product demo */
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.demo-stage {
  position: relative;
  margin-top: 58px;
  background: #e0e7d4;
  padding: 52px 55px 25px;
  border-radius: 5px;
  overflow: hidden;
}
.demo-stage:before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid #b5c49d77;
  right: -220px;
  top: -300px;
  border-radius: 50%;
  box-shadow:
    0 0 0 60px #bccaa81a,
    0 0 0 120px #bccaa817;
  pointer-events: none;
}
.demo-side-label {
  position: absolute;
  left: 19px;
  top: 52px;
  writing-mode: vertical-rl;
  font: 9px var(--mono);
  letter-spacing: 1.5px;
  color: #5b6e50;
}
.app-window {
  position: relative;
  border: 1px solid #b6c3a4;
  border-radius: 9px;
  background: #fafbf6;
  box-shadow: 0 20px 60px #3e542a17;
  overflow: hidden;
  transform-origin: 50% 100%;
  will-change: transform;
}
.window-bar {
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #dbe1d3;
  background: #f0f3e9;
  font-size: 10px;
  color: #738366;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c6ceb9;
}
.window-dots i:first-child {
  background: #bfcbaa;
}
.demo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 8px var(--mono);
  letter-spacing: 0.5px;
}
.demo-badge span {
  width: 5px;
  height: 5px;
  background: #739641;
  border-radius: 50%;
}
.app-layout {
  display: grid;
  grid-template-columns: 195px 1fr;
  min-height: 539px;
}
.app-sidebar {
  padding: 25px 14px 21px;
  background: #edf1e5;
  border-right: 1px solid #dde4d3;
  display: flex;
  flex-direction: column;
}
.app-brand {
  font-size: 30px;
  letter-spacing: -1.5px;
  margin-left: 13px;
  font-weight: 550;
}
.app-brand > span {
  color: #668447;
  font-size: 20px;
  margin-left: 9px;
}
.workspace-name {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px 0;
  margin: 15px 0 16px;
  font-size: 10px;
  border-block: 1px solid #d9e0cd;
  line-height: 1.5;
}
.workspace-name > span:first-child {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: #dce5c8;
  border-radius: 50%;
  font-size: 12px;
}
.workspace-name small {
  display: block;
  font-size: 9px;
  color: #849073;
}
.workspace-chevron {
  margin-left: auto;
}
.sidebar-label {
  font: 9px var(--mono);
  color: #738566;
  letter-spacing: 0.8px;
  margin: 0 10px 10px;
}
.app-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.app-nav > button {
  display: flex;
  align-items: center;
  padding: 11px 10px;
  background: none;
  border-radius: 4px;
  text-align: left;
  font-size: 11px;
  gap: 10px;
  color: #5f7458;
  transition: background 0.3s;
}
.app-nav > button:hover {
  background: #e2ead5;
}
.app-nav > button[aria-selected='true'] {
  background: #dbe6c8;
  color: #34502b;
}
.app-nav > button > span:first-child {
  font-size: 15px;
  line-height: 1;
}
.app-nav .nav-count {
  margin-left: auto;
  background: #e4eadb;
  border: 1px solid #d7dfcc;
  border-radius: 3px;
  font: 8px var(--mono);
  padding: 1px 4px;
}
.sidebar-bottom {
  margin-top: auto;
  padding: 35px 10px 0;
}
.little-spark {
  font-size: 25px;
  color: #66864b;
}
.sidebar-bottom p {
  font: 20px/1.2 var(--serif);
  margin: 10px 0 19px;
}
.sidebar-sample {
  font-size: 9px;
  color: #738266;
}
.app-main {
  min-width: 0;
  padding: 26px 28px 20px;
}
.app-greeting {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-greeting p {
  font: 8px var(--mono);
  letter-spacing: 1px;
  color: #849477;
  margin: 0 0 10px;
}
.app-greeting h3 {
  font: 27px/1.1 var(--serif);
  font-weight: 400;
  letter-spacing: -0.3px;
  margin: 0;
}
.greeting-spark {
  font-size: 39px;
  color: #79914e;
  padding-left: 15px;
}
.app-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #dce3d2;
  border-radius: 5px;
  overflow: hidden;
  margin: 25px 0 24px;
}
.app-stats > div {
  padding: 16px 17px;
  border-right: 1px solid #dce3d2;
}
.app-stats > div:last-child {
  border: 0;
}
.app-stats > div > span {
  font-size: 10px;
  color: #64775b;
  white-space: nowrap;
}
.app-stats strong {
  display: block;
  font-size: 37px;
  font-weight: 450;
  letter-spacing: -1.5px;
  margin: 10px 0 10px;
  line-height: 1;
}
.app-stats strong small {
  font-size: 14px;
  color: #8c9a7d;
  letter-spacing: 0;
  margin-left: 6px;
}
.app-stats p {
  font-size: 9px;
  color: #6c7f5f;
  margin: 0;
  white-space: nowrap;
}
.app-stats p i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #83a552;
  margin-right: 3px;
}
.app-stats .stat-complete {
  background: #edf3de;
}
.stat-complete strong {
  font: 39px/0.95 var(--serif);
  letter-spacing: -1px;
}
.app-overview-bottom {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 22px;
}
.app-subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 5px;
  gap: 10px;
}
.app-subhead h4 {
  font-size: 11px;
  font-weight: 550;
  margin: 0;
}
.app-subhead button {
  background: none;
  font-size: 8px;
  color: #80936b;
  white-space: nowrap;
  padding: 5px 0;
}
.mini-doc {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 9px;
  border-bottom: 1px solid #e2e7d9;
  background: none;
  text-align: left;
  padding: 14px 0;
}
.mini-doc:hover .doc-icon {
  background: #e0ecc8;
  transform: rotate(-5deg);
}
.doc-icon {
  width: 28px;
  height: 34px;
  background: #edf1e5;
  border: 1px solid #dce3d0;
  display: grid;
  place-items: center;
  border-radius: 3px;
  font: 9px var(--mono);
  flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}
.mini-doc strong {
  display: block;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.5;
}
.mini-doc small {
  font-size: 8px;
  color: #7a8c6c;
}
.doc-status {
  font-size: 8px;
  color: #71865f;
  margin-left: auto;
  white-space: nowrap;
}
.doc-status i {
  font-style: normal;
  margin-left: 3px;
}
.insight-card {
  background: var(--pine);
  border-radius: 5px;
  padding: 17px;
  color: #e7edda;
  position: relative;
}
.insight-icon {
  position: absolute;
  right: 15px;
  top: 10px;
  color: var(--lime);
  font-size: 25px;
}
.insight-eyebrow {
  font: 7px var(--mono);
  letter-spacing: 0.6px;
  color: #bdcea6;
}
.insight-card p {
  font: 25px/1.03 var(--serif);
  margin: 17px 0 17px;
}
.insight-card p em {
  color: var(--lime);
}
.insight-card button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: none;
  border-top: 1px solid #c3d4a433;
  padding: 12px 0 0;
  text-align: left;
  color: #d1ddbf;
  font-size: 9px;
}
.demo-assistant {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-top: 1px solid #dce3d2;
  margin-top: 24px;
  padding-top: 18px;
  min-height: 103px;
}
.assistant-mark {
  width: 27px;
  height: 27px;
  background: #e4eccf;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #617d42;
  flex-shrink: 0;
}
.demo-assistant > div {
  flex: 1;
  min-width: 0;
}
.assistant-label {
  font: 8px var(--mono);
  letter-spacing: 0.7px;
  color: #738364;
}
.demo-assistant p {
  font-size: 11px;
  line-height: 1.7;
  margin: 7px 0 12px;
  min-height: 18px;
  max-width: 600px;
}
.question-chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.question-chips button {
  border: 1px solid #d7dfc9;
  background: #f9fbf3;
  border-radius: 4px;
  padding: 6px 9px;
  font-size: 8px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.question-chips button span {
  margin-left: 6px;
}
.question-chips button:hover,
.question-chips button.is-selected {
  background: #e5efcf;
  border-color: #a9bd85;
}
.demo-caption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-top: 23px;
  font-size: 10px;
  color: #687b52;
}
.demo-caption i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #8ba35e;
  border-radius: 50%;
  margin-right: 5px;
}
.demo-caption > span:last-child {
  font: 8px var(--mono);
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 42px;
  margin-top: 52px;
}
.benefits article {
  padding-right: 35px;
  border-right: 1px solid var(--line);
}
.benefits article:last-child {
  border: 0;
  padding-right: 0;
}
.benefit-no {
  font: 10px var(--mono);
  letter-spacing: 0.7px;
  color: #768665;
}
.benefits h3 {
  font: 31px/1.1 var(--serif);
  margin: 17px 0 14px;
  letter-spacing: -0.3px;
}
.benefits p {
  font-size: 14px;
  line-height: 1.7;
  color: #74806c;
  margin: 0;
  max-width: 340px;
}
.document-selector {
  display: flex;
  gap: 8px;
  margin: 24px 0 18px;
}
.document-selector button {
  padding: 8px 16px;
  border: 1px solid #dce3d2;
  background: transparent;
  border-radius: 4px;
  font-size: 11px;
}
.document-selector button.is-selected {
  background: #e0ecc7;
  border-color: #9ab479;
}
.document-detail {
  border: 1px solid #dce3d2;
  border-radius: 5px;
  padding: 20px 22px;
  background: #f2f5e9;
  min-height: 270px;
}
.document-detail .eyebrow {
  font-size: 9px;
}
.document-detail h4 {
  font: 29px var(--serif);
  margin: 8px 0;
}
.document-detail p {
  font-size: 11px;
  color: #6c7c60;
  line-height: 1.6;
  margin: 0;
}
.document-detail dl {
  margin: 17px 0;
}
.document-detail dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #dce3d2;
  font-size: 11px;
}
.document-detail dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}
.document-detail .detail-note {
  font-size: 9px;
}
.checklist-progress {
  margin: 27px 0 12px;
  font-size: 11px;
  color: #6b7e5b;
}
.checklist-progress > div {
  height: 4px;
  background: #e3e9d9;
  margin-top: 12px;
  border-radius: 3px;
}
.checklist-progress > div > span {
  display: block;
  height: 100%;
  width: 25%;
  background: #89a653;
  transition: width 0.6s var(--ease);
}
.checklist-items label {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 17px 0;
  border-bottom: 1px solid #e0e6d5;
  font-size: 12px;
  cursor: pointer;
}
.checklist-items input {
  accent-color: #42672c;
  width: 15px;
  height: 15px;
  margin: 0;
  flex-shrink: 0;
}
.checklist-items small {
  display: block;
  font-size: 10px;
  margin-top: 5px;
  line-height: 1.5;
  color: #7b8a6c;
}
.checklist-items input:checked + span {
  text-decoration: line-through;
  color: #72825e;
}
.app-view {
  animation: panel-in 0.45s var(--ease) both;
}
.app-view:focus-visible {
  outline: none;
}
.app-view:focus-visible .app-greeting {
  outline: 2px solid #80a03e;
  outline-offset: 5px;
}

/* Three-step story */
.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  background: #e8eddc;
  border-block: 1px solid #d9e1cb;
  padding-top: 100px;
  padding-bottom: 100px;
}
.workflow h2,
.faq h2 {
  font: clamp(52px, 5.3vw, 80px)/1 var(--serif);
  letter-spacing: -0.025em;
  margin: 24px 0;
  font-weight: 400;
}
.workflow h2 em,
.faq h2 em {
  color: #7b9056;
  font-weight: 400;
}
.workflow-intro {
  color: #728163;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 35px;
}
.workflow-copy > .eyebrow {
  color: #6f805c;
}
.workflow-steps {
  display: flex;
  flex-direction: column;
}
.workflow-step {
  padding: 22px 0;
  border-top: 1px solid #cfd9c0;
  display: flex;
  align-items: flex-start;
  gap: 19px;
  text-align: left;
  background: none;
  position: relative;
  transition: opacity 0.3s;
  opacity: 0.55;
}
.workflow-step:last-child {
  border-bottom: 1px solid #cfd9c0;
}
.workflow-step.is-active,
.workflow-step:hover {
  opacity: 1;
}
.workflow-step:before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 2px;
  background: #708b41;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.workflow-step.is-active:before {
  transform: scaleX(1);
}
.step-number {
  font: 11px var(--mono);
  color: #788969;
  margin-top: 4px;
}
.workflow-step strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.workflow-step > span:nth-child(2) > span {
  font-size: 12px;
  line-height: 1.5;
  color: #71835f;
}
.step-arrow {
  margin-left: auto;
  font-size: 21px;
  color: #617b3e;
  transition: transform 0.4s;
}
.workflow-step.is-active .step-arrow {
  transform: rotate(45deg);
}
.workflow-visual {
  position: relative;
  background: var(--pine);
  color: var(--paper);
  min-height: 580px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-self: stretch;
}
.workflow-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#a9bd6c2e 1px, transparent 1px);
  background-size: 23px 23px;
  mask-image: radial-gradient(ellipse, #000, transparent 80%);
}
.workflow-visual-top,
.workflow-visual-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 30px;
  font: 9px var(--mono);
  letter-spacing: 1px;
  color: #a9bb91;
  position: relative;
  z-index: 1;
}
.workflow-visual-bottom {
  margin-top: auto;
  justify-content: flex-start;
  gap: 9px;
  border-top: 1px solid #a9bb9121;
  font-size: 8px;
}
.workflow-visual-bottom > span:last-child {
  margin-left: auto;
  font-size: 19px;
}
.step-panel {
  position: relative;
  margin: auto 0;
  width: 100%;
  padding: 32px;
  animation: panel-in 0.65s var(--ease) both;
}
.upload-demo {
  position: relative;
  padding-top: 65px;
  max-width: 310px;
  margin: 0 auto;
}
.upload-orbit {
  position: absolute;
  top: 8px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.upload-orbit span {
  display: grid;
  place-items: center;
  width: 59px;
  height: 67px;
  border: 1px solid #c2d2a455;
  background: #2b4e32;
  backdrop-filter: blur(10px);
  border-radius: 5px;
  font: 11px var(--mono);
  color: #d3e7b6;
  box-shadow: 0 15px 30px #001d1420;
  animation: document-drop 6s var(--ease) infinite;
}
.upload-orbit span:nth-child(1) {
  rotate: -14deg;
  animation-delay: -1s;
}
.upload-orbit span:nth-child(2) {
  translate: 0 -24px;
  rotate: 6deg;
  animation-delay: -3s;
}
.upload-orbit span:nth-child(3) {
  rotate: 15deg;
  animation-delay: -2s;
}
.upload-target {
  border: 1px dashed #a8c77966;
  background: #d5f6750b;
  border-radius: 9px;
  text-align: center;
  padding: 28px 20px 23px;
}
.upload-symbol {
  width: 42px;
  height: 42px;
  border: 1px solid #b4cd8377;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
  color: var(--lime);
  margin: 0 auto 19px;
}
.upload-target h3 {
  font: 40px/1 var(--serif);
  margin: 0 0 17px;
  font-weight: 400;
}
.upload-target p {
  font-size: 10px;
  color: #a3ba95;
  margin-bottom: 21px;
}
.upload-loader {
  height: 3px;
  background: #b4cd8320;
  max-width: 140px;
  margin: 0 auto 15px;
}
.upload-loader i {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  background: #b3d871;
  animation: scan-progress 6s var(--ease) infinite;
}
.upload-target small {
  font: 7px var(--mono);
  letter-spacing: 0.9px;
  color: #a2b584;
}
.connect-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 320px;
  margin: 0 auto;
  gap: 10px;
}
.connect-source {
  border: 1px solid #91b86466;
  border-radius: 4px;
  text-align: center;
  padding: 17px 5px;
  font: 11px var(--mono);
  color: #bfd79b;
  background: #234c31;
  animation: source-pulse 3s ease infinite;
}
.connect-source:nth-child(2) {
  animation-delay: 0.5s;
}
.connect-source:nth-child(3) {
  animation-delay: 1s;
}
.connect-lines {
  height: 45px;
  display: flex;
  grid-column: 1/-1;
  justify-content: space-around;
}
.connect-lines i {
  width: 1px;
  background: linear-gradient(transparent, #bce588, transparent);
  height: 100%;
  animation: source-pulse 2s infinite;
}
.connect-result {
  grid-column: 1/-1;
  border: 1px solid #adc98a40;
  background: #174533;
  border-radius: 6px;
  padding: 22px;
}
.connect-result > span {
  font-size: 29px;
  color: var(--lime);
}
.connect-result h3 {
  font: 34px var(--serif);
  margin: 12px 0 19px;
}
.connect-result p {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  border-bottom: 1px solid #a7c88326;
  padding-bottom: 12px;
  color: #d0dfbe;
}
.connect-result b {
  color: var(--lime);
  font-weight: 400;
}
.connect-result small {
  font: 7px var(--mono);
  letter-spacing: 1px;
  color: #a5bd8c;
  display: block;
  margin-top: 21px;
}
.ready-demo {
  text-align: center;
  max-width: 310px;
  margin: 0 auto;
}
.ready-seal {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid #b9d87b;
  border-radius: 50%;
  color: var(--lime);
  font-size: 28px;
  margin: 0 auto 23px;
  box-shadow:
    0 0 0 10px #bddb6e0b,
    0 0 0 22px #bddb6e05;
  animation: seal-breathe 4s ease infinite;
}
.ready-demo h3 {
  font: 43px/1 var(--serif);
  font-weight: 400;
  margin: 0 0 25px;
}
.ready-demo h3 em {
  color: var(--lime);
}
.ready-demo > div {
  display: flex;
  gap: 14px;
  text-align: left;
  font-size: 12px;
  padding: 14px;
  border-bottom: 1px solid #adc9902b;
}
.ready-demo > div > span {
  color: var(--lime);
}
.ready-demo > p {
  font-size: 11px;
  line-height: 1.7;
  color: #aac097;
  margin-top: 26px;
}

/* Editorial statement, questions and the closing invitation */
.principle {
  padding-top: 103px;
  padding-bottom: 96px;
  background: var(--pine);
  color: var(--paper);
}
.principle > .eyebrow {
  color: #9eb58c;
  margin: 0 0 36px;
}
.principle h2 {
  font: clamp(44px, 5.4vw, 85px)/1.12 var(--serif);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 400;
}
.principle h2 > span {
  color: #95aa83;
}
.principle h2 em {
  color: var(--lime);
  font-weight: 400;
}
.principle-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 49px;
  padding-top: 30px;
  border-top: 1px solid #d2e4b526;
}
.principle-symbol {
  font-size: 74px;
  color: var(--lime);
  line-height: 1;
  animation: slow-turn 40s linear infinite;
}
.principle-bottom p {
  font-size: 14px;
  line-height: 1.8;
  color: #b6c7a7;
  margin: 0;
}
.principle-note {
  margin-left: auto;
  font: 10px/1.9 var(--mono);
  color: #9aaf87;
  letter-spacing: 0.7px;
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9%;
}
.faq-heading > .eyebrow {
  color: #718360;
}
.faq h2 {
  margin: 25px 0;
}
.faq-heading > p:last-of-type {
  font-size: 14px;
  line-height: 1.7;
  color: #74816b;
}
.faq-asterisk {
  font-size: 117px;
  color: #b5c596;
  display: block;
  line-height: 1;
  margin-top: 30px;
  width: max-content;
  transition: rotate 1s var(--ease);
}
.faq-heading:hover .faq-asterisk {
  rotate: 90deg;
}
.faq-list {
  padding-top: 10px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 24px 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 25px;
  font-weight: 400;
  color: #7b8d66;
  transition: rotate 0.4s;
}
.faq-list details[open] summary > span {
  rotate: 45deg;
}
.faq-answer {
  padding: 0 34px 22px 0;
  animation: panel-in 0.4s var(--ease);
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #75816b;
  margin: 0;
}
.download-section {
  background: var(--lime);
  color: var(--pine);
  position: relative;
  overflow: hidden;
  padding: 88px var(--page) 24px;
}
.download-content {
  position: relative;
  z-index: 1;
}
.download-content > .eyebrow {
  color: #4e6a2e;
}
.download-content h2 {
  font: clamp(65px, 7.8vw, 122px)/0.96 var(--serif);
  letter-spacing: -0.03em;
  margin: 34px 0 26px;
  font-weight: 400;
}
.download-content h2 em {
  font-weight: 400;
}
.download-content > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.7;
  color: #567132;
  margin: 0 0 27px;
}
.button-dark {
  background: var(--pine);
  color: var(--paper);
}
.button-dark:hover {
  background: #164332;
}
.download-note {
  display: block;
  font-size: 11px;
  color: #5d7936;
  margin-top: 17px;
}
.download-decoration {
  position: absolute;
  right: 4%;
  top: 4%;
  font: 610px/0.95 var(--sans);
  color: #b9de59;
  font-weight: 400;
  user-select: none;
  transform-origin: center;
  animation: slow-turn 80s linear infinite;
}
.download-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 68px;
  padding-top: 24px;
  border-top: 1px solid #355e2330;
  font: 9px var(--mono);
  letter-spacing: 0.8px;
  color: #54712f;
}
.site-footer {
  background: var(--pine-deep);
  color: #d9e4cc;
  padding: 52px var(--page) 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-top > p {
  font: 23px/1.1 var(--serif);
  margin: 0 auto 0 0;
  color: #bbcbae;
}
.footer-top > a:not(.brand) {
  font-size: 12px;
  color: #b2c3a4;
}
.footer-top .back-top {
  margin-left: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #c7d8b620;
  padding-top: 24px;
  color: #93a986;
  font-size: 9px;
}
.download-dialog {
  border: 1px solid #dae0ce;
  background: var(--paper);
  color: var(--ink);
  border-radius: 12px;
  width: min(510px, calc(100% - 32px));
  max-height: calc(100svh - 40px);
  padding: 37px;
  text-align: center;
  overflow: auto;
  box-shadow: 0 30px 160px #0006;
  animation: dialog-in 0.45s var(--ease);
}
.download-dialog::backdrop {
  background: #031d15bb;
  backdrop-filter: blur(10px);
}
.dialog-close {
  position: absolute;
  right: 13px;
  top: 10px;
  padding: 5px 10px;
  font-size: 29px;
  background: none;
  color: #6d7d5e;
}
.dialog-brand {
  font-size: 43px;
  color: #748d4c;
  display: block;
  margin-bottom: 15px;
}
.download-dialog > .eyebrow {
  font-size: 9px;
  color: #7b8d67;
}
.download-dialog h2 {
  font: 59px/0.95 var(--serif);
  letter-spacing: -1.3px;
  margin: 20px 0;
  font-weight: 400;
}
.download-dialog h2 em {
  font-weight: 400;
  color: #819652;
}
.download-dialog > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.7;
  color: #6c7e5c;
}
.platform-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  gap: 12px;
  border: 0;
  margin: 24px 0 15px;
}
.platform-options label {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  padding: 17px;
  border: 1px solid #d5dec7;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.platform-options label:has(input:checked) {
  background: #e7efd8;
  border-color: #8ea467;
}
.platform-options input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.platform-options label:has(input:focus-visible) {
  outline: 3px solid #6f9448;
  outline-offset: 2px;
}
.platform-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}
.platform-options strong {
  font-size: 14px;
  font-weight: 500;
}
.platform-options small {
  font-size: 10px;
  margin-top: 5px;
  color: #7d8b6a;
}
.platform-tick {
  position: absolute;
  right: 13px;
  top: 12px;
  font-size: 11px;
  display: none;
}
.platform-options input:checked ~ .platform-tick {
  display: block;
}
.release-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #718354;
  margin: 18px 0 22px;
}
.release-status .status-dot {
  background: #829b59;
  box-shadow: none;
}
.download-dialog > .button {
  width: 100%;
  min-height: 53px;
  font-size: 13px;
}
.download-dialog .dialog-note {
  font-size: 10px !important;
  margin: 17px 0 0 !important;
}
.installer-link {
  margin-bottom: 10px;
}
.noscript-note {
  padding: 20px;
  text-align: center;
  background: var(--lime);
  margin: 0;
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes document-drop {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 13px;
  }
}
@keyframes source-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
@keyframes seal-breathe {
  0%,
  100% {
    box-shadow:
      0 0 0 10px #bddb6e0b,
      0 0 0 22px #bddb6e05;
  }
  50% {
    box-shadow:
      0 0 0 15px #bddb6e0b,
      0 0 0 32px #bddb6e00;
  }
}
@keyframes slow-turn {
  to {
    rotate: 360deg;
  }
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1600px) {
  .app-layout {
    grid-template-columns: 235px 1fr;
  }
  .app-main {
    padding: 36px;
  }
  .app-greeting h3 {
    font-size: 34px;
  }
  .app-stats {
    margin-block: 30px;
  }
  .app-stats > div {
    padding: 22px;
  }
  .app-stats > div > span {
    font-size: 12px;
  }
  .app-stats strong {
    font-size: 43px;
  }
  .app-stats p {
    font-size: 11px;
  }
  .app-subhead h4 {
    font-size: 14px;
  }
  .mini-doc {
    padding-block: 19px;
  }
  .mini-doc strong {
    font-size: 12px;
  }
  .mini-doc small,
  .doc-status {
    font-size: 10px;
  }
  .insight-card p {
    font-size: 34px;
  }
  .demo-assistant p {
    font-size: 13px;
  }
  .question-chips button {
    font-size: 10px;
  }
  .app-nav > button {
    font-size: 13px;
  }
  .app-sidebar {
    padding: 28px 20px;
  }
  .workspace-name {
    font-size: 12px;
  }
}
@media (max-width: 1150px) {
  .demo-stage {
    padding: 37px 30px 22px;
  }
  .demo-side-label {
    display: none;
  }
  .app-layout {
    grid-template-columns: 157px 1fr;
  }
  .app-main {
    padding: 23px 20px;
  }
  .app-stats > div {
    padding: 15px 11px;
  }
  .app-stats > div > span {
    font-size: 9px;
  }
  .app-greeting h3 {
    font-size: 25px;
  }
  .app-overview-bottom {
    gap: 14px;
    grid-template-columns: 1.4fr 1fr;
  }
  .doc-status {
    display: none;
  }
  .insight-card {
    padding: 15px 13px;
  }
  .insight-card p {
    font-size: 24px;
  }
  .insight-icon {
    right: 10px;
    font-size: 22px;
  }
  .benefits {
    gap: 25px;
  }
  .benefits article {
    padding-right: 20px;
  }
  .benefits h3 {
    font-size: 27px;
  }
  .workflow {
    gap: 6%;
  }
  .workflow-step {
    gap: 12px;
  }
  .workflow-step strong {
    font-size: 14px;
  }
  .workflow-step > span:nth-child(2) > span {
    font-size: 11px;
  }
  .workflow-visual {
    min-height: 565px;
  }
  .step-panel {
    padding: 25px;
  }
  .faq {
    gap: 7%;
  }
  .footer-top {
    gap: 28px;
  }
  .footer-top .back-top {
    margin-left: 0;
  }
  .download-decoration {
    right: -16%;
    opacity: 0.7;
  }
}
@media (max-width: 900px) {
  .app-sidebar {
    display: none;
  }
  .app-layout {
    grid-template-columns: 1fr;
  }
  .app-main {
    padding: 26px;
  }
  .app-greeting h3 {
    font-size: 30px;
  }
  .app-stats > div > span {
    font-size: 11px;
  }
  .app-stats p {
    font-size: 10px;
  }
  .app-subhead h4 {
    font-size: 12px;
  }
  .mini-doc strong {
    font-size: 11px;
  }
  .mini-doc small {
    font-size: 10px;
  }
  .insight-card p {
    font-size: 29px;
  }
  .app-main {
    min-height: 540px;
  }
  .demo-assistant p {
    font-size: 12px;
  }
  .question-chips button {
    font-size: 10px;
  }
  .demo-caption {
    font-size: 9px;
  }
  .benefits {
    gap: 20px;
  }
  .benefits h3 {
    font-size: 26px;
  }
  .benefits p {
    font-size: 13px;
  }
  .workflow {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .workflow-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
  .workflow-copy > .eyebrow {
    grid-column: 1/-1;
    margin: 0;
  }
  .workflow-copy > h2 {
    grid-column: 1;
  }
  .workflow-intro {
    grid-column: 1;
  }
  .workflow-steps {
    grid-column: 2;
    grid-row: 2/4;
    align-self: center;
  }
  .workflow-visual {
    min-height: 530px;
  }
  .step-panel {
    padding-block: 22px;
  }
  .workflow-visual-top,
  .workflow-visual-bottom {
    padding: 24px 30px;
  }
  .principle h2 {
    font-size: 53px;
  }
  .principle-note {
    display: none;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-heading {
    position: relative;
  }
  .faq-asterisk {
    position: absolute;
    right: 0;
    top: 20px;
  }
  .faq h2 {
    font-size: 58px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top > p {
    flex: 1;
  }
  .footer-top .back-top {
    display: none;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
}
@media (max-width: 600px) {
  .demo-stage {
    margin-top: 36px;
    padding: 15px 10px 16px;
    margin-inline: -12px;
    border-radius: 6px;
  }
  .window-bar {
    padding: 0 12px;
    font-size: 9px;
    height: 34px;
  }
  .demo-badge {
    font-size: 6px;
  }
  .window-dots {
    gap: 4px;
  }
  .window-dots i {
    width: 5px;
    height: 5px;
  }
  .app-main {
    padding: 20px 15px;
    min-height: 0;
  }
  .app-layout {
    min-height: 0;
  }
  .app-greeting p {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .app-greeting h3 {
    font-size: 25px;
  }
  .greeting-spark {
    font-size: 29px;
  }
  .app-stats {
    margin: 20px 0;
  }
  .app-stats > div {
    padding: 14px 8px;
  }
  .app-stats > div > span {
    font-size: 8px;
    white-space: normal;
  }
  .app-stats strong {
    font-size: 30px;
  }
  .app-stats strong small {
    font-size: 11px;
    margin-left: 3px;
  }
  .app-stats p {
    font-size: 7px;
    white-space: normal;
    line-height: 1.5;
  }
  .stat-complete strong {
    font-size: 31px;
  }
  .app-overview-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .app-subhead h4 {
    font-size: 12px;
  }
  .mini-doc {
    padding: 13px 0;
  }
  .doc-status {
    display: block;
    font-size: 8px;
  }
  .mini-doc strong {
    font-size: 10px;
  }
  .mini-doc small {
    font-size: 9px;
  }
  .insight-card {
    padding: 17px;
  }
  .insight-card p {
    font-size: 29px;
    margin: 12px 0;
  }
  .insight-card p br {
    display: none;
  }
  .insight-card button {
    font-size: 10px;
    padding-top: 10px;
  }
  .insight-icon {
    right: 18px;
    top: 12px;
    font-size: 27px;
  }
  .insight-eyebrow {
    font-size: 8px;
  }
  .demo-assistant {
    margin-top: 20px;
    padding-top: 18px;
    gap: 8px;
  }
  .assistant-label {
    font-size: 7px;
  }
  .demo-assistant p {
    font-size: 11px;
  }
  .question-chips button {
    font-size: 8px;
    padding: 7px 8px;
  }
  .demo-caption {
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
    font-size: 9px;
  }
  .demo-caption > span:last-child {
    font-size: 7px;
  }
  .benefits {
    grid-template-columns: 1fr;
    margin-top: 38px;
    gap: 26px;
  }
  .benefits article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 25px;
  }
  .benefits article:last-child {
    padding: 0;
  }
  .benefits h3 {
    font-size: 32px;
    margin: 12px 0;
  }
  .benefits p {
    font-size: 15px;
    max-width: none;
  }
  .benefit-no {
    font-size: 10px;
  }
  .workflow {
    padding-block: 75px;
  }
  .workflow-copy {
    display: block;
  }
  .workflow h2 {
    font-size: 58px;
  }
  .workflow-intro {
    font-size: 16px;
  }
  .workflow-step strong {
    font-size: 16px;
  }
  .workflow-step > span:nth-child(2) > span {
    font-size: 12px;
  }
  .workflow-visual {
    min-height: 510px;
  }
  .workflow-visual-top,
  .workflow-visual-bottom {
    padding: 23px;
    font-size: 8px;
  }
  .principle {
    padding-block: 70px;
  }
  .principle > .eyebrow {
    font-size: 9px;
    max-width: 240px;
    line-height: 1.8;
  }
  .principle h2 {
    font-size: 44px;
    line-height: 1.12;
  }
  .principle h2 br {
    display: none;
  }
  .principle-bottom {
    gap: 20px;
    margin-top: 34px;
  }
  .principle-symbol {
    font-size: 48px;
  }
  .principle-bottom p {
    font-size: 12px;
  }
  .principle-bottom p br {
    display: none;
  }
  .faq-asterisk {
    font-size: 80px;
    top: 10px;
  }
  .faq h2 {
    font-size: 52px;
  }
  .faq-heading > .eyebrow {
    font-size: 10px;
  }
  .faq-heading > p:last-of-type {
    font-size: 13px;
  }
  .faq-list summary {
    font-size: 15px;
    padding: 22px 0;
    gap: 16px;
  }
  .faq-answer {
    padding-right: 15px;
  }
  .faq-answer p {
    font-size: 14px;
  }
  .download-section {
    padding-top: 68px;
  }
  .download-content h2 {
    font-size: 70px;
    margin-top: 27px;
  }
  .download-content > .eyebrow {
    font-size: 9px;
  }
  .download-decoration {
    font-size: 360px;
    right: -165px;
    top: 70px;
    opacity: 0.55;
  }
  .download-content > p:not(.eyebrow) {
    font-size: 15px;
  }
  .download-content > .button {
    font-size: 13px;
    gap: 10px;
    padding: 0 18px;
  }
  .download-content .button-arrow {
    margin-left: 10px;
  }
  .download-note {
    font-size: 10px;
  }
  .download-foot {
    font-size: 8px;
    margin-top: 52px;
  }
  .download-foot > span:last-child {
    display: none;
  }
  .footer-top {
    gap: 24px 32px;
    padding-bottom: 30px;
  }
  .footer-top > p {
    font-size: 22px;
  }
  .footer-top > a:not(.brand) {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 10px;
  }
  .download-dialog {
    padding: 30px 22px;
  }
  .download-dialog h2 {
    font-size: 53px;
  }
  .download-dialog > .eyebrow {
    font-size: 8px;
  }
  .platform-options label {
    padding: 16px 13px;
  }
  .platform-options small {
    font-size: 9px;
  }
  .document-detail {
    padding: 15px;
  }
  .document-detail dl > div {
    font-size: 10px;
  }
  .document-detail h4 {
    font-size: 25px;
  }
  .checklist-items label {
    font-size: 11px;
  }
  .checklist-items small {
    font-size: 9px;
  }
}

/* Progressive enhancement and motion preferences. */
.dialog-open {
  overflow: hidden;
}
.motion-paused .hero-art,
.motion-paused .hero-scene {
  will-change: auto;
}
.motion-paused .app-view,
.motion-paused .step-panel,
.motion-paused .download-dialog {
  animation: none !important;
}
.motion-paused .line > span,
.motion-paused .line > em {
  animation: none !important;
  opacity: 1;
  transform: none;
}
.motion-paused .hero-description,
.motion-paused .hero-actions,
.motion-paused .hero-note,
.motion-paused .tax-card {
  opacity: 1;
  animation: none !important;
  translate: 0 0;
}
.motion-paused html {
  scroll-behavior: auto;
}
@media (prefers-reduced-motion: reduce) {
  .app-window {
    transform: none !important;
  }
  .hero-art,
  .hero-scene {
    transform: none !important;
  }
  .app-view,
  .step-panel,
  .download-dialog {
    animation: none !important;
  }
  .line > span,
  .line > em {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
@media (scripting: none) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero .line > span,
  .hero .line > em {
    animation: none;
  }
  .app-nav,
  .question-chips,
  .workflow-steps,
  .motion-toggle,
  [data-download] {
    display: none;
  }
}
@media (max-width: 900px) {
  .app-sidebar {
    display: block;
    padding: 9px 16px;
    border-right: 0;
    border-bottom: 1px solid #d9e1cc;
  }
  .app-sidebar > .app-brand,
  .app-sidebar > .workspace-name,
  .app-sidebar > .sidebar-label,
  .app-sidebar > .sidebar-bottom {
    display: none;
  }
  .app-nav {
    flex-direction: row;
    gap: 6px;
  }
  .app-nav > button {
    font-size: 11px;
    padding: 9px 12px;
    flex: 1;
    justify-content: center;
  }
  .app-nav .nav-count {
    margin-left: 0;
  }
  .app-layout {
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .app-sidebar {
    padding: 8px;
  }
  .app-nav > button {
    font-size: 9px;
    padding: 8px 6px;
    gap: 5px;
  }
  .app-nav > button > span:first-child {
    font-size: 12px;
  }
  .app-nav .nav-count {
    display: none;
  }
}
