:root {
  --ink: #15171b;
  --ink-soft: #3f423b;
  --body: #55584c;
  --muted: #686c63;
  --line: #e2e1da;
  --line-strong: #dcdbd2;
  --paper: #ffffff;
  --warm: #f7f7f4;
  --night: #0c1512;
  --forest: #0b1f17;
  --forest-light: #0f3d30;
  --green: #1e9e71;
  --green-dark: #16745a;
  --button-green: #16815f;
  --button-green-hover: #147b59;
  --mint: #6fcfa8;
  --danger: #c2452f;
  --sans: "Switzer", "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --shadow-small: 0 1px 2px rgb(6 20 15 / 10%), 0 8px 24px rgb(6 20 15 / 8%);
  --shadow-large: 0 1px 2px rgb(4 18 13 / 30%), 0 18px 36px rgb(4 18 13 / 35%),
    0 60px 100px rgb(4 18 13 / 48%);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--night);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  background: rgb(12 21 18 / 90%);
  color: white;
  backdrop-filter: blur(14px) saturate(140%);
}

.nav-shell {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 18px;
}

.brand {
  flex: none;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-strong {
  font-weight: 700;
}

.brand-rest {
  color: rgb(255 255 255 / 65%);
}

.primary-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 26px);
  color: rgb(255 255 255 / 76%);
  font-size: 14.5px;
  font-weight: 500;
}

.primary-nav a,
.site-footer a {
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: white;
}

.nav-cta {
  flex: none;
}

.nav-cta-short {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 9px;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

.site-header.nav-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  background: var(--button-green);
  color: white;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--button-green-hover);
  box-shadow: 0 8px 22px rgb(30 158 113 / 22%);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.faq-question:focus-visible,
a:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--button-green-hover);
}

.button-small {
  min-height: 42px;
  padding: 11px 20px;
  border-radius: 9px;
  font-size: 14px;
}

.button-large {
  min-height: 54px;
  padding: 15px 29px;
  font-size: 16px;
}

.button-outline {
  border: 1px solid rgb(255 255 255 / 28%);
  background: transparent;
  color: white;
  font-weight: 500;
}

.button-outline:hover {
  border-color: rgb(255 255 255 / 65%);
  background: rgb(255 255 255 / 7%);
  box-shadow: none;
}

.button-ghost {
  min-height: 48px;
  padding: 13px 23px;
  border: 1px solid #c9ccc2;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
  box-shadow: none;
}

.button-ink {
  min-height: 50px;
  padding: 14px 25px;
  background: var(--ink);
  font-size: 15px;
}

.button-ink:hover {
  background: var(--button-green);
}

.dark-texture {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.dark-texture::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / 24%) 0.55px, transparent 0.7px),
    radial-gradient(rgb(0 0 0 / 28%) 0.55px, transparent 0.7px);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px;
  content: "";
  mix-blend-mode: overlay;
  opacity: 0.22;
  pointer-events: none;
}

.hero {
  background: linear-gradient(115deg, transparent 42%, rgb(140 220 180 / 6%) 50%, transparent 58%),
    radial-gradient(1100px 620px at 80% -10%, rgb(26 105 74 / 55%) 0%, transparent 62%),
    radial-gradient(820px 540px at -8% 108%, rgb(17 70 50 / 50%) 0%, transparent 58%),
    radial-gradient(640px 420px at 52% 48%, rgb(22 88 62 / 25%) 0%, transparent 65%),
    var(--night);
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 56px);
  row-gap: 0;
  align-items: center;
  padding-block: clamp(58px, 7vw, 88px) clamp(52px, 6vw, 76px);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-mint {
  color: var(--mint);
}

.eyebrow-muted {
  color: var(--muted);
}

.hero .eyebrow {
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 21ch;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.15vw, 58px);
  font-weight: 600;
  letter-spacing: -0.036em;
  line-height: 1.035;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--mint);
}

.hero-lede {
  max-width: 57ch;
  margin-bottom: 30px;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 34px;
}

.founder-quote {
  grid-column: 1;
  grid-row: 2;
  max-width: 63ch;
  margin: 0 0 24px;
}

.founder-quote p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.founder-quote cite {
  color: rgb(255 255 255 / 54%);
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.trust-chips {
  display: flex;
  grid-column: 1;
  grid-row: 3;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-chips > span {
  display: inline-flex;
  min-height: 33px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 19%);
  border-radius: 999px;
  padding: 8px 16px;
  color: rgb(255 255 255 / 84%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
}

.trust-chips .chip-live {
  border-color: #2c5c49;
  background: rgb(30 158 113 / 12%);
  color: #8fdcc0;
}

.chip-live i {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgb(111 207 168 / 12%);
}

.hero-reveal {
  animation: hero-in 700ms cubic-bezier(0.21, 0.9, 0.35, 1) both;
  animation-delay: var(--delay, 0ms);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-portrait {
  position: relative;
  isolation: isolate;
  grid-column: 2;
  grid-row: 1 / span 3;
  width: min(100%, 460px);
  margin: 0;
  align-self: center;
  justify-self: center;
}

.hero-portrait::before {
  position: absolute;
  z-index: 0;
  inset: -8% -18% -6%;
  background: linear-gradient(
    to bottom right,
    transparent 38%,
    rgb(111 207 168 / 4%) 43%,
    rgb(111 207 168 / 27%) 48%,
    rgb(111 207 168 / 10%) 52%,
    transparent 58%
  );
  content: "";
  filter: blur(7px);
  mask-image: radial-gradient(ellipse at center, black 30%, rgb(0 0 0 / 82%) 56%, transparent 79%);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, rgb(0 0 0 / 82%) 56%, transparent 79%);
}

.hero-portrait::after {
  position: absolute;
  z-index: 0;
  inset: 10% -12% 6% -10%;
  border: 1px solid rgb(111 207 168 / 27%);
  border-radius: 50%;
  content: "";
  filter: drop-shadow(0 0 16px rgb(111 207 168 / 16%));
  mask-image: linear-gradient(to bottom left, transparent 5%, black 31%, black 69%, transparent 95%);
  pointer-events: none;
  transform: rotate(-24deg);
  -webkit-mask-image: linear-gradient(to bottom left, transparent 5%, black 31%, black 69%, transparent 95%);
}

.hero-portrait-frame {
  position: relative;
  z-index: 1;
  overflow: visible;
  aspect-ratio: 4 / 5;
  background: transparent;
}

.portrait-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
}

.portrait-glow-one {
  top: -7%;
  left: -16%;
  width: 78%;
  height: 62%;
  background: radial-gradient(circle, rgb(30 158 113 / 42%) 0%, transparent 68%);
}

.portrait-glow-two {
  right: -18%;
  bottom: -8%;
  width: 82%;
  height: 66%;
  background: radial-gradient(circle, rgb(111 207 168 / 26%) 0%, transparent 68%);
}

.hero-portrait-image {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(to bottom, black 0%, black 93%, transparent 100%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms ease;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 93%, transparent 100%);
}

.hero-portrait.has-image .hero-portrait-image {
  opacity: 1;
}

.section {
  padding-block: clamp(58px, 7vw, 84px);
  border-top: 1px solid var(--line);
}

.compact-section {
  padding-block: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.section-warm {
  background: var(--warm);
}

.section-white {
  background: white;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.application-heading h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.027em;
  line-height: 1.12;
  text-wrap: balance;
}

.section-heading-dark h2 {
  color: white;
}

.ruled-list,
.deliverable-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ruled-list {
  border-top: 1px solid var(--line-strong);
}

.ruled-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding-block: 20px;
  border-bottom: 1px solid var(--line-strong);
}

.ruled-list li:last-child {
  border-bottom: 0;
}

.ruled-list p {
  max-width: 70ch;
  margin: 0;
}

.pain-list .list-index {
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
}

.pain-list p {
  color: var(--ink);
  font-size: clamp(16.5px, 1.75vw, 18.5px);
  font-weight: 500;
  line-height: 1.5;
}

.filter-list {
  border-color: #e8e7df;
}

.filter-list li {
  padding-block: 18px;
  border-color: #e8e7df;
}

.filter-list li > span {
  color: #9a9d94;
  font-size: 20px;
  font-weight: 400;
}

.filter-list p {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.5vw, 16.5px);
  font-weight: 500;
  line-height: 1.55;
}

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

.step {
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.mono-label {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 700;
}

.step > p:last-child {
  margin-bottom: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.62;
}

.deliverable {
  border-color: rgb(255 255 255 / 7%);
  background: linear-gradient(112deg, transparent 40%, rgb(140 220 180 / 6%) 51%, transparent 60%),
    radial-gradient(900px 560px at 18% -8%, rgb(26 105 74 / 50%) 0%, transparent 60%),
    radial-gradient(760px 520px at 88% 30%, rgb(15 80 55 / 42%) 0%, transparent 62%),
    radial-gradient(900px 600px at 55% 115%, rgb(9 44 31 / 60%) 0%, transparent 65%),
    var(--forest);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(40px, 5vw, 58px);
  align-items: center;
}

.deliverable-list {
  min-width: 0;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.deliverable-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding-block: 16px;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.deliverable-list li:last-child {
  border-bottom: 0;
}

.deliverable-list span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}

.deliverable-list p {
  margin: 0;
  color: rgb(255 255 255 / 92%);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.report-stage {
  position: relative;
  min-width: 0;
}

.report-stage::before {
  position: absolute;
  inset: 10% -8% -6%;
  background: radial-gradient(60% 55% at 50% 55%, rgb(30 158 113 / 40%) 0%, transparent 70%);
  content: "";
  filter: blur(44px);
  pointer-events: none;
}

.report-paper {
  position: relative;
  border-radius: 6px;
  padding: clamp(17px, 2.1vw, 24px);
  background: white;
  box-shadow: var(--shadow-large);
  color: var(--ink);
  transform: rotate(-1.35deg);
}

.report-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 12px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--ink);
}

.report-header strong {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-header span {
  color: var(--body);
  font-size: 9.5px;
}

.report-meta {
  margin: 7px 0 0;
  color: #656960;
  font-size: 8.5px;
  line-height: 1.5;
}

.report-meta strong {
  color: var(--green-dark);
  font-weight: 600;
  text-transform: uppercase;
}

.report-title {
  margin: 14px 0 8px;
  font-size: 11.5px;
  font-weight: 700;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid #eeeee9;
  border-radius: 6px;
  padding: 10px 0;
}

.report-stats > div {
  min-width: 0;
  padding-inline: 11px;
}

.report-stats > div + div {
  border-left: 1px solid #eeeee9;
}

.report-stats strong {
  display: block;
  overflow: hidden;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-stats small {
  color: #656960;
  font-size: 8px;
  font-weight: 500;
}

.report-stats span {
  display: block;
  margin-top: 3px;
  color: #656960;
  font-size: 8px;
  line-height: 1.38;
}

.report-stats .report-green {
  color: var(--green-dark);
}

.report-summary {
  margin: 10px 0 0;
  color: var(--body);
  font-size: 9.5px;
  line-height: 1.55;
}

.report-table-title {
  margin-bottom: 6px;
}

.report-swipe-hint {
  display: none;
  margin: -1px 0 7px;
  color: #656960;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-swipe-hint.is-visible {
  display: block;
}

.report-table-scroller {
  max-width: 100%;
  overflow-x: auto;
  border-radius: 2px;
  scrollbar-color: #b8bab2 transparent;
  scrollbar-width: thin;
}

.report-table-scroller:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.report-table {
  min-width: 505px;
}

.report-row {
  display: grid;
  grid-template-columns: 14px minmax(105px, 1.4fr) 42px 58px 54px minmax(100px, 1.1fr);
  gap: 7px;
  align-items: baseline;
  padding-block: 6px;
  border-bottom: 1px solid #eeeee9;
  color: var(--ink);
  font-size: 8.5px;
  line-height: 1.35;
}

.report-row > span:first-child,
.report-row > span:nth-child(3),
.report-row > span:nth-child(4),
.report-row > span:nth-child(5) {
  color: #6f726a;
  font-family: var(--mono);
}

.report-row strong {
  font-weight: 600;
}

.report-row em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 600;
}

.report-columns {
  padding-block: 5px;
  border-color: var(--ink);
  color: #656960;
  font-family: var(--mono);
  font-size: 6.8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.report-columns > span {
  color: #656960 !important;
}

.report-row-muted {
  background: #f6f6f3;
  color: #686c63;
}

.report-note {
  margin: 8px 0 0;
  color: #656960;
  font-size: 8.3px;
  line-height: 1.48;
}

.report-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 10px;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #eeeee9;
  color: #656960;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.report-caption {
  position: relative;
  margin: 17px 0 0;
  color: rgb(255 255 255 / 50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roi-table {
  max-width: 720px;
}

.roi-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 20px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line-strong);
}

.roi-row > span {
  min-width: min(100%, 280px);
  flex: 1;
  color: var(--ink);
  font-size: clamp(15px, 1.45vw, 16.5px);
  line-height: 1.5;
}

.roi-row small {
  color: #656960;
  font-size: inherit;
}

.roi-row strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.roi-total {
  padding-top: 17px;
  border-top: 2px solid var(--ink);
  border-bottom: 0;
}

.roi-total > span {
  font-size: 18px;
  font-weight: 700;
}

.roi-total strong {
  color: var(--green-dark);
  font-size: 22px;
}

.roi-table > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.callout-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 30px);
  background: white;
}

.callout-card > div:first-child {
  min-width: min(100%, 300px);
  flex: 1;
}

.callout-card h2 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.callout-card p {
  max-width: 60ch;
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

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

.price-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 32px);
  background: white;
}

.price-card .eyebrow {
  margin-bottom: 18px;
}

.price-card .price {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.price-card .price-tax {
  margin: -8px 0 17px;
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
}

.price-card > p:last-child {
  margin-bottom: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.62;
}

.guarantee-card {
  border: 0;
  background: radial-gradient(340px 220px at 88% -12%, rgb(111 207 168 / 30%) 0%, transparent 60%),
    radial-gradient(300px 200px at 0% 110%, rgb(20 90 64 / 50%) 0%, transparent 60%),
    var(--forest-light);
  color: white;
}

.guarantee-card > p:last-child {
  color: white;
  font-size: clamp(17px, 1.7vw, 19px);
  font-weight: 500;
  line-height: 1.55;
}

.guarantee-card > p:last-child span {
  color: rgb(255 255 255 / 60%);
}

.capacity-card > div:first-child > p {
  margin-bottom: 14px;
}

.capacity-meter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.slots {
  display: flex;
  gap: 5px;
}

.slots i {
  display: block;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--ink);
  border-radius: 5px;
  background: transparent;
}

.slots i.taken {
  background: var(--ink);
}

.capacity-meter > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: var(--green-dark);
}

.faq-question span {
  font-size: clamp(16px, 1.6vw, 17.5px);
  font-weight: 600;
  line-height: 1.4;
}

.faq-question i {
  flex: none;
  color: var(--green-dark);
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition: transform 250ms ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  max-width: 64ch;
  margin: 0;
  padding: 0 0 20px;
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.62;
}

.application {
  border-color: rgb(255 255 255 / 8%);
  background: linear-gradient(115deg, transparent 40%, rgb(140 220 180 / 5%) 50%, transparent 60%),
    radial-gradient(1000px 560px at 50% -18%, rgb(24 96 68 / 50%) 0%, transparent 62%),
    radial-gradient(700px 420px at 90% 110%, rgb(16 64 46 / 40%) 0%, transparent 60%),
    var(--night);
}

.application-heading {
  margin-bottom: 36px;
  text-align: center;
}

.application-heading .eyebrow {
  margin-bottom: 12px;
}

.application-heading h2 {
  max-width: 24ch;
  margin-inline: auto;
  color: white;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.12;
}

.form-card {
  width: min(100%, 470px);
  margin-inline: auto;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 30px);
  background: white;
  box-shadow: 0 28px 80px rgb(0 0 0 / 24%);
}

.form-field {
  margin-bottom: 11px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--body);
  font-size: 12.5px;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #8a8d84;
  border-radius: 10px;
  outline: 0;
  padding: 12px 14px;
  background: #fbfbf9;
  color: var(--ink);
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
  min-height: 78px;
  resize: vertical;
  line-height: 1.5;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: #686c63;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 3px rgb(30 158 113 / 15%);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgb(194 69 47 / 13%);
}

.field-error {
  min-height: 17px;
  margin: 3px 0 0;
  color: var(--danger);
  font-size: 12.5px;
  line-height: 1.35;
}

.field-help {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
  padding: 14px 20px;
  font-size: 16px;
}

.form-submit:hover {
  background: var(--button-green-hover);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 12.5px;
  line-height: 1.45;
  text-align: center;
}

.form-privacy {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
}

.form-privacy a {
  color: var(--green-dark);
  font-weight: 600;
  text-underline-offset: 2px;
}

.form-success {
  padding: 18px 6px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success:focus {
  outline: 0;
}

.form-success > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  background: #eafaf2;
  color: var(--green-dark);
  font-size: 24px;
}

.form-success h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.form-success p {
  margin: 0;
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.62;
}

.site-footer {
  border-top: 1px solid rgb(255 255 255 / 10%);
  background: var(--night);
  color: rgb(255 255 255 / 50%);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding-block: 28px;
  font-size: 12.5px;
}

.footer-inner strong {
  color: rgb(255 255 255 / 85%);
}

.legal-links {
  display: flex;
  gap: 7px;
}

.footer-operator {
  flex-basis: 100%;
  margin: 5px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 43%);
  font-size: 11.5px;
  line-height: 1.65;
}

.footer-operator a {
  color: rgb(255 255 255 / 68%);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Legal documents */
.legal-document {
  background: var(--warm);
}

.legal-header .nav-shell {
  justify-content: space-between;
}

.legal-back {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 9px;
  color: rgb(255 255 255 / 82%);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  border-color: rgb(255 255 255 / 48%);
  background: rgb(255 255 255 / 7%);
  color: white;
}

.legal-main {
  min-height: 70vh;
  background: var(--warm);
}

.legal-hero {
  padding-block: clamp(52px, 7vw, 80px);
  background: radial-gradient(760px 400px at 82% -20%, rgb(30 158 113 / 38%), transparent 68%),
    var(--night);
  color: white;
}

.legal-hero .eyebrow {
  color: var(--mint);
}

.legal-hero h1 {
  max-width: 17ch;
  margin-bottom: 16px;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.legal-hero p:last-child {
  max-width: 64ch;
  margin-bottom: 0;
  color: rgb(255 255 255 / 65%);
  font-size: 15px;
  line-height: 1.65;
}

.legal-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  gap: clamp(34px, 6vw, 72px);
  justify-content: center;
  padding-block: clamp(42px, 6vw, 72px);
}

.legal-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.legal-toc > p {
  margin-bottom: 11px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  color: var(--body);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--green-dark);
}

.legal-content {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(25px, 5vw, 52px);
  background: white;
  box-shadow: var(--shadow-small);
}

.legal-content section {
  scroll-margin-top: 94px;
}

.legal-content section + section {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 15px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.legal-content h3 {
  margin: 25px 0 9px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}

.legal-content p,
.legal-content li,
.legal-content dd {
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 550;
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-summary,
.legal-notice {
  border-radius: 12px;
  padding: 18px 20px;
  background: #eef8f3;
}

.legal-summary {
  margin-bottom: 38px;
  border-left: 3px solid var(--green);
}

.legal-summary p,
.legal-notice p {
  margin-bottom: 0;
  color: #285344;
  font-size: 14px;
}

.legal-notice {
  margin-block: 20px;
  background: #f4f4ef;
}

.operator-details {
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 0.68fr);
  margin: 20px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.operator-details dt,
.operator-details dd {
  margin: 0;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
}

.operator-details dt {
  background: var(--warm);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 650;
}

.operator-details dd {
  overflow-wrap: anywhere;
}

.operator-details dt:last-of-type,
.operator-details dd:last-of-type {
  border-bottom: 0;
}

.privacy-purpose-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-purpose-list li {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 15px 17px;
}

.privacy-purpose-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.legal-source-note {
  margin-top: 38px;
  color: var(--muted) !important;
  font-size: 12px !important;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  width: min(380px, calc(100% - 40px));
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 11px;
  padding: 13px 16px;
  background: #163027;
  box-shadow: 0 18px 50px rgb(0 0 0 / 24%);
  color: white;
  font-size: 13.5px;
  line-height: 1.45;
}

.toast[hidden] {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms cubic-bezier(0.21, 0.9, 0.35, 1),
    transform 600ms cubic-bezier(0.21, 0.9, 0.35, 1);
}

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

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

  .hero h1 {
    font-size: clamp(37px, 5vw, 48px);
  }

  .deliverable-grid {
    grid-template-columns: minmax(250px, 0.78fr) minmax(400px, 1.22fr);
    gap: 36px;
  }

  .report-paper {
    transform: rotate(-0.7deg);
  }

  .legal-shell {
    grid-template-columns: minmax(0, 780px);
  }

  .legal-toc {
    position: static;
    columns: 2;
  }

  .legal-toc > p {
    column-span: all;
  }

}

@media (max-width: 820px) {
  .nav-shell {
    gap: 12px;
  }

  .js .primary-nav {
    position: absolute;
    top: 100%;
    right: -20px;
    left: -20px;
    display: grid;
    max-height: 0;
    justify-content: stretch;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    background: rgb(12 21 18 / 97%);
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    transition: max-height 250ms ease, opacity 180ms ease, visibility 0s linear 250ms;
  }

  .js .site-header.nav-open .primary-nav {
    max-height: 270px;
    max-height: min(270px, calc(100dvh - 72px));
    padding-block: 10px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .js .primary-nav a {
    min-height: 48px;
    padding: 13px 20px;
  }

  .js .primary-nav a:hover {
    background: rgb(255 255 255 / 5%);
  }

  .brand {
    margin-right: auto;
  }

  .js .menu-toggle {
    position: relative;
    display: grid;
  }

  html:not(.js) .nav-shell {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  html:not(.js) .primary-nav {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-basis: 100%;
    gap: 0;
  }

  html:not(.js) .primary-nav a {
    padding-block: 10px;
  }

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

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

  .hero h1 {
    font-size: clamp(40px, 8vw, 58px);
  }

  .hero-portrait {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 520px);
  }

  .founder-quote {
    grid-row: 3;
    margin-top: 32px;
  }

  .trust-chips {
    grid-row: 4;
  }

  .hero-portrait-frame {
    aspect-ratio: 5 / 4;
  }

  .hero-portrait-image {
    object-position: center 35%;
  }

  .deliverable-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .deliverable-list {
    max-width: 720px;
  }

  .report-stage {
    width: min(100%, 610px);
    margin-inline: auto;
  }

  .report-stats strong {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 66px;
  }

  .site-header {
    min-height: 64px;
  }

  .nav-shell {
    min-height: 64px;
  }

  .button-small {
    min-height: 40px;
    padding: 10px 15px;
  }

  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .step + .step {
    margin-top: 2px;
  }

  .callout-card {
    align-items: stretch;
  }

  .callout-card .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 32px, 1100px);
  }

  .js .primary-nav {
    right: -16px;
    left: -16px;
  }

  .nav-cta-long {
    display: none;
  }

  .nav-cta-short {
    display: inline;
  }

  .nav-cta {
    min-width: 70px;
  }

  .hero-grid {
    gap: 0;
    padding-block: 48px 54px;
  }

  .hero .eyebrow {
    margin-bottom: 17px;
    font-size: 10.5px;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    margin-bottom: 19px;
    font-size: clamp(35px, 10.8vw, 46px);
    line-height: 1.04;
  }

  .hero-lede {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    margin-bottom: 29px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .founder-quote {
    margin-top: 28px;
    padding-left: 0;
  }

  .founder-quote p {
    font-size: 14.5px;
  }

  .founder-quote cite {
    white-space: normal;
  }

  .trust-chips {
    gap: 7px;
  }

  .trust-chips > span {
    min-height: 31px;
    padding: 6px 11px;
    font-size: 10px;
  }

  .hero-portrait-frame {
    aspect-ratio: 4 / 5;
  }

  .section {
    padding-block: 54px;
  }

  .compact-section {
    padding-block: 34px;
  }

  .section-heading {
    margin-bottom: 25px;
  }

  .section-heading h2,
  .application-heading h2 {
    font-size: 29px;
  }

  .ruled-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding-block: 17px;
  }

  .filter-list li {
    padding-block: 16px;
  }

  .steps-grid {
    gap: 27px;
  }

  .deliverable-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding-block: 14px;
  }

  .deliverable-grid {
    gap: 36px;
  }

  .report-paper {
    margin-inline: -2px;
    padding: 15px;
    transform: none;
  }

  .report-header span {
    font-size: 8.5px;
  }

  .report-stats > div {
    padding-inline: 7px;
  }

  .report-stats strong {
    font-size: 12px;
  }

  .report-stats span {
    font-size: 7px;
  }

  .report-caption {
    font-size: 9px;
  }

  .roi-row {
    gap: 6px 14px;
  }

  .roi-row > span {
    min-width: 210px;
  }

  .price-card .price {
    font-size: 41px;
  }

  .slots {
    gap: 4px;
  }

  .slots i {
    width: 18px;
    height: 18px;
    border-radius: 4px;
  }

  .capacity-meter {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-question {
    min-height: 64px;
    gap: 14px;
  }

  .application-heading {
    margin-bottom: 30px;
  }

  .form-card {
    padding: 22px 18px;
  }

  .form-field input,
  .form-field textarea {
    font-size: 16px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .legal-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-operator {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .legal-back {
    padding-inline: 12px;
  }

  .legal-toc {
    columns: 1;
  }

  .legal-content {
    border-radius: 12px;
  }

  .operator-details {
    display: block;
  }

  .operator-details dt,
  .operator-details dd {
    border-bottom: 0;
  }

  .operator-details dt {
    padding-bottom: 3px;
  }

  .operator-details dd {
    padding-top: 3px;
    border-bottom: 1px solid var(--line);
  }

  .operator-details dd:last-of-type {
    border-bottom: 0;
  }
}

@media (max-width: 370px) {
  .nav-shell {
    gap: 8px;
  }

  .nav-cta {
    min-width: 62px;
    padding-inline: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .trust-chips > span {
    font-size: 9.5px;
  }

  .report-paper {
    padding: 12px;
  }

  .report-stats strong {
    font-size: 11px;
  }

  .price-card .price {
    font-size: 38px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-toc,
  .skip-link {
    display: none !important;
  }

  .legal-main,
  .legal-document,
  .legal-hero {
    background: white !important;
    color: black !important;
  }

  .legal-hero {
    padding-block: 24px;
  }

  .legal-hero p:last-child,
  .legal-hero .eyebrow {
    color: #333 !important;
  }

  .legal-shell {
    display: block;
    width: 100%;
    padding: 0;
  }

  .legal-content {
    max-width: none;
    border: 0;
    padding: 20px 0;
    box-shadow: none;
  }

  .legal-content section {
    break-inside: avoid;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
