:root {
  color-scheme: light;
  --ink: #0f1f1c;
  --muted: #4a5c58;
  --brand: #0b6b5b;
  --brand-dark: #073a33;
  --accent: #d9905e;
  --paper: #f4f1eb;
  --fog: #eef2f0;
  --card: #ffffff;
  --shadow: 0 26px 60px rgba(7, 15, 13, 0.18);
  --radius-lg: 24px;
  --radius-sm: 14px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ecf6f3 0%, #f4f1eb 40%, #fff 100%);
}

.page {
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(11, 107, 91, 0.15), transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(217, 144, 94, 0.2), transparent 35%),
    linear-gradient(160deg, rgba(15, 31, 28, 0.08), transparent 40%);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(7, 15, 13, 0.15);
}

.brand span {
  font-size: 1.1rem;
  font-weight: 700;
}

.brand small {
  display: block;
  color: var(--muted);
  font-family: "Spectral", serif;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.lang-toggle {
  display: inline-flex;
  background: rgba(15, 31, 28, 0.06);
  padding: 4px;
  border-radius: 999px;
  gap: 4px;
}

.lang-toggle .lang {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.lang-toggle .lang.active {
  background: white;
  color: var(--ink);
  box-shadow: 0 6px 14px rgba(7, 15, 13, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 18px 30px rgba(11, 107, 91, 0.3);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: rgba(15, 31, 28, 0.1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-wrap {
  position: relative;
  overflow: hidden;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 107, 91, 0.22), transparent 70%);
  top: -180px;
  left: -160px;
  filter: blur(6px);
}

.hero-wrap::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 38% 62% 45% 55%;
  background: radial-gradient(circle, rgba(217, 144, 94, 0.28), transparent 70%);
  bottom: -220px;
  right: -140px;
  filter: blur(8px);
}

.hero {
  max-width: var(--max);
  margin: 10px auto 0;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin: 12px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--brand);
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 16px;
}

.signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signals span {
  background: rgba(7, 58, 51, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 31, 28, 0.06);
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.stat {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 31, 28, 0.08);
  box-shadow: 0 12px 24px rgba(7, 15, 13, 0.08);
}

.stat strong {
  font-size: 1.4rem;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.card-header span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-header strong {
  font-size: 1.4rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
}

.section.alt {
  background: var(--fog);
  border-radius: 32px;
  margin: 20px auto;
}

.section-title h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.section-title p {
  margin: 0 0 34px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.tile {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 22px;
  border: 1px solid rgba(15, 31, 28, 0.06);
  box-shadow: 0 16px 30px rgba(7, 15, 13, 0.08);
}

.tile.soft {
  background: rgba(255, 255, 255, 0.85);
}

.tile h3 {
  margin-top: 0;
}

.tile p {
  color: var(--muted);
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.steps div {
  background: white;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border: 1px solid rgba(15, 31, 28, 0.08);
}

.steps span {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
}

.steps h4 {
  margin: 8px 0 6px;
}

.steps p {
  color: var(--muted);
  margin: 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: linear-gradient(135deg, var(--brand-dark), #0f4c41 60%, #1f5b4c 100%);
  color: white;
  border-radius: 28px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 31, 28, 0.08);
  box-shadow: 0 16px 28px rgba(7, 15, 13, 0.08);
  margin-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(217, 144, 94, 0.2);
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.foot-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-links a {
  color: inherit;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.8s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.1s;
}

.reveal.delay-2 {
  animation-delay: 0.2s;
}

.reveal.delay-3 {
  animation-delay: 0.3s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  nav {
    display: none;
  }

  .hero {
    padding-bottom: 50px;
  }

  .cta-band {
    padding: 30px 24px;
  }
}

@media (min-width: 721px) {
  .cta-band {
    padding: 40px 48px;
  }
}
