@font-face {
  font-family: Inter;
  src: url("/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --canvas: #f8f5ed;
  --surface: #fffdf8;
  --ink: #181a18;
  --muted: #5f655f;
  --forest: #11734f;
  --dark: #07553a;
  --mint: #2ddaa2;
  --border: #dedbd1;
  --soft: #f1f5ef;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  min-width: 320px;
}
a {
  color: var(--dark);
  text-underline-offset: 5px;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--dark);
  outline-offset: 5px;
}
::selection {
  background: #b8f2d3;
  color: var(--dark);
}
.wrap {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
p {
  line-height: 1.7;
  margin: 0 0 20px;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(44px, 4.7vw, 66px);
  font-weight: 650;
  max-width: 650px;
}
h1 > span {
  color: var(--forest);
}
h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 620;
}
h3 {
  font-size: 23px;
  letter-spacing: -0.025em;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--dark);
  margin-bottom: 20px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--forest);
  border-radius: 50%;
  margin-right: 7px;
  flex-shrink: 0;
}
.small,
.muted,
.compact {
  color: var(--muted);
}
.small {
  font-size: 12px;
  line-height: 1.7;
}
.compact {
  font-size: 13px;
}
.site-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-size: 31px;
  letter-spacing: -1.6px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark > span:first-child,
.mini-brand span {
  color: var(--forest);
  font-weight: 550;
}
.wordmark .logo-dot {
  color: var(--forest);
}
.site-header nav {
  display: flex;
  gap: 30px;
}
.site-header nav a,
.sign-in {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  font-weight: 560;
  text-decoration: none;
  padding-block: 14px;
  color: var(--ink);
}
.site-header nav a:hover,
.sign-in:hover {
  color: var(--forest);
  text-decoration: underline;
}
.sign-in {
  display: flex;
  gap: 22px;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
  padding-block: 76px 62px;
}
.hero .eyebrow {
  margin-bottom: 25px;
}
.lede {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 530px;
  margin-top: 27px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 50px;
  padding: 14px 23px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  line-height: 1.4;
}
.primary {
  background: var(--mint);
  color: var(--dark);
}
.primary:hover {
  background: #9fe870;
}
.secondary {
  background: var(--soft);
  border-color: var(--border);
  color: var(--dark);
}
.secondary:hover {
  background: #e1ecde;
}
.text-link {
  font-size: 13px;
  font-weight: 650;
  display: inline-block;
  min-height: 44px;
  align-content: center;
  line-height: 1.5;
}
.text-link span {
  display: inline-block;
  margin-left: 12px;
}
.release-note {
  font-size: 11px;
  color: var(--muted);
  max-width: 455px;
  margin-top: 22px;
  line-height: 1.65;
}
.release-note strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-visual {
  padding: 18px 0 0;
}
.visual-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 12px 16px;
}
.visual-caption .eyebrow {
  font-size: 10px;
  margin: 0;
}
.tiny-label {
  font-size: 10px;
  color: var(--muted);
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px -26px #07553a44;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 37px;
}
.mini-brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.6px;
}
.pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--dark);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1.5;
}
.overline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-bottom: 8px;
}
.result-card h2 {
  font-size: 23px;
  letter-spacing: -0.04em;
  margin-bottom: 7px;
}
.scenario {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
}
.scenario strong {
  font-size: 21px;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.impact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(110deg, #f0fff4, #fffdf8);
  border: 1px solid #c6dfca;
  border-radius: 13px;
  padding: 20px;
  margin-top: 21px;
  color: var(--dark);
}
.impact div > span {
  font-size: 11px;
  font-weight: 650;
  display: block;
  margin-bottom: 9px;
}
.impact strong {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.045em;
}
.impact strong span {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
  margin-left: 5px;
}
.impact-icon {
  background: var(--dark);
  color: var(--surface);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  align-content: center;
}
.result-reading {
  font-size: 11px;
  line-height: 1.65;
  color: var(--muted);
  margin: 13px 3px 21px;
  max-width: 300px;
}
.sample-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
}
.under-card {
  color: var(--muted);
  font-size: 11px;
  padding: 16px 12px 0;
}
.under-card span {
  color: var(--forest);
  font-size: 19px;
  margin-right: 8px;
}
.principles {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-block: 1px solid var(--border);
  padding-block: 22px;
  color: var(--muted);
  font-size: 12px;
}
.principles span:before {
  content: "+";
  color: var(--forest);
  font-size: 17px;
  margin-right: 13px;
}
.section {
  padding-block: 90px;
}
.section-heading {
  max-width: 590px;
  margin-bottom: 35px;
}
.section-heading h2 {
  margin-bottom: 23px;
}
.section-heading > p:not(.eyebrow, .pill) {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
}
.goal-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.goal-card {
  appearance: none;
  text-align: left;
  cursor: pointer;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.goal-card[aria-pressed="true"] {
  background: var(--soft);
  border-color: var(--forest);
  box-shadow: inset 0 0 0 1px var(--forest);
}
.goal-card:hover {
  border-color: var(--forest);
}
.card-number {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--forest);
  margin-bottom: 10px;
}
.card-number span {
  font-size: 20px;
}
.goal-card strong {
  font-size: 19px;
  letter-spacing: -0.03em;
  line-height: 1.35;
}
.goal-card > span:not(.card-number, .goal-action) {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.goal-card .goal-action {
  font-size: 10px;
  font-weight: 650;
  color: var(--dark);
  margin-top: auto;
  padding-top: 13px;
}
.goal-insight {
  font-size: 12px;
  color: var(--muted);
  margin: 20px 0 0;
  padding-left: 17px;
  border-left: 2px solid var(--forest);
  min-height: 42px;
}
.goal-insight strong {
  color: var(--dark);
}
.sample-section {
  background: #eff2e9;
  border-block: 1px solid var(--border);
}
.sample-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 45px 80px;
}
.sample-layout .section-heading {
  margin-bottom: 0;
}
.sample-layout .section-heading .small {
  font-size: 12px;
  max-width: 350px;
}
.bridge-panel {
  background: var(--surface);
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 20px;
}
.bridge-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.bridge-heading h3 {
  font-size: 18px;
  letter-spacing: -0.025em;
}
.bridge-heading > span {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}
.bridge {
  margin: 23px 0 18px;
  font-size: 12px;
}
.bridge > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.bridge dt {
  color: var(--muted);
}
.bridge dd {
  margin: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.bridge .bridge-total {
  border: 0;
  padding: 18px 0 0;
  font-size: 16px;
}
.bridge-total dt,
.bridge-total dd {
  font-weight: 700;
  color: var(--dark);
}
.bridge-panel .small {
  font-size: 10px;
  margin-bottom: 0;
}
.result-context {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 35px;
  border-top: 1px solid #cdd5c9;
  padding-top: 28px;
}
.result-context p {
  font-size: 12px;
  margin: 0;
  color: var(--muted);
}
.result-context .eyebrow {
  font-size: 10px;
}
.result-context .small {
  font-size: 10px;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
  padding: 0;
  margin: 42px 0 0;
}
.step-number {
  border: 1px solid #b9cbb9;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  width: 37px;
  height: 37px;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 25px;
}
.steps li {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.steps h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}
.planning-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 75px;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  align-items: center;
}
.planning-panel h2 {
  font-size: 34px;
  margin-bottom: 20px;
}
.planning-panel p:not(.eyebrow, .small) {
  font-size: 14px;
  color: var(--muted);
}
.range-visual {
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--soft);
  border-radius: 15px;
}
.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--dark);
}
.range-line {
  height: 2px;
  background: #93bda0;
  margin: 22px 4px 29px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.range-line i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--forest);
}
.range-line i:nth-child(2) {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 6px #dbeada;
}
.range-visual p {
  font-weight: 650;
  color: var(--dark) !important;
}
.range-visual ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 2.1;
}
.professional-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.pro-copy h2 {
  margin-bottom: 25px;
}
.pro-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
}
.pro-note {
  background: var(--dark);
  color: var(--surface);
  border-radius: 20px;
  padding: 36px;
}
.pro-note .eyebrow {
  color: #a8ddbd;
}
.pro-note h3 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.pro-note .small {
  color: #bbcebf;
  font-size: 10px;
}
.check-list {
  list-style: none;
  padding: 0;
  font-size: 12px;
  line-height: 1.6;
  margin: 28px 0 0;
}
.check-list li {
  border-top: 1px solid #ffffff25;
  padding: 13px 0;
}
.check-list li:before {
  content: "↳";
  color: var(--mint);
  margin-right: 11px;
}
.story-section {
  padding: 70px 0;
  background: #ebece2;
  border-block: 1px solid var(--border);
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}
.story-layout p {
  font-size: 14px;
  color: var(--muted);
}
.story-layout .story-lede {
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.story-layout .small {
  font-size: 10px;
  max-width: 460px;
  margin-top: 12px;
  margin-bottom: 0;
}
.price-card {
  padding: 30px 27px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: start;
}
.price-card h3 {
  font-size: 43px;
  margin-bottom: 24px;
}
.price-card h3 span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0;
  font-weight: 450;
}
.price-card > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 27px;
}
.price-card .button {
  margin-top: auto;
  width: 100%;
  font-size: 12px;
  padding-inline: 14px;
}
.pricing-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 20px;
  max-width: 920px;
}
.faq-layout {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 100px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
details {
  border-bottom: 1px solid var(--border);
}
summary {
  cursor: pointer;
  padding: 22px 24px 22px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}
details p {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 10px;
  max-width: 530px;
}
summary::marker {
  color: var(--forest);
}
.final-cta {
  padding: 55px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
}
.final-cta h2 {
  font-size: 45px;
}
.final-cta > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}
.final-cta .actions {
  justify-content: center;
  margin-top: 25px;
}
.final-cta .small {
  font-size: 11px !important;
  margin-bottom: 0;
}
.site-footer {
  padding-block: 58px 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}
.site-footer > div > p {
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0;
}
.site-footer nav {
  display: flex;
  justify-content: flex-end;
  align-items: start;
  gap: 8px 22px;
  flex-wrap: wrap;
}
.site-footer nav a {
  font-size: 11px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer-fine {
  grid-column: 1/-1;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.footer-fine p {
  font-size: 10px !important;
  line-height: 1.7;
  margin: 8px 0 !important;
}
.footer-fine a {
  display: inline-block;
  min-height: 24px;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  padding: 15px;
  background: var(--surface);
  z-index: 20;
  border-radius: 8px;
}
.skip-link:focus {
  top: 10px;
}
.error-page {
  padding: 100px 0;
  max-width: 720px;
}
.error-page h1 {
  margin-bottom: 24px;
}
@media (min-width: 1400px) {
  .hero {
    gap: 90px;
  }
}
@media (max-width: 1000px) {
  .site-header nav {
    gap: 18px;
  }
  .hero {
    gap: 30px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .result-card {
    padding: 23px;
  }
  .sample-layout {
    gap: 35px;
  }
  .professional-section,
  .story-layout,
  .faq-layout {
    gap: 45px;
  }
  .planning-panel {
    gap: 35px;
    padding: 32px;
  }
  .goal-card {
    padding: 21px;
  }
  .goal-card strong {
    font-size: 17px;
  }
  .bridge-heading {
    display: block;
  }
  .bridge-heading > span {
    display: block;
    margin-top: 10px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    min-height: 0;
    padding-block: 20px 14px;
    gap: 14px;
    flex-wrap: wrap;
  }
  .wordmark {
    font-size: 29px;
  }
  .site-header nav {
    order: 3;
    flex-basis: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .site-header nav a {
    font-size: 11px;
  }
  .sign-in {
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 43px 38px;
  }
  .hero h1 {
    font-size: clamp(40px, 8.3vw, 60px);
    max-width: 560px;
  }
  .hero .lede {
    font-size: 15px;
    margin-top: 22px;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
  }
  .release-note {
    font-size: 11px;
  }
  .actions {
    gap: 18px;
  }
  .button {
    min-height: 50px;
  }
  .hero-visual {
    max-width: 510px;
    width: 100%;
    justify-self: center;
    padding: 0;
  }
  .visual-caption {
    margin-inline: 3px;
  }
  .result-card {
    padding: 25px;
  }
  .card-top {
    margin-bottom: 29px;
  }
  .principles {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 10px;
    padding-block: 17px;
    justify-content: flex-start;
  }
  .principles span:before {
    margin-right: 7px;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .section-heading > p:not(.eyebrow, .pill) {
    font-size: 14px;
  }
  .goal-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .goal-card {
    padding: 24px;
    gap: 12px;
  }
  .goal-card strong {
    font-size: 21px;
  }
  .card-number {
    margin-bottom: 0;
  }
  .goal-card .goal-action {
    font-size: 11px;
    padding-top: 8px;
  }
  .goal-insight {
    min-height: 65px;
  }
  .sample-layout {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .sample-layout .section-heading .small {
    max-width: 100%;
  }
  .bridge-heading {
    display: flex;
    align-items: center;
  }
  .bridge-heading > span {
    margin: 0;
  }
  .bridge-panel {
    padding: 22px;
  }
  .bridge-heading h3 {
    font-size: 17px;
  }
  .result-context {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 22px;
  }
  .result-context .small {
    font-size: 11px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .steps li {
    padding-top: 22px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 17px;
  }
  .steps p {
    grid-column: 2;
  }
  .step-number {
    grid-row: 1/3;
    margin: 0;
  }
  .steps h3 {
    font-size: 20px;
    margin: 5px 0 12px;
  }
  .planning-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 27px;
  }
  .planning-panel h2 {
    font-size: 30px;
  }
  .range-visual {
    padding: 26px;
  }
  .professional-section,
  .story-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .pro-copy h2 {
    font-size: 34px;
  }
  .pro-note {
    padding: 28px;
  }
  .story-section {
    padding-block: 49px;
  }
  .story-layout {
    gap: 28px;
  }
  .story-layout h2 {
    font-size: 34px;
  }
  .price-card {
    padding: 28px;
  }
  .price-card h3 {
    margin-bottom: 18px;
  }
  .price-card .eyebrow {
    margin-bottom: 14px;
  }
  .price-card .button {
    width: auto;
    min-width: 205px;
  }
  .pricing-note {
    font-size: 11px;
  }
  .faq-layout .section-heading {
    margin: 0;
  }
  summary {
    font-size: 13px;
  }
  .final-cta {
    padding: 37px 23px;
  }
  .final-cta h2 {
    font-size: 34px;
  }
  .final-cta > p:not(.eyebrow) {
    font-size: 13px;
  }
  .final-cta .actions {
    gap: 16px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 43px;
  }
  .site-footer nav {
    justify-content: flex-start;
    gap: 0 24px;
  }
  .footer-fine {
    padding-top: 15px;
  }
  .footer-fine p {
    font-size: 10px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
