:root {
  color-scheme: light;
  --ink: #111816;
  --muted: #52605b;
  --paper: #f7f8f4;
  --panel: #ffffff;
  --line: #dfe5dc;
  --green: #19724d;
  --green-strong: #0e5a3d;
  --blue: #214f82;
  --gold: #8a5d12;
  --red: #9d3b3b;
  --shadow: 0 18px 50px rgba(18, 30, 25, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.skip-link {
  background: var(--ink);
  border-radius: 0 0 8px 8px;
  color: white;
  font-weight: 800;
  left: 6vw;
  padding: 10px 14px;
  position: fixed;
  text-decoration: none;
  top: 0;
  transform: translateY(-110%);
  transition: transform 120ms ease;
  z-index: 20;
}

.skip-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  transform: translateY(0);
}

.topbar {
  align-items: center;
  background: rgba(247, 248, 244, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 6vw;
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 6px;
  color: white;
  display: inline-flex;
  font-size: 0.8rem;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

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

.hero {
  min-height: 78svh;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background: #e9eee7;
  border-bottom: 1px solid var(--line);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media {
  bottom: -22%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, minmax(160px, 230px));
  opacity: 0.28;
  position: absolute;
  right: -10%;
  transform: rotate(-5deg);
  width: min(84vw, 1100px);
}

.hero-media img {
  border: 1px solid rgba(17, 24, 22, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-content {
  display: grid;
  gap: 30px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 11vh 6vw 10vh;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--green-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 22px;
  max-width: 850px;
}

.lead {
  color: #26312e;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 690px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

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

.trust-strip span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #35413e;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 12px;
}

.section {
  border-bottom: 1px solid var(--line);
  padding: 72px 6vw;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.section-title {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0;
  line-height: 1;
}

.section-title p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.step,
.tier,
.policy,
.support-row {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.step strong,
.tier strong,
.policy strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.step p,
.tier p,
.policy p,
.support-row p {
  color: var(--muted);
  margin-bottom: 0;
}

.step-number {
  color: var(--green-strong);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-band {
  background: #151d1a;
  color: white;
  overflow: hidden;
  padding: 66px 0;
}

.screen-copy {
  margin: 0 auto 28px;
  max-width: 1180px;
  padding: 0 6vw;
}

.screen-copy p {
  color: #c6d2cc;
  max-width: 720px;
}

.screen-track {
  display: grid;
  gap: 20px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 270px);
  overflow-x: auto;
  padding: 0 6vw 10px;
  scroll-snap-type: x mandatory;
}

.screen {
  scroll-snap-align: start;
}

.screen img {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.screen figcaption {
  color: #c6d2cc;
  font-size: 0.9rem;
  margin-top: 10px;
}

.two-column {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tier .price {
  color: var(--ink);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin: 14px 0;
}

.tier ul,
.policy ul,
.support-list {
  color: var(--muted);
  margin: 18px 0 0;
  padding-left: 18px;
}

.tier li,
.policy li,
.support-list li {
  margin: 9px 0;
}

.notice {
  background: #fff7e7;
  border: 1px solid #e4cf9c;
  border-radius: 8px;
  color: #65440e;
  margin-top: 24px;
  padding: 18px 20px;
}

.footer {
  background: var(--ink);
  color: white;
  padding: 30px 6vw;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.footer a {
  color: #dbe7e1;
  margin-left: 16px;
  text-decoration: none;
}

.language-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.language-links span {
  color: #aebdb7;
  font-size: 0.86rem;
  font-weight: 800;
}

.language-links a {
  border: 1px solid rgba(219, 231, 225, 0.28);
  border-radius: 999px;
  color: #f3f8f5;
  font-size: 0.86rem;
  font-weight: 750;
  margin-left: 0;
  padding: 5px 10px;
}

.page-header {
  padding: 76px 6vw 44px;
}

.page-header .section-inner {
  max-width: 920px;
}

.page-header h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  max-width: 780px;
}

.content {
  padding: 0 6vw 76px;
}

.content .section-inner {
  max-width: 920px;
}

.policy {
  margin-bottom: 18px;
}

.support-row {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.65fr) minmax(220px, 0.35fr);
  margin-bottom: 18px;
}

.support-row a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 14px;
    padding-top: 14px;
    position: static;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-media {
    bottom: -12%;
    gap: 12px;
    grid-template-columns: repeat(5, 140px);
    opacity: 0.2;
    right: -58%;
    width: 900px;
  }

  .hero-content {
    padding-top: 8vh;
  }

  .section-title,
  .workflow,
  .two-column,
  .support-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding-bottom: 52px;
    padding-top: 52px;
  }
}
