:root {
  color-scheme: light;
  --bg: #f6f5f2;
  --bg-strong: #ecebe6;
  --ink: #111217;
  --muted: #4c4f5a;
  --accent: #006b60;
  --accent-2: #00a28a;
  --accent-3: #d9a600;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.75);
  --shadow: 0 30px 60px rgba(18, 21, 38, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
.eyebrow {
  font-family: "Unbounded", sans-serif;
}

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

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

.bg-orbit {
  position: fixed;
  inset: -30% 10% auto 50%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle at center, rgba(0, 162, 138, 0.25), transparent 70%);
  pointer-events: none;
  z-index: -2;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(17, 18, 23, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 23, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: -3;
  opacity: 0.6;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 7vw;
  max-height: 96px;
  background: rgba(246, 245, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 18, 23, 0.08);
}

.nav__brand {
  height: 96px;
  overflow: hidden;
}

.nav__logo {
  height: 192px;
  display: block;
  clip-path: inset(40px 26px 40px 0);
  transform: translateY(-48px);
}

.nav__links {
  display: flex;
  gap: 24px;
  font-size: 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 18px 30px rgba(0, 107, 96, 0.2);
}

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

.btn--ghost {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 2px rgba(0, 107, 96, 0.3);
}

.btn--small {
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 80px 7vw 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__accent {
  color: var(--accent);
  display: block;
  font-size: clamp(18px, 2.5vw, 28px);
  margin-top: 10px;
}

.hero__lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

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

.hero__stats span {
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.hero__stats p {
  color: var(--muted);
  font-size: 14px;
}

.hero__visual {
  position: relative;
}

.stack {
  display: grid;
  gap: 20px;
}

.card {
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.card--glass {
  background: var(--glass);
  border: 1px solid rgba(17, 18, 23, 0.08);
}

.card--dark {
  background: #121826;
  color: #f9fafc;
}

.card--accent {
  background: linear-gradient(135deg, #f8e8a6, #f4cf5c);
}

.card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.badge {
  margin-left: auto;
  background: rgba(0, 107, 96, 0.12);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--green {
  background: var(--accent-2);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 107, 96, 0.1);
  font-size: 12px;
}

.timeline {
  display: flex;
  gap: 10px;
}

.timeline span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  opacity: 0.6;
}

.pulse {
  margin-top: 20px;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a28a, transparent);
  position: relative;
  overflow: hidden;
}

.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.section {
  padding: 72px 7vw;
}

.section__head {
  max-width: 700px;
  margin-bottom: 36px;
}

.section__head h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 14px;
}

.section__head p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

.info,
.feature,
.step {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 18, 23, 0.06);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s ease;
}

.info.is-visible,
.feature.is-visible,
.step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info h3,
.feature h3,
.step h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  margin-bottom: 12px;
}

.info ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.info ul li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.callout {
  margin-top: 16px;
  padding: 16px;
  background: rgba(0, 107, 96, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  font-weight: 600;
}

.step span {
  font-family: "Unbounded", sans-serif;
  color: var(--accent);
  font-size: 18px;
}

.section--cta {
  background: var(--bg-strong);
}

.section--privacy {
  padding-top: 40px;
}

.cta {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.cta__note {
  margin-top: 12px;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 16px;
  background: var(--white);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form .checkbox input {
  margin-top: 2px;
}

.form .checkbox span {
  line-height: 1.4;
}

.form input,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(17, 18, 23, 0.15);
  font-family: inherit;
}

.form__helper {
  font-size: 12px;
  color: var(--muted);
}

.form__success {
  padding: 12px;
  background: rgba(0, 162, 138, 0.1);
  border-radius: 12px;
  font-size: 14px;
}

.footer {
  padding: 32px 7vw 48px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-top: 1px solid rgba(17, 18, 23, 0.08);
}

.footer__logo {
  height: 28px;
  margin-bottom: 12px;
}

.footer__meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.footer__meta a {
  color: var(--accent);
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 18px 6vw;
  }

  .btn {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
