@font-face {
  font-family: "Manrope";
  src: url("/static/marketing/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/static/marketing/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/static/marketing/fonts/manrope-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/static/marketing/fonts/cormorant-garamond-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/static/marketing/fonts/cormorant-garamond-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/static/marketing/fonts/cormorant-garamond-500-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #fffdf8;
  --cream: #fbf7ef;
  --sand: #f2dfc3;
  --forest: #064638;
  --forest-deep: #003c30;
  --emerald: #007a50;
  --emerald-bright: #00a86b;
  --gold: #d2a45a;
  --coral: #f45d43;
  --text: #132f28;
  --muted: #5d6862;
  --line: #dfd4c5;
  --on-dark: #fffdf8;
  --page: min(1260px, calc(100% - 64px));
  --content: min(1120px, calc(100% - 64px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--emerald) var(--cream);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.7vw, 66px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.035em;
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 18px;
  z-index: 20;
  padding: 11px 16px;
  background: var(--forest-deep);
  color: var(--on-dark);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  width: var(--page);
  min-height: 82px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  background: var(--cream);
}

.brand,
.footer-brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-deep);
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 46px;
  display: block;
  object-fit: contain;
}

.brand-wordmark,
.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.055em;
}

.brand-wordmark span:last-child,
.footer-wordmark span:last-child {
  color: var(--emerald-bright);
}

.site-header nav {
  display: flex;
  gap: 34px;
  white-space: nowrap;
}

.site-header nav a,
.site-footer a {
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer a:hover {
  color: var(--emerald);
}

.site-header > .button {
  justify-self: end;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  background: var(--emerald);
  box-shadow: 0 10px 28px rgb(0 60 48 / .16);
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.button:hover {
  background: #006b46;
  box-shadow: 0 13px 34px rgb(0 60 48 / .22);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 14px;
}

.button-icon {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.button-small .button-icon {
  width: 17px;
  height: 17px;
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.text-link {
  color: inherit;
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 69vw, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--on-dark);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(0 53 42 / .98) 0%, rgb(0 65 51 / .89) 28%, rgb(0 65 51 / .5) 51%, rgb(0 65 51 / .08) 76%);
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% center;
}

.hero-copy {
  width: var(--page);
  margin: auto;
  padding-block: 86px 100px;
}

.hero h1 {
  max-width: 630px;
  margin-bottom: 28px;
  letter-spacing: -.055em;
  text-shadow: 0 4px 34px rgb(0 24 18 / .25);
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 span {
  font-size: clamp(72px, 9.2vw, 132px);
  font-style: normal;
  font-weight: 800;
  line-height: .83;
}

.hero h1 em {
  margin: 5px 0 0 6px;
  color: #e8b76a;
  font-family: var(--serif);
  font-size: clamp(70px, 8.9vw, 126px);
  font-weight: 500;
  line-height: .82;
}

.hero-lead {
  max-width: 490px;
  margin-bottom: 32px;
  color: rgb(255 253 248 / .92);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero .button {
  background: var(--emerald);
}

.hero .button:hover {
  background: #006b46;
}

.hero .text-link {
  color: var(--on-dark);
}

.live-stats {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px max(32px, calc((100vw - 1120px) / 2));
  border-top: 8px solid var(--coral);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.live-stats div {
  padding: 16px 34px;
  text-align: center;
}

.live-stats div + div {
  border-left: 1px solid var(--gold);
}

.live-stats strong,
.live-stats span {
  display: block;
}

.live-stats strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
}

.live-stats span {
  margin-top: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}

.how {
  width: var(--content);
  margin: auto;
  padding: 108px 0 118px;
}

.how h2 {
  max-width: 760px;
  margin: 0 auto 58px;
  color: var(--forest);
  text-align: center;
}

.how h2::after,
.trust-copy h2::after {
  content: "";
  width: 48px;
  height: 3px;
  display: block;
  margin: 24px auto 0;
  background: var(--gold);
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-width: 0;
  counter-increment: process;
  display: grid;
  grid-template-rows: auto minmax(72px, auto) 180px;
  align-items: start;
  gap: 18px;
  padding: 0 28px;
  text-align: center;
}

.process-list li + li {
  border-left: 1px solid var(--line);
}

.process-list li::before {
  content: counter(process);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--on-dark);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
}

.process-list span {
  max-width: 270px;
  justify-self: center;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.process-list img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.process-list li:first-child img {
  object-position: 70% center;
}

.process-list li:nth-child(2) img {
  object-position: center;
}

.process-list li:last-child img {
  object-position: 42% center;
}

.trust-layout {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(440px, 620px);
  justify-content: center;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  padding: 104px max(32px, calc((100vw - 1180px) / 2));
  background: var(--forest-deep);
  color: var(--on-dark);
}

.trust-copy h2 {
  margin-bottom: 28px;
  color: var(--on-dark);
}

.trust-copy h2::after {
  margin-left: 0;
}

.trust-copy p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgb(255 253 248 / .82);
  font-size: 17px;
  line-height: 1.7;
}

.fact-panel {
  padding: 34px 40px;
  border: 1px solid rgb(210 164 90 / .34);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: 0 28px 70px rgb(0 26 20 / .3);
  color: var(--text);
}

.fact-panel > p {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.fact-panel dl {
  margin: 0;
}

.fact-panel dl div {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.fact-panel dl div:last-child {
  border-bottom: 0;
}

.fact-panel dt {
  font-size: 14px;
  font-weight: 800;
}

.fact-panel dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.safety {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 35px max(32px, calc((100vw - 1120px) / 2));
  background: var(--sand);
  color: var(--text);
}

.safety-icon {
  width: 68px;
  height: 68px;
  filter: invert(21%) sepia(29%) saturate(1037%) hue-rotate(117deg) brightness(89%) contrast(99%);
}

.safety h2 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -.025em;
}

.safety p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.safety .text-link {
  color: var(--forest);
  font-size: 14px;
}

.final-cta {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  min-height: 420px;
  overflow: hidden;
  background: var(--paper);
}

.final-cta-visual {
  min-width: 0;
  margin: 0;
}

.final-cta-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 70% center;
}

.final-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px clamp(44px, 7vw, 100px);
}

.final-cta h2 {
  max-width: 520px;
  color: var(--forest);
}

.final-cta h2 em {
  color: var(--emerald-bright);
  font-weight: 500;
}

.final-cta .button {
  margin-top: 10px;
}

.site-footer {
  width: var(--page);
  margin: auto;
  padding: 32px 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  background: var(--cream);
}

.footer-brand {
  gap: 8px;
}

.footer-brand-mark {
  width: 28px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.footer-wordmark {
  font-size: 19px;
}

.site-footer p {
  max-width: 360px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 10px;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 12px;
}

.legal-page,
.support-page {
  width: min(900px, calc(100% - 48px));
  margin: auto;
  padding: 88px 0 124px;
}

.legal-page h1,
.support-page h1 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.04em;
}

.legal-intro {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.legal-page section,
.support-page section {
  margin-top: 52px;
}

.legal-page section h2,
.support-page section h2 {
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -.025em;
}

.legal-page p,
.legal-page li,
.support-page p,
.support-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-page li + li,
.incident-flow li + li {
  margin-top: 10px;
}

.support-contact {
  margin-top: 20px;
}

.support-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
}

.support-channels a,
.legal-page section a {
  color: var(--emerald);
  font-weight: 800;
  text-underline-offset: 4px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.support-grid div {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.support-grid div:last-child {
  grid-column: 1 / -1;
}

.support-grid h2 {
  margin-bottom: 10px;
}

@media (max-width: 920px) {
  :root {
    --page: min(100% - 40px, 760px);
    --content: min(100% - 40px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 640px;
    align-items: flex-end;
  }

  .hero::after {
    background: linear-gradient(0deg, rgb(0 53 42 / .98) 0%, rgb(0 62 49 / .9) 48%, rgb(0 62 49 / .34) 78%, rgb(0 62 49 / .08) 100%);
  }

  .hero-visual img {
    object-position: 64% center;
  }

  .hero-copy {
    padding: 260px 0 68px;
  }

  .hero h1 span {
    font-size: clamp(68px, 14vw, 104px);
  }

  .hero h1 em {
    font-size: clamp(66px, 13.6vw, 100px);
  }

  .process-list li {
    grid-template-rows: auto minmax(88px, auto) 150px;
    padding-inline: 18px;
  }

  .process-list img {
    height: 150px;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .trust-copy {
    max-width: 620px;
  }

  .safety {
    grid-template-columns: auto 1fr;
  }

  .safety .text-link {
    grid-column: 2;
  }

  .final-cta {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-copy {
    padding: 54px 34px;
  }
}

@media (max-width: 650px) {
  :root {
    --page: calc(100% - 32px);
    --content: calc(100% - 32px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 30px;
    height: 37px;
  }

  .brand-wordmark {
    font-size: 20px;
  }

  .site-header .button {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .site-header .button-icon {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero-copy {
    padding-bottom: 48px;
  }

  .hero h1 {
    margin-bottom: 24px;
  }

  .hero h1 span {
    font-size: clamp(58px, 18vw, 86px);
  }

  .hero h1 em {
    margin-left: 2px;
    font-size: clamp(56px, 17vw, 82px);
  }

  .hero-lead {
    max-width: 360px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .hero-actions .text-link {
    text-align: center;
  }

  .live-stats {
    grid-template-columns: 1fr;
    padding: 18px 24px;
  }

  .live-stats div {
    padding: 18px 10px;
  }

  .live-stats div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .live-stats strong {
    font-size: 46px;
  }

  .how {
    padding: 78px 0 88px;
  }

  .how h2 {
    margin-bottom: 42px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-list li {
    grid-template-rows: auto auto 190px;
    gap: 14px;
    padding: 0;
  }

  .process-list li + li {
    padding-top: 40px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-list img {
    height: 190px;
  }

  .trust-layout {
    gap: 38px;
    padding: 76px 24px;
  }

  .fact-panel {
    padding: 26px 24px;
  }

  .fact-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .safety {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 24px;
  }

  .safety-icon {
    width: 58px;
    height: 58px;
  }

  .safety .text-link {
    grid-column: auto;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-visual {
    height: 300px;
  }

  .final-cta-copy {
    padding: 58px 24px 68px;
  }

  .site-footer {
    flex-direction: column;
    gap: 28px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 15px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-grid div:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
