@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/Quicksand-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #5fbd7a;
  --green-strong: #2f8f50;
  --green-soft: #eaf7ee;
  --ink: #151a17;
  --muted: #5d6860;
  --line: #dfe9e2;
  --paper: #ffffff;
  --paper-soft: #f7faf6;
  --paper-warm: #fbfaf6;
  --accent: #d8a84f;
  --shadow: 0 18px 50px rgba(21, 26, 23, .08);
  --shadow-soft: 0 10px 30px rgba(21, 26, 23, .06);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  transition: transform .2s ease;
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 68px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(223, 233, 226, .88);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--green-strong);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark svg {
  width: 32px;
  height: 32px;
  display: block;
}

.brand-text {
  font-size: 1.08rem;
  letter-spacing: .01em;
  font-weight: 700;
}

.primary-nav {
  display: none;
}

.primary-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: .94rem;
  transition: color .2s ease;
}

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

.header-actions {
  display: none;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  padding: 3px;
}

.lang-button {
  min-width: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  padding: 7px 9px;
}

.lang-button.is-active {
  background: var(--paper);
  color: var(--green-strong);
  box-shadow: 0 1px 8px rgba(21, 26, 23, .08);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 700;
  line-height: 1.15;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.button-primary {
  background: var(--green);
  color: #06220f;
  box-shadow: 0 12px 24px rgba(95, 189, 122, .26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #73ca8c;
  box-shadow: 0 16px 32px rgba(95, 189, 122, .32);
}

.button-secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  padding-top: 54px;
  padding-bottom: 54px;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper-soft) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(95, 189, 122, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 189, 122, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .7), transparent 70%);
}

.hero-grid,
.split-layout,
.founder-grid,
.legal-grid,
.footer-grid {
  display: grid;
  gap: 34px;
}

.hero-grid {
  position: relative;
  align-items: center;
}

.split-layout {
  align-items: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-strong);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 720px;
  font-size: 2.55rem;
  line-height: 1.03;
}

h2 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: 2.1rem;
  line-height: 1.07;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-lead {
  max-width: 650px;
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0 24px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span,
.tag-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  color: var(--muted);
  font-weight: 700;
}

.trust-strip span {
  padding: 8px 10px;
  font-size: .88rem;
}

.hero-panel {
  min-width: 0;
}

.system-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  padding: 18px;
  box-shadow: var(--shadow);
}

.system-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.system-header {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 16px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(95, 189, 122, .16);
}

.system-flow {
  display: grid;
  gap: 10px;
}

.system-flow div {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  padding: 16px;
}

.system-flow strong,
.system-flow span {
  display: block;
}

.system-flow strong {
  margin-bottom: 4px;
}

.system-flow span {
  color: var(--muted);
  font-size: .92rem;
}

.system-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.system-labels span {
  border: 1px solid rgba(95, 189, 122, .35);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-strong);
  font-size: .86rem;
  font-weight: 700;
  padding: 8px 10px;
}

.problem-section,
.check-section,
.services-section,
.proof-section,
.legal-section {
  background: var(--paper-warm);
}

.section-heading p {
  max-width: 680px;
}

.pain-grid,
.check-grid,
.service-grid,
.proof-grid,
.tag-grid,
.use-case-grid {
  display: grid;
  gap: 14px;
}

.mini-card,
.check-card,
.service-card,
.proof-card,
.use-case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.mini-card {
  min-height: 78px;
  padding: 18px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.mini-card::before,
.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(95, 189, 122, .13);
}

.step-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  align-self: start;
}

.step-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

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

.step-list span {
  color: var(--green-strong);
  font-weight: 700;
}

.check-card {
  min-height: 210px;
  padding: 22px;
}

.check-card p {
  margin-bottom: 0;
}

.service-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 189, 122, .58);
  box-shadow: var(--shadow);
}

.card-index {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-strong);
  font-weight: 700;
}

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

.tag-grid span {
  padding: 12px 14px;
}

.use-case-card {
  padding: 22px;
}

.use-case-card h3 {
  margin-bottom: 18px;
}

.use-case-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.use-case-card li {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.use-case-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: 2px;
}

.safety-section {
  background: #f4f8f2;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 15px 16px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.proof-card {
  padding: 20px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.proof-note {
  margin: 18px 0 0;
  font-size: .92rem;
}

.founder-grid {
  align-items: center;
  max-width: 900px;
}

.founder-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 132px;
  height: 132px;
  min-height: 0;
  justify-self: center;
  border: 6px solid var(--paper);
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 0 16px 38px rgba(21, 26, 23, .12);
}

.founder-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 14%;
}

.founder-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green-strong);
  font-size: 4rem;
  font-weight: 700;
}

.founder-media::after {
  content: none;
}

.final-cta {
  background: #173c24;
  color: white;
}

.final-cta .eyebrow {
  color: #9be0ad;
}

.final-cta h2,
.final-cta p {
  color: white;
}

.final-cta p {
  color: rgba(255, 255, 255, .78);
}

.final-cta-inner {
  max-width: 820px;
}

.legal-grid {
  align-items: start;
  max-width: 980px;
}

.legal-page {
  background: var(--paper-warm);
}

.legal-page h1 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.06;
}

.legal-copy {
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  overflow-wrap: anywhere;
  word-break: normal;
}

.legal-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.legal-list div {
  display: grid;
  gap: 5px;
}

.legal-list dt,
.legal-block h2 {
  color: var(--ink);
  font-weight: 700;
}

.legal-list dt {
  font-size: .95rem;
  line-height: 1.35;
}

.legal-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.legal-list + .legal-block,
.legal-block + .legal-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin: 0 0 6px;
  font-size: .95rem;
  line-height: 1.35;
}

.legal-block p,
.legal-bullets li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.legal-block p:last-child,
.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-bullets {
  display: grid;
  gap: 8px;
  margin: 10px 0 16px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-copy a {
  color: var(--green-strong);
  font-weight: 700;
}

.contact-text {
  color: var(--muted);
}

.no-copy-contact,
.no-copy-contact * {
  -webkit-user-select: none;
  user-select: none;
}

.no-copy-contact {
  cursor: default;
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 34px 0 28px;
}

.footer-grid {
  gap: 18px;
}

.site-footer p {
  margin: 14px 0 0;
  max-width: 420px;
  font-size: .95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-weight: 700;
  font-size: .94rem;
}

.floating-cta {
  position: fixed;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 40px;
  border-radius: var(--radius);
  padding: 10px 13px;
  font-size: .92rem;
  box-shadow: 0 14px 34px rgba(21, 26, 23, .18);
}

.floating-cta svg {
  width: 16px;
  height: 16px;
}

.floating-cta-mobile {
  display: none;
}

.copyright {
  color: var(--muted);
  font-size: .92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@media (max-width: 899px) {
  .floating-cta {
    right: 14px;
    bottom: 14px;
    min-height: 38px;
    padding: 9px 11px;
    font-size: .9rem;
  }

  .floating-cta-desktop {
    display: none;
  }

  .floating-cta-mobile {
    display: inline;
  }

  .nav-toggle {
    order: 3;
  }

  .header-actions {
    order: 2;
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    grid-auto-rows: min-content;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-open .primary-nav {
    display: grid;
  }

  .primary-nav a {
    border-radius: var(--radius);
    padding: 13px 12px;
  }

  .language-toggle {
    justify-self: start;
  }
}

@media (min-width: 620px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .pain-grid,
  .check-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tag-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 14px;
    font-size: .9rem;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.13fr) minmax(330px, .87fr);
    gap: 54px;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3rem;
  }

  .system-card {
    padding: 24px;
  }

  .split-layout {
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 64px;
  }

  .founder-grid {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 34px;
  }

  .founder-media {
    width: 150px;
    height: 150px;
    justify-self: start;
  }

  .legal-page h1 {
    font-size: 3.2rem;
  }

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

  .check-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .tag-grid,
  .use-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1160px) {
  h1 {
    font-size: 4.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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