:root {
  --navy-950: #001d33;
  --navy-900: #002642;
  --navy-800: #003b66;
  --navy-700: #07537c;
  --green-800: #00664f;
  --green-700: #007c5c;
  --green-600: #0a9370;
  --green-500: #17a47e;
  --mint-200: #cde8df;
  --mint-100: #dcefe9;
  --mint-50: #eef8f5;
  --cream: #f4f0e5;
  --cream-deep: #e9e2d1;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #102a3d;
  --muted: #5f7380;
  --line: #d7e1df;
  --shadow-sm: 0 10px 30px rgba(0, 38, 66, 0.08);
  --shadow-lg: 0 32px 90px rgba(0, 38, 66, 0.15);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: 1200px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 720;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--green-700);
  font-style: normal;
}

::selection {
  color: var(--white);
  background: var(--green-700);
}

:focus-visible {
  outline: 3px solid rgba(10, 147, 112, 0.45);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 10vw, 144px);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  flex: none;
  background: currentColor;
}

.eyebrow.light {
  color: #83d7bd;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.15;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 12px 24px rgba(0, 124, 92, 0.22);
}

.button-primary:hover {
  background: var(--green-600);
  box-shadow: 0 16px 30px rgba(0, 124, 92, 0.28);
}

.button-secondary {
  color: var(--navy-900);
  border-color: #b8cbc6;
  background: rgba(255, 255, 255, 0.56);
}

.button-secondary:hover {
  border-color: var(--green-700);
  background: var(--white);
}

.button-mint {
  color: var(--navy-900);
  background: #a9e2cf;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.button-mint:hover {
  background: #c7eedf;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 78px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(244, 240, 229, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.site-header.scrolled {
  border-color: rgba(0, 38, 66, 0.08);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 8px 28px rgba(0, 38, 66, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 196px;
  flex: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #334f60;
  font-size: 0.86rem;
  font-weight: 680;
}

.site-nav > a:not(.nav-demo) {
  position: relative;
  padding-block: 11px;
}

.site-nav > a:not(.nav-demo)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--green-700);
  transition: right 200ms var(--ease);
}

.site-nav > a:not(.nav-demo):hover::after {
  right: 0;
}

.nav-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 9px;
}

.nav-demo:hover {
  background: var(--navy-800);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy-900);
  background: var(--white);
}

.menu-toggle-lines {
  width: 20px;
  display: grid;
  gap: 4px;
  margin: auto;
}

.menu-toggle-lines i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 142px 0 72px;
  background:
    radial-gradient(circle at 91% 11%, rgba(10, 147, 112, 0.12), transparent 23%),
    linear-gradient(115deg, var(--cream) 0%, #f8f5ed 63%, #e9f3ef 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(580px, 1.17fr);
  align-items: center;
  gap: clamp(50px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 5.4vw, 5.9rem);
  line-height: 0.97;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 30px;
  color: #456171;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.assurance-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  color: #4f6876;
  font-size: 0.77rem;
  font-weight: 720;
}

.assurance-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.assurance-list li span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 50%;
  font-size: 0.7rem;
}

.hero-product {
  position: relative;
  min-width: 0;
  padding: 30px 0 50px;
}

.product-glow {
  position: absolute;
  z-index: 0;
  inset: -8% -18% -17% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 124, 92, 0.16), transparent 64%);
  filter: blur(12px);
}

.app-frame {
  position: relative;
  z-index: 2;
  width: 710px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 40px 100px rgba(0, 38, 66, 0.22), 0 8px 26px rgba(0, 38, 66, 0.1);
  transform: perspective(1600px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center left;
}

.app-frame-top {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-900);
  font-size: 0.64rem;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.27);
}

.save-state {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.save-state i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #73d9b8;
  box-shadow: 0 0 0 4px rgba(115, 217, 184, 0.12);
}

.app-layout {
  min-height: 470px;
  display: grid;
  grid-template-columns: 68px 1fr;
  background: #f2f6f7;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 15px 10px;
  background: linear-gradient(180deg, #00355f, #002642);
}

.app-sidebar img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 4px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
}

.side-item {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.58);
  border-radius: 9px;
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 800;
}

.side-item.active {
  color: var(--navy-900);
  background: #cfe8dc;
}

.app-content {
  min-width: 0;
  padding: 21px 19px 24px;
}

.app-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.app-content-head > div {
  display: grid;
}

.app-content-head strong {
  color: var(--navy-900);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.micro-label {
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.new-job {
  padding: 8px 10px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 7px;
  font-size: 0.55rem;
  font-weight: 800;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.metric-card {
  display: grid;
  min-width: 0;
  padding: 12px;
  border: 1px solid #dbe5e4;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 5px 14px rgba(0, 38, 66, 0.035);
}

.metric-card small {
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 700;
}

.metric-card b {
  margin-block: 4px 1px;
  color: var(--navy-900);
  font-size: 1.25rem;
  line-height: 1;
}

.metric-card span {
  overflow: hidden;
  color: #81909a;
  font-size: 0.47rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.metric-card span.positive {
  color: var(--green-700);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(150px, 0.65fr);
  gap: 9px;
}

.schedule-panel,
.pipeline-panel {
  overflow: hidden;
  border: 1px solid #dbe5e4;
  border-radius: 10px;
  background: var(--white);
}

.panel-title {
  min-height: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  border-bottom: 1px solid #e5ebea;
  color: var(--navy-900);
  font-size: 0.59rem;
}

.panel-title span {
  color: var(--green-700);
  font-size: 0.48rem;
  font-weight: 750;
}

.job-row {
  min-height: 67px;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-bottom: 1px solid #e8eeed;
}

.job-row:last-child {
  border-bottom: 0;
}

.job-row time {
  padding: 5px 4px;
  color: var(--green-700);
  background: var(--mint-50);
  border-radius: 6px;
  font-size: 0.49rem;
  font-weight: 850;
  text-align: center;
}

.job-row > div {
  min-width: 0;
  display: grid;
}

.job-row strong,
.job-row small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.job-row strong {
  color: #203747;
  font-size: 0.57rem;
}

.job-row small {
  color: #7d8d96;
  font-size: 0.46rem;
}

.status-chip {
  padding: 4px 7px;
  color: #226849;
  background: #e1f2e7;
  border-radius: 999px;
  font-size: 0.43rem;
  font-weight: 800;
}

.status-chip.priority {
  color: #9c5f10;
  background: #fff1d5;
}

.pipeline-panel {
  padding-bottom: 10px;
}

.pipeline-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 10px 12px 3px;
  color: #5f7380;
  font-size: 0.49rem;
}

.pipeline-line span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pipeline-line span i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: var(--green-500);
}

.pipeline-line:nth-child(3) span i {
  background: #68a2c8;
}

.pipeline-line:nth-child(4) span i {
  background: #e4a552;
}

.pipeline-total {
  display: grid;
  margin: 13px 11px 0;
  padding: 10px;
  background: var(--mint-50);
  border-radius: 8px;
}

.pipeline-total small {
  color: var(--muted);
  font-size: 0.46rem;
}

.pipeline-total strong {
  color: var(--navy-900);
  font-size: 0.88rem;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 38, 66, 0.15);
  backdrop-filter: blur(10px);
}

.floating-note > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.floating-note div {
  display: grid;
}

.floating-note b {
  font-size: 0.68rem;
}

.floating-note small {
  color: var(--muted);
  font-size: 0.53rem;
}

.floating-note-top {
  top: -9px;
  right: -58px;
}

.floating-note-bottom {
  right: 3px;
  bottom: 1px;
}

.industry-strip {
  border-block: 1px solid #d8e2df;
  background: var(--white);
}

.industry-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.industry-label {
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.industry-list {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy-800);
  font-size: 0.85rem;
  font-weight: 720;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.industry-list i {
  width: 4px;
  height: 4px;
  display: block;
  background: #a9bcb7;
  border-radius: 50%;
}

.platform-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 5% 20%, rgba(10, 147, 112, 0.1), transparent 25%);
}

.section-heading,
.product-tour-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
  margin-bottom: 54px;
}

.section-heading h2,
.product-tour-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.section-heading > p,
.product-tour-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 465px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #d8e3e0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 30px rgba(0, 38, 66, 0.035);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease;
}

.feature-card:hover {
  border-color: #bcd0ca;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-card-wide {
  min-height: 390px;
  display: grid;
  grid-template-columns: 58px minmax(240px, 0.9fr) minmax(300px, 1.1fr);
  align-items: center;
  gap: 24px;
  grid-column: 1 / -1;
}

.feature-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #8ca59e;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.feature-card-wide .feature-number {
  position: static;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  align-self: start;
  margin-top: 4px;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 50%;
}

.feature-kicker {
  margin: 0 0 7px;
  color: var(--green-700);
  font-size: 0.67rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin-bottom: 13px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.08;
}

.feature-copy > p:not(.feature-kicker) {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-copy ul {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  color: #3d5968;
  font-size: 0.78rem;
  font-weight: 680;
}

.feature-copy li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green-700);
  font-weight: 900;
}

.feature-card:not(.feature-card-wide) .feature-copy {
  max-width: 440px;
  padding-right: 24px;
}

.mini-ui {
  overflow: hidden;
  align-self: stretch;
  border: 1px solid #dce5e3;
  border-radius: 13px;
  background: #f7faf9;
  box-shadow: 0 12px 40px rgba(0, 38, 66, 0.07);
}

.mini-ui-head {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #dce5e3;
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 800;
}

.mini-ui-head i {
  padding: 5px 8px;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 99px;
  font-size: 0.55rem;
  font-style: normal;
}

.property-record {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  padding: 10px 18px;
  border-bottom: 1px solid #e1e9e7;
}

.property-record:last-child {
  border-bottom: 0;
}

.property-record b {
  color: var(--navy-900);
  font-size: 0.75rem;
}

.property-record small {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.62rem;
}

.property-record span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  padding: 5px 8px;
  color: var(--green-700);
  background: var(--white);
  border: 1px solid #d7e3df;
  border-radius: 7px;
  font-size: 0.58rem;
  font-weight: 800;
}

.week-ui {
  min-height: 190px;
  display: grid;
  grid-template-columns: repeat(5, minmax(74px, 1fr));
  gap: 8px;
  align-items: stretch;
  margin-top: auto;
  padding-top: 36px;
  overflow-x: auto;
}

.week-ui > div {
  min-width: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 7px;
  border: 1px solid #dce5e3;
  border-radius: 10px;
  background: #f7faf9;
}

.week-ui > div.active {
  border-color: #a7cabd;
  background: var(--mint-50);
}

.week-ui small {
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 850;
}

.week-ui b {
  color: var(--navy-900);
  font-size: 0.82rem;
}

.week-ui span {
  width: 100%;
  height: 19px;
  display: block;
  border-left: 3px solid var(--green-700);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 38, 66, 0.06);
}

.week-ui span:nth-of-type(2) {
  border-left-color: #e5a658;
}

.resource-ui {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 34px;
}

.resource-person {
  min-height: 72px;
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #dce5e3;
  border-radius: 10px;
  background: #f9fbfa;
}

.resource-person > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--mint-100);
  border-radius: 9px;
  font-size: 0.66rem;
  font-weight: 850;
}

.resource-person div {
  min-width: 0;
  display: grid;
}

.resource-person b {
  overflow: hidden;
  color: var(--navy-900);
  font-size: 0.72rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.resource-person small {
  color: var(--muted);
  font-size: 0.58rem;
}

.resource-person > i {
  padding: 4px 7px;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 99px;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-card-dark {
  color: var(--white);
  border-color: var(--navy-900);
  background:
    radial-gradient(circle at 90% 10%, rgba(23, 164, 126, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy-900), #003b66);
}

.feature-card-dark:hover {
  border-color: #07537c;
  box-shadow: 0 22px 60px rgba(0, 38, 66, 0.21);
}

.feature-card-dark .feature-number {
  color: #98d8c3;
  background: rgba(255, 255, 255, 0.09);
}

.feature-card-dark .feature-kicker {
  color: #87d8bd;
}

.feature-card-dark .feature-copy h3 {
  color: var(--white);
}

.feature-card-dark .feature-copy > p:not(.feature-kicker),
.feature-card-dark .feature-copy ul {
  color: rgba(255, 255, 255, 0.69);
}

.feature-card-dark .feature-copy li::before {
  color: #83d7bd;
}

.invoice-ui {
  padding: 25px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 18, 32, 0.22);
}

.invoice-ui-top,
.invoice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.invoice-ui-top span {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.invoice-ui-top i {
  padding: 5px 9px;
  color: #2b6d92;
  background: #e3f1f9;
  border-radius: 99px;
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 850;
}

.invoice-ui > strong {
  display: block;
  margin: 20px 0 2px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  letter-spacing: -0.05em;
}

.invoice-ui > small {
  color: var(--muted);
}

.invoice-progress {
  height: 8px;
  margin: 25px 0 14px;
  overflow: hidden;
  background: #e8efed;
  border-radius: 99px;
}

.invoice-progress span {
  width: 50%;
  height: 100%;
  display: block;
  background: var(--green-700);
  border-radius: inherit;
}

.invoice-meta {
  color: var(--muted);
  font-size: 0.65rem;
}

.invoice-meta span {
  display: grid;
}

.invoice-meta b {
  color: var(--navy-900);
  font-size: 0.75rem;
}

.workflow-section {
  color: var(--white);
  background:
    radial-gradient(circle at 9% 15%, rgba(0, 124, 92, 0.3), transparent 25%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(70px, 10vw, 140px);
}

.workflow-intro {
  position: sticky;
  top: 130px;
}

.workflow-intro h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  line-height: 1.02;
}

.workflow-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.63);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 5px;
  color: #8ce0c5;
  border-bottom: 1px solid rgba(140, 224, 197, 0.42);
  font-size: 0.83rem;
  font-weight: 750;
}

.workflow-steps {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 25px;
  width: 1px;
  background: linear-gradient(#56b89a, rgba(86, 184, 154, 0.12));
}

.workflow-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 35px;
  align-items: start;
  gap: 25px;
  padding: 0 0 50px;
}

.workflow-steps li:last-child {
  padding-bottom: 0;
}

.step-number {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #8ce0c5;
  border: 1px solid rgba(140, 224, 197, 0.35);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 0.64rem;
  font-weight: 850;
}

.workflow-steps li > div > p {
  margin-bottom: 5px;
  color: #8ce0c5;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-steps h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.2;
}

.workflow-steps li > div > span {
  display: block;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.86rem;
}

.workflow-steps li > i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #8ce0c5;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  font-style: normal;
}

.product-tour-section {
  background: #f6f3eb;
}

.tour-shell {
  overflow: hidden;
  border: 1px solid #cddbd7;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.tour-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 28px;
  border-bottom: 1px solid #dce5e3;
  background: #fbfcfb;
}

.tour-tabs button {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  color: var(--muted);
  border: 0;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 750;
}

.tour-tabs button::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  background: var(--green-700);
  transition: inset 220ms var(--ease);
}

.tour-tabs button:hover {
  color: var(--navy-900);
}

.tour-tabs button[aria-selected="true"] {
  color: var(--navy-900);
}

.tour-tabs button[aria-selected="true"]::after {
  right: 12%;
  left: 12%;
}

.tour-tabs button span {
  color: var(--green-700);
  font-size: 0.58rem;
}

.tour-stage {
  min-height: 530px;
  padding: 42px;
  background:
    radial-gradient(circle at 85% 15%, rgba(10, 147, 112, 0.09), transparent 29%),
    #eef4f3;
}

.tour-panel {
  min-height: 445px;
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  align-items: center;
  gap: 50px;
}

.tour-panel[hidden] {
  display: none;
}

.tour-copy > p {
  margin-bottom: 9px;
  color: var(--green-700);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tour-copy h3 {
  margin-bottom: 17px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.05;
}

.tour-copy > span {
  display: block;
  color: var(--muted);
  font-size: 0.91rem;
}

.tour-visual {
  min-height: 385px;
  overflow: hidden;
  border: 1px solid #d8e2e0;
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(0, 38, 66, 0.11);
}

.tour-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 18px;
  background: #f7faf9;
}

.tour-metrics > span {
  display: grid;
  padding: 13px;
  border: 1px solid #e1e8e7;
  background: var(--white);
  border-radius: 10px;
}

.tour-metrics small {
  color: var(--muted);
  font-size: 0.48rem;
  font-weight: 850;
}

.tour-metrics b {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 1.25rem;
}

.tour-list {
  padding: 7px 18px 18px;
}

.tour-list > div {
  min-height: 74px;
  display: grid;
  grid-template-columns: 53px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e4ebe9;
}

.tour-list > div:last-child {
  border-bottom: 0;
}

.tour-list time {
  padding: 7px 4px;
  color: var(--green-700);
  background: var(--mint-50);
  border-radius: 7px;
  font-size: 0.62rem;
  font-weight: 850;
  text-align: center;
}

.tour-list > div > span {
  min-width: 0;
  display: grid;
}

.tour-list b {
  overflow: hidden;
  color: var(--navy-900);
  font-size: 0.72rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tour-list small {
  color: var(--muted);
  font-size: 0.58rem;
}

.tour-list > div > i {
  padding: 5px 8px;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 99px;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 850;
}

.pipeline-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 10px;
  padding: 15px;
  background: #eef4f3;
}

.lane {
  padding: 10px;
  background: rgba(255, 255, 255, 0.52);
  border-radius: 10px;
}

.lane > span {
  display: flex;
  justify-content: space-between;
  padding: 4px 4px 10px;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.lane > span b {
  color: var(--navy-900);
}

.lane article {
  display: grid;
  gap: 5px;
  margin-bottom: 9px;
  padding: 13px;
  border: 1px solid #dce6e4;
  background: var(--white);
  border-radius: 9px;
  box-shadow: 0 5px 13px rgba(0, 38, 66, 0.045);
}

.lane article strong {
  color: var(--navy-900);
  font-size: 0.7rem;
}

.lane article small {
  color: var(--muted);
  font-size: 0.55rem;
}

.lane article i {
  padding-top: 7px;
  color: var(--green-700);
  border-top: 1px solid #e6eceb;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 750;
}

.field-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 10px;
  padding: 20px;
  background: #f7faf9;
}

.field-visual > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid #dce5e3;
  background: var(--white);
  border-radius: 11px;
}

.field-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--mint-100);
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 850;
}

.field-visual p {
  min-width: 0;
  display: grid;
  margin: 0;
}

.field-visual p b {
  overflow: hidden;
  color: var(--navy-900);
  font-size: 0.68rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.field-visual p small {
  color: var(--muted);
  font-size: 0.53rem;
}

.field-visual > div > i {
  padding: 5px 7px;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 99px;
  font-size: 0.46rem;
  font-style: normal;
  font-weight: 850;
}

.field-visual > div > i.due {
  color: #9c5f10;
  background: #fff1d5;
}

.financial-visual {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #f8faf9;
}

.finance-total {
  display: grid;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  border-radius: 14px;
}

.finance-total small {
  color: #94c8b8;
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.finance-total strong {
  margin-block: 9px 3px;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  line-height: 1;
}

.finance-total span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
}

.bar-chart {
  min-height: 245px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 12px;
  padding: 20px 20px 0;
  border-bottom: 1px solid #cbd9d5;
  background-image: linear-gradient(#e9efed 1px, transparent 1px);
  background-size: 100% 25%;
}

.bar-chart i {
  width: 11%;
  height: var(--bar);
  display: block;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--green-500), var(--green-700));
}

.finance-legend {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 700;
}

.finance-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.finance-legend i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 2px;
  background: var(--green-700);
}

.finance-legend span:last-child i {
  background: #c5d1ce;
}

.privacy-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 86%, rgba(0, 124, 92, 0.38), transparent 27%),
    linear-gradient(125deg, #002a49, #001d33);
}

.privacy-section::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 135px);
}

.privacy-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.privacy-core {
  position: relative;
  z-index: 5;
  width: 190px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(126, 219, 190, 0.08);
}

.privacy-core img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.privacy-core span {
  margin-top: 7px;
  color: var(--green-700);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-core b {
  font-size: 0.73rem;
}

.privacy-ring {
  position: absolute;
  border: 1px solid rgba(128, 218, 190, 0.22);
  border-radius: 50%;
}

.ring-one {
  width: 290px;
  height: 290px;
}

.ring-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
}

.ring-three {
  width: 520px;
  height: 520px;
  opacity: 0.54;
}

.orbit-label {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  color: #9de3cd;
  border: 1px solid rgba(157, 227, 205, 0.25);
  background: rgba(0, 38, 66, 0.88);
  border-radius: 99px;
  font-size: 0.62rem;
  font-weight: 750;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.orbit-one {
  top: 104px;
  right: 52px;
}

.orbit-two {
  bottom: 83px;
  right: 94px;
}

.orbit-three {
  bottom: 130px;
  left: -6px;
}

.privacy-copy h2 {
  margin-bottom: 23px;
  color: var(--white);
  font-size: clamp(2.7rem, 4.8vw, 4.7rem);
  line-height: 1.02;
}

.privacy-lede {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
}

.privacy-points {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-points article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-points article > span {
  color: #79d2b6;
  font-size: 0.6rem;
  font-weight: 850;
}

.privacy-points h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.privacy-points p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.fit-section {
  background: var(--paper);
}

.fit-card {
  min-height: 450px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 80px;
  padding: clamp(38px, 6vw, 78px);
  border: 1px solid #cadbd6;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.93), rgba(238, 248, 245, 0.94)),
    radial-gradient(circle at 90% 10%, rgba(0, 124, 92, 0.18), transparent 35%);
  box-shadow: var(--shadow-sm);
}

.fit-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  line-height: 1.04;
}

.fit-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 28px;
  color: var(--muted);
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list > span {
  min-height: 65px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 16px;
  color: var(--navy-900);
  border: 1px solid #d4e1de;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 720;
}

.fit-list i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.faq-section {
  padding-top: 65px;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4vw, 3.9rem);
  line-height: 1.05;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid #cbd9d5;
}

.faq-list details {
  border-bottom: 1px solid #cbd9d5;
}

.faq-list summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--navy-900);
  list-style: none;
  font-size: 1rem;
  font-weight: 750;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--green-700);
  border: 1px solid #c1d5cf;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-list details[open] summary span {
  color: var(--white);
  background: var(--green-700);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 50px 28px 0;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta {
  padding-block: 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 13%, rgba(60, 192, 152, 0.25), transparent 28%),
    linear-gradient(120deg, #00355f, #002642);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 80px;
}

.final-cta h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.final-cta-actions {
  display: grid;
  justify-items: stretch;
  gap: 16px;
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.76rem;
  font-weight: 720;
}

.quiet-link:hover {
  color: var(--white);
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-950);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-block: 62px 48px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
}

.footer-brand p {
  margin: 16px 0 0;
  font-size: 0.78rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 140px);
  gap: 50px;
}

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

.footer-links span {
  margin-bottom: 5px;
  color: #85d7bd;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.78rem;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.67rem;
}

.footer-bottom > span:nth-child(2) {
  color: #8fd8c1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom a {
  justify-self: end;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1260px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(510px, 1.1fr);
    gap: 45px;
  }

  .app-frame {
    width: 640px;
  }

  .floating-note-top {
    right: -20px;
  }

  .floating-note-bottom {
    right: -10px;
  }
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 124px;
  }

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

  .hero-copy {
    max-width: 780px;
  }

  .hero-copy h1 {
    font-size: clamp(4.2rem, 9vw, 6.6rem);
  }

  .hero-product {
    width: min(100%, 800px);
    justify-self: center;
  }

  .app-frame {
    width: 100%;
    transform: none;
  }

  .industry-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 22px;
  }

  .industry-list {
    flex-wrap: wrap;
  }

  .feature-card-wide {
    grid-template-columns: 52px minmax(230px, 0.8fr) minmax(270px, 1.2fr);
  }

  .workflow-layout,
  .privacy-grid {
    gap: 60px;
  }

  .privacy-grid {
    grid-template-columns: minmax(330px, 0.8fr) 1.2fr;
  }

  .privacy-visual {
    transform: scale(0.84);
  }

  .tour-stage {
    padding: 30px;
  }

  .tour-panel {
    grid-template-columns: 0.52fr 1.48fr;
    gap: 30px;
  }

  .field-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 78px);
    display: grid;
    align-content: start;
    gap: 0;
    overflow-y: auto;
    padding: 20px 24px 30px;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 18px 40px rgba(0, 38, 66, 0.12);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease), opacity 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.nav-demo) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.nav-demo)::after {
    display: none;
  }

  .nav-demo {
    justify-content: center;
    margin-top: 18px;
    padding: 15px;
  }

  .section-heading,
  .product-tour-heading,
  .workflow-layout,
  .privacy-grid,
  .fit-card,
  .faq-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .product-tour-heading {
    gap: 24px;
  }

  .feature-card-wide {
    grid-template-columns: 52px 1fr;
  }

  .feature-card-wide .mini-ui,
  .feature-card-wide .invoice-ui {
    grid-column: 1 / -1;
  }

  .workflow-intro,
  .faq-heading {
    position: static;
  }

  .tour-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 14px;
  }

  .tour-tabs button {
    min-height: 62px;
  }

  .tour-panel {
    grid-template-columns: 1fr;
  }

  .privacy-grid {
    gap: 30px;
  }

  .privacy-visual {
    order: 2;
  }

  .fit-card {
    gap: 40px;
  }

  .faq-layout {
    gap: 40px;
  }

  .final-cta-inner {
    gap: 40px;
  }
}

@media (max-width: 660px) {
  .section {
    padding-block: 82px;
  }

  .brand {
    width: 158px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 54px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero-lede {
    font-size: 0.97rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .assurance-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-product {
    padding-bottom: 96px;
  }

  .app-frame-top {
    grid-template-columns: 1fr auto;
  }

  .app-frame-top > span {
    display: none;
  }

  .app-layout {
    grid-template-columns: 48px 1fr;
  }

  .app-sidebar {
    padding-inline: 6px;
  }

  .app-sidebar img,
  .side-item {
    width: 30px;
    height: 30px;
  }

  .app-content {
    padding: 14px 11px;
  }

  .metrics-row {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    overflow-x: auto;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-panel {
    display: none;
  }

  .job-row {
    grid-template-columns: 39px minmax(0, 1fr);
  }

  .status-chip {
    display: none;
  }

  .floating-note {
    padding: 10px 11px;
  }

  .floating-note-top {
    top: auto;
    right: 25px;
    bottom: 34px;
  }

  .floating-note-bottom {
    right: auto;
    bottom: -18px;
    left: 10px;
  }

  .industry-list {
    gap: 10px 13px;
    font-size: 0.72rem;
  }

  .industry-list i {
    width: 3px;
    height: 3px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    min-height: auto;
    display: flex;
    grid-column: auto;
    padding: 25px;
  }

  .feature-card-wide .feature-number {
    margin-bottom: 18px;
  }

  .feature-card-wide .mini-ui,
  .feature-card-wide .invoice-ui {
    margin-top: 30px;
  }

  .week-ui,
  .resource-ui {
    padding-top: 30px;
  }

  .workflow-steps li {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .workflow-steps::before {
    left: 20px;
  }

  .step-number {
    width: 42px;
    height: 42px;
  }

  .workflow-steps li > i {
    display: none;
  }

  .tour-shell {
    border-radius: 20px;
  }

  .tour-tabs {
    grid-template-columns: 1fr 1fr;
    padding-inline: 5px;
  }

  .tour-tabs button {
    min-height: 62px;
    font-size: 0.68rem;
  }

  .tour-stage {
    min-height: 0;
    padding: 20px;
  }

  .tour-panel {
    min-height: 0;
  }

  .tour-visual {
    min-height: 320px;
  }

  .tour-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-list > div {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .tour-list > div > i {
    display: none;
  }

  .pipeline-visual {
    grid-template-columns: repeat(3, 170px);
    overflow-x: auto;
  }

  .field-visual {
    padding: 12px;
  }

  .field-visual > div {
    grid-template-columns: 38px 1fr;
  }

  .field-visual > div > i {
    display: none;
  }

  .financial-visual {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .bar-chart {
    min-height: 170px;
  }

  .privacy-visual {
    min-height: 400px;
    margin-inline: -40px;
    transform: scale(0.76);
  }

  .fit-card {
    width: min(calc(100% - 20px), var(--shell));
    padding: 30px 23px;
    border-radius: 22px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 0.9rem;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 45px;
  }

  .footer-bottom {
    gap: 10px;
    align-content: center;
    padding-block: 22px;
  }

  .footer-bottom > span:nth-child(2) {
    justify-self: start;
  }

  .footer-bottom a {
    justify-self: start;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .floating-note small {
    display: none;
  }

  .feature-card {
    padding: 22px;
  }

  .resource-person {
    grid-template-columns: 36px 1fr;
  }

  .resource-person > i {
    display: none;
  }

  .property-record span {
    display: none;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
