:root {
  --bg: #0f1412;
  --panel: #f4f1eb;
  --ink: #f7f4ed;
  --ink-dark: #17201c;
  --muted: #aeb8b1;
  --muted-dark: #5c6760;
  --line: rgba(247, 244, 237, 0.16);
  --line-dark: rgba(23, 32, 28, 0.14);
  --green: #dfe9d8;
  --green-deep: #214631;
  --blue: #173b5c;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(247, 244, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 78% 0%, rgba(95, 143, 112, 0.2), transparent 34rem),
    linear-gradient(180deg, #0f1412 0%, #151b18 42%, #f4f1eb 42%, #f4f1eb 100%);
  background-size: 64px 64px, 64px 64px, auto, auto;
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(15, 20, 18, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.hero,
.section {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: center;
  min-height: 560px;
}

.hero > *,
.section > * {
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: #91b49b;
  font-size: 13px;
  font-weight: 850;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-card {
  padding: 26px;
  color: var(--ink-dark);
  background: var(--panel);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
}

.hero-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 18px;
}

.hero-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li,
.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted-dark);
  line-height: 1.5;
}

.hero-card li + li,
.check-list li + li {
  margin-top: 10px;
}

.hero-card li::before,
.check-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green-deep);
  border-radius: 50%;
  content: "";
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.btn.primary {
  color: #07110c;
  background: var(--green);
}

.btn.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
}

.light {
  color: var(--ink-dark);
  background: var(--panel);
}

.grid-3,
.grid-2,
.process-grid {
  display: grid;
  gap: 14px;
}

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

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

.card {
  padding: 24px;
  background: #fffaf2;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
}

.card p,
.section-lead,
.faq p,
.privacy-text p,
.privacy-text li {
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.56;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 18px 20px;
  background: #fffaf2;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink-dark);
  font-weight: 850;
}

.faq p {
  margin: 12px 0 0;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  color: var(--ink);
  background: var(--green-deep);
  border-radius: 18px;
}

.cta h2 {
  color: var(--ink);
}

.site-footer {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 42px;
  color: var(--muted);
}

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

:focus-visible {
  outline: 3px solid #dfe9d8;
  outline-offset: 4px;
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
  }

  .hero,
  .grid-2,
  .grid-3,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero,
  .section,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 36px;
  }

  .actions,
  .btn {
    width: 100%;
  }
}
