:root {
  color-scheme: light;
  --canvas: #f3f4ef;
  --canvas-deep: #e9ece4;
  --ink: #10211d;
  --muted: #66716d;
  --faint: rgba(16, 33, 29, 0.12);
  --accent: #b8f84a;
  --accent-soft: rgba(184, 248, 74, 0.2);
  --focus-x: 50%;
  --focus-y: 50%;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: Montserrat, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(145deg, var(--canvas) 0%, #f8f8f4 55%, var(--canvas-deep) 100%);
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(100% - 48px, 1440px);
  height: 88px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 112px;
  height: auto;
}

.header-context {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  z-index: 0;
  display: grid;
  min-height: max(760px, 100svh);
  overflow: hidden;
  place-items: center;
  contain: paint;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(16, 33, 29, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 29, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent 4%, black 42%, black 100%);
}

.trace-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  contain: layout paint;
  isolation: isolate;
}

.focus-halo {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(16, 33, 29, 0.15);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 248, 74, 0.46) 0%,
    rgba(184, 248, 74, 0.2) 36%,
    transparent 70%
  );
  box-shadow: 0 0 95px rgba(184, 248, 74, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease;
}

.hero.has-pointer .focus-halo {
  opacity: 1;
}

.trace-token {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(16, 33, 29, 0.33);
  cursor: crosshair;
  font-size: clamp(12px, 1.05vw, 15px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  white-space: nowrap;
  will-change: transform;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.trace-token::before {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: 0.55;
}

.trace-category {
  overflow: hidden;
  width: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.09em;
  opacity: 0;
  text-transform: uppercase;
  transition: width 260ms ease, opacity 200ms ease;
}

.trace-value {
  font-weight: 640;
}

.trace-token.is-near,
.trace-token:hover,
.trace-token:focus-visible,
.trace-token.is-pinned,
.trace-field.is-structured .trace-token {
  border-color: rgba(16, 33, 29, 0.11);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(16, 33, 29, 0.08);
  outline: none;
  backdrop-filter: blur(12px);
}

.trace-token.is-near .trace-category,
.trace-token:hover .trace-category,
.trace-token:focus-visible .trace-category,
.trace-token.is-pinned .trace-category,
.trace-field.is-structured .trace-category {
  width: 76px;
  opacity: 1;
}

.trace-token.is-pinned {
  border-color: rgba(16, 33, 29, 0.3);
}

.trace-token.is-pinned::before,
.trace-field.is-structured .trace-token::before {
  background: #6ca809;
  box-shadow: 0 0 0 4px var(--accent-soft);
  opacity: 1;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(100% - 64px, 1320px);
  margin: -2vh auto 0;
  text-align: center;
}

.hero-copy::before {
  position: absolute;
  inset: -80px -8% -65px;
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(246, 247, 242, 0.92) 0%,
    rgba(246, 247, 242, 0.72) 43%,
    transparent 74%
  );
  content: "";
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fbd18;
  box-shadow: 0 0 0 5px var(--accent-soft);
}

h1 {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(55px, 6.8vw, 98px);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

h1 em {
  display: block;
  margin-top: 0.08em;
  color: var(--ink);
  font-style: normal;
  white-space: nowrap;
}

@media (min-width: 821px) {
  h1 {
    white-space: nowrap;
  }
}

.hero-description {
  max-width: 710px;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 430;
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.hero-description strong {
  display: block;
  margin-top: 0.1em;
  color: var(--ink);
  font-size: 1.08em;
  font-weight: 700;
}

.hero-description strong em {
  font-style: italic;
}

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

.primary-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 30px;
  padding: 10px 17px 10px 21px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: #f8faf4;
  cursor: pointer;
  font-size: 14px;
  font-weight: 690;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 13px 36px rgba(16, 33, 29, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 200ms ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #1a302a;
  box-shadow: 0 16px 42px rgba(16, 33, 29, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.primary-action:hover svg,
.primary-action:focus-visible svg {
  transform: translateX(3px);
}

.trace-layout-toggle {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border: 0;
  background: transparent;
  color: rgba(16, 33, 29, 0.48);
  cursor: pointer;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.trace-layout-toggle:hover,
.trace-layout-toggle:focus-visible,
.trace-layout-toggle[aria-pressed="true"] {
  color: var(--ink);
  outline: none;
}

.layout-dot {
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.trace-layout-toggle[aria-pressed="true"] .layout-dot {
  border-color: #6ca809;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.data-section {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 132px 24px 144px;
  border-radius: 38px 38px 0 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(184, 248, 74, 0.09), transparent 26%),
    radial-gradient(circle at 8% 70%, rgba(255, 255, 255, 0.045), transparent 25%),
    #0c1d18;
  color: #f4f7f1;
}

.data-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.data-section-inner {
  position: relative;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  column-gap: clamp(40px, 8vw, 130px);
  align-items: end;
}

.section-kicker {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px;
  color: rgba(244, 247, 241, 0.52);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--accent);
}

.section-intro h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 6.5vw, 94px);
  font-weight: 590;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.section-intro h2 em {
  display: block;
  color: var(--accent);
  font-style: normal;
}

.section-intro > p:last-child {
  max-width: 430px;
  margin: 0 0 2px;
  color: rgba(244, 247, 241, 0.63);
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.65;
}

.flow-board {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.12fr) minmax(0, 0.96fr);
  gap: 16px;
  margin-top: 84px;
}

.flow-card {
  position: relative;
  min-width: 0;
  min-height: 570px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.038);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.13);
}

.flow-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 3;
  width: 17px;
  height: 1px;
  background: rgba(184, 248, 74, 0.55);
  content: "";
}

.flow-card:not(:last-child)::before {
  position: absolute;
  top: calc(50% - 3px);
  right: -12px;
  z-index: 4;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(184, 248, 74, 0.1);
  content: "";
  animation: flow-pulse 2.4s ease-in-out infinite;
}

.flow-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(244, 247, 241, 0.45);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flow-card-meta span:first-child {
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  place-items: center;
}

.flow-card h3 {
  margin: 38px 0 16px;
  font-size: clamp(30px, 2.65vw, 42px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.flow-card > p {
  margin: 0;
  color: rgba(244, 247, 241, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.source-stack,
.output-stack {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.source-item {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 13px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.source-item:hover {
  border-color: rgba(184, 248, 74, 0.28);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.source-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid rgba(184, 248, 74, 0.25);
  border-radius: 10px;
  background: rgba(184, 248, 74, 0.07);
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  place-items: center;
}

.source-item > span:last-child,
.output-item > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.source-item strong,
.output-item strong {
  font-size: 13px;
  font-weight: 640;
}

.source-item small,
.output-item small {
  overflow: hidden;
  color: rgba(244, 247, 241, 0.43);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-core {
  border-color: transparent;
  background: #d9ff8d;
  color: var(--ink);
  transform: translateY(-16px);
}

.flow-core .flow-card-meta {
  color: rgba(16, 33, 29, 0.48);
}

.flow-core .flow-card-meta span:first-child {
  border-color: rgba(16, 33, 29, 0.18);
}

.flow-core > p {
  color: rgba(16, 33, 29, 0.66);
}

.journal-card {
  margin-top: 29px;
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(16, 33, 29, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 45px rgba(35, 62, 23, 0.08);
  font-variant-numeric: tabular-nums;
}

.journal-head,
.journal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.journal-head {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(16, 33, 29, 0.1);
  font-size: 10px;
  font-weight: 700;
}

.journal-head strong {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #446f05;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.journal-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #77ad16;
}

.journal-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px 68px;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 33, 29, 0.08);
  font-size: 11px;
}

.journal-row span:not(:first-child) {
  text-align: right;
}

.journal-labels {
  color: rgba(16, 33, 29, 0.42);
  font-size: 8px;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-total {
  padding-top: 12px;
  font-size: 9px;
  font-weight: 700;
}

.logic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin: 22px 0 0;
  padding: 0;
  font-size: 10px;
  font-weight: 620;
  list-style: none;
}

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

.logic-list li span {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #6ca809;
}

.output-item {
  display: grid;
  min-height: 70px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.output-number {
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(184, 248, 74, 0.08);
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  place-items: center;
}

.output-item > i {
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(184, 248, 74, 0.09);
  color: var(--accent);
  font-size: 7px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accounting-foundation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(50px, 10vw, 160px);
  margin-top: 120px;
  padding-top: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.accounting-foundation .section-kicker {
  margin-bottom: 25px;
}

.accounting-foundation h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 570;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.foundation-copy {
  padding-top: 47px;
}

.foundation-copy > p {
  margin: 0 0 18px;
  color: rgba(244, 247, 241, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.foundation-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
}

.foundation-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(244, 247, 241, 0.8);
  font-size: 10px;
  font-weight: 680;
}

.foundation-points i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 248, 74, 0.08);
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .flow-board .flow-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .flow-board.is-visible .flow-card {
  opacity: 1;
  transform: translateY(0);
}

.js .flow-board.is-visible .flow-core {
  transform: translateY(-16px);
  transition-delay: 120ms;
}

.js .flow-board.is-visible .flow-output {
  transition-delay: 240ms;
}

@keyframes flow-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-4px) scale(0.85);
  }
  50% {
    opacity: 1;
    transform: translateX(5px) scale(1);
  }
}

@media (max-width: 1100px) {
  .section-intro {
    grid-template-columns: 1fr;
  }

  .section-intro h2 {
    max-width: 950px;
  }

  .section-intro > p:last-child {
    max-width: 640px;
    margin-top: 32px;
  }

  .flow-board {
    width: min(100%, 760px);
    grid-template-columns: 1fr;
    gap: 24px;
    margin-right: auto;
    margin-left: auto;
  }

  .flow-card {
    min-height: 0;
  }

  .flow-core,
  .js .flow-board.is-visible .flow-core {
    transform: none;
  }

  .flow-card:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -25px;
    left: 50%;
    width: 1px;
    height: 25px;
  }

  .flow-card:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -17px;
    left: calc(50% - 3px);
    animation-name: flow-pulse-vertical;
  }

  .source-stack,
  .output-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accounting-foundation {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .foundation-copy {
    max-width: 720px;
    padding-top: 0;
  }
}

@keyframes flow-pulse-vertical {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(-4px) scale(0.85);
  }
  50% {
    opacity: 1;
    transform: translateY(5px) scale(1);
  }
}

@media (max-width: 820px) {
  .site-header {
    width: calc(100% - 32px);
    height: 72px;
  }

  .header-context {
    display: none;
  }

  .hero {
    min-height: max(760px, 100svh);
  }

  .hero-copy {
    width: calc(100% - 34px);
    margin-top: -1vh;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(42px, 9.8vw, 68px);
    letter-spacing: -0.07em;
    line-height: 0.94;
  }

  h1 em {
    white-space: normal;
  }

  .hero-description {
    max-width: 590px;
    margin-top: 28px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
  }

  .primary-action {
    min-height: 50px;
  }

  .trace-token {
    font-size: 11px;
  }

  .trace-token.is-near .trace-category,
  .trace-token:hover .trace-category,
  .trace-token:focus-visible .trace-category,
  .trace-token.is-pinned .trace-category,
  .trace-field.is-structured .trace-category {
    width: 56px;
  }

  .trace-layout-toggle {
    right: 14px;
    bottom: 52px;
    font-size: 9px;
  }

  .data-section {
    padding: 96px 18px 104px;
    border-radius: 28px 28px 0 0;
  }

  .section-intro h2 {
    font-size: clamp(48px, 10vw, 72px);
  }

  .section-intro > p:last-child {
    margin-top: 26px;
    font-size: 16px;
  }

  .flow-board {
    margin-top: 58px;
  }

  .flow-card {
    padding: 23px;
  }

  .source-stack,
  .output-stack {
    grid-template-columns: 1fr;
  }

  .flow-card h3 {
    font-size: 36px;
  }

  .accounting-foundation {
    margin-top: 86px;
    padding-top: 50px;
  }

  .accounting-foundation h3 {
    font-size: clamp(42px, 10vw, 62px);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-copy {
    margin-top: -2vh;
  }

  h1 {
    font-size: clamp(40px, 10.8vw, 48px);
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.5;
  }

  .trace-field.is-structured .trace-category {
    display: none;
  }

  .trace-layout-toggle {
    bottom: 46px;
  }

  .data-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-kicker {
    margin-bottom: 24px;
  }

  .section-intro h2 {
    font-size: clamp(43px, 12vw, 56px);
  }

  .flow-card {
    padding: 20px;
    border-radius: 22px;
  }

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

  .logic-list {
    grid-template-columns: 1fr;
  }

  .output-item > i {
    display: none;
  }

  .output-item {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .accounting-foundation h3 {
    font-size: 42px;
  }
}

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

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

/* Horizontal accounting story */
.section-intro {
  display: block;
}

.section-intro h2 {
  max-width: none;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 0.98;
  white-space: nowrap;
}

.section-intro h2 em {
  display: inline;
}

.accounting-flow {
  display: grid;
  gap: 20px;
  margin-top: 72px;
}

.flow-row {
  display: grid;
  min-height: 470px;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
  padding: clamp(36px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.038);
}

.flow-copy {
  max-width: 420px;
}

.flow-copy .flow-card-meta {
  justify-content: flex-start;
  gap: 12px;
}

.flow-copy h3 {
  margin: 34px 0 20px;
  font-size: clamp(40px, 4.1vw, 62px);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.flow-copy h3 em {
  color: var(--accent);
  font-style: normal;
}

.flow-copy > p {
  margin: 0;
  color: rgba(244, 247, 241, 0.6);
  font-size: 16px;
  letter-spacing: -0.015em;
  line-height: 1.65;
}

.raw-dropzone {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px dashed rgba(184, 248, 74, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 248, 74, 0.08), transparent 32%),
    rgba(3, 15, 11, 0.24);
}

.raw-dropzone::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
}

.dropzone-prompt {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.dropzone-prompt strong {
  font-size: 12px;
  font-weight: 650;
}

.dropzone-prompt small {
  color: rgba(244, 247, 241, 0.38);
  font-size: 9px;
}

.dropzone-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  border: 1px solid rgba(184, 248, 74, 0.38);
  border-radius: 50%;
  background: rgba(184, 248, 74, 0.08);
}

.dropzone-icon::before,
.dropzone-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: translate(-50%, -50%);
}

.dropzone-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.raw-file {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 180px;
  grid-template-columns: 36px 1fr;
  gap: 3px 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(31, 51, 44, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, transform 180ms ease;
}

.raw-file:hover {
  border-color: rgba(184, 248, 74, 0.38);
  transform: translateY(-3px);
}

.raw-file > span {
  display: grid;
  width: 36px;
  height: 36px;
  grid-row: 1 / 3;
  border: 1px solid rgba(184, 248, 74, 0.25);
  border-radius: 9px;
  background: rgba(184, 248, 74, 0.08);
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  place-items: center;
}

.raw-file strong {
  overflow: hidden;
  align-self: end;
  font-size: 10px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.raw-file small {
  color: rgba(244, 247, 241, 0.42);
  font-size: 8px;
}

.raw-file-receipt {
  top: 20px;
  left: 20px;
  transform: rotate(-2deg);
}

.raw-file-bank {
  top: 24px;
  right: 20px;
  transform: rotate(1.5deg);
}

.raw-file-invoice {
  bottom: 22px;
  left: 74px;
  transform: rotate(1deg);
}

.raw-file-export {
  right: 64px;
  bottom: 20px;
  transform: rotate(-1.5deg);
}

.ai-row {
  border-color: rgba(184, 248, 74, 0.22);
  background: rgba(184, 248, 74, 0.055);
}

.ai-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(270px, 0.9fr);
  gap: 12px;
  align-items: stretch;
}

.reconciliation-card,
.ai-workbench .journal-card {
  margin: 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: #f4f7f1;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
}

.workbench-head,
.reconciliation-card .match-source {
  display: flex;
}

.workbench-head {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 10px;
  font-weight: 700;
}

.workbench-head strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workbench-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 248, 74, 0.09);
  animation: ai-pulse 1.8s ease-in-out infinite;
}

.matching-lane {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 230px;
}

.reconciliation-card .match-source {
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  font-variant-numeric: tabular-nums;
}

.match-source small,
.match-source span {
  overflow: hidden;
  color: rgba(244, 247, 241, 0.4);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-source strong {
  font-size: 12px;
  font-weight: 650;
}

.match-connector {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.match-connector i {
  height: 1px;
  background: rgba(184, 248, 74, 0.5);
}

.ai-workbench .journal-head,
.ai-workbench .journal-row {
  border-color: rgba(255, 255, 255, 0.09);
}

.ai-workbench .journal-head strong {
  color: var(--accent);
}

.ai-workbench .journal-head i {
  background: var(--accent);
}

.ai-workbench .journal-labels {
  color: rgba(244, 247, 241, 0.38);
}

.real-data-output {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.03);
}

.data-lineage {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 12px 4px 19px;
}

.data-lineage span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(244, 247, 241, 0.64);
  font-size: 8px;
  font-weight: 660;
  white-space: nowrap;
}

.data-lineage i {
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(184, 248, 74, 0.08);
  color: var(--accent);
  font-size: 7px;
  font-style: normal;
  place-items: center;
}

.data-lineage b {
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 248, 74, 0.15), rgba(184, 248, 74, 0.65));
}

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

.real-data-output .output-item {
  grid-template-columns: 34px minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.045);
}

.real-data-output .output-number {
  width: 32px;
  height: 32px;
}

@keyframes ai-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@media (max-width: 1060px) {
  .section-intro h2 {
    white-space: normal;
  }

  .flow-row {
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
    gap: 34px;
    padding: 36px;
  }

  .ai-workbench {
    grid-template-columns: 1fr;
  }

  .matching-lane {
    min-height: 190px;
  }
}

@media (max-width: 760px) {
  .accounting-flow {
    margin-top: 54px;
  }

  .flow-row {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 25px;
    border-radius: 24px;
  }

  .flow-copy {
    max-width: 580px;
  }

  .flow-copy h3 {
    margin-top: 28px;
    font-size: 44px;
  }

  .raw-dropzone {
    min-height: 340px;
  }

  .raw-file {
    width: 160px;
  }

  .raw-file-invoice {
    left: 14px;
  }

  .raw-file-export {
    right: 14px;
  }

  .data-lineage {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .data-lineage b {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-intro h2 {
    font-size: 42px;
  }

  .flow-row {
    padding: 20px;
  }

  .flow-copy h3 {
    font-size: 40px;
  }

  .flow-copy > p {
    font-size: 15px;
  }

  .raw-file {
    width: 142px;
  }

  .raw-file-receipt,
  .raw-file-bank {
    top: 14px;
  }

  .raw-file-receipt {
    left: 12px;
  }

  .raw-file-bank {
    right: 12px;
  }

  .raw-file-invoice {
    bottom: 14px;
    left: 12px;
  }

  .raw-file-export {
    right: 12px;
    bottom: 14px;
  }

  .matching-lane {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px 0;
  }

  .match-connector {
    grid-template-columns: 1fr auto 1fr;
  }

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

/* Make raw-data intake feel deliberately effortless. */
.raw-data-row {
  border-color: transparent;
  background: #d9ff8d;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.14);
}

.raw-data-row .flow-card-meta {
  color: rgba(16, 33, 29, 0.52);
}

.raw-data-row .flow-card-meta span:first-child {
  border-color: rgba(16, 33, 29, 0.18);
}

.raw-data-row .flow-copy h3 {
  color: var(--ink);
}

.raw-data-row .flow-copy h3 em {
  display: inline-block;
  padding: 0.05em 0.15em 0.1em;
  border-radius: 0.18em;
  background: var(--ink);
  color: var(--accent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.raw-data-row .flow-copy > p {
  color: rgba(16, 33, 29, 0.68);
}

.raw-data-row .raw-dropzone {
  border-color: rgba(184, 248, 74, 0.5);
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 248, 74, 0.12), transparent 32%),
    #10211d;
  color: #f4f7f1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.raw-data-row .dropzone-prompt strong {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.raw-data-row .dropzone-prompt small {
  color: rgba(244, 247, 241, 0.48);
  font-size: 10px;
}

.site-footer {
  position: relative;
  z-index: 11;
  padding: 84px 24px 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #07130f;
  color: #f4f7f1;
}

.footer-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.footer-brand {
  color: #f4f7f1;
}

.footer-brand .brand-logo {
  width: 126px;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(60px, 12vw, 180px);
  align-items: end;
  margin-top: 88px;
}

.footer-location {
  margin: 0;
  font-size: clamp(54px, 6.8vw, 96px);
  font-weight: 560;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.footer-location strong {
  display: block;
  color: var(--accent);
  font-weight: inherit;
}

.site-footer address {
  color: rgba(244, 247, 241, 0.72);
  font-size: 15px;
  font-style: normal;
  line-height: 1.7;
}

.site-footer address span {
  display: block;
  margin-bottom: 18px;
  color: rgba(244, 247, 241, 0.36);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-rule {
  height: 1px;
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-note {
  margin: 18px 0 0;
  color: rgba(244, 247, 241, 0.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .raw-data-row .flow-copy h3 em {
    display: inline;
  }

  .site-footer {
    padding: 64px 20px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 66px;
  }

  .footer-location {
    font-size: clamp(50px, 13vw, 72px);
  }

  .footer-rule {
    margin-top: 58px;
  }
}

.connected-storage {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 33, 29, 0.14);
}

.connected-storage > p {
  margin: 0 0 11px;
  color: rgba(16, 33, 29, 0.68);
  font-size: 11px;
  font-weight: 650;
}

.connected-storage > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.connected-storage span {
  padding: 6px 9px;
  border: 1px solid rgba(16, 33, 29, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: rgba(16, 33, 29, 0.72);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.control-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  margin-top: 20px;
  padding: clamp(42px, 5vw, 70px);
  border-radius: 30px;
  background: #f3f4ef;
  color: var(--ink);
}

.control-copy .section-kicker {
  margin-bottom: 30px;
  color: rgba(16, 33, 29, 0.48);
}

.control-copy .section-kicker span {
  color: #5f9409;
}

.control-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 580;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.control-copy h2 em {
  display: block;
  color: #69a30b;
  font-style: normal;
}

.control-copy > p {
  max-width: 500px;
  margin: 26px 0 0;
  color: rgba(16, 33, 29, 0.65);
  font-size: 16px;
  line-height: 1.65;
}

.control-principles {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.control-principles > div {
  display: grid;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid #79b616;
}

.control-principles strong {
  font-size: 11px;
  font-weight: 720;
}

.control-principles span {
  color: rgba(16, 33, 29, 0.52);
  font-size: 10px;
  line-height: 1.45;
}

.approval-demo {
  overflow: hidden;
  padding: 20px;
  border-radius: 22px;
  background: var(--ink);
  color: #f4f7f1;
  box-shadow: 0 28px 70px rgba(16, 33, 29, 0.19);
}

.approval-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 680;
}

.approval-head strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.approval-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 248, 74, 0.09);
}

.approval-workflow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  margin-top: 20px;
}

.approval-workflow > b {
  color: rgba(184, 248, 74, 0.62);
  font-size: 13px;
  font-weight: 500;
}

.approval-step {
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.approval-step small,
.approval-step span {
  color: rgba(244, 247, 241, 0.42);
  font-size: 8px;
}

.approval-step strong {
  font-size: 11px;
  font-weight: 650;
}

.approval-ai {
  border-color: rgba(184, 248, 74, 0.28);
  background: rgba(184, 248, 74, 0.07);
}

.approval-review {
  background: rgba(255, 255, 255, 0.07);
}

.approval-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.approval-actions span,
.approval-actions strong {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}

.approval-actions span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(244, 247, 241, 0.58);
}

.approval-actions strong {
  background: var(--accent);
  color: var(--ink);
}

.trace-history {
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trace-history > p {
  margin: 0 0 12px;
  color: rgba(244, 247, 241, 0.34);
  font-size: 8px;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trace-history > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
}

.trace-history span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(244, 247, 241, 0.58);
  font-size: 8px;
}

.trace-history i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.trace-history .trace-pending i {
  border: 1px solid rgba(244, 247, 241, 0.35);
  background: transparent;
}

.footer-content {
  align-items: start;
  margin-top: 58px;
}

.footer-location {
  color: rgba(244, 247, 241, 0.58);
  font-size: 18px;
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.footer-location strong {
  display: inline;
  color: inherit;
  font-weight: inherit;
}

.footer-location > span {
  margin: 0 6px;
  color: rgba(244, 247, 241, 0.25);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(244, 247, 241, 0.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .control-section {
    grid-template-columns: 1fr;
  }

  .control-copy {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .control-section {
    padding: 24px;
    border-radius: 24px;
  }

  .control-copy h2 {
    font-size: 49px;
  }

  .approval-workflow {
    grid-template-columns: 1fr;
  }

  .approval-workflow > b {
    text-align: center;
    transform: rotate(90deg);
  }

  .approval-step {
    min-height: 90px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Accountant fee estimator */
.pricing-rate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 14px;
  margin-top: 24px;
}

.pricing-managed-price {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 25px 24px;
  border: 1px solid rgba(96, 151, 13, 0.35);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(16, 33, 29, 0.07);
}

.pricing-managed-price .pricing-price-name,
.pricing-managed-price .pricing-price-period {
  display: block;
}

.pricing-managed-price .pricing-price-name {
  min-height: 0;
  color: #5f920d;
}

.pricing-managed-price strong {
  display: block;
  margin-top: 18px;
  font-size: 46px;
  letter-spacing: -0.04em;
  line-height: 0.95;
  white-space: nowrap;
}

.pricing-managed-price strong small,
.accountant-fee-result strong small {
  margin-right: 6px;
  font-size: 0.32em;
  letter-spacing: -0.02em;
  vertical-align: top;
}

.accountant-fee-estimator {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(16, 33, 29, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.56);
}

.accountant-fee-estimator > .pricing-price-name {
  min-height: 0;
  color: #5f920d;
}

.accountant-fee-estimator label {
  display: block;
  margin-top: 18px;
  color: rgba(16, 33, 29, 0.58);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.4;
}

.accountant-fee-number-field {
  display: flex;
  align-items: baseline;
  margin-top: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(16, 33, 29, 0.18);
}

.accountant-fee-number-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 24px;
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1;
  appearance: textfield;
}

.accountant-fee-number-field input::-webkit-inner-spin-button,
.accountant-fee-number-field input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.accountant-fee-number-field span {
  color: rgba(16, 33, 29, 0.45);
  font-size: 10px;
}

.accountant-fee-range {
  --range-progress: 3.27%;
  width: 100%;
  height: 4px;
  margin: 22px 0 0;
  border-radius: 999px;
  outline: none;
  background: linear-gradient(to right, #62990d 0 var(--range-progress), rgba(16, 33, 29, 0.14) var(--range-progress) 100%);
  cursor: pointer;
  appearance: none;
}

.accountant-fee-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #62990d;
  box-shadow: 0 1px 8px rgba(16, 33, 29, 0.22);
  appearance: none;
}

.accountant-fee-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #62990d;
  box-shadow: 0 1px 8px rgba(16, 33, 29, 0.22);
}

.accountant-fee-range:focus-visible::-webkit-slider-thumb {
  outline: 3px solid rgba(98, 153, 13, 0.28);
  outline-offset: 3px;
}

.accountant-fee-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: rgba(16, 33, 29, 0.4);
  font-size: 10px;
}

.accountant-fee-result {
  display: block;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 33, 29, 0.11);
}

.accountant-fee-result-label {
  display: block;
  color: rgba(16, 33, 29, 0.5);
  font-size: 10px;
  font-weight: 550;
  line-height: 1.4;
}

.accountant-fee-result strong {
  display: block;
  margin-top: 10px;
  font-size: 32px;
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.accountant-fee-result strong small[hidden] {
  display: none;
}

.accountant-fee-band {
  display: block;
  margin-top: 8px;
  color: rgba(16, 33, 29, 0.52);
  font-size: 10px;
  line-height: 1.55;
}

.accountant-fee-disclaimer {
  max-width: 100%;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 33, 29, 0.11);
  color: rgba(16, 33, 29, 0.48);
  font-size: 10px;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .pricing-rate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pricing-rate-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-managed-price strong {
    font-size: 46px;
  }
}

/* Audience, startup, and partner pathways */
.site-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(16, 33, 29, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 35px rgba(16, 33, 29, 0.04);
  transform: translateX(-50%);
  backdrop-filter: blur(15px);
}

.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(16, 33, 29, 0.62);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(16, 33, 29, 0.07);
  color: var(--ink);
  outline: none;
}

.header-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  border-radius: 9px;
  background: var(--ink);
  color: #f4f7f1;
  font-size: 10px;
  font-weight: 720;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  background: #274139;
  outline: none;
  transform: translateY(-1px);
}

.audience-section,
.startup-section,
.partner-section {
  position: relative;
  z-index: 10;
}

.audience-section {
  padding: 138px 24px 148px;
  background:
    radial-gradient(circle at 89% 8%, rgba(184, 248, 74, 0.15), transparent 24%),
    #f3f4ef;
  color: var(--ink);
}

.audience-inner,
.startup-inner,
.partner-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.light-kicker,
.dark-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.light-kicker {
  color: rgba(16, 33, 29, 0.48);
}

.light-kicker span {
  color: #5d900b;
}

.dark-kicker {
  color: rgba(244, 247, 241, 0.46);
}

.dark-kicker span {
  color: var(--accent);
}

.audience-intro h2,
.startup-heading h2,
.partner-heading h2 {
  margin: 0;
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.audience-intro h2 {
  max-width: 1030px;
  font-size: clamp(54px, 6.3vw, 91px);
}

.audience-intro h2 em,
.startup-heading h2 em,
.partner-heading h2 em {
  font-style: normal;
}

.audience-intro h2 em {
  color: #689c12;
}

.trust-ribbon {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 68px;
  padding: 20px 0;
  border-top: 1px solid rgba(16, 33, 29, 0.13);
  border-bottom: 1px solid rgba(16, 33, 29, 0.13);
}

.trust-ribbon > p {
  margin: 0;
  color: rgba(16, 33, 29, 0.44);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-ribbon ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-ribbon li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(16, 33, 29, 0.73);
  font-size: 9px;
  font-weight: 670;
  line-height: 1.35;
}

.trust-ribbon li i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #78ad1d;
  box-shadow: 0 0 0 4px rgba(120, 173, 29, 0.1);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.audience-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 590px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(16, 33, 29, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(16, 33, 29, 0.07);
}

.audience-startups {
  grid-column: span 5;
  background:
    radial-gradient(circle at 88% 78%, rgba(184, 248, 74, 0.35), transparent 34%),
    #fff;
}

.audience-finance {
  grid-column: span 3;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 80% 85%, rgba(184, 248, 74, 0.11), transparent 32%),
    #10211d;
  color: #f4f7f1;
}

.audience-accountants {
  grid-column: span 4;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.58), transparent 52%),
    #dcebc8;
}

.audience-label {
  margin: 0 0 24px;
  color: rgba(16, 33, 29, 0.45);
  font-size: 9px;
  font-weight: 770;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-finance .audience-label {
  color: var(--accent);
}

.audience-card-copy h3 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 49px);
  font-weight: 590;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.audience-finance .audience-card-copy h3 {
  font-size: clamp(33px, 2.8vw, 43px);
}

.audience-card-copy > p:not(.audience-label) {
  max-width: 460px;
  margin: 22px 0 0;
  color: rgba(16, 33, 29, 0.62);
  font-size: 13px;
  line-height: 1.62;
}

.audience-finance .audience-card-copy > p:not(.audience-label) {
  color: rgba(244, 247, 241, 0.58);
}

.audience-card-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.audience-card-copy > a span {
  color: #669b0c;
  font-size: 14px;
}

.audience-card-copy > a:hover,
.audience-card-copy > a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.startup-foundation-demo {
  margin-top: 42px;
  padding: 18px;
  border: 1px solid rgba(16, 33, 29, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 55px rgba(16, 33, 29, 0.09);
}

.foundation-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(16, 33, 29, 0.48);
  font-size: 8px;
}

.foundation-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.foundation-status span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70a913;
  box-shadow: 0 0 0 4px rgba(112, 169, 19, 0.1);
}

.foundation-status strong {
  color: #528006;
  font-size: 8px;
  text-transform: uppercase;
}

.foundation-chain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 22px;
}

.foundation-chain span {
  flex: 1;
  padding: 12px 8px;
  border-radius: 10px;
  background: rgba(16, 33, 29, 0.06);
  font-size: 8px;
  font-weight: 720;
  text-align: center;
}

.foundation-chain b {
  color: #70a913;
  font-size: 11px;
}

.foundation-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 9px;
}

.foundation-proof p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(16, 33, 29, 0.07);
  border-radius: 10px;
}

.foundation-proof small {
  color: rgba(16, 33, 29, 0.38);
  font-size: 7px;
}

.foundation-proof strong {
  font-size: 8px;
  font-weight: 720;
}

.close-flow {
  display: grid;
  gap: 10px;
  margin-top: 46px;
}

.close-flow > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 5px 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.close-flow > div > span {
  grid-row: 1 / 3;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 248, 74, 0.12);
  color: var(--accent);
  font-size: 7px;
  font-weight: 760;
}

.close-flow strong {
  color: #f4f7f1;
  font-size: 10px;
  font-weight: 650;
}

.close-flow small {
  color: rgba(244, 247, 241, 0.42);
  font-size: 8px;
}

.close-flow > i {
  width: 1px;
  height: 11px;
  margin: -10px 0 -10px 29px;
  background: rgba(184, 248, 74, 0.38);
}

.professional-control-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 42px;
}

.professional-control-demo > div {
  display: grid;
  gap: 8px;
  min-height: 172px;
  align-content: start;
  padding: 17px;
  border: 1px solid rgba(16, 33, 29, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.professional-control-demo small {
  margin-bottom: 5px;
  color: rgba(16, 33, 29, 0.43);
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.professional-control-demo span {
  padding: 7px 8px;
  border-radius: 8px;
  background: rgba(16, 33, 29, 0.06);
  color: rgba(16, 33, 29, 0.7);
  font-size: 8px;
  font-weight: 650;
}

.professional-control-demo > b {
  color: #62950e;
  font-size: 19px;
  font-weight: 430;
}

.startup-section {
  overflow: hidden;
  padding: 104px 24px;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.62), transparent 27%),
    linear-gradient(135deg, #dfff9e 0%, #b8f84a 68%, #a8e83b 100%);
  color: var(--ink);
}

.startup-section::after {
  position: absolute;
  right: -210px;
  bottom: -280px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(16, 33, 29, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.06),
    0 0 0 140px rgba(255, 255, 255, 0.04);
  content: "";
  pointer-events: none;
}

.startup-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.8fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.startup-heading h2 {
  max-width: 740px;
  font-size: clamp(55px, 6.4vw, 92px);
}

.startup-heading h2 em {
  color: #477201;
}

.startup-heading > p:not(.light-kicker) {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(16, 33, 29, 0.65);
  font-size: 16px;
  line-height: 1.68;
}

.section-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 0 18px 0 20px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 740;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.section-action:hover,
.section-action:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.section-action-dark {
  background: var(--ink);
  color: #f4f7f1;
}

.section-action-dark:hover,
.section-action-dark:focus-visible {
  background: #274139;
}

.section-action-light {
  margin-top: 0;
  background: var(--accent);
  color: var(--ink);
}

.section-action-light:hover,
.section-action-light:focus-visible {
  background: #c8ff67;
}

.startup-program-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 29px;
  background: #10211d;
  color: #f4f7f1;
  box-shadow: 0 35px 90px rgba(16, 33, 29, 0.24);
  transform: rotate(1.4deg);
}

.js .startup-program-card.reveal-on-scroll {
  transform: translateY(30px) rotate(1.4deg);
}

.js .startup-program-card.reveal-on-scroll.is-visible {
  transform: translateY(0) rotate(1.4deg);
}

.program-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(244, 247, 241, 0.46);
  font-size: 8px;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-card-head i {
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
  letter-spacing: -0.03em;
  text-transform: none;
}

.program-offer {
  padding: 34px 30px 30px;
  background:
    radial-gradient(circle at 88% 20%, rgba(184, 248, 74, 0.14), transparent 32%);
}

.program-offer small {
  color: var(--accent);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.program-offer > strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(40px, 4.3vw, 62px);
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.program-offer p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(244, 247, 241, 0.56);
  font-size: 12px;
  line-height: 1.55;
}

.program-benefits {
  display: grid;
  margin: 0;
  padding: 0 30px 30px;
  list-style: none;
}

.program-benefits li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.program-benefits li > i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 248, 74, 0.11);
  color: var(--accent);
  font-size: 7px;
  font-style: normal;
  font-weight: 750;
}

.program-benefits li > span {
  color: rgba(244, 247, 241, 0.45);
  font-size: 9px;
  line-height: 1.5;
}

.program-benefits strong {
  display: block;
  margin-bottom: 3px;
  color: #f4f7f1;
  font-size: 10px;
  font-weight: 670;
}

.partner-section {
  padding: 145px 24px 130px;
  background:
    radial-gradient(circle at 10% 35%, rgba(184, 248, 74, 0.08), transparent 24%),
    #0c1d18;
  color: #f4f7f1;
}

.partner-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.48fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.partner-heading .dark-kicker {
  grid-column: 1 / -1;
  margin-bottom: -1px;
}

.partner-heading h2 {
  max-width: 920px;
  font-size: clamp(53px, 6vw, 86px);
}

.partner-heading h2 em {
  display: block;
  color: var(--accent);
}

.partner-heading > p:not(.dark-kicker) {
  margin: 0 0 4px;
  color: rgba(244, 247, 241, 0.56);
  font-size: 15px;
  line-height: 1.7;
}

.partner-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.partner-value {
  min-height: 260px;
  padding: 30px;
  background: #10211d;
}

.partner-value > span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 760;
}

.partner-value h3 {
  margin: 76px 0 0;
  font-size: 27px;
  font-weight: 590;
  letter-spacing: -0.05em;
}

.partner-value p {
  max-width: 330px;
  margin: 13px 0 0;
  color: rgba(244, 247, 241, 0.5);
  font-size: 11px;
  line-height: 1.6;
}

.partner-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-top: 18px;
  padding: 38px 40px;
  border-radius: 24px;
  background: #f3f4ef;
  color: var(--ink);
}

.partner-cta > div:first-child > p {
  margin: 0 0 11px;
  color: #63960e;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-cta h3 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 580;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.partner-paths {
  display: grid;
  gap: 8px;
}

.partner-paths span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(16, 33, 29, 0.58);
  font-size: 8px;
  font-weight: 680;
  white-space: nowrap;
}

.partner-paths span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #71a918;
  content: "";
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 0;
  }

  .site-nav a {
    padding-right: 10px;
    padding-left: 10px;
  }

  .audience-startups,
  .audience-accountants {
    grid-column: span 6;
  }

  .audience-finance {
    grid-column: span 6;
  }

  .audience-accountants {
    grid-column: 4 / span 6;
  }

  .startup-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    gap: 60px;
  }

  .partner-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partner-heading > p:not(.dark-kicker) {
    max-width: 680px;
  }

  .partner-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .partner-paths {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .audience-section,
  .startup-section,
  .partner-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .trust-ribbon {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trust-ribbon ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-startups,
  .audience-finance,
  .audience-accountants {
    grid-column: 1 / -1;
  }

  .audience-card {
    min-height: 540px;
  }

  .startup-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .startup-program-card {
    width: min(100%, 580px);
    margin: 0 auto;
  }

  .partner-value-grid {
    grid-template-columns: 1fr;
  }

  .partner-value {
    min-height: 215px;
  }

  .partner-value h3 {
    margin-top: 50px;
  }

  .partner-cta {
    grid-template-columns: 1fr;
  }

  .section-action-light {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .header-action {
    min-height: 36px;
    padding: 0 13px;
    font-size: 9px;
  }

  .audience-section {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .startup-section,
  .partner-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .audience-intro h2,
  .startup-heading h2,
  .partner-heading h2 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .trust-ribbon {
    margin-top: 48px;
  }

  .trust-ribbon ul {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .audience-grid {
    margin-top: 24px;
  }

  .audience-card {
    min-height: 0;
    padding: 25px;
    border-radius: 23px;
  }

  .audience-card-copy h3,
  .audience-finance .audience-card-copy h3 {
    font-size: 39px;
  }

  .startup-foundation-demo,
  .close-flow,
  .professional-control-demo {
    margin-top: 50px;
  }

  .foundation-chain b {
    display: none;
  }

  .foundation-chain {
    gap: 5px;
  }

  .foundation-proof {
    grid-template-columns: 1fr;
  }

  .professional-control-demo {
    grid-template-columns: 1fr;
  }

  .professional-control-demo > b {
    text-align: center;
  }

  .professional-control-demo > div {
    min-height: 0;
  }

  .startup-heading > p:not(.light-kicker) {
    font-size: 14px;
  }

  .startup-program-card {
    border-radius: 23px;
    transform: none;
  }

  .js .startup-program-card.reveal-on-scroll,
  .js .startup-program-card.reveal-on-scroll.is-visible {
    transform: translateY(0);
  }

  .program-card-head {
    padding: 19px;
  }

  .program-offer {
    padding: 28px 22px 25px;
  }

  .program-offer > strong {
    font-size: 43px;
  }

  .program-benefits {
    padding: 0 22px 22px;
  }

  .partner-heading h2 em {
    display: inline;
  }

  .partner-value-grid {
    margin-top: 55px;
  }

  .partner-value {
    min-height: 190px;
    padding: 25px;
  }

  .partner-value h3 {
    margin-top: 40px;
  }

  .partner-cta {
    padding: 28px;
  }
}

/* A quieter, more compact hero in Montserrat. */
h1 {
  font-size: clamp(50px, 5.4vw, 78px);
}

.hero-description {
  margin-top: 28px;
  color: rgba(16, 33, 29, 0.5);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.55;
}

.hero-description strong {
  margin-top: 0;
  color: inherit;
  font-size: 1em;
  font-weight: 600;
}

.hero-actions {
  margin-top: 28px;
}

@media (min-width: 821px) {
  .hero-title-fragment {
    display: inline;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 650px;
  }

  h1 {
    font-size: clamp(34px, 6.6vw, 52px);
    white-space: normal;
  }

  .hero-title-fragment {
    display: block;
  }

  .trace-layout-toggle {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 590px;
  }

  h1 {
    font-size: clamp(33px, 8.7vw, 38px);
  }

  .hero-description {
    margin-top: 22px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 22px;
  }
}

/* Account application */
.application-section {
  position: relative;
  z-index: 10;
  padding: 138px 24px;
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 248, 74, 0.15), transparent 27%),
    #edf0e9;
  color: var(--ink);
}

.application-inner {
  display: grid;
  width: min(100%, 1320px);
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 0.74fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: center;
  margin: 0 auto;
}

.application-copy h1,
.application-copy h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.application-copy h1 em,
.application-copy h2 em {
  display: block;
  color: #669d10;
  font-style: normal;
}

.application-copy > p:not(.light-kicker) {
  max-width: 570px;
  margin: 27px 0 0;
  color: rgba(16, 33, 29, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.application-form {
  padding: 28px;
  border: 1px solid rgba(16, 33, 29, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 85px rgba(16, 33, 29, 0.11);
  backdrop-filter: blur(18px);
}

.application-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
  margin-top: 0;
}

.application-fields label {
  display: grid;
  gap: 10px;
}

.application-fields .application-field-wide {
  grid-column: 1 / -1;
}

.application-fields label > span {
  color: rgba(16, 33, 29, 0.78);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.application-fields input,
.application-fields textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(16, 33, 29, 0.24);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.application-fields textarea {
  min-height: 132px;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.55;
  resize: vertical;
}

.application-fields input:hover,
.application-fields textarea:hover {
  border-color: rgba(16, 33, 29, 0.42);
}

.application-fields input:focus,
.application-fields textarea:focus {
  border-color: #6da512;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(109, 165, 18, 0.12);
}

.application-form button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 0 18px 0 20px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #f4f7f1;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 720;
  transition: background 180ms ease, transform 180ms ease;
}

.application-form button:hover,
.application-form button:focus-visible {
  background: #274139;
  outline: none;
  transform: translateY(-1px);
}

.application-form button i {
  color: var(--accent);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.application-form button:disabled {
  cursor: default;
  opacity: 0.58;
  transform: none;
}

.application-note,
.application-status {
  margin: 13px 4px 0;
  color: rgba(16, 33, 29, 0.43);
  font-size: 8px;
  line-height: 1.55;
}

.application-note {
  color: rgba(16, 33, 29, 0.6);
  font-size: 12px;
  line-height: 1.6;
}

.application-status {
  display: none;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(184, 248, 74, 0.2);
  color: rgba(16, 33, 29, 0.72);
  font-weight: 650;
}

.application-status.is-visible {
  display: block;
}

@media (max-width: 940px) {
  .application-inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .application-copy {
    max-width: 720px;
  }

  .application-form {
    width: min(100%, 680px);
  }
}

@media (max-width: 560px) {
  .application-section {
    padding: 94px 18px;
  }

  .application-copy h1,
  .application-copy h2 {
    font-size: 49px;
  }

  .application-copy > p:not(.light-kicker) {
    font-size: 14px;
  }

  .application-form {
    padding: 22px;
    border-radius: 23px;
  }

  .application-fields {
    grid-template-columns: 1fr;
  }
}

/* Refined product story and CTA placement */
.hero-copy .trace-layout-toggle {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: auto;
  margin: 14px auto 0;
}

.hero-copy .hero-actions {
  margin-top: 18px;
}

.section-intro .section-kicker {
  margin-bottom: 0;
  font-size: clamp(11px, 1.15vw, 15px);
  letter-spacing: 0.07em;
}

.section-intro .section-kicker em {
  color: var(--accent);
  font-style: italic;
}

.section-intro .section-kicker b {
  min-width: 0;
  color: rgba(244, 247, 241, 0.58);
  font: inherit;
  line-height: 1.45;
  white-space: nowrap;
}

.accounting-flow {
  margin-top: 44px;
}

.storage-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.storage-logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(16, 33, 29, 0.13);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 20px rgba(16, 33, 29, 0.06);
}

.storage-logo svg {
  width: 27px;
  height: 27px;
}

.live-source-connectors {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 33, 29, 0.14);
}

.live-source-connectors > p {
  margin: 0;
  color: rgba(16, 33, 29, 0.62);
  font-size: 10px;
  line-height: 1.5;
}

.live-source-connectors > p strong {
  color: var(--ink);
  font-weight: 720;
}

.live-source-connectors > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}

.live-source-connectors span {
  padding: 7px 9px;
  border: 1px solid rgba(16, 33, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  color: rgba(16, 33, 29, 0.68);
  font-size: 8px;
  font-weight: 700;
}

.control-section {
  min-height: 470px;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(46px, 7vw, 100px);
  margin-top: 0;
  padding: clamp(36px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
}

.control-section .flow-card-meta {
  justify-content: flex-start;
  gap: 12px;
  color: rgba(16, 33, 29, 0.46);
}

.control-section .flow-card-meta span:first-child {
  border-color: rgba(16, 33, 29, 0.18);
  color: #5e920b;
}

.control-copy h3 {
  max-width: 560px;
  margin: 34px 0 0;
  font-size: clamp(40px, 4.1vw, 62px);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.control-copy h3 em {
  display: block;
  color: #69a30b;
  font-style: normal;
}

/* Standalone account application */
.application-page .page-shell {
  background: #edf0e9;
}

.application-page-header {
  position: absolute;
}

.application-back {
  position: absolute;
  left: 50%;
  color: rgba(16, 33, 29, 0.58);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transform: translateX(-50%);
}

.application-back:hover,
.application-back:focus-visible {
  color: var(--ink);
  outline: none;
}

.application-page-section {
  min-height: 780px;
  padding-top: 170px;
  padding-bottom: 120px;
}

.application-page .application-copy h1 {
  max-width: 780px;
  font-size: var(--display-h1-size);
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: normal;
  text-align: left;
  text-wrap: balance;
}

.application-page-footer {
  padding-top: 54px;
}

.application-page-footer .footer-bottom {
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1060px) {
  .control-section {
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
    gap: 34px;
    padding: 36px;
  }
}

@media (max-width: 760px) {
  .section-intro .section-kicker b {
    white-space: normal;
  }

  .control-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 25px;
    border-radius: 24px;
  }

  .control-copy h3 {
    margin-top: 28px;
    font-size: 44px;
  }

  .application-page-section {
    padding-top: 132px;
  }
}

@media (max-width: 560px) {
  .application-back {
    display: none;
  }

  .application-page-section {
    padding-top: 118px;
  }
}

@media (max-width: 480px) {
  .control-section {
    padding: 20px;
  }

  .control-copy h3 {
    font-size: 40px;
  }
}

/* Latest hero, navigation, and source refinements */
.hero::after {
  background-image:
    linear-gradient(rgba(16, 33, 29, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 29, 0.06) 1px, transparent 1px);
}

.site-nav {
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-nav a {
  padding: 8px 18px;
  border-radius: 0;
  color: rgba(16, 33, 29, 0.52);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.site-nav a + a {
  border-left: 1px solid rgba(16, 33, 29, 0.14);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: transparent;
  color: var(--ink);
}

.hero-copy .hero-actions {
  gap: 11px;
  margin-top: 24px;
}

.hero-copy .trace-layout-toggle {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: auto;
  min-height: 52px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid rgba(16, 33, 29, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  color: rgba(16, 33, 29, 0.72);
  font-size: 10px;
  backdrop-filter: blur(10px);
}

.hero-copy .trace-layout-toggle:hover,
.hero-copy .trace-layout-toggle:focus-visible,
.hero-copy .trace-layout-toggle[aria-pressed="true"] {
  border-color: rgba(16, 33, 29, 0.58);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.data-section .accounting-flow {
  margin-top: 0;
}

.flow-row {
  grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 5vw, 72px);
}

.flow-copy {
  max-width: 480px;
}

.flow-copy h3 {
  font-size: clamp(36px, 3.2vw, 48px);
}

.live-source-connectors > p {
  color: rgba(16, 33, 29, 0.68);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
}

.live-source-connectors > p strong {
  color: inherit;
  font-weight: inherit;
}

.live-source-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.source-logo,
.source-chip {
  display: grid;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(16, 33, 29, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 20px rgba(16, 33, 29, 0.05);
}

.source-logo {
  width: 44px;
  padding: 8px;
}

.source-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.source-logo-erpnext {
  width: 44px;
  padding: 9px;
}

.source-logo-erpnext img {
  max-width: 26px;
  max-height: 26px;
}

.source-chip,
.live-source-connectors .source-chip {
  padding: 0 13px;
  color: rgba(16, 33, 29, 0.66);
  font-size: 8px;
  font-weight: 700;
}

@media (max-width: 1060px) {
  .site-nav a {
    padding-right: 13px;
    padding-left: 13px;
    font-size: 13px;
  }

  .flow-row {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .flow-row {
    grid-template-columns: 1fr;
  }

  .flow-copy h3 {
    font-size: 38px;
  }
}

/* Client proof, partner, and contact refinements */
.client-work-section {
  position: relative;
  z-index: 10;
  padding: 70px 24px 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(184, 248, 74, 0.12), transparent 25%),
    #f6f7f3;
  color: var(--ink);
}

.client-work-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.customer-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 48px;
  text-align: center;
}

.customer-story-kicker {
  margin: 0 0 20px;
  color: #659b10;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.customer-story blockquote {
  max-width: 760px;
  margin: 12px 0 0;
  color: #667772;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.24;
}

.customer-story-person {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 17px 0 0;
  color: #687873;
  font-size: clamp(11px, 0.8vw, 12px);
  line-height: 1.6;
}

.customer-story-person strong {
  color: var(--ink);
  font-weight: 550;
}

.customer-story-person span::before {
  content: ",\00a0";
}

.customer-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 33, 29, 0.13);
}

.customer-logo {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-right: 1px solid rgba(16, 33, 29, 0.1);
  background: transparent;
  color: rgba(16, 33, 29, 0.42);
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.customer-logo:hover,
.customer-logo:focus-visible {
  color: var(--ink);
  outline: none;
}

.customer-logo.is-active {
  color: var(--ink);
}

.customer-logo:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(101, 155, 16, 0.42);
}

.customer-logo:last-child {
  border-right: 0;
}

.customer-logo::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: transparent;
  content: "";
}

.customer-logo.is-active::before {
  background: #6ca80f;
}

.customer-logo img {
  display: block;
  width: min(42%, 110px);
  height: 28px;
  filter: grayscale(1);
  opacity: 0.45;
  object-fit: contain;
  transition: filter 180ms ease, opacity 180ms ease;
}

.customer-logo.is-active img {
  filter: grayscale(0);
  opacity: 1;
}

.customer-logo:not(.is-active):hover img,
.customer-logo:not(.is-active):focus-visible img {
  opacity: 0.7;
}

.customer-logo-novacrest img {
  width: min(68%, 170px);
  height: 44px;
}

.customer-logo-wordmark span {
  color: currentColor;
  font-size: 15px;
  font-weight: 550;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-action {
  min-height: 42px;
  font-size: 14px;
}

.startup-heading h2,
.partner-heading h2 {
  font-size: clamp(36px, 3.2vw, 48px);
}

.partner-section {
  padding: 96px 24px 100px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.65), transparent 27%),
    #dfe3dc;
  color: var(--ink);
}

.partner-heading {
  display: block;
}

.partner-heading .dark-kicker {
  margin-bottom: 20px;
  color: rgba(16, 33, 29, 0.48);
}

.partner-heading h2 {
  max-width: 1080px;
}

.partner-heading h2 > span {
  display: block;
}

.partner-heading h2 em {
  display: block;
  max-width: 790px;
  margin-top: 14px;
  color: #5f950b;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.startup-heading > .light-kicker {
  margin-bottom: 20px;
}

.partner-value {
  color: #f4f7f1;
}

.partner-cta {
  --partner-glow-x: 50%;
  --partner-glow-y: 50%;
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  isolation: isolate;
}

.partner-cta::before {
  position: absolute;
  top: var(--partner-glow-y);
  left: var(--partner-glow-x);
  z-index: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 248, 74, 0.48) 0%, rgba(184, 248, 74, 0.2) 38%, transparent 70%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease;
}

.partner-cta:hover::before,
.partner-cta:focus-within::before {
  opacity: 1;
}

.partner-cta > * {
  position: relative;
  z-index: 1;
}

.partner-cta .section-action-light {
  min-height: 52px;
  font-size: 14px;
}

.client-work-section:target .reveal-on-scroll,
.partner-section:target .reveal-on-scroll,
.startup-section:target .reveal-on-scroll {
  opacity: 1;
  transform: none;
}

@media (max-width: 860px) {
  .client-work-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .customer-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .customer-logo:nth-child(2) {
    border-right: 1px solid rgba(16, 33, 29, 0.1);
  }

  .customer-logo:nth-child(n + 3) {
    border-top: 0;
  }

  .partner-cta {
    grid-template-columns: 1fr;
  }

  .partner-cta .section-action-light {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .startup-heading h2,
  .partner-heading h2 {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .header-action {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .client-work-section {
    padding-top: 54px;
  }

  .partner-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .customer-story {
    padding: 0 2px 40px;
  }

  .customer-story-kicker {
    margin-bottom: 18px;
  }

  .customer-story blockquote {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.25;
  }

  .customer-story-person {
    display: block;
    margin-top: 15px;
    font-size: 11px;
  }

  .customer-story-person strong,
  .customer-story-person span {
    display: block;
  }

  .customer-story-person span::before {
    content: none;
  }

  .customer-logo {
    min-height: 70px;
  }

  .customer-logo img {
    width: min(48%, 84px);
    height: 24px;
  }

  .customer-logo-novacrest img {
    width: min(70%, 126px);
    height: 36px;
  }

  .customer-logo-wordmark span {
    font-size: 11px;
  }

  .startup-heading h2,
  .partner-heading h2 {
    font-size: 36px;
  }

  .partner-heading h2 em {
    margin-top: 12px;
    font-size: 22px;
  }

  .partner-cta .section-action-light {
    width: 100%;
    justify-content: space-between;
  }

}

/* A consistent Montserrat hierarchy: 550 for titles, 500 for body copy. */
body {
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6,
.footer-location,
.program-offer > strong,
main article strong,
.customer-story-person strong {
  font-weight: 550 !important;
}

p,
li,
blockquote,
address,
.hero-description strong {
  font-weight: 500 !important;
}

/* Consistent highlighted calls to action. */
.header-action,
.primary-action,
.section-action,
.pricing-plan-action,
.application-form button {
  font-size: 14px;
  font-weight: 550;
}

.header-action,
.primary-action,
.section-action-dark,
.section-action-light,
.pricing-plan-action-light,
.application-form button {
  border-color: rgba(16, 33, 29, 0.12);
  background: var(--accent);
  color: var(--ink);
}

.header-action:hover,
.header-action:focus-visible,
.primary-action:hover,
.primary-action:focus-visible,
.section-action-dark:hover,
.section-action-dark:focus-visible,
.section-action-light:hover,
.section-action-light:focus-visible,
.pricing-plan-action-light:hover,
.pricing-plan-action-light:focus-visible,
.application-form button:hover,
.application-form button:focus-visible {
  background: #c9ff69;
  color: var(--ink);
}

/* Persistent navigation */
.site-header {
  position: fixed;
  top: 12px;
  z-index: 100;
  width: min(calc(100% - 32px), 1380px);
  height: 64px;
  padding: 0 14px;
  border: 1px solid rgba(16, 33, 29, 0.09);
  border-radius: 14px;
  background: rgba(247, 248, 244, 0.97);
  box-shadow: 0 12px 36px rgba(16, 33, 29, 0.07);
  isolation: isolate;
  transform: translate3d(-50%, 0, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.site-header .header-action {
  width: 132px;
  flex: 0 0 132px;
  justify-content: center;
  white-space: nowrap;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-selector {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(16, 33, 29, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.7);
}

.language-selector button,
.language-selector a {
  display: grid;
  width: 30px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(16, 33, 29, 0.52);
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 550;
  text-decoration: none;
}

.language-selector button[aria-pressed="true"],
.language-selector a.is-active {
  background: var(--ink);
  color: #f4f7f1;
}

.language-selector button:hover,
.language-selector button:focus-visible,
.language-selector a:hover,
.language-selector a:focus-visible {
  color: #5e920c;
  outline: none;
}

html[lang="zh-Hant"] body {
  font-family: "Noto Sans TC", "Montserrat", sans-serif;
}

html[lang="zh-Hant"] h1,
html[lang="zh-Hant"] h2,
html[lang="zh-Hant"] h3 {
  letter-spacing: -0.04em;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

/* Frequently asked questions */
.faq-section {
  position: relative;
  z-index: 10;
  padding: 96px 24px;
  background:
    radial-gradient(circle at 90% 12%, rgba(184, 248, 74, 0.12), transparent 25%),
    #f3f4ef;
  color: var(--ink);
}

.faq-inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
}

.faq-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(36px, 3.2vw, 48px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.faq-list {
  margin-top: 42px;
  border-top: 1px solid rgba(16, 33, 29, 0.14);
}

.faq-static-item {
  padding: 25px 52px 25px 0;
  border-bottom: 1px solid rgba(16, 33, 29, 0.14);
}

.faq-static-item h3 {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 19px);
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.faq-static-item p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(16, 33, 29, 0.61);
  font-size: 13px;
  line-height: 1.75;
}

.faq-list details {
  border-bottom: 1px solid rgba(16, 33, 29, 0.14);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(16, 33, 29, 0.16);
  border-radius: 50%;
  color: #60940d;
  content: "+";
  font-size: 17px;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details > p {
  max-width: 720px;
  margin: -3px 54px 24px 0;
  color: rgba(16, 33, 29, 0.61);
  font-size: 13px;
  line-height: 1.75;
}

@media (max-width: 860px) {
  .faq-section {
    padding: 84px 18px;
  }
}

@media (max-width: 560px) {
  .faq-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq-heading h2 {
    font-size: 36px;
  }

  .faq-list {
    margin-top: 34px;
  }

  .faq-static-item {
    padding-right: 34px;
  }

  .faq-static-item p {
    font-size: 12px;
  }

  .faq-list summary {
    padding-top: 21px;
    padding-bottom: 21px;
    font-size: 16px;
  }

  .faq-list details > p {
    margin-right: 34px;
    font-size: 12px;
  }
}

/* Standalone pricing */
.pricing-shell {
  overflow: hidden;
  background: #f4f6f1;
}

.pricing-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.pricing-kicker {
  margin: 0 0 22px;
  color: #5f920d;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-overview,
.pricing-foundation,
.pricing-factors {
  padding: 104px 24px;
  scroll-margin-top: 96px;
}

#data-to-insight,
#client-work,
#partners,
#startups,
#questions {
  scroll-margin-top: 96px;
}

.pricing-overview {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 22%, rgba(184, 248, 74, 0.2), transparent 28%),
    #f2f4ef;
}

.pricing-overview::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 33, 29, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 29, 0.04) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}

.pricing-page main > .pricing-overview {
  padding-top: 136px;
  padding-bottom: 82px;
}

.pricing-section-heading {
  max-width: 900px;
}

.pricing-section-heading h1,
.pricing-section-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 74px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.pricing-section-heading h1 {
  max-width: 760px;
  font-size: clamp(36px, 3.2vw, 48px);
}

.pricing-section-heading h1 em,
.pricing-section-heading h2 em {
  color: #659b0e;
  font-style: normal;
}

.pricing-section-heading-compact h2 {
  max-width: 930px;
  font-size: clamp(42px, 4.6vw, 66px);
}

.pricing-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 29, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 72px rgba(16, 33, 29, 0.11);
}

.pricing-offer-summary,
.pricing-offer-rate {
  min-height: 0;
  padding: clamp(32px, 3.8vw, 48px);
}

.pricing-offer-summary {
  background: rgba(255, 255, 255, 0.96);
}

.pricing-offer-label,
.pricing-offer-rate > p:first-child {
  margin: 0;
  color: #5f920d;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-offer-summary h2 {
  max-width: 570px;
  margin: 18px 0 0;
  font-size: clamp(28px, 2.5vw, 36px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.pricing-offer-description {
  max-width: 590px;
  margin: 14px 0 0;
  color: rgba(16, 33, 29, 0.61);
  font-size: 13px;
  line-height: 1.7;
}

.pricing-offer-inclusions {
  margin-top: 20px;
}

.pricing-offer-inclusions > p {
  margin: 0;
  color: #5f920d;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pricing-offer-inclusions ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-offer-inclusions li {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(16, 33, 29, 0.68);
  font-size: 11px;
}

.pricing-offer-inclusions li span {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 248, 74, 0.28);
  color: #5e930b;
  font-size: 10px;
}

.pricing-offer-model {
  margin: 18px 0 0;
  color: rgba(16, 33, 29, 0.42);
  font-size: 10px;
}

.pricing-plan-action.pricing-offer-action {
  display: inline-flex;
  width: auto;
  min-width: 160px;
  gap: 22px;
  margin-top: 22px;
}

.pricing-offer-rate {
  border-left: 1px solid rgba(16, 33, 29, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 248, 74, 0.38), transparent 50%),
    #eaf0e3;
}

.pricing-price-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.pricing-price-option {
  min-width: 0;
  padding: 20px 17px;
  border: 1px solid rgba(16, 33, 29, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.48);
}

.pricing-price-option-entryfi {
  border-color: rgba(96, 151, 13, 0.35);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(16, 33, 29, 0.07);
}

.pricing-price-name,
.pricing-price-period {
  display: block;
}

.pricing-price-name {
  min-height: 28px;
  color: rgba(16, 33, 29, 0.58);
  font-size: 9px;
  line-height: 1.45;
}

.pricing-price-option-entryfi .pricing-price-name {
  color: #5f920d;
}

.pricing-price-option strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(38px, 4vw, 52px);
  letter-spacing: -0.065em;
  line-height: 0.9;
  white-space: nowrap;
}

.pricing-price-option strong small {
  margin-right: 5px;
  font-size: 0.32em;
  letter-spacing: -0.02em;
  vertical-align: top;
}

.pricing-price-period {
  margin-top: 10px;
  color: rgba(16, 33, 29, 0.48);
  font-size: 9px;
}

.pricing-price-vs {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(16, 33, 29, 0.12);
  border-radius: 50%;
  background: #f4f7ef;
  color: rgba(16, 33, 29, 0.46);
  font-size: 8px;
  font-weight: 550;
  letter-spacing: 0.06em;
}

.pricing-offer-eligibility {
  margin: 22px 0 0;
  font-size: 13px;
  font-weight: 550 !important;
}

.pricing-market-note {
  margin: 7px 0 0;
  color: rgba(16, 33, 29, 0.48);
  font-size: 10px;
  line-height: 1.5;
}

.pricing-offer-note {
  max-width: 430px;
  margin: 10px 0 0;
  color: rgba(16, 33, 29, 0.5);
  font-size: 9px;
  line-height: 1.65;
}

.pricing-plan-action {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 19px;
  border-radius: 10px;
  background: var(--ink);
  color: #f4f7f1;
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.pricing-plan-action:hover,
.pricing-plan-action:focus-visible {
  background: #28423a;
  outline: none;
  transform: translateY(-2px);
}

.pricing-plan-action-light {
  background: var(--accent);
  color: var(--ink);
}

.pricing-plan-action-light:hover,
.pricing-plan-action-light:focus-visible {
  background: #c9ff69;
}

.pricing-foundation {
  background: #e6e9e2;
}

.pricing-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 29, 0.11);
  border-radius: 0;
  background: transparent;
}

.pricing-feature-grid article {
  min-height: 370px;
  padding: 34px 30px 38px;
  border-right: 1px dashed rgba(16, 33, 29, 0.15);
  background: #f7f8f4;
}

.pricing-feature-grid article:nth-child(4n) {
  border-right: 0;
}

.pricing-feature-grid article:nth-child(n + 5) {
  border-top: 1px dashed rgba(16, 33, 29, 0.15);
}

.pricing-feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  background: rgba(184, 248, 74, 0.22);
  color: #60970d;
}

.pricing-feature-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.pricing-feature-grid h3 {
  min-height: 54px;
  margin: 30px 0 0;
  font-size: 21px;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

.pricing-feature-grid ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-feature-grid li {
  position: relative;
  padding-left: 25px;
  color: rgba(16, 33, 29, 0.58);
  font-size: 11px;
  line-height: 1.6;
}

.pricing-feature-grid li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 248, 74, 0.32);
  color: #5d930b;
  content: "✓";
  font-size: 10px;
}

.pricing-feature-note {
  margin: 16px 0 0;
  color: rgba(16, 33, 29, 0.46);
  font-size: 10px;
  line-height: 1.55;
}

.pricing-startup {
  padding: 84px 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.55), transparent 28%),
    var(--accent);
}

.pricing-startup-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
}

.pricing-startup h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.pricing-startup p:not(.pricing-kicker) {
  max-width: 680px;
  margin: 25px 0 0;
  color: rgba(16, 33, 29, 0.65);
  font-size: 15px;
  line-height: 1.7;
}

.pricing-startup .section-action {
  margin-top: 0;
  white-space: nowrap;
}

.startup-heading .section-action-dark,
.pricing-startup .section-action-dark {
  border-color: rgba(16, 33, 29, 0.1);
  background: rgba(244, 255, 222, 0.78);
}

.startup-heading .section-action-dark:hover,
.startup-heading .section-action-dark:focus-visible,
.pricing-startup .section-action-dark:hover,
.pricing-startup .section-action-dark:focus-visible {
  background: #f4ffdf;
}

.pricing-factors {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #f8f9f5;
}

.pricing-factors-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
}

.pricing-factor-list {
  border-top: 1px solid rgba(16, 33, 29, 0.13);
}

.pricing-factor-list > div {
  display: grid;
  grid-template-columns: 38px minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(16, 33, 29, 0.13);
}

.pricing-factor-list span {
  color: #61960d;
  font-size: 8px;
}

.pricing-factor-list strong {
  font-size: 14px;
  font-weight: 550;
}

.pricing-factor-list p {
  margin: 0;
  color: rgba(16, 33, 29, 0.58);
  font-size: 11px;
  line-height: 1.6;
}

.pricing-footer {
  padding-top: 70px;
}

.pricing-footer .footer-rule {
  margin-top: 60px;
}

@media (max-width: 960px) {
  .pricing-factors-inner {
    grid-template-columns: 1fr;
  }

  .pricing-offer-card {
    grid-template-columns: 1fr;
  }

  .pricing-offer-summary,
  .pricing-offer-rate {
    min-height: 0;
  }

  .pricing-offer-rate {
    border-top: 1px solid rgba(16, 33, 29, 0.1);
    border-left: 0;
  }

  .pricing-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-feature-grid article,
  .pricing-feature-grid article:nth-child(4n) {
    border-right: 1px dashed rgba(16, 33, 29, 0.15);
  }

  .pricing-feature-grid article:nth-child(2n) {
    border-right: 0;
  }

  .pricing-feature-grid article:nth-child(n + 3) {
    border-top: 1px dashed rgba(16, 33, 29, 0.15);
  }

  .pricing-startup-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .pricing-startup .section-action {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    height: 58px;
    padding: 0 10px;
  }

  .site-header .header-action {
    width: 112px;
    flex-basis: 112px;
  }

  .pricing-overview,
  .pricing-foundation,
  .pricing-factors {
    padding: 76px 18px;
  }

  .pricing-page main > .pricing-overview {
    padding-top: 112px;
    padding-bottom: 62px;
  }

  .pricing-section-heading h2,
  .pricing-section-heading-compact h2 {
    font-size: 42px;
  }

  .pricing-section-heading h1 {
    font-size: 38px;
  }

  .pricing-offer-card {
    margin-top: 28px;
    border-radius: 14px;
  }

  .pricing-offer-summary,
  .pricing-offer-rate {
    padding: 27px 23px;
  }

  .pricing-offer-summary h2 {
    font-size: 30px;
  }

  .pricing-price-comparison {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-price-vs {
    justify-self: center;
  }

  .pricing-price-option {
    padding: 18px;
  }

  .pricing-price-option strong {
    font-size: 46px;
  }

  .pricing-feature-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .pricing-feature-grid article {
    min-height: 0;
    padding: 25px;
    border-right: 0;
  }

  .pricing-feature-grid article:nth-child(4n) {
    border-right: 0;
  }

  .pricing-feature-grid article:nth-child(n + 2) {
    border-top: 1px dashed rgba(16, 33, 29, 0.15);
  }

  .pricing-feature-grid h3 {
    min-height: 0;
    margin-top: 26px;
  }

  .pricing-startup {
    padding: 72px 18px;
  }

  .pricing-startup h2 {
    font-size: 43px;
  }

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

  .pricing-factor-list p {
    grid-column: 2;
  }
}

/* Compact global footer */
.site-footer,
.application-page-footer,
.pricing-footer {
  padding: 42px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d3026;
  color: #f4f7f1;
}

.footer-primary,
.footer-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo {
  display: block;
  width: 152px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  justify-content: flex-end;
}

.footer-nav a {
  color: rgba(244, 247, 241, 0.76);
  font-size: 13px;
  font-weight: 550;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent);
  outline: none;
}

.footer-secondary {
  margin-top: 18px;
}

.site-footer .footer-location,
.site-footer address {
  margin: 0;
  color: rgba(244, 247, 241, 0.5);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
}

.site-footer address {
  text-align: right;
}

.site-footer .footer-bottom,
.application-page-footer .footer-bottom,
.pricing-footer .footer-bottom {
  display: block;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-bottom p {
  color: rgba(244, 247, 241, 0.38);
  font-size: 9px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .site-footer,
  .application-page-footer,
  .pricing-footer {
    padding: 34px 18px 22px;
  }

  .footer-primary {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .footer-logo {
    width: 138px;
  }

  .footer-nav {
    gap: 10px 20px;
    justify-content: flex-start;
  }

  .footer-secondary {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 22px;
  }

  .site-footer address {
    text-align: left;
  }

  .site-footer .footer-bottom,
  .application-page-footer .footer-bottom,
  .pricing-footer .footer-bottom {
    margin-top: 18px;
    padding-top: 16px;
  }
}

/* Fixed typography roles inspired by Harvey's restrained responsive scale. */
:root {
  --display-h1-size: 48px;
  --display-h2-size: 28px;
  --display-h3-size: 28px;
  --display-subheading-size: 24px;
  --display-card-title-size: 20px;
  --body-lead-size: 16px;
  --body-copy-size: 14px;
  --label-size: 10px;
}

/* The homepage carries the single display-size statement. */
.hero-copy h1 {
  font-size: var(--display-h1-size);
}

/* All other page and section statements share one scale. */
.application-copy h1,
.pricing-section-heading h1,
.complexity-heading h2,
.partner-heading h2,
.startup-heading h2,
.faq-heading h2,
.pricing-section-heading h2,
.pricing-startup h2 {
  font-size: var(--display-h2-size);
}

/* Product chapters use one consistent feature-heading scale. */
.flow-copy h3,
.control-copy h3 {
  font-size: var(--display-h3-size);
}

@media (min-width: 1025px) {
  :root {
    --display-h1-size: 72px;
    --display-h2-size: 32px;
    --display-h3-size: 32px;
  }
}

/* Real-world accounting scenarios */
.complexity-section {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 112px 24px 104px;
  background:
    radial-gradient(circle at 86% 8%, rgba(184, 248, 74, 0.13), transparent 25%),
    #eef1eb;
  color: var(--ink);
}

.complexity-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 33, 29, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 29, 0.028) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  pointer-events: none;
}

.complexity-inner {
  position: relative;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.complexity-heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.complexity-kicker {
  margin: 0 0 22px;
  color: rgba(16, 33, 29, 0.48);
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.complexity-heading h2 {
  margin: 0;
  font-size: var(--display-h2-size);
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.complexity-heading h2 em {
  display: block;
  color: #61970d;
  font-style: normal;
}

.complexity-intro {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(16, 33, 29, 0.62);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}

.complexity-intro strong {
  color: #3f806b;
  font-weight: 550 !important;
}

.complexity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 68px;
  border-top: 1px solid rgba(16, 33, 29, 0.14);
  border-bottom: 1px solid rgba(16, 33, 29, 0.14);
}

.complexity-grid article {
  min-width: 0;
  padding: 27px clamp(20px, 2.2vw, 32px) 32px;
}

.complexity-grid article + article {
  border-left: 1px solid rgba(16, 33, 29, 0.12);
}

.complexity-grid article:nth-child(2) {
  transition-delay: 80ms;
}

.complexity-grid article:nth-child(3) {
  transition-delay: 160ms;
}

.complexity-grid article > span {
  color: #659b0e;
  font-size: 9px;
  font-weight: 550;
  letter-spacing: 0.1em;
}

.complexity-grid h3 {
  margin: 46px 0 0;
  font-size: clamp(18px, 1.45vw, 22px);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.complexity-grid article > p {
  margin: 18px 0 0;
  color: rgba(16, 33, 29, 0.61);
  font-size: 13px;
  line-height: 1.65;
}

.complexity-foundation {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 23px 0 0;
  color: rgba(16, 33, 29, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.complexity-foundation i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #6da412;
  box-shadow: 0 0 0 5px rgba(184, 248, 74, 0.18);
}

@media (max-width: 620px) {
  .complexity-section {
    padding: 76px 18px 72px;
  }

  .complexity-kicker {
    margin-bottom: 18px;
  }

  .complexity-heading h2 em {
    margin-top: 0.12em;
  }

  .complexity-intro {
    margin-top: 22px;
    font-size: 14px;
  }

  .complexity-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .complexity-grid article {
    padding: 22px 2px 25px;
  }

  .complexity-grid article + article {
    border-top: 1px solid rgba(16, 33, 29, 0.12);
    border-left: 0;
  }

  .complexity-grid h3 {
    margin-top: 22px;
    font-size: 20px;
  }

  .complexity-grid article > p {
    margin-top: 14px;
  }

  .complexity-foundation {
    align-items: flex-start;
    margin-top: 20px;
  }

  .complexity-foundation i {
    margin-top: 0.45em;
  }
}

/* Newsreader carries page-level statements and selected editorial section
   leads. Supporting lines stay in Montserrat for clarity. */
.hero-copy h1,
.application-copy h1,
.pricing-section-heading h1,
.complexity-heading h2,
.partner-heading h2 > span {
  font-family: var(--font-display);
  font-weight: 350 !important;
  letter-spacing: -0.035em;
}

.complexity-heading h2 em,
.partner-heading h2 em {
  font-family: var(--font-body);
  font-weight: 550 !important;
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  max-width: 1240px;
  line-height: 0.96;
  text-wrap: balance;
  white-space: normal;
}

.hero-description {
  max-width: none;
  white-space: nowrap;
}

.hero-description strong {
  display: inline;
  margin: 0 0 0 0.28em;
  font-size: 1em;
}

html[lang="zh-Hant"] .hero-copy h1 {
  font-family: "Noto Sans TC", var(--font-body);
  font-weight: 550 !important;
  letter-spacing: -0.04em;
}

html[lang="zh-Hant"] .pricing-section-heading h1 {
  font-family: "Noto Sans TC", var(--font-body);
  font-weight: 550 !important;
  letter-spacing: -0.04em;
}

html[lang="zh-Hant"] .application-copy h1 {
  font-family: "Noto Sans TC", var(--font-body);
  font-weight: 550 !important;
  letter-spacing: -0.04em;
}

html[lang="zh-Hant"] .complexity-heading h2,
html[lang="zh-Hant"] .complexity-heading h2 em,
html[lang="zh-Hant"] .partner-heading h2 > span {
  font-family: "Noto Sans TC", var(--font-body);
  font-weight: 550 !important;
  letter-spacing: -0.04em;
}

@media (max-width: 560px) {
  .hero-copy {
    width: calc(100% - 24px);
  }

  .hero-description {
    position: relative;
    left: 50%;
    width: calc(100vw - 16px);
    font-size: clamp(9.5px, 2.95vw, 14px);
    letter-spacing: -0.03em;
    transform: translateX(-50%);
  }
}

/* Compact hero rhythm */
.hero {
  min-height: clamp(660px, 78svh, 780px);
}

.hero-copy {
  margin-top: -2.5vh;
}

.hero-description,
.hero-copy .hero-actions {
  margin-top: 20px;
}

/* One button system: shared dimensions and typography, with solid and outline
   variants preserving the visual priority of each action. */
.site-header .header-action,
.hero-copy .primary-action,
.hero-copy .trace-layout-toggle {
  min-height: 48px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 550 !important;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: none;
}

.site-header .header-action,
.hero-copy .primary-action {
  border: 1px solid rgba(16, 33, 29, 0.12);
  background: var(--accent);
  color: var(--ink);
  box-shadow: none;
}

.hero-copy .primary-action {
  gap: 24px;
  padding: 0 17px 0 20px;
}

.hero-copy .trace-layout-toggle {
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(16, 33, 29, 0.3);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.site-header .header-action:hover,
.site-header .header-action:focus-visible,
.hero-copy .primary-action:hover,
.hero-copy .primary-action:focus-visible,
.hero-copy .trace-layout-toggle:hover,
.hero-copy .trace-layout-toggle:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .hero {
    min-height: 620px;
  }

  .hero-copy {
    margin-top: -1.5vh;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 560px;
  }

  .hero-description,
  .hero-copy .hero-actions {
    margin-top: 18px;
  }
}

/* Underlined sales link inspired by the supplied reference. */
.site-header .header-action {
  display: inline-flex;
  width: auto;
  min-height: 42px;
  flex: 0 0 auto;
  gap: 13px;
  align-items: center;
  justify-content: center;
  padding: 0 2px 4px;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-size: 14px;
  font-weight: 500 !important;
  letter-spacing: -0.025em;
}

.header-action-arrow {
  font-size: 21px;
  font-weight: 400;
  line-height: 0.8;
  transition: transform 180ms ease;
}

.site-header .header-action:hover,
.site-header .header-action:focus-visible {
  border-bottom-color: #60970d;
  background: transparent;
  color: #4f7d0b;
  outline: none;
  transform: none;
}

.site-header .header-action:hover .header-action-arrow,
.site-header .header-action:focus-visible .header-action-arrow {
  transform: translate(2px, -2px);
}

/* Restore a little breathing room without returning to a full-screen hero. */
.hero {
  min-height: clamp(700px, 84svh, 840px);
}

.hero-copy {
  margin-top: -2vh;
}

@media (max-width: 820px) {
  .hero {
    min-height: 650px;
  }

  .hero-copy {
    margin-top: -1vh;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 590px;
  }
}

/* Product upload animation */
.raw-data-row .raw-dropzone {
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  align-self: center;
  border: 1px solid rgba(184, 248, 74, 0.24);
  border-radius: 20px;
  background: #f5f7f2;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

.raw-data-row .raw-dropzone::before {
  display: none;
}

.raw-upload-animation {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f5f7f2;
  object-fit: cover;
}

@media (max-width: 760px) {
  .raw-data-row .raw-dropzone {
    width: 100%;
    border-radius: 16px;
  }
}

/* Reusable product-demo frames for reconciliation and reporting. */
.product-animation {
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  align-self: center;
  border: 1px solid rgba(184, 248, 74, 0.24);
  border-radius: 20px;
  background: #f5f7f2;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

.product-animation-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.reports-animation {
  background: #1a2c2e;
}

.control-review-animation {
  background: #f5f7f2;
}

@media (max-width: 760px) {
  .product-animation {
    width: 100%;
    border-radius: 16px;
  }
}

/* Give each product chapter room to arrive before its demo begins. */
.data-section .accounting-flow {
  gap: 34px;
}

.data-section .flow-row {
  min-height: 560px;
}

@media (max-width: 760px) {
  .data-section .accounting-flow {
    gap: 26px;
  }

  .data-section .flow-row {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 32px;
  }
}

/* Define the product plainly in the hero; keep the original line as the
   quieter vision that closes the page. */
.hero-description {
  max-width: 1040px;
  text-wrap: balance;
  white-space: normal;
}

@media (min-width: 1180px) {
  .hero-description {
    white-space: nowrap;
  }
}

.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.site-footer .footer-bottom .footer-vision {
  margin: 0;
  color: rgba(244, 247, 241, 0.78);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 350 !important;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-transform: none;
}

.footer-vision span,
.footer-vision em {
  display: inline;
}

.footer-vision em {
  margin-left: 0.22em;
  color: var(--accent);
  font-style: italic;
}

.site-footer .footer-bottom .footer-copyright {
  margin: 0;
  white-space: nowrap;
}

html[lang="zh-Hant"] .site-footer .footer-bottom .footer-vision {
  font-family: "Noto Sans TC", var(--font-body);
  font-weight: 500 !important;
  letter-spacing: -0.03em;
}

@media (max-width: 760px) {
  .hero-description {
    position: static;
    left: auto;
    width: min(100%, 350px);
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    transform: none;
  }

  .site-footer .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
}

/* Unified typography hierarchy
   1. Display: 72 / 48
   2. Section and product statement: 32 / 28
   3. Subsection: 24
   4. Card title: 20
   5. Copy: 16 or 14; label: 10 */
.hero-copy h1 {
  font-size: var(--display-h1-size);
  letter-spacing: -0.025em;
  line-height: 1;
}

.pricing-overview .pricing-section-heading h1 {
  max-width: 1080px;
  font-size: var(--display-h1-size);
  letter-spacing: -0.025em;
  line-height: 1;
}

.application-copy h1,
.pricing-section-heading h1,
.complexity-heading h2,
.partner-heading h2,
.startup-heading h2,
.faq-heading h2,
.pricing-section-heading h2,
.pricing-startup h2 {
  font-size: var(--display-h2-size);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.complexity-heading h2 em,
.partner-heading h2 em,
.startup-heading h2 em,
.pricing-section-heading h1 em,
.pricing-section-heading h2 em {
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.partner-heading h2 em {
  margin-top: 0;
}

.flow-copy h3,
.control-copy h3 {
  font-size: var(--display-h3-size);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.partner-cta h3,
.pricing-offer-summary h2 {
  font-size: var(--display-subheading-size);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.program-offer > strong {
  font-size: var(--display-h2-size);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.complexity-grid h3,
.partner-value h3,
.pricing-feature-grid h3,
.faq-static-item h3,
.faq-list summary,
.pricing-factor-list strong {
  font-size: var(--display-card-title-size);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.hero-description {
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.55;
}

.flow-copy > p,
.control-copy > p,
.complexity-intro,
.startup-heading > p:not(.light-kicker),
.pricing-startup p:not(.pricing-kicker),
.application-copy > p {
  font-size: var(--body-lead-size);
  letter-spacing: -0.01em;
  line-height: 1.65;
}

.complexity-grid article > p,
.partner-value p,
.program-offer p,
.program-benefits li,
.program-benefits strong,
.faq-static-item p,
.faq-list details > p,
.pricing-offer-description,
.pricing-offer-inclusions li,
.pricing-feature-grid li,
.pricing-factor-list p {
  font-size: var(--body-copy-size);
  letter-spacing: 0;
  line-height: 1.65;
}

.program-benefits li > span {
  font-size: var(--body-copy-size);
  line-height: 1.65;
}

.program-benefits li > i {
  font-size: var(--label-size);
  font-weight: 550;
}

.pricing-offer-model,
.pricing-offer-note,
.pricing-price-name,
.pricing-price-period {
  font-size: 12px;
  line-height: 1.55;
}

.customer-story blockquote {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.customer-story-person {
  font-size: 12px;
  line-height: 1.6;
}

.flow-card-meta,
.complexity-kicker,
.dark-kicker,
.light-kicker,
.customer-story-kicker,
.program-card-head,
.program-offer small,
.pricing-kicker,
.pricing-offer-label,
.pricing-offer-rate > p:first-child,
.pricing-offer-inclusions > p,
.partner-value > span,
.pricing-factor-list > div > span {
  font-size: var(--label-size);
  font-weight: 550 !important;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

.application-copy > .light-kicker {
  font-size: var(--label-size);
  font-weight: 550 !important;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pricing-price-option strong {
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.site-nav a,
.footer-nav a,
.header-action,
.primary-action,
.section-action,
.pricing-plan-action,
.application-form button {
  font-size: 14px;
}

.site-footer .footer-bottom .footer-vision {
  font-size: 24px;
}

@media (max-width: 620px) {
  .hero-description {
    font-size: var(--body-lead-size);
  }

  .customer-story blockquote {
    font-size: 18px;
  }

  .site-footer .footer-bottom .footer-vision {
    font-size: 20px;
  }
}

/* Landing-page spacing system: one horizontal gutter and a consistent
   vertical rhythm across the major narrative sections. */
:root {
  --landing-gutter: 24px;
  --landing-section-space: 96px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.hero-description {
  margin-right: auto;
  margin-left: auto;
}

.hero-copy .hero-actions {
  width: 100%;
  justify-content: center;
}

.data-section {
  padding: 112px var(--landing-gutter) 120px;
}

.complexity-section,
.partner-section,
.startup-section,
.faq-section {
  padding: var(--landing-section-space) var(--landing-gutter);
}

.client-work-section {
  padding: var(--landing-section-space) var(--landing-gutter) 0;
}

@media (max-width: 760px) {
  :root {
    --landing-gutter: 18px;
    --landing-section-space: 72px;
  }

  .data-section {
    padding: 72px var(--landing-gutter) 80px;
  }

  .client-work-section {
    padding: var(--landing-section-space) var(--landing-gutter) 0;
  }
}

/* Traditional Chinese needs a slightly larger minimum text scale to retain
   clarity at the same visual weight as the Latin typography. */
html[lang="zh-Hant"] {
  --body-copy-size: 15px;
  --body-lead-size: 17px;
  --label-size: 12px;
}

html[lang="zh-Hant"] .connected-storage > p,
html[lang="zh-Hant"] .live-source-connectors > p,
html[lang="zh-Hant"] .control-principles strong,
html[lang="zh-Hant"] .control-principles span,
html[lang="zh-Hant"] .source-chip,
html[lang="zh-Hant"] .live-source-connectors .source-chip,
html[lang="zh-Hant"] .pricing-feature-note,
html[lang="zh-Hant"] .pricing-market-note,
html[lang="zh-Hant"] .accountant-fee-disclaimer {
  font-size: 12px;
}

html[lang="zh-Hant"] .customer-story-person,
html[lang="zh-Hant"] .pricing-offer-model,
html[lang="zh-Hant"] .pricing-offer-note,
html[lang="zh-Hant"] .pricing-price-name,
html[lang="zh-Hant"] .pricing-price-period,
html[lang="zh-Hant"] .application-note {
  font-size: 13px;
}

html[lang="zh-Hant"] .application-fields label > span {
  font-size: 15px;
}

html[lang="zh-Hant"] .site-footer .footer-location,
html[lang="zh-Hant"] .site-footer address,
html[lang="zh-Hant"] .site-footer .footer-bottom .footer-copyright {
  font-size: 12px;
}
