@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;600;700&family=Space+Grotesk:wght@400;600;700&display=swap");

:root {
  --green: #1e9b4f;
  --green-deep: #11653b;
  --yellow: #f2c94c;
  --ink: #0f1b14;
  --paper: #f8f5ef;
  --sand: #efe8d6;
  --line: rgba(15, 27, 20, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Archivo", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 12% 12%, rgba(242, 201, 76, 0.28), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(30, 155, 79, 0.22), transparent 40%),
    linear-gradient(135deg, #fdf9f0 0%, #f1efe8 100%);
  min-height: 100vh;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: -10% 30% auto -20%;
  height: 420px;
  background: linear-gradient(120deg, rgba(30, 155, 79, 0.12), rgba(242, 201, 76, 0.35));
  border-radius: 50% 50% 60% 40%;
  filter: blur(6px);
  z-index: 0;
}

.page::after {
  content: "";
  position: absolute;
  inset: auto -20% -25% 45%;
  height: 420px;
  background: linear-gradient(140deg, rgba(242, 201, 76, 0.28), rgba(30, 155, 79, 0.1));
  border-radius: 55% 45% 40% 60%;
  filter: blur(12px);
  z-index: 0;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

header {
  padding: 32px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  width: 54px;
  height: 54px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 20px;
  letter-spacing: 0.6px;
}

.logo-text span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--green-deep);
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
}

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

.hero h1 {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  margin: 0 0 18px;
}

.hero p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(15, 27, 20, 0.85);
}

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

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 30px rgba(30, 155, 79, 0.28);
}

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

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

.hero-card {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(15, 27, 20, 0.08);
  box-shadow: 0 20px 50px rgba(15, 27, 20, 0.08);
  display: grid;
  gap: 18px;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(15, 27, 20, 0.12);
  font-size: 15px;
}

.stat:last-child {
  border-bottom: none;
}

.stat strong {
  font-size: 20px;
}

.stripe {
  background: var(--ink);
  color: white;
  padding: 16px 22px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

section {
  padding: 40px 0;
}

.section-title {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 26px;
  margin: 0 0 18px;
}

.section-note {
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(15, 27, 20, 0.75);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
}

.logo-badge {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 16px;
  border: 1px solid rgba(15, 27, 20, 0.08);
  padding: 16px;
  display: grid;
  place-items: center;
  min-height: 80px;
}

.logo-badge img {
  max-width: 120px;
  max-height: 36px;
}

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

.card {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(15, 27, 20, 0.08);
  display: grid;
  gap: 12px;
  min-height: 180px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  color: var(--green-deep);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 27, 20, 0.08);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: center;
  background: var(--ink);
  color: white;
  border-radius: 24px;
  padding: 26px;
}

.contact a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

footer {
  padding: 24px 0 48px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(15, 27, 20, 0.6);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: rise 0.7s ease forwards;
}

.stagger > * {
  opacity: 0;
  animation: rise 0.7s ease forwards;
}

.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.12s; }
.stagger > *:nth-child(3) { animation-delay: 0.19s; }
.stagger > *:nth-child(4) { animation-delay: 0.26s; }

@media (max-width: 820px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stripe {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
