:root {
  color-scheme: light;
  --paper: #f4f0e7;
  --paper-light: #fbfaf7;
  --paper-deep: #e8e0d2;
  --ink: #14201b;
  --muted: #5e6a64;
  --forest: #1e5f42;
  --forest-deep: #123f31;
  --forest-soft: #dfeae2;
  --gold: #d8a12a;
  --line: rgba(20, 32, 27, 0.16);
  --line-light: rgba(251, 250, 247, 0.18);
  --white: #fbfaf7;
  --shadow: 0 34px 90px rgba(20, 32, 27, 0.16);
  --display-font: "Avenir Next", "Helvetica Neue", "SF Pro Display", Arial, sans-serif;
  --body-font: Inter, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --content-width: 1180px;
  --page-gutter: clamp(22px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--forest);
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 76px;
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-color: var(--line);
  background: rgba(244, 240, 231, 0.9);
  box-shadow: 0 12px 36px rgba(20, 32, 27, 0.07);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display-font);
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand img,
.footer-brand img {
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(30, 95, 66, 0.14);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 44px);
  color: rgba(20, 32, 27, 0.74);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a,
.site-footer nav a {
  position: relative;
  padding: 9px 0;
}

.site-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(20, 32, 27, 0.18);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.52);
}

.language-option {
  min-width: 48px;
  min-height: 30px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 760;
  transition: color 160ms ease, background 160ms ease;
}

.language-option.is-active {
  color: var(--white);
  background: var(--forest-deep);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--forest-deep);
  box-shadow: 0 14px 34px rgba(18, 63, 49, 0.18);
}

.button-quiet {
  color: var(--ink);
  border-color: rgba(20, 32, 27, 0.28);
  background: rgba(251, 250, 247, 0.44);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest);
  box-shadow: 0 18px 42px rgba(18, 63, 49, 0.23);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--ink);
  background: rgba(251, 250, 247, 0.72);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(216, 161, 42, 0.56);
  outline-offset: 3px;
}

main {
  overflow: clip;
}

#product,
#how,
#trust {
  scroll-margin-top: 82px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #ddd0bc;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroScale 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 240, 231, 0.98) 0%, rgba(244, 240, 231, 0.9) 29%, rgba(244, 240, 231, 0.55) 49%, rgba(244, 240, 231, 0.08) 73%),
    linear-gradient(180deg, rgba(244, 240, 231, 0.55), transparent 20%, transparent 72%, rgba(244, 240, 231, 0.42));
}

.hero-inner {
  position: relative;
  width: min(1400px, calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding: 132px 0 84px;
}

.hero-copy {
  max-width: 740px;
  animation: heroEnter 900ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 0;
  color: var(--forest-deep);
  font-family: var(--display-font);
  font-size: clamp(5.2rem, 10vw, 9.6rem);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.hero-statement {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  font-weight: 620;
  letter-spacing: -0.052em;
  line-height: 1.02;
  white-space: pre-line;
}

.hero-body {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(20, 32, 27, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 520;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions .button {
  min-height: 50px;
  padding-inline: 22px;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 18px;
  margin: 0;
  color: rgba(20, 32, 27, 0.7);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.positioning,
.product-section,
.workflow-section,
.closing {
  width: min(var(--content-width), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
}

.positioning {
  display: grid;
  grid-template-columns: minmax(200px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  padding: 112px 0 104px;
  border-bottom: 1px solid var(--line);
}

.positioning .section-label {
  padding-top: 12px;
}

.positioning h2,
.section-heading h2,
.trust-copy h2,
.closing h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.7rem, 5.3vw, 5.35rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.positioning h2 {
  max-width: 900px;
}

.positioning > p:last-of-type {
  grid-column: 2;
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.positioning-visual {
  grid-column: 1 / -1;
  margin: 72px 0 0;
}

.positioning-visual picture,
.product-visual picture {
  display: block;
}

.positioning-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.positioning-visual figcaption {
  max-width: 640px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.product-section {
  padding: 116px 0 124px;
}

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

.section-heading .section-label,
.trust-copy .section-label,
.closing .section-label {
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.74;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: start;
  margin-top: 76px;
}

.product-visual {
  position: sticky;
  top: 104px;
  margin: 0;
  transform: translate3d(0, var(--depth-y, 0), 0);
  transition: transform 100ms linear;
}

.product-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-visual figcaption {
  max-width: 580px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

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

.feature-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.feature-row > span,
.workflow-list > li > span {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-row h3,
.workflow-list h3,
.principle-list h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.42rem;
  font-weight: 670;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.feature-row p,
.workflow-list p,
.principle-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.workflow-section {
  padding: 112px 0 124px;
  border-top: 1px solid var(--line);
}

.section-heading.compact {
  max-width: 780px;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 68px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.workflow-list li {
  min-height: 280px;
  padding: 30px 28px 34px;
  border-right: 1px solid var(--line);
}

.workflow-list li:first-child {
  padding-left: 0;
}

.workflow-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.workflow-list h3 {
  margin-top: 48px;
  font-size: 1.7rem;
}

.trust-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 10%, rgba(216, 161, 42, 0.12), transparent 26rem),
    linear-gradient(135deg, #102d24, #0d1c17 64%);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 126px);
  align-items: center;
  width: min(var(--content-width), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding: 118px 0 126px;
}

.trust-visual {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto;
}

.trust-visual::before {
  position: absolute;
  inset: 12% -16% -10%;
  z-index: 0;
  content: "";
  border: 1px solid rgba(216, 161, 42, 0.24);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.trust-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.42);
  transform: translateY(0);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-visual:hover img {
  transform: translateY(-5px);
}

.trust-copy .section-label {
  color: #e3b858;
}

.trust-copy h2 {
  max-width: 760px;
}

.trust-intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(251, 250, 247, 0.7);
  font-size: 1.05rem;
  line-height: 1.74;
}

.principle-list {
  margin-top: 52px;
  border-top: 1px solid var(--line-light);
}

.principle-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
}

.principle-list h3 {
  font-size: 1.1rem;
}

.principle-list p {
  margin: 0;
  color: rgba(251, 250, 247, 0.65);
}

.closing {
  display: flex;
  min-height: 620px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  text-align: center;
}

.closing h2 {
  max-width: 960px;
}

.closing > p:not(.section-label) {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.closing .button {
  min-height: 50px;
  margin-top: 34px;
  padding-inline: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  width: min(var(--content-width), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.js .reveal-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScale {
  from {
    opacity: 0.82;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero-inner {
    width: min(760px, calc(100% - (2 * var(--page-gutter))));
    margin-left: var(--page-gutter);
  }

  .positioning {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .positioning > p:last-of-type {
    grid-column: 1;
    margin-top: 0;
  }

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

  .product-visual {
    position: relative;
    top: auto;
    max-width: 820px;
    transform: none;
  }

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

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

  .workflow-list li:nth-child(2) {
    border-right: 0;
  }

  .workflow-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .workflow-list li:nth-child(3) {
    padding-left: 0;
  }

  .trust-inner {
    grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  }

  .principle-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 700px) {
  :root {
    --page-gutter: 20px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 64px;
    gap: 12px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

  .language-switcher {
    min-height: 36px;
  }

  .language-option {
    min-width: 44px;
    min-height: 28px;
    padding-inline: 8px;
  }

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

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

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(244, 240, 231, 0.94) 0%, rgba(244, 240, 231, 0.84) 51%, rgba(244, 240, 231, 0.36) 74%, rgba(244, 240, 231, 0.2) 100%),
      linear-gradient(90deg, rgba(244, 240, 231, 0.93), rgba(244, 240, 231, 0.34));
  }

  .hero-inner {
    width: calc(100% - (2 * var(--page-gutter)));
    margin: 0 auto;
    padding: 118px 0 56px;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 5.8rem);
  }

  .hero-statement {
    margin-top: 28px;
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .hero-body {
    margin-top: 22px;
    font-size: 0.98rem;
  }

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

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

  .hero-proof {
    display: none;
  }

  .positioning,
  .product-section,
  .workflow-section {
    padding: 76px 0 82px;
  }

  .positioning h2,
  .section-heading h2,
  .trust-copy h2,
  .closing h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .product-layout {
    gap: 48px;
    margin-top: 48px;
  }

  .positioning-visual {
    margin-top: 30px;
  }

  .positioning-visual img {
    border-radius: 5px;
  }

  .product-visual img {
    border-radius: 5px;
  }

  .feature-row {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 26px 0 30px;
  }

  .workflow-list {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .workflow-list li,
  .workflow-list li:first-child,
  .workflow-list li:last-child,
  .workflow-list li:nth-child(3) {
    min-height: 0;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .workflow-list h3 {
    margin-top: 26px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 68px;
    padding: 84px 0 90px;
  }

  .trust-visual {
    width: min(300px, 80%);
  }

  .trust-copy {
    order: -1;
  }

  .principle-list {
    margin-top: 40px;
  }

  .closing {
    min-height: 560px;
    padding: 84px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 34px;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-footer p {
    grid-column: 1;
    grid-row: auto;
  }
}

@supports not (backdrop-filter: blur(18px)) {
  .site-header.is-scrolled {
    background: rgba(244, 240, 231, 0.98);
  }
}

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

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

  .hero-copy,
  .hero-image,
  .js .reveal-section,
  .product-visual {
    opacity: 1;
    transform: none;
  }
}
