:root {
  color-scheme: light;
  --ink: #15211f;
  --muted: #5c6966;
  --paper: #f5f7f5;
  --surface: #ffffff;
  --line: #d9e0dd;
  --forest: #0b2f2a;
  --forest-soft: #dfece7;
  --blue: #175bd3;
  --blue-dark: #1148aa;
  --amber: #d99221;
  --coral: #c85445;
  --max-width: 1180px;
  --shadow: 0 14px 36px rgba(18, 42, 37, 0.09);
}

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

html {
  min-width: 320px;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(23, 91, 211, 0.45);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 720;
}

h2 {
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 680;
}

p {
  margin-bottom: 18px;
  color: var(--muted);
}

.site-container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #c9e8de;
}

.page-band {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(217, 224, 221, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 7px;
  background: var(--forest);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.brand__name {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name strong {
  font-size: 16px;
}

.brand__name small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-menu nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-menu nav a,
.language-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #3e4d49;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.site-menu nav a {
  padding: 0 12px;
}

.site-menu nav a:hover,
.site-menu nav a[aria-current="page"] {
  background: #eef3f1;
  color: var(--forest);
}

.language-link {
  min-width: 48px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.language-link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.menu-button,
.menu-backdrop {
  display: none;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 76px));
  overflow: hidden;
  align-items: center;
  background: var(--forest);
}

.home-hero__image,
.home-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
  object-position: center center;
}

.home-hero__shade {
  background: rgba(3, 25, 22, 0.58);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding: 88px 0 126px;
}

.home-hero__content h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 64px;
}

.home-hero__content > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 32px;
  color: #e5efeb;
  font-size: 20px;
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 720;
}

.button--primary {
  background: var(--blue);
  color: #ffffff;
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--secondary {
  border-color: #b8c5c1;
  background: transparent;
  color: var(--forest);
}

.button--secondary:hover {
  border-color: var(--forest);
  background: #ffffff;
}

.button--on-dark {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(8, 34, 29, 0.5);
  color: #ffffff;
}

.button--on-dark:hover {
  border-color: #ffffff;
  background: rgba(8, 34, 29, 0.78);
}

.portfolio-band {
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.section-heading--split p:last-child {
  margin-bottom: 6px;
}

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

.product-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--forest);
  border-radius: 8px;
  background: var(--surface);
}

.product-card--receipt {
  border-top-color: var(--blue);
}

.product-card--matchup {
  border-top-color: var(--coral);
}

.product-card__mark {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 17px;
  font-weight: 800;
}

.product-card--receipt .product-card__mark {
  background: #e6eefc;
}

.product-card--matchup .product-card__mark {
  background: #f7e7e3;
}

.product-card__mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card__body p:not(.eyebrow) {
  flex: 1;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  align-self: flex-start;
  color: var(--blue);
  font-weight: 720;
}

.text-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.principles-band {
  background: var(--forest);
}

.principles-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 96px;
}

.principles-band h2,
.principles-band h3 {
  color: #ffffff;
}

.principles-band .section-heading .eyebrow {
  color: #8dd2bd;
}

.principles-list {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.principle-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.principle-item > span {
  color: #8dd2bd;
  font-size: 13px;
  font-weight: 750;
}

.principle-item p {
  max-width: 650px;
  margin-bottom: 0;
  color: #cddbd6;
}

.final-cta-band {
  background: #e8edf5;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 64px;
}

.final-cta > div:first-child {
  max-width: 700px;
}

.final-cta p {
  margin-bottom: 0;
}

.page-intro {
  padding: 112px 0 88px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.page-intro__inner {
  max-width: var(--max-width);
}

.page-intro h1 {
  max-width: 900px;
}

.page-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: #4e5c59;
  font-size: 20px;
}

.product-detail-band {
  background: var(--paper);
}

.product-list {
  display: grid;
  gap: 20px;
}

.product-card--detailed {
  display: grid;
  min-height: 0;
  grid-template-columns: 90px minmax(0, 1fr);
  padding: 40px;
}

.product-card--detailed .product-card__mark {
  margin-bottom: 0;
}

.product-card--detailed .product-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 0 56px;
}

.product-card--detailed .eyebrow,
.product-card--detailed h2,
.product-card--detailed .text-link {
  grid-column: 1;
}

.product-card--detailed p:not(.eyebrow) {
  grid-column: 1;
  margin-bottom: 12px;
}

.product-points {
  grid-column: 2;
  grid-row: 1 / span 5;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid var(--line);
  color: #3f4e4b;
}

.product-points li::before {
  position: absolute;
  top: 18px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.trust-band {
  background: var(--paper);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: start;
  gap: 72px;
}

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

.trust-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.trust-item > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.trust-item h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.trust-item p {
  max-width: 680px;
  margin-bottom: 0;
}

.trust-note {
  position: sticky;
  top: 108px;
  padding: 28px;
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trust-note h2 {
  font-size: 26px;
}

.trust-note p:last-child {
  margin-bottom: 0;
}

.company-band {
  background: var(--paper);
}

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

.company-story article {
  padding-top: 28px;
  border-top: 3px solid var(--forest);
}

.company-story article:last-child {
  border-top-color: var(--blue);
}

.company-story p:last-child {
  margin-bottom: 0;
}

.facts-grid {
  display: grid;
  margin-top: 80px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}

.fact strong {
  font-size: 18px;
  line-height: 1.35;
}

.contact-band {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 80px;
}

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

.contact-list > a {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}

.contact-list > a:hover strong {
  color: var(--blue);
}

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

.contact-list strong {
  font-size: 18px;
}

.product-contact {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.product-contact > a {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.product-contact > a span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.contact-note {
  margin: 24px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--amber);
  font-size: 14px;
}

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

.legal-copy {
  max-width: 820px;
}

.legal-copy section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-copy section:first-child {
  padding-top: 0;
}

.legal-copy h2 {
  font-size: 25px;
}

.legal-copy p {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid #294d47;
  background: #08241f;
  color: #ffffff;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 96px;
  padding-top: 72px;
  padding-bottom: 64px;
}

.brand--footer .brand__mark {
  background: #ffffff;
  color: var(--forest);
}

.brand--footer .brand__name small {
  color: #a9c1ba;
}

.footer-brand p {
  max-width: 390px;
  margin: 26px 0 0;
  color: #b9cec8;
}

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

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links strong {
  margin-bottom: 14px;
  color: #8dd2bd;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: #dce9e5;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #294d47;
  color: #9fb6af;
  font-size: 13px;
}

@media (max-width: 1040px) {
  .site-header__inner {
    min-height: 70px;
  }

  .menu-button {
    position: relative;
    z-index: 53;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #ffffff;
    cursor: pointer;
  }

  .menu-button span {
    width: 19px;
    height: 2px;
    background: var(--ink);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-open .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-menu {
    position: fixed;
    z-index: 52;
    top: 0;
    right: 0;
    display: flex;
    width: min(420px, calc(100vw - 28px));
    height: 100dvh;
    padding: 92px 24px 28px;
    transform: translateX(105%);
    overflow-y: auto;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
    background: #ffffff;
    box-shadow: -18px 0 42px rgba(11, 47, 42, 0.16);
    pointer-events: none;
    transition: transform 180ms ease, visibility 0s linear 180ms;
  }

  .menu-open .site-menu {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-menu nav {
    align-items: stretch;
    flex-direction: column;
  }

  .site-menu nav a {
    min-height: 54px;
    justify-content: flex-start;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 16px;
  }

  .language-link {
    width: 100%;
  }

  .menu-backdrop {
    position: fixed;
    z-index: 51;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(4, 22, 19, 0.42);
    cursor: pointer;
  }

  .menu-open .menu-backdrop {
    display: block;
  }

  .home-hero {
    min-height: 690px;
  }

  .home-hero__image {
    object-position: 58% center;
  }

  .home-hero__shade {
    background: rgba(3, 25, 22, 0.66);
  }

  .home-hero__content h1 {
    max-width: 690px;
    font-size: 54px;
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .principles-layout,
  .trust-layout {
    gap: 56px;
  }

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

  .fact:nth-child(2) {
    border-right: 0;
  }

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

  .site-footer__top {
    gap: 56px;
  }
}

@media (max-width: 760px) {
  .site-container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .page-band {
    padding: 68px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand__name small {
    display: none;
  }

  .home-hero {
    min-height: 650px;
  }

  .home-hero__image {
    object-position: 66% center;
  }

  .home-hero__shade {
    background: rgba(3, 25, 22, 0.74);
  }

  .home-hero__content {
    padding: 72px 0 104px;
  }

  .home-hero__content h1 {
    max-width: 560px;
    font-size: 44px;
  }

  .home-hero__content > p:not(.eyebrow),
  .page-lead {
    font-size: 18px;
  }

  .section-heading--split,
  .principles-layout,
  .final-cta,
  .trust-layout,
  .company-story,
  .contact-layout,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .principles-layout,
  .final-cta,
  .trust-layout,
  .company-story,
  .contact-layout {
    gap: 36px;
  }

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

  .product-card:last-child {
    grid-column: auto;
  }

  .product-card {
    min-height: 0;
  }

  .product-card__mark {
    margin-bottom: 34px;
  }

  .page-intro {
    padding: 80px 0 64px;
  }

  .product-card--detailed {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    padding: 26px;
  }

  .product-card--detailed .product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .product-points {
    margin: 12px 0 18px;
  }

  .trust-note {
    position: static;
  }

  .facts-grid {
    margin-top: 54px;
  }

  .contact-list > a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .contact-list strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer__top {
    gap: 48px;
  }

  .footer-links {
    gap: 22px;
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    min-height: 64px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .home-hero {
    min-height: 620px;
  }

  .home-hero__content h1 {
    font-size: 38px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .product-card--detailed {
    display: flex;
    flex-direction: column;
  }

  .product-card--detailed .product-card__mark {
    margin-bottom: 24px;
  }

  .principle-item,
  .trust-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
  }

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

  .fact,
  .fact:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

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

  .footer-links > div:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}

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

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