:root {
  --bg: #f5f5f3;
  --bg-alt: #ffffff;
  --accent: #3baf7a;
  --accent-soft: rgba(59, 175, 122, 0.12);
  --accent-deep: #1f8f5f;
  --accent-gold: #d6a44b;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-subtle: rgba(148, 163, 184, 0.4);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.08);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 180ms ease-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #eef3f0 0, #f9fafb 35%, #f3f4f6 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Soft background shapes */
.bg-orb {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.bg-orb--green {
  background: radial-gradient(circle, #8fe0b5, transparent 70%);
  top: -180px;
  left: -140px;
}

.bg-orb--sand {
  background: radial-gradient(circle, #f7d6a0, transparent 70%);
  bottom: -220px;
  right: -180px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: conic-gradient(
    from 160deg,
    #3baf7a,
    #2dd4bf,
    #c4f1be,
    #fcd34d,
    #3baf7a
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.45);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: radial-gradient(circle at top, #f9fafb, #e5e7eb 55%, #d1d5db 100%);
}

.logo-mark span {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #047857;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav a {
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
}

.nav a:hover {
  color: var(--text-main);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  transition: width var(--transition-fast);
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons & Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 11px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
}

.pill.soft {
  margin-top: 8px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.btn-outline {
  border-radius: var(--radius-pill);
  padding: 8px 17px;
  font-size: 13px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  cursor: pointer;
  transition: background var(--transition-fast), border var(--transition-fast),
    transform 140ms ease-out, box-shadow 140ms ease-out;
}

.btn-outline.small {
  font-size: 12px;
  padding: 6px 14px;
}

.btn-outline:hover {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 1);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.btn-primary {
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  color: #ecfdf5;
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 140ms ease-out, box-shadow 140ms ease-out,
    filter 140ms ease-out;
}

.btn-primary span {
  font-size: 18px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 22px 50px rgba(34, 197, 94, 0.45);
}

.btn-primary-link {
  display: inline-flex;
}

/* MOBILE NAV */
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--text-main);
  border-radius: 99px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--text-main);
  border-radius: 99px;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

/* MOBILE NAV MENU */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.mobile-nav a {
  font-size: 14px;
  color: var(--text-muted);
}

.mobile-nav a:hover {
  color: var(--text-main);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 28px 0 46px;
}

.hero-text {
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-kicker-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #bbf7d0, #4ade80);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #064e3b;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.3rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero-title span {
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 18px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 430px;
}

.hero-note strong {
  color: var(--accent-deep);
}

.hero-pill-row {
  margin-top: 6px;
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  border-radius: 24px;
  padding: 18px 18px 16px;
  background: radial-gradient(circle at top left, #ffffff, #e5f4ea);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
  max-width: 360px;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
}

.hero-card-tag {
  color: var(--text-muted);
}

.hero-card-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 500;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.hero-mini-card {
  border-radius: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 11px;
  box-shadow: var(--shadow-card);
}

.mini-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.mini-value {
  font-size: 12px;
  font-weight: 500;
}

.progress-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(209, 213, 219, 0.8);
  overflow: hidden;
  margin-top: 6px;
}

.progress-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  animation: fill-base 2.1s ease-out forwards;
}

.pf-30 {
  animation-name: fill-30;
}
.pf-40 {
  animation-name: fill-40;
}
.pf-60 {
  animation-name: fill-60;
}
.pf-75 {
  animation-name: fill-75;
}

@keyframes fill-base {
  from {
    width: 0%;
  }
  to {
    width: 60%;
  }
}

@keyframes fill-30 {
  from {
    width: 0%;
  }
  to {
    width: 30%;
  }
}

@keyframes fill-40 {
  from {
    width: 0%;
  }
  to {
    width: 40%;
  }
}

@keyframes fill-60 {
  from {
    width: 0%;
  }
  to {
    width: 60%;
  }
}

@keyframes fill-75 {
  from {
    width: 0%;
  }
  to {
    width: 75%;
  }
}

.hero-card-footer {
  font-size: 11px;
  color: var(--text-muted);
}

/* SECTIONS */
.section {
  margin-top: 40px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 440px;
}

/* PILLARS */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card {
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  font-size: 13px;
}

.pillar-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: rgba(59, 175, 122, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 8px;
}

.pillar-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.pillar-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pillar-list {
  list-style: none;
  padding-left: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.pillar-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.pillar-list li::before {
  content: "•";
  position: absolute;
  left: 3px;
  top: 0;
  color: var(--accent-deep);
}

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  font-size: 13px;
}

.project-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.project-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.project-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.project-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.project-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-deep);
}

/* ECOSYSTEM */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.eco-card {
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  font-size: 13px;
}

.eco-tag {
  display: inline-block;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.14);
  color: var(--text-muted);
  margin-bottom: 6px;
}

.eco-tag-green {
  background: rgba(59, 175, 122, 0.12);
  color: var(--accent-deep);
}

.eco-tag-gold {
  background: rgba(214, 164, 75, 0.1);
  color: #92400e;
}

.eco-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.eco-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.eco-list {
  list-style: none;
  padding-left: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.eco-list li {
  margin-bottom: 3px;
}

.eco-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-deep);
}

/* NEWSLETTER */
.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 18px;
}

.newsletter-card {
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  font-size: 13px;
}

.newsletter-quote {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.newsletter-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at top, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #ecfdf5;
}

.newsletter-text {
  font-size: 11px;
  color: var(--text-muted);
}

.form-card {
  background: linear-gradient(145deg, #ffffff, #ecfdf5);
}

.email-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.email-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-row {
  display: flex;
  gap: 8px;
}

.input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 8px 12px;
  background: #ffffff;
  color: var(--text-main);
  font-size: 13px;
  outline: none;
}

.input::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.btn-small {
  border-radius: 999px;
  padding: 8px 14px;
  border: none;
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  color: #ecfdf5;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.email-note {
  font-size: 11px;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-main);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
    margin-bottom: 10px;
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .pillars-grid,
  .projects-grid,
  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section-header {
    flex-direction: column;
  }

  .pillars-grid,
  .projects-grid,
  .ecosystem-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 16px;
  }

  .email-row {
    flex-direction: column;
  }
}
