@font-face {
  font-family: "Söhne Buch";
  src: url("https://framerusercontent.com/assets/vSj2tGG2aXCxupCtJwdve6OzvQ.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Söhne Kräftig";
  src: url("https://framerusercontent.com/assets/rXiXd3JOtbN1ieeBAOVjJ1fctIk.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Fragment Mono";
  src: url("https://fonts.gstatic.com/s/fragmentmono/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5eew.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --page: #f8f9f6;
  --warm: #ece7e4;
  --sand: #d1aa76;
  --brown: #593d27;
  --teal: #16ab92;
  --deep: #25321e;
  --ink: #1a1a1a;
  --muted: #5c6559;
  --panel: #f2f3f1;
  --line: #d9ddd4;
  --cta: #006b48;
  --footer: #00533e;
  --white: #ffffff;
  --max: 1200px;
  --section: 88px;
  --gap: 24px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Söhne Buch", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--cta);
  border: 1px solid var(--cta);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 500;
}

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

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

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

.announcement {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0f453b;
  color: var(--white);
  font-family: "Söhne Buch", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  text-align: center;
  padding: 0 56px;
}

.announcement a span {
  color: #7fcf25;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-icon {
  font-size: 20px;
  color: var(--white);
}

.announcement-close {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 249, 246, .94);
  border-bottom: 1px solid rgba(37, 50, 30, .1);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1280px, calc(100% - 48px));
  height: 64px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Söhne Kräftig", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  color: #111;
}

.brand img {
  height: 18px;
  width: auto;
}

.nav-menu,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.nav-menu {
  justify-content: center;
}

.nav-menu a,
.login {
  color: #263126;
}

.nav-menu a:hover,
.login:hover,
.text-link:hover {
  color: var(--cta);
}

.nav-actions {
  justify-content: end;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--deep);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.button-small {
  min-height: 36px;
  padding-inline: 14px;
}

.button-primary,
.button-outline:hover {
  background: var(--cta);
  color: var(--white);
}

.button-outline {
  color: var(--cta);
  border-color: var(--cta);
  background: transparent;
}

.button-light {
  color: var(--deep);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 564px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .22) 54%, rgba(0, 0, 0, .05)), linear-gradient(0deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .18));
}

.hero-content {
  position: relative;
  padding: 74px 0 86px;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-family: "Söhne Kräftig", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-terms {
  display: block;
  position: relative;
  height: 1.08em;
  color: #7fcf25;
  overflow: hidden;
}

.hero-terms span {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  animation: heroTerm 18s infinite;
  white-space: nowrap;
}

.hero-terms span:nth-child(2) { animation-delay: 3.6s; }
.hero-terms span:nth-child(3) { animation-delay: 7.2s; }
.hero-terms span:nth-child(4) { animation-delay: 10.8s; }
.hero-terms span:nth-child(5) { animation-delay: 14.4s; }

@keyframes heroTerm {
  0%, 16% { opacity: 1; transform: translateY(0); }
  20%, 100% { opacity: 0; transform: translateY(-18%); }
}

.hero-copy {
  max-width: 470px;
  margin: 18px 0 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, .88);
}

.mono-label {
  margin: 0 0 12px;
  font-family: "Fragment Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0;
}

.mono-label.accent {
  color: var(--cta);
}

.mono-label.invert {
  color: rgba(255, 255, 255, .74);
}

.logo-strip {
  position: relative;
  z-index: 4;
  margin-top: -92px;
  background: transparent;
  color: var(--white);
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.logo-strip .wrap {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.logo-strip .mono-label {
  color: rgba(255, 255, 255, .9);
}

.logo-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  flex-wrap: wrap;
}

.logo-row img {
  max-height: 24px;
  max-width: 126px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) grayscale(1);
  opacity: .9;
}

.section {
  padding: var(--section) 0;
  background: var(--page);
}

.logo-strip + .section {
  padding-top: 76px;
}

.section-light {
  background: var(--white);
}

.intro-center {
  text-align: center;
  display: grid;
  justify-items: center;
}

.narrow {
  max-width: 760px;
}

h2,
h3,
p {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: "Söhne Kräftig", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-family: "Söhne Kräftig", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.12;
}

.intro-center > p:not(.mono-label) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
  padding: 10px 14px;
  font-size: 13px;
}

.pill-row a:hover {
  border-color: var(--cta);
  color: var(--cta);
}

.audience-feature {
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: center;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.audience-feature p:not(.mono-label),
.feature-copy p:not(.mono-label),
.security-copy p,
.stats-heading p,
.final-cta-panel p,
.footer-brand p {
  color: var(--muted);
}

.audience-feature img {
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cta);
  font-weight: 500;
  font-size: 14px;
}

.text-link::after {
  content: " ->";
}

.feature-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card {
  background: var(--page);
  display: grid;
  min-height: 520px;
  grid-template-rows: auto 1fr;
  gap: 28px;
  padding: 34px;
}

.feature-card img {
  align-self: end;
  width: 100%;
  max-height: 270px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--panel);
}

.security-band {
  background: var(--warm);
  border-block: 1px solid var(--line);
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 520px;
}

.security-copy {
  padding: 92px 56px 92px 0;
  display: grid;
  align-content: center;
}

.security-visual {
  border-left: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 70px 0 70px 56px;
}

.security-visual img {
  width: min(520px, 100%);
  max-height: 380px;
  object-fit: contain;
}

.testimonial-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.testimonial-media {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  background: var(--deep);
}

figure {
  margin: 0;
}

blockquote {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  font-family: "Söhne Kräftig", Inter, ui-sans-serif, system-ui, sans-serif;
}

figcaption {
  display: grid;
  gap: 2px;
  margin-top: 28px;
  color: var(--muted);
}

figcaption strong {
  color: var(--ink);
}

.logo-row.subdued {
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.stats-cta {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.stats-cta > img,
.stats-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stats-cta > img {
  object-fit: cover;
}

.stats-overlay {
  background: linear-gradient(180deg, rgba(0, 80, 62, .58), rgba(0, 56, 43, .9));
}

.stats-content {
  position: relative;
  display: grid;
  gap: 54px;
  padding: 108px 0 48px;
}

.stats-heading {
  text-align: center;
  width: min(640px, 100%);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.stats-heading p {
  color: rgba(255, 255, 255, .82);
  margin: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .26);
}

.stat-grid div {
  padding: 26px 28px 8px 0;
  border-right: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  gap: 8px;
}

.stat-grid div:last-child {
  border-right: 0;
}

.stat-grid strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.stat-grid span {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 72px;
}

.faq-aside nav {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-aside a {
  color: var(--muted);
  font-size: 14px;
}

.faq-aside a.active,
.faq-aside a:hover {
  color: var(--ink);
}

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

details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-weight: 500;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--cta);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 680px;
}

.final-cta {
  padding: 0 0 var(--section);
}

.final-cta-panel {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  align-content: center;
  gap: 16px;
  padding: 52px 28px;
  color: var(--white);
  background: linear-gradient(115deg, #51bf33 0%, #00845d 50%, #006247 100%);
  border-radius: 8px;
  overflow: hidden;
}

.final-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 92px 100%;
  opacity: .65;
}

.final-cta-panel > * {
  position: relative;
}

.final-cta-panel h2 {
  max-width: 680px;
}

.final-cta-panel p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.site-footer {
  background: linear-gradient(145deg, #006b48 0%, #003f32 100%);
  color: var(--white);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Söhne Kräftig", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  color: var(--white);
}

.footer-logo img {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 250px;
  color: rgba(255, 255, 255, .72);
}

.site-footer h3 {
  font-size: 13px;
  margin: 0 0 16px;
  color: #c9ffde;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .78);
  margin: 10px 0;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

@media (max-width: 980px) {
  :root {
    --section: 64px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    grid-column: 1 / -1;
    display: none;
    justify-content: start;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 18px;
  }

  .nav-menu[data-open="true"] {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .audience-feature,
  .security-grid,
  .testimonial-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .security-copy,
  .security-visual {
    padding: 56px 0;
  }

  .security-visual {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-media {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .wrap,
  .nav-shell {
    width: min(100% - 32px, var(--max));
  }

  .announcement {
    font-size: 11px;
  }

  .hero {
    min-height: 530px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-terms span {
    white-space: normal;
  }

  .hero-copy {
    font-size: 16px;
  }

  .feature-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    padding: 26px;
  }

  .stat-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-right: 0;
  }

  .stats-cta {
    min-height: 760px;
  }

  .final-cta-panel {
    min-height: 360px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }
}
