@charset "UTF-8";

:root {
  --ink: #172e31;
  --muted: #667575;
  --green: #184c45;
  --deep: #143c38;
  --mint: #dcece2;
  --teal: #2d7768;
  --line: #e2e7e2;
  --paper: #fcfcf9;
  --peach: #f5e1ce;
  --lavender: #e9e5f7;
  --sky: #e1edf4;
  --sand: #f0edce;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,input,select,textarea {
  font: inherit;
}

button,a,input,select,textarea {
  -webkit-tap-highlight-color: transparent;
}

button,a {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

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

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  vertical-align: middle;
}

button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible,[tabindex]:focus-visible {
  outline: 3px solid #227b8d;
  outline-offset: 5px;
}

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

h1,h2,h3 {
  font-weight: 600;
}

h1,h2 {
  letter-spacing: -.055em;
  line-height: 1.09;
}

h3 {
  letter-spacing: -.025em;
  line-height: 1.3;
}

p {
  color: var(--muted);
}

ul {
  padding: 0;
  list-style: none;
}

button {
  border: 0;
  background: none;
}

::selection {
  background: #c8e5d7;
  color: var(--deep);
}

[hidden] {
  display: none !important;
}

.container {
  width: calc(100% - 104px);
  max-width: 1216px;
  margin-inline: auto;
}

.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  z-index: 100;
  padding: 14px 22px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 14px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  color: var(--green);
}

.section-number {
  color: #86998e;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #5f9377;
  border-radius: 50%;
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 53px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition: background .2s,transform .2s,box-shadow .2s;
}

.button .icon {
  width: 18px;
  height: 18px;
}

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

.button-dark {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 3px 5px #18362a0a;
}

.button-dark:hover {
  background: #23564d;
  box-shadow: 0 6px 14px #18362a18;
}

.button-small {
  min-height: 43px;
  padding: 11px 18px;
  font-size: 11px;
  gap: 16px;
}

.button-text {
  gap: 11px;
  padding-inline: 13px;
}

.button-text:hover {
  background: #eaf1e9;
}

.play-icon {
  width: 27px;
  height: 27px;
  border: 1px solid #b6c8bd;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 8px;
  padding-left: 2px;
}

.accent-serif {
  color: var(--teal);
  font-family: Georgia,"Times New Roman",serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.055em;
}

.muted-heading {
  color: #798783;
}

.mint {
  background: var(--mint);
  color: #376b50;
}

.peach {
  background: var(--peach);
  color: #976a3d;
}

.lavender {
  background: var(--lavender);
  color: #786293;
}

.sky {
  background: var(--sky);
  color: #56798f;
}

.sand {
  background: var(--sand);
  color: #8b823f;
}

/* Header */

.site-header {
  height: 83px;
  background: #fcfcf9ed;
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #e1e7dfb3;
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.wordmark img {
  width: 240px;
  height: auto;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 12px;
  font-weight: 500;
}

.site-header nav>a:not(.button) {
  padding-block: 10px;
}

.site-header nav>a:not(.button):hover {
  color: var(--teal);
}

.menu-toggle {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  padding: 67px 0 32px;
  background: radial-gradient(ellipse at 50% 38%,#edf3e9 0%,#f6f7ef 39%,#f9faf5 65%,var(--paper) 90%);
  overflow: hidden;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  gap: 9px;
  padding: 6px 12px;
  background: #e8efe5;
  border: 1px solid #dbe6d6;
  border-radius: 30px;
  font-size: 10px;
  letter-spacing: .015em;
  text-transform: none;
}

.hero h1 {
  font-size: clamp(48px,5.75vw,80px);
  margin: 22px 0 21px;
  letter-spacing: -.06em;
  line-height: 1.035;
}

.hero h1 .accent-serif {
  font-size: 1.085em;
}

.hero-description {
  font-size: 15px;
  line-height: 1.75;
  color: #667570;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  margin-top: 25px;
}

.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 10px;
  color: #6e7d71;
  margin-top: 16px;
}

.hero-note .icon {
  width: 13px;
  height: 13px;
  color: #7c987f;
}

.hero-note>span {
  width: 3px;
  height: 3px;
  background: #97a790;
  border-radius: 50%;
  margin: 0 7px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid #d4e3d658;
  border-radius: 50%;
  width: 680px;
  height: 680px;
  pointer-events: none;
}

.orbit-one {
  top: -150px;
  left: -470px;
}

.orbit-two {
  top: -150px;
  right: -470px;
}

.preview-stage {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  max-width: 1150px;
  scroll-margin-top: 105px;
}

.preview-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 4px 12px;
  font-size: 10px;
  color: #7a8579;
}

.preview-caption>span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #637f67;
}

.preview-caption>span:last-child {
  font-size: 9px;
  letter-spacing: .015em;
}

.app-preview {
  display: grid;
  grid-template-columns: 204px minmax(0,1fr);
  background: white;
  border: 1px solid #d4ded3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 6px #e4e9da70,0 25px 55px -24px #5367484a;
  min-height: 452px;
  text-align: left;
}

.app-sidebar {
  padding: 21px 12px 14px;
  display: flex;
  flex-direction: column;
  background: #f7f9f5;
  border-right: 1px solid #e3e8df;
}

.app-brand {
  display: flex;
  align-items: center;
}

.app-brand img {
  width: 174px;
  height: auto;
}

.company-selector {
  margin: 25px 0 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 6px;
  border: 1px solid #e0e6dc;
  background: white;
  border-radius: 6px;
  font-size: 10px;
}

.company-selector strong {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: -.1px;
}

.company-selector small {
  font-size: 8px;
  color: #97a293;
  display: block;
}

.company-selector>span:last-child {
  margin-left: auto;
}

.company-avatar {
  width: 27px;
  height: 27px;
  background: #e5ebdc;
  color: #6e7e55;
  display: grid;
  place-items: center;
  font-size: 13px;
  border-radius: 5px;
}

.sidebar-label {
  font-size: 7px;
  letter-spacing: .1em;
  color: #96a08f;
  margin: 0 9px 9px;
}

.preview-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preview-tabs button {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 9px;
  border-radius: 5px;
  font-size: 9px;
  color: #6a7567;
  text-align: left;
  transition: background .2s,color .2s;
}

.preview-tabs .icon {
  width: 14px;
  height: 14px;
}

.preview-tabs button:hover {
  background: #e9eee5;
}

.preview-tabs button[aria-selected=true] {
  background: #e1ecdd;
  color: #244e33;
  font-weight: 600;
}

.tab-marker {
  height: 5px;
  width: 5px;
  background: #598064;
  border-radius: 50%;
  margin-left: auto;
}

.sidebar-tip {
  margin: 18px 7px 24px;
  padding: 13px 10px 9px;
  background: linear-gradient(125deg,#e5ecdc,#eef1e6);
  border: 1px solid #e1e7d7;
  border-radius: 6px;
}

.small-spark {
  font-size: 24px;
  color: #597341;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.sidebar-tip p {
  font-size: 10px;
  line-height: 1.5;
  color: #718061;
}

.sidebar-tip p strong {
  font-weight: 500;
  color: #3e5734;
}

.sidebar-tip a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d5dfc9;
  padding-top: 8px;
  margin-top: 10px;
  font-size: 7px;
}

.app-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0 5px;
}

.app-user strong {
  display: block;
  font-size: 9px;
  font-weight: 600;
}

.app-user small {
  font-size: 7px;
  color: #919b8d;
  display: block;
}

.avatar {
  height: 27px;
  width: 27px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 8px;
  font-weight: 600;
  border: 2px solid white;
  flex-shrink: 0;
}

.avatar-peach {
  background: #edd7bc;
  color: #886342;
}

.avatar-green {
  background: #d1dfc4;
  color: #587347;
}

.avatar-purple {
  background: #ded4e9;
  color: #785697;
}

.online-dot {
  margin-left: auto;
  background: #78a777;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.app-main {
  min-width: 0;
  background: #fcfdfb;
}

.app-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 49px;
  padding: 0 23px;
  border-bottom: 1px solid #e9ede6;
  background: white;
  font-size: 8px;
  color: #8d9588;
}

.app-toolbar>span {
  display: flex;
  gap: 11px;
  align-items: center;
}

.app-toolbar .icon {
  width: 12px;
  height: 12px;
}

.toolbar-slash {
  color: #d0d7c9;
}

.toolbar-icons {
  gap: 18px !important;
}

.toolbar-icons .avatar {
  width: 24px;
  height: 24px;
  font-size: 7px;
}

.dashboard-content {
  padding: 23px;
}

.dashboard-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
  gap: 12px;
}

.app-eyebrow {
  font-size: 6px;
  letter-spacing: .14em;
  color: #92a38b;
  margin-bottom: 5px;
}

.dashboard-title h2 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.65px;
  line-height: 1.2;
}

.dashboard-title h2>span {
  color: #769460;
}

.dashboard-title p {
  font-size: 8px;
  margin-top: 6px;
  color: #94a08e;
}

.date-chip {
  padding: 6px 9px;
  border: 1px solid #e3e8dd;
  border-radius: 5px;
  font-size: 7px;
  color: #65745b;
  white-space: nowrap;
  background: white;
}

.date-chip>span {
  margin-left: 8px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 11px;
}

.kpi-card {
  position: relative;
  border: 1px solid #e5eade;
  border-radius: 7px;
  background: #fff;
  padding: 13px;
  min-height: 102px;
  overflow: hidden;
}

.kpi-card>span:first-child {
  display: block;
  font-size: 8px;
  color: #6c7966;
  margin-bottom: 9px;
}

.kpi-card>strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.9px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

.kpi-card>strong small {
  font-size: 7px;
  letter-spacing: 0;
  font-weight: 400;
  color: #8a9680;
}

.kpi-card>div {
  margin-top: 10px;
  font-size: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.kpi-card>div>small {
  font-size: 6px;
  color: #9ca590;
}

.trend {
  font-size: 6px;
  border-radius: 3px;
  color: #659359;
  background: #e9f3e4;
  padding: 2px 4px;
}

.pending {
  font-size: 6px;
  color: #b18c50;
  background: #faf1e2;
  padding: 2px 4px;
  border-radius: 3px;
}

.kpi-decoration {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-size: 30px;
  color: #c7d8ba;
  line-height: 1;
}

.mini-bars {
  position: absolute;
  display: flex;
  align-items: end;
  gap: 2px;
  right: 10px;
  bottom: 14px;
  height: 20px;
}

.mini-bars i {
  width: 4px;
  background: #bad6aa;
  border-radius: 1px;
  height: 30%;
}

.mini-bars i:nth-child(2n) {
  height: 55%;
}

.mini-bars i:nth-child(3n) {
  height: 70%;
}

.mini-bars i:nth-child(4n) {
  height: 100%;
  background: #669355;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 12px;
  margin-top: 13px;
}

.chart-card,.activity-card {
  border: 1px solid #e5eade;
  border-radius: 7px;
  background: white;
  min-height: 174px;
  padding: 14px;
}

.widget-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.widget-heading h3 {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: -.05px;
}

.widget-heading>span {
  font-size: 6px;
  color: #98a08f;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.legend-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #77a269;
  border-radius: 50%;
}

.bar-chart {
  height: 125px;
  display: flex;
  padding-top: 19px;
  gap: 10px;
}

.chart-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 6px;
  color: #a6ad9c;
  padding-bottom: 17px;
  min-width: 15px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  width: 100%;
  background: repeating-linear-gradient(to top,transparent 0,transparent 29px,#eef0e9 29px,#eef0e9 30px);
  padding-bottom: 17px;
  gap: 10px;
}

.bar-group {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  position: relative;
  height: 100%;
  width: 28px;
}

.bar-group span {
  display: block;
  width: 12px;
  background: #80a96d;
  border-radius: 3px 3px 0 0;
  height: var(--bar,60%);
}

.bar-group span+span {
  height: calc(var(--bar,60%) * .68);
  background: #e6eeda;
}

.bar-group small {
  font-size: 6px;
  color: #97a58b;
  position: absolute;
  bottom: -16px;
  left: 3px;
}

.b1 {
  --bar: 40%;
}

.b2 {
  --bar: 60%;
}

.b3 {
  --bar: 51%;
}

.b4 {
  --bar: 77%;
}

.b5 {
  --bar: 67%;
}

.b6 {
  --bar: 94%;
}

.activity-card {
  padding-bottom: 0;
}

.activity-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0 0;
}

.activity-icon {
  height: 26px;
  width: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  flex-shrink: 0;
}

.activity-icon .icon {
  width: 12px;
  height: 12px;
}

.activity-row strong {
  display: block;
  font-size: 7px;
  font-weight: 500;
}

.activity-row small {
  font-size: 6px;
  color: #a0a995;
  display: block;
  margin-top: 2px;
}

.activity-row time {
  margin-left: auto;
  font-size: 5px;
  color: #a5ae9b;
}

.activity-footer {
  border-top: 1px solid #edf0e7;
  font-size: 6px;
  color: #99a38e;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding: 8px 0;
}

.activity-footer .status-dot {
  width: 4px;
  height: 4px;
  background: #9dbc8e;
}

.preview-bottom-note {
  display: flex;
  align-items: center;
  padding: 22px 7px 4px;
  gap: 13px;
}

.avatar-stack {
  display: flex;
  padding-left: 4px;
}

.avatar-stack .avatar {
  margin-left: -5px;
  width: 30px;
  height: 30px;
  font-size: 8px;
}

.preview-bottom-note p {
  font-size: 9px;
  line-height: 1.7;
  color: #929987;
}

.preview-bottom-note p strong {
  color: #708163;
  font-weight: 500;
}

.handwritten {
  margin-left: auto;
  font-family: Georgia,serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: -.1px;
  color: #8a9878;
}

.handwritten>span {
  display: inline-block;
  font-size: 33px;
  margin-left: 6px;
  transform: rotate(15deg);
  vertical-align: middle;
}

.benefit-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

.benefit-strip>.container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding-block: 25px;
}

.benefit-strip span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #718078;
  font-size: 11px;
}

.benefit-strip .icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.3;
  color: #84978a;
}

/* Feature directory */

.section-space {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
}

.section-heading h2,.confidence-section h2,.faq-section h2 {
  font-size: 43px;
  margin-top: 19px;
  line-height: 1.13;
}

.section-heading>p {
  max-width: 354px;
  font-size: 13px;
  line-height: 1.85;
  padding-bottom: 3px;
}

.feature-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  margin-bottom: 26px;
  gap: 20px;
}

.feature-filters {
  display: flex;
  gap: 5px;
  padding: 5px;
  border-radius: 8px;
  border: 1px solid #e3e7e0;
  background: #f0f2ec;
}

.feature-filters button {
  font-size: 10px;
  padding: 10px 14px;
  border-radius: 5px;
  color: #7e8879;
  white-space: nowrap;
  transition: background .2s,color .2s;
}

.feature-filters button:hover {
  color: var(--green);
  background: #e6ecdf;
}

.feature-filters button.active {
  background: #fff;
  color: var(--green);
  box-shadow: 0 2px 4px #273d1712;
}

.feature-filters button span {
  font-size: 8px;
  padding: 2px 5px;
  border-radius: 4px;
  background: #edf1e8;
  margin-left: 5px;
  color: #738b5d;
}

.feature-filter-row>p {
  font-size: 10px;
  color: #96a08c;
  white-space: nowrap;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 17px;
  align-items: start;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  transition: box-shadow .2s,border-color .2s;
  min-width: 0;
}

.feature-card:hover {
  border-color: #c7d9c6;
  box-shadow: 0 7px 24px #193f2910;
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
}

.feature-icon>.icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.45;
}

.feature-index {
  font-size: 9px;
  color: #b2bba9;
  font-family: monospace;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 550;
}

.feature-card>p,.feature-wide-content>p {
  font-size: 12px;
  line-height: 1.75;
  min-height: 42px;
}

.feature-highlights {
  margin: 18px 0 19px;
}

.feature-highlights li {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  font-size: 10px;
  color: #64725f;
  line-height: 1.7;
  margin: 6px 0;
}

.feature-highlights li:before {
  content: '✓';
  color: #98ad8f;
  font-size: 10px;
  flex-shrink: 0;
}

.feature-card details {
  border-top: 1px solid #edf0e8;
  padding-top: 13px;
}

.feature-card summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  font-size: 9px;
  color: #7f8d75;
}

.feature-card summary:hover {
  color: var(--green);
}

summary::-webkit-details-marker {
  display: none;
}

.feature-card summary .icon {
  width: 13px;
  height: 13px;
  transition: transform .2s;
}

.feature-card details[open] summary .icon,.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}

.feature-card details ul {
  margin: 14px 0 3px;
  padding-left: 12px;
  list-style: disc;
  display: grid;
  gap: 7px;
  color: #6f7f68;
  font-size: 10px;
}

.feature-card-wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  padding: 27px 32px;
  background: linear-gradient(130deg,white,#f5f7f0);
}

.feature-wide-content .feature-top {
  margin-bottom: 13px;
}

.feature-wide-content>p {
  min-height: 0;
}

.feature-wide-content .feature-index {
  display: none;
}

.notification-illustration {
  padding: 20px 18px 0;
  align-self: center;
  position: relative;
}

.notification-sample {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  background: white;
  border: 1px solid #e3e9dc;
  border-radius: 9px;
  box-shadow: 0 5px 15px #36502509;
  transform: rotate(-3deg);
}

.notification-sample+.notification-sample {
  margin: 15px -8px 0 20px;
  transform: rotate(2deg);
}

.notification-sample .activity-icon {
  height: 33px;
  width: 33px;
}

.notification-sample .activity-icon .icon {
  width: 17px;
  height: 17px;
}

.notification-sample strong {
  display: block;
  font-size: 10px;
  font-weight: 500;
}

.notification-sample small {
  display: block;
  color: #98a38c;
  font-size: 8px;
  margin-top: 4px;
}

.notification-sample>span:last-child {
  font-size: 6px;
  color: #a9b29e;
  margin-left: auto;
  white-space: nowrap;
}

.illustration-label {
  display: block;
  font: italic 15px Georgia,serif;
  color: #8d9d7e;
  text-align: center;
  margin-top: 28px;
}

/* Connecting the work */

.workflow-section {
  background: #eaf0e6;
  border-block: 1px solid #e0e7db;
}

.workflow-section .eyebrow {
  color: #6c825d;
}

.workflow-section .section-heading>p {
  color: #7b8a70;
}

.workflow-section .section-heading h2 {
  font-size: 48px;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  margin-top: 60px;
}

.workflow-track article {
  padding: 0 32px;
  position: relative;
  border-right: 1px solid #cfdac4;
}

.workflow-track article:first-child {
  padding-left: 0;
}

.workflow-track article:last-child {
  padding-right: 0;
  border-right: 0;
}

.workflow-step {
  position: absolute;
  right: 28px;
  top: 3px;
  color: #b2c0a8;
  font-size: 10px;
}

.workflow-track article>.icon {
  height: 26px;
  width: 26px;
  color: #819a6d;
  stroke-width: 1.25;
  margin-bottom: 22px;
}

.workflow-track h3 {
  font-size: 17px;
  margin-bottom: 13px;
}

.workflow-track p {
  font-size: 12px;
  color: #78896c;
  line-height: 1.8;
  max-width: 220px;
  min-height: 66px;
}

.workflow-tag {
  display: inline-flex;
  border: 1px solid #cfddc5;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 8px;
  color: #7f966e;
  margin-top: 21px;
}

.workflow-footnote {
  margin-top: 42px;
  padding-top: 23px;
  border-top: 1px solid #d7e1ce;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  color: #879b76;
}

.workflow-footnote .status-dot {
  background: #94ad7f;
}

/* Access & integrations */

.confidence-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}

.confidence-intro>p {
  font-size: 13px;
  line-height: 1.8;
  max-width: 350px;
  margin-top: 22px;
}

.confidence-items {
  display: grid;
  gap: 30px;
  padding-top: 6px;
}

.confidence-items article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.confidence-items h3 {
  font-size: 15px;
  margin-bottom: 9px;
}

.confidence-items p {
  font-size: 12px;
  line-height: 1.9;
}

.confidence-items .feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.confidence-items .feature-icon .icon {
  height: 19px;
  width: 19px;
}

.security-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}

.security-halo {
  height: 175px;
  width: 175px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid #e0e8d8;
  border-radius: 50%;
  background: radial-gradient(circle,#e3eddb,transparent 64%);
}

.security-halo:before {
  content: '';
  position: absolute;
  inset: 21px;
  border: 1px dashed #d0ddc5;
  border-radius: 50%;
}

.security-core {
  height: 65px;
  width: 65px;
  border-radius: 20px;
  background: #e7efdf;
  display: grid;
  place-items: center;
  border: 1px solid #d7e3cb;
  box-shadow: 0 5px 12px #566d3910;
}

.security-core .icon {
  height: 33px;
  width: 33px;
  color: #789761;
  stroke-width: 1.25;
}

.permission-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid #e2e8dd;
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 12px #586d3310;
  color: #7b8a6e;
}

.permission-pill i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #94aa7d;
}

.permission-one {
  top: 12px;
  right: -96px;
  transform: rotate(3deg);
}

.permission-two {
  left: -99px;
  top: 80px;
  transform: rotate(-4deg);
}

.permission-three {
  bottom: -1px;
  right: -69px;
  transform: rotate(3deg);
}

/* FAQs */

.faq-section {
  padding-top: 50px;
  padding-bottom: 105px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}

.faq-section h2 {
  font-size: 37px;
}

.faq-section>div>p {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 25px;
}

.faq-section a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #bacdb7;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}

.faq-list details:first-child {
  padding-top: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary .icon {
  height: 16px;
  width: 16px;
  color: #869a76;
  transition: transform .2s;
}

.faq-list details>p {
  font-size: 12px;
  line-height: 1.9;
  padding: 17px 35px 2px 0;
  color: #7b8873;
}

/* Demo request */

.demo-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #193e38;
  color: white;
  border-radius: 20px;
  margin-bottom: 68px;
  padding: 52px;
  gap: 66px;
  overflow: hidden;
  position: relative;
}

.demo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.demo-copy .eyebrow {
  color: #a8c6b4;
  letter-spacing: .1em;
  font-size: 9px;
}

.demo-copy .status-dot {
  background: #a5c792;
}

.demo-copy h2 {
  font-size: 44px;
  margin-top: 29px;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.demo-copy h2 .accent-serif {
  color: #b3cea0;
  line-height: 1.25;
  display: inline-block;
}

.demo-copy>p {
  font-size: 13px;
  line-height: 1.9;
  color: #aec0b1;
  margin-top: 23px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-top: 27px;
  color: #c7d7bf;
  border-bottom: 1px solid #446456;
  padding-bottom: 8px;
}

.contact-link .icon {
  height: 17px;
  width: 17px;
}

.contact-link>span {
  margin-left: 12px;
}

.demo-bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 65px;
  font-size: 10px;
  line-height: 1.8;
  color: #8da695;
}

.demo-bottom img {
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: 10px;
  background: var(--paper);
  flex-shrink: 0;
}

.demo-form {
  padding: 29px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  position: relative;
}

.demo-form h3 {
  font-size: 21px;
  letter-spacing: -.045em;
}

.demo-form>p {
  font-size: 10px;
  color: #87927e;
  margin-top: 7px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-top: 16px;
  gap: 6px;
}

.field label {
  font-size: 10px;
  font-weight: 500;
  color: #6c7d60;
}

.field label>span {
  color: #9baa8e;
}

.field label .optional {
  font-size: 9px;
  font-weight: 400;
}

.field input,.field select,.field textarea {
  width: 100%;
  min-width: 0;
  padding: 11px;
  background: white;
  border: 1px solid #dfe5d9;
  border-radius: 5px;
  font-size: 11px;
  color: #33492a;
  transition: border-color .2s;
}

.field input::placeholder,.field textarea::placeholder {
  color: #9aa38f;
  font-size: 10px;
}

.field textarea {
  resize: vertical;
  min-height: 65px;
}

.field select {
  font-size: 10px;
  min-height: 40px;
}

.field input:hover,.field select:hover,.field textarea:hover {
  border-color: #a9bd9b;
}

.demo-form .button {
  width: 100%;
  font-size: 11px;
  min-height: 45px;
  padding: 12px 15px;
  justify-content: space-between;
  margin-top: 20px;
}

.demo-form .form-note {
  font-size: 8px;
  line-height: 1.8;
  color: #929e87;
  margin-top: 10px;
}

.form-status {
  border: 1px solid #d4e2ca;
  background: #eaf1e5;
  border-radius: 6px;
  padding: 12px;
  margin-top: 15px;
}

.form-status p {
  font-size: 10px;
  color: #5c754d;
  line-height: 1.7;
}

.copy-request {
  font-size: 9px;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 0;
  line-height: 1.7;
  text-align: left;
  color: #456036;
}

.form-status textarea {
  width: 100%;
  font-size: 10px;
  margin-top: 10px;
  padding: 9px;
  border: 1px solid #bdcbb4;
  background: white;
  color: var(--ink);
  resize: vertical;
}

.demo-form noscript p {
  font-size: 11px;
  margin-top: 10px;
}

.demo-form noscript a {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  padding-bottom: 23px;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.footer-top>p {
  font-size: 11px;
  color: #899880;
}

.back-top {
  margin-left: auto;
  font-size: 9px;
  color: #7a8d6c;
  display: flex;
  align-items: center;
  gap: 12px;
}

.back-top>span {
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  gap: 22px;
  align-items: center;
  padding-top: 21px;
  font-size: 9px;
  color: #94a087;
}

.footer-bottom nav {
  display: flex;
  gap: 23px;
  margin-left: auto;
}

.privacy-trigger {
  font-size: 9px;
  color: #7b8e6d;
  padding: 0;
}

.footer-bottom a:hover,.privacy-trigger:hover {
  color: var(--green);
  text-decoration: underline;
}

.privacy-dialog {
  border: 1px solid #d0decd;
  border-radius: 16px;
  background: var(--paper);
  padding: 38px;
  max-width: 520px;
  width: calc(100% - 36px);
  color: var(--ink);
  box-shadow: 0 20px 80px #142e3833;
}

.privacy-dialog::backdrop {
  background: #142e3855;
  backdrop-filter: blur(5px);
}

.privacy-dialog h2 {
  font-size: 31px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.privacy-dialog p {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 14px;
}

.privacy-dialog a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dialog-close {
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 27px;
  color: #6a8461;
  line-height: 1;
  padding: 5px 10px;
}

/* Alternative interactive previews */

.preview-table {
  border: 1px solid #e5eade;
  border-radius: 7px;
  background: white;
  padding: 14px;
  grid-column: 1/-1;
  min-height: 174px;
}

.preview-table table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 8px;
  font-size: 8px;
  text-align: left;
}

.preview-table th {
  font-size: 6px;
  font-weight: 500;
  color: #9aa78f;
  padding: 8px 6px;
  border-bottom: 1px solid #edf1e7;
}

.preview-table td {
  padding: 9px 6px;
  border-bottom: 1px solid #f0f3ed;
  color: #6b7d5b;
  font-size: 7px;
}

.preview-table tr:last-child td {
  border: 0;
}

.table-person {
  display: flex;
  align-items: center;
  gap: 7px;
}

.table-person .avatar {
  width: 23px;
  height: 23px;
  font-size: 6px;
}

.table-badge {
  display: inline-block;
  background: #e8f0e1;
  color: #789b5d;
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 6px;
}

.table-badge.warm {
  background: #f6ecd8;
  color: #ab8c57;
}

.mini-kanban {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  grid-column: 1/-1;
  min-height: 174px;
}

.kanban-column {
  padding: 10px;
  border-radius: 6px;
  background: #f0f3eb;
  border: 1px solid #e3e9db;
}

.kanban-column h3 {
  font-size: 8px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  color: #7e906e;
  margin-bottom: 10px;
}

.kanban-column h3 span {
  font-size: 6px;
}

.kanban-task {
  background: white;
  border: 1px solid #e1e8d9;
  border-radius: 5px;
  padding: 10px;
  margin-top: 7px;
}

.kanban-task strong {
  font-size: 7px;
  font-weight: 500;
  display: block;
}

.kanban-task small {
  font-size: 6px;
  color: #97a58c;
  display: block;
  margin-top: 5px;
}

.kanban-task .table-badge {
  margin-bottom: 8px;
  font-size: 5px;
  padding: 2px 5px;
}

.kanban-task .avatar {
  margin-top: 10px;
  width: 19px;
  height: 19px;
  font-size: 5px;
}

.mini-kanban .avatar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 5px;
  color: #9dac91;
}

/* Readable secondary content and controls */

.feature-card summary,.feature-filters button {
  color: #65735e;
}

.feature-filter-row>p,.form-note,.demo-form .form-note {
  color: #6b7961;
}

.field label {
  color: #5c7052;
}

.feature-card details ul {
  color: #5f7254;
}

.feature-card summary {
  min-height: 30px;
}

.faq-list summary {
  min-height: 28px;
}

@media (min-width:851px) {
  .site-header nav {
    font-size: 13px;
  }
  .button {
    font-size: 14px;
  }
  .button-small {
    font-size: 12px;
  }
  .hero-description {
    font-size: 16px;
  }
  .section-heading>p,.confidence-intro>p {
    font-size: 14px;
  }
  .feature-card h3 {
    font-size: 19px;
  }
  .feature-card>p,.feature-wide-content>p {
    font-size: 13px;
    min-height: 46px;
  }
  .feature-highlights li {
    font-size: 12px;
  }
  .feature-card summary {
    font-size: 11px;
  }
  .feature-card details ul {
    font-size: 12px;
  }
  .feature-filters button {
    font-size: 11px;
  }
  .feature-filter-row>p {
    font-size: 11px;
  }
  .confidence-items h3 {
    font-size: 16px;
  }
  .confidence-items p,.workflow-track p {
    font-size: 13px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .faq-list details>p {
    font-size: 13px;
  }
  .demo-copy>p {
    font-size: 14px;
  }
  .field label {
    font-size: 11px;
  }
  .field input,.field select,.field textarea {
    font-size: 12px;
  }
  .demo-form .form-note {
    font-size: 10px;
  }
}

/* Responsive layout */

@media (min-width:1440px) {
  .hero {
    padding-top: 80px;
  }
  .hero h1 {
    font-size: 84px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions {
    margin-top: 29px;
  }
  .preview-stage {
    margin-top: 50px;
  }
}

@media (max-width:1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .site-header nav {
    gap: 20px;
  }
  .site-header nav>a {
    font-size: 11px;
  }
  .app-preview {
    grid-template-columns: 185px minmax(0,1fr);
  }
  .dashboard-content {
    padding: 18px;
  }
  .dashboard-title h2 {
    font-size: 16px;
  }
  .date-chip {
    font-size: 6px;
    padding: 5px;
  }
  .kpi-card>strong {
    font-size: 17px;
  }
  .mini-bars {
    display: none;
  }
  .kpi-decoration {
    font-size: 23px;
    right: 7px;
    bottom: 9px;
  }
  .section-heading h2,.confidence-section h2 {
    font-size: 37px;
  }
  .feature-card {
    padding: 20px;
  }
  .feature-card h3 {
    font-size: 15px;
  }
  .feature-filters button {
    padding: 9px 11px;
    font-size: 9px;
  }
  .feature-filter-row>p {
    font-size: 9px;
  }
  .section-heading>p {
    max-width: 310px;
  }
  .feature-card-wide {
    gap: 30px;
  }
  .confidence-section {
    gap: 60px;
  }
  .faq-section {
    gap: 60px;
  }
  .demo-section {
    padding: 36px;
    gap: 36px;
  }
  .demo-copy h2 {
    font-size: 39px;
  }
  .demo-form {
    padding: 25px;
  }
  .workflow-track article {
    padding: 0 23px;
  }
  .workflow-track h3 {
    font-size: 15px;
  }
  .workflow-track p {
    font-size: 11px;
  }
  .workflow-tag {
    font-size: 7px;
  }
  .kpi-card {
    padding: 11px;
  }
  .app-sidebar {
    padding-top: 18px;
  }
}

@media (max-width:850px) {
  .site-header {
    height: 73px;
  }
  .wordmark img {
    width: 204px;
  }
  .site-header nav {
    gap: 16px;
  }
  .site-header nav>a:not(.button) {
    font-size: 10px;
  }
  .site-header nav .button {
    font-size: 10px;
    gap: 9px;
    padding: 10px 12px;
  }
  .hero {
    padding-top: 58px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .app-preview {
    grid-template-columns: 158px minmax(0,1fr);
    min-height: 425px;
  }
  .app-sidebar {
    padding: 17px 8px 12px;
  }
  .app-brand {
    padding: 0;
  }
  .app-brand img {
    width: 140px;
  }
  .company-selector {
    gap: 5px;
    padding: 7px 4px;
  }
  .company-selector strong {
    font-size: 7px;
  }
  .company-selector small {
    font-size: 6px;
  }
  .company-avatar {
    height: 22px;
    width: 22px;
    font-size: 10px;
  }
  .sidebar-label {
    font-size: 6px;
  }
  .preview-tabs button {
    font-size: 7px;
    gap: 6px;
    padding: 8px 5px;
  }
  .preview-tabs .icon {
    width: 12px;
    height: 12px;
  }
  .sidebar-tip {
    margin: 16px 3px 20px;
  }
  .dashboard-content {
    padding: 16px 13px;
  }
  .app-toolbar {
    padding: 0 15px;
    height: 44px;
    font-size: 6px;
  }
  .dashboard-title h2 {
    font-size: 14px;
  }
  .dashboard-title p {
    font-size: 7px;
  }
  .app-eyebrow {
    font-size: 5px;
  }
  .date-chip {
    display: none;
  }
  .kpi-grid {
    gap: 6px;
  }
  .kpi-card {
    padding: 9px;
    min-height: 94px;
  }
  .kpi-card>strong {
    font-size: 15px;
  }
  .kpi-card>span:first-child {
    font-size: 6px;
  }
  .kpi-card>strong small {
    font-size: 5px;
  }
  .kpi-card>div {
    gap: 3px;
    flex-wrap: wrap;
  }
  .kpi-card>div>small {
    font-size: 5px;
  }
  .kpi-decoration {
    display: none;
  }
  .dashboard-bottom {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }
  .chart-card,.activity-card {
    padding: 9px;
  }
  .widget-heading h3 {
    font-size: 7px;
  }
  .widget-heading>span {
    font-size: 5px;
  }
  .chart-card .widget-heading>span {
    display: none;
  }
  .chart-bars {
    gap: 5px;
  }
  .bar-group {
    width: 20px;
    gap: 3px;
  }
  .bar-group span {
    width: 8px;
  }
  .activity-row {
    gap: 5px;
  }
  .activity-row strong {
    font-size: 6px;
  }
  .activity-row small {
    font-size: 5px;
  }
  .activity-row time {
    display: none;
  }
  .activity-icon {
    width: 22px;
    height: 22px;
  }
  .activity-footer {
    font-size: 5px;
  }
  .handwritten {
    font-size: 11px;
  }
  .benefit-strip span {
    font-size: 9px;
    gap: 8px;
  }
  .benefit-strip .icon {
    height: 16px;
    width: 16px;
  }
  .section-space {
    padding-block: 75px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading h2,.confidence-section h2 {
    font-size: 34px;
  }
  .section-heading>p {
    max-width: 270px;
    font-size: 12px;
  }
  .feature-filter-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .feature-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
  }
  .feature-card h3 {
    font-size: 17px;
  }
  .feature-card>p,.feature-wide-content>p {
    font-size: 12px;
  }
  .feature-card-wide {
    grid-column: auto;
    display: block;
    padding: 20px;
    background: #fff;
  }
  .feature-card-wide .feature-top {
    margin-bottom: 23px;
  }
  .notification-illustration {
    display: none;
  }
  .feature-wide-content>p {
    min-height: 42px;
  }
  .workflow-section .section-heading h2 {
    font-size: 39px;
  }
  .workflow-track {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 45px;
  }
  .workflow-track article {
    padding: 0 24px 0 0;
    border: 0;
  }
  .workflow-track article:nth-child(2n) {
    border-left: 1px solid #cfdac4;
    padding-left: 35px;
    padding-right: 0;
  }
  .workflow-track p {
    min-height: auto;
    font-size: 12px;
    max-width: 260px;
  }
  .workflow-track h3 {
    font-size: 17px;
  }
  .workflow-track article>.icon {
    margin-bottom: 16px;
  }
  .workflow-tag {
    margin-top: 15px;
    font-size: 8px;
  }
  .workflow-step {
    right: 15px;
  }
  .workflow-footnote {
    font-size: 9px;
  }
  .confidence-section {
    gap: 43px;
  }
  .confidence-items {
    gap: 27px;
  }
  .confidence-items article {
    gap: 13px;
  }
  .confidence-items h3 {
    font-size: 13px;
  }
  .confidence-items p {
    font-size: 11px;
  }
  .confidence-intro>p {
    font-size: 12px;
  }
  .confidence-items .feature-icon {
    width: 30px;
    height: 30px;
  }
  .confidence-items .feature-icon .icon {
    height: 16px;
    width: 16px;
  }
  .security-visual {
    transform: scale(.85);
    transform-origin: left center;
  }
  .permission-one {
    right: -80px;
  }
  .permission-two {
    left: -60px;
  }
  .permission-three {
    right: -55px;
  }
  .faq-section {
    gap: 42px;
    padding-top: 40px;
    padding-bottom: 75px;
  }
  .faq-section h2 {
    font-size: 30px;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .faq-list details>p {
    font-size: 11px;
  }
  .demo-section {
    gap: 26px;
    padding: 30px;
  }
  .demo-copy h2 {
    font-size: 32px;
  }
  .demo-copy>p {
    font-size: 12px;
  }
  .contact-link {
    font-size: 11px;
    gap: 7px;
  }
  .demo-form {
    padding: 21px;
  }
  .demo-form h3 {
    font-size: 19px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field {
    margin-top: 13px;
  }
  .demo-form .button {
    font-size: 10px;
    gap: 12px;
  }
  .demo-copy .eyebrow {
    font-size: 7px;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-top>p {
    font-size: 9px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 14px;
  }
  .footer-bottom nav {
    gap: 14px;
  }
  .privacy-trigger {
    font-size: 8px;
  }
}

@media (max-width:650px) {
  html {
    scroll-padding-top: 87px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 67px;
  }
  .wordmark img {
    width: 186px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 40px;
    width: 40px;
    border: 1px solid #e0e6d9;
    border-radius: 6px;
    background: #f3f5ee;
    z-index: 32;
  }
  .menu-toggle span {
    width: 17px;
    height: 1.5px;
    background: var(--green);
    transition: transform .2s;
  }
  .menu-toggle[aria-expanded=true] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    padding: 15px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid #d9e3d2;
    box-shadow: 0 15px 20px #35402a0c;
    gap: 5px;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav>a:not(.button) {
    font-size: 14px;
    padding: 12px;
  }
  .site-header nav .button {
    font-size: 12px;
    padding: 13px;
    margin-top: 8px;
  }
  .hero {
    padding-top: 47px;
    padding-bottom: 24px;
  }
  .hero-label {
    font-size: 9px;
    padding: 6px 10px;
  }
  .hero h1 {
    font-size: 46px;
    letter-spacing: -.065em;
    line-height: 1.08;
    margin-top: 24px;
    margin-bottom: 20px;
  }
  .hero h1 .accent-serif {
    font-size: 1.08em;
  }
  .hero-description {
    font-size: 13px;
    max-width: 335px;
    margin: auto;
    line-height: 1.8;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 10px;
    padding: 12px 15px;
    gap: 12px;
    min-height: 46px;
  }
  .hero-actions .button-text {
    padding: 10px 3px;
    gap: 6px;
    font-size: 9px;
  }
  .play-icon {
    height: 24px;
    width: 24px;
    font-size: 7px;
  }
  .hero-note {
    font-size: 8px;
    gap: 5px;
    margin-top: 16px;
  }
  .hero-note>span {
    margin: 0 2px;
  }
  .hero-note .icon {
    height: 11px;
    width: 11px;
  }
  .preview-stage {
    margin-top: 34px;
  }
  .preview-caption {
    font-size: 8px;
    gap: 10px;
    align-items: flex-end;
    margin-bottom: 10px;
  }
  .preview-caption>span:last-child {
    font-size: 7px;
    text-align: right;
    max-width: 90px;
    line-height: 1.5;
  }
  .app-preview {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 0 4px #e4e9da70,0 16px 35px -20px #5367484a;
    min-height: 0;
  }
  .app-sidebar {
    padding: 10px 8px 8px;
    border-right: 0;
    border-bottom: 1px solid #e0e7d9;
    background: #f5f8f0;
    display: block;
  }
  .app-brand,.company-selector,.sidebar-label,.sidebar-tip,.app-user {
    display: none;
  }
  .preview-tabs {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 4px;
  }
  .preview-tabs button {
    font-size: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    text-align: center;
    padding: 8px 3px;
    min-height: 55px;
    line-height: 1.35;
  }
  .preview-tabs .icon {
    width: 16px;
    height: 16px;
  }
  .tab-marker {
    display: none;
  }
  .app-toolbar {
    height: 37px;
    padding: 0 14px;
    font-size: 7px;
  }
  .toolbar-icons {
    gap: 12px !important;
  }
  .toolbar-icons .avatar {
    width: 20px;
    height: 20px;
    font-size: 6px;
  }
  .dashboard-content {
    padding: 16px 12px;
  }
  .dashboard-title {
    margin-bottom: 15px;
  }
  .dashboard-title h2 {
    font-size: 15px;
  }
  .dashboard-title p {
    font-size: 7px;
  }
  .app-eyebrow {
    font-size: 5px;
    letter-spacing: .09em;
  }
  .kpi-grid {
    gap: 6px;
  }
  .kpi-card {
    padding: 10px 7px;
    min-height: 91px;
  }
  .kpi-card>strong {
    font-size: 15px;
    letter-spacing: -.6px;
    white-space: normal;
  }
  .kpi-card>strong small {
    font-size: 6px;
    display: block;
    margin-top: 4px;
  }
  .kpi-card>span:first-child {
    font-size: 6px;
    white-space: nowrap;
  }
  .kpi-card>div>small {
    display: none;
  }
  .kpi-card>div {
    margin-top: 8px;
  }
  .trend,.pending {
    font-size: 6px;
  }
  .dashboard-bottom {
    grid-template-columns: 1fr;
    margin-top: 9px;
  }
  .chart-card {
    padding: 12px;
    min-height: 177px;
  }
  .chart-card .widget-heading>span {
    display: flex;
    font-size: 6px;
  }
  .widget-heading h3 {
    font-size: 9px;
  }
  .chart-y {
    font-size: 6px;
    min-width: 20px;
  }
  .bar-chart {
    height: 135px;
    padding-top: 18px;
    gap: 12px;
  }
  .chart-bars {
    gap: 13px;
  }
  .bar-group {
    width: 29px;
    gap: 4px;
  }
  .bar-group span {
    width: 12px;
  }
  .bar-group small {
    font-size: 7px;
  }
  .activity-card {
    display: none;
  }
  .preview-bottom-note {
    padding: 20px 3px 1px;
    gap: 10px;
  }
  .preview-bottom-note p {
    font-size: 8px;
  }
  .preview-bottom-note .avatar {
    width: 26px;
    height: 26px;
    font-size: 7px;
  }
  .handwritten {
    display: none;
  }
  .benefit-strip>.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-block: 22px;
  }
  .benefit-strip span {
    font-size: 9px;
    gap: 9px;
    justify-content: center;
  }
  .benefit-strip .icon {
    height: 16px;
    width: 16px;
  }
  .section-space {
    padding-top: 61px;
    padding-bottom: 61px;
  }
  .eyebrow {
    font-size: 8px;
    gap: 8px;
    letter-spacing: .1em;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2,.confidence-section h2 {
    font-size: 34px;
    margin-top: 15px;
    line-height: 1.13;
  }
  .section-heading>p {
    font-size: 12px;
    max-width: 100%;
    margin-top: 20px;
    line-height: 1.9;
  }
  .feature-filter-row {
    margin-top: 28px;
    margin-bottom: 19px;
    gap: 10px;
  }
  .feature-filters {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .feature-filters button {
    font-size: 9px;
    white-space: normal;
    padding: 10px 7px;
    min-height: 34px;
  }
  .feature-filter-row>p {
    font-size: 8px;
    align-self: flex-end;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .feature-card,.feature-card-wide {
    padding: 23px;
  }
  .feature-top {
    margin-bottom: 18px;
  }
  .feature-card h3 {
    font-size: 19px;
  }
  .feature-card>p,.feature-wide-content>p {
    font-size: 12px;
    min-height: 0;
  }
  .feature-highlights {
    margin-top: 16px;
    margin-bottom: 18px;
  }
  .feature-highlights li {
    font-size: 11px;
    line-height: 1.7;
  }
  .feature-card summary {
    font-size: 10px;
    padding-block: 2px;
  }
  .feature-card details ul {
    font-size: 11px;
  }
  .feature-card .feature-icon {
    width: 39px;
    height: 39px;
  }
  .feature-wide-content .feature-top {
    margin-bottom: 18px;
  }
  .workflow-section .section-heading h2 {
    font-size: 38px;
  }
  .workflow-track {
    grid-template-columns: 1fr 1fr;
    gap: 33px 24px;
    margin-top: 37px;
  }
  .workflow-track article {
    padding: 0 !important;
    border: none !important;
  }
  .workflow-track article>.icon {
    height: 23px;
    width: 23px;
    margin-bottom: 15px;
  }
  .workflow-step {
    right: 2px;
    top: 0;
    font-size: 9px;
  }
  .workflow-track h3 {
    font-size: 15px;
    max-width: 135px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .workflow-track p {
    font-size: 11px;
    line-height: 1.9;
  }
  .workflow-tag {
    font-size: 6px;
    padding: 4px 5px;
    letter-spacing: -.1px;
  }
  .workflow-footnote {
    font-size: 9px;
    line-height: 1.8;
    text-align: left;
    align-items: baseline;
    margin-top: 31px;
    padding-top: 19px;
  }
  .workflow-footnote .status-dot {
    flex-shrink: 0;
  }
  .confidence-section {
    display: block;
  }
  .confidence-intro>p {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.9;
    margin-top: 18px;
  }
  .security-visual {
    transform: none;
    margin: auto;
    height: 233px;
    max-width: 300px;
  }
  .security-halo {
    height: 145px;
    width: 145px;
  }
  .security-core {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .security-core .icon {
    height: 29px;
    width: 29px;
  }
  .permission-pill {
    font-size: 7px;
    padding: 7px 9px;
  }
  .permission-one {
    right: -72px;
    top: 6px;
  }
  .permission-two {
    left: -68px;
    top: 75px;
  }
  .permission-three {
    right: -59px;
    bottom: 0;
  }
  .confidence-items {
    gap: 27px;
    padding: 0;
  }
  .confidence-items article {
    gap: 15px;
  }
  .confidence-items .feature-icon {
    width: 37px;
    height: 37px;
  }
  .confidence-items .feature-icon .icon {
    height: 20px;
    width: 20px;
  }
  .confidence-items h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .confidence-items p {
    font-size: 12px;
    line-height: 1.85;
  }
  .faq-section {
    display: block;
    padding-top: 39px;
    padding-bottom: 58px;
  }
  .faq-section h2 {
    font-size: 32px;
  }
  .faq-section>div>p {
    font-size: 11px;
    margin-top: 18px;
  }
  .faq-list {
    margin-top: 31px;
  }
  .faq-list summary {
    font-size: 12px;
    line-height: 1.6;
    gap: 15px;
  }
  .faq-list details {
    padding: 19px 0;
  }
  .faq-list details>p {
    font-size: 12px;
    padding-right: 8px;
  }
  .demo-section {
    width: calc(100% - 24px);
    padding: 30px 20px 20px;
    display: block;
    border-radius: 14px;
    margin-bottom: 41px;
  }
  .demo-copy {
    padding: 0 5px;
  }
  .demo-copy .eyebrow {
    font-size: 8px;
  }
  .demo-copy h2 {
    font-size: 36px;
    margin-top: 22px;
    line-height: 1.13;
  }
  .demo-copy>p {
    font-size: 12px;
    margin-top: 17px;
  }
  .contact-link {
    font-size: 12px;
    margin-top: 20px;
  }
  .demo-bottom {
    display: none;
  }
  .demo-form {
    margin-top: 29px;
    padding: 22px 19px;
    border-radius: 9px;
  }
  .demo-form h3 {
    font-size: 22px;
  }
  .demo-form>p {
    font-size: 11px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .field {
    margin-top: 17px;
    gap: 7px;
  }
  .field label {
    font-size: 10px;
  }
  .field input,.field select,.field textarea {
    font-size: 16px;
    padding: 10px 9px;
  }
  .field input::placeholder,.field textarea::placeholder {
    font-size: 11px;
  }
  .field select {
    font-size: 12px;
    height: 44px;
  }
  .demo-form .button {
    font-size: 11px;
    min-height: 46px;
    margin-top: 19px;
  }
  .demo-form .form-note {
    font-size: 9px;
    line-height: 1.8;
  }
  .form-status p {
    font-size: 11px;
  }
  .copy-request {
    font-size: 10px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 11px 20px;
    padding-bottom: 21px;
  }
  .footer-top>p {
    order: 3;
    width: 100%;
    font-size: 10px;
  }
  .back-top {
    font-size: 8px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 17px 15px;
    padding-top: 19px;
    font-size: 8px;
  }
  .footer-bottom nav {
    order: 3;
    margin-left: 0;
    width: 100%;
    gap: 21px;
    font-size: 9px;
  }
  .privacy-trigger {
    margin-left: auto;
    font-size: 8px;
  }
  .site-footer {
    padding-bottom: 25px;
  }
  .privacy-dialog {
    padding: 31px 25px;
  }
  .privacy-dialog h2 {
    font-size: 29px;
  }
  .preview-table {
    padding: 10px;
    min-height: 177px;
  }
  .preview-table th {
    padding: 7px 3px;
    font-size: 6px;
  }
  .preview-table td {
    font-size: 6px;
    padding: 9px 3px;
  }
  .table-person {
    gap: 4px;
  }
  .table-person .avatar {
    height: 20px;
    width: 20px;
  }
  .mini-kanban {
    gap: 5px;
  }
  .kanban-column {
    padding: 7px 5px;
  }
  .kanban-task {
    padding: 8px 6px;
  }
  .kanban-task strong {
    font-size: 7px;
    line-height: 1.5;
  }
  .kanban-task .table-badge {
    font-size: 5px;
  }
  .kanban-column h3 {
    font-size: 7px;
  }
}

@media (max-width:370px) {
  .hero h1 {
    font-size: 40px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .button {
    padding: 12px;
    font-size: 9px;
  }
  .hero-actions .button-text {
    padding: 10px 0;
    font-size: 8px;
  }
  .hero-note {
    font-size: 7px;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .kpi-card>strong {
    font-size: 13px;
  }
  .kpi-card>span:first-child {
    font-size: 5px;
  }
  .preview-tabs button {
    font-size: 6px;
  }
  .dashboard-title h2 {
    font-size: 13px;
  }
  .demo-copy h2 {
    font-size: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .permission-one {
    right: -55px;
  }
  .permission-two {
    left: -50px;
  }
  .permission-three {
    right: -46px;
  }
  .feature-filters button {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover {
    transform: none;
  }
}

@media print {
  .site-header,.hero-actions,.preview-stage,.feature-filters,.demo-form,.privacy-dialog,.privacy-trigger {
    display: none !important;
  }
  body {
    background: white;
    color: black;
    font-size: 11pt;
  }
  .container {
    width: 100%;
  }
  .hero {
    padding: 20px 0;
    background: none;
  }
  .hero h1 {
    font-size: 34pt;
  }
  .section-space {
    padding: 25px 0;
  }
  .feature-grid {
    display: block;
  }
  .feature-card {
    break-inside: avoid;
    margin-bottom: 10px;
  }
  .feature-card details>ul {
    display: block;
  }
  .feature-card-wide {
    display: block;
  }
  .notification-illustration {
    display: none;
  }
  .demo-section {
    display: block;
    background: white;
    color: black;
    padding: 20px;
    border: 1px solid #aaa;
  }
  .demo-copy h2 {
    font-size: 26pt;
  }
  .demo-copy p,.contact-link {
    color: black;
  }
  .demo-bottom {
    display: none;
  }
  .faq-section {
    padding-block: 25px;
  }
  .footer-bottom {
    display: none;
  }
}
