:root {
  --green: #0E5A3C;
  --green-dark: #0a3f2a;
  --green-light: #e8f5ee;

  --gold: #E6B422;
  --gold-light: #fdf6e0;

  --white: #ffffff;
  --off-white: #FAF9F6;

  --text: #1a1a1a;
  --text-muted: #5a5a5a;

  --border: #e0dcd5;

  --shadow: 0 2px 24px rgba(14,90,60,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
}

/* NAV */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  height: 70px;

  background: rgba(14,90,60,0.97);

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 5vw;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: white;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;

  border-radius: 8px;

  background: var(--gold);

  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--green-dark);

  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);

  text-decoration: none;

  font-size: 14px;

  padding: 8px 12px;

  border-radius: 6px;

  transition: 0.3s;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;

  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;

  background: white;
}

/* HERO */

#home {
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 120px 0 80px;

  background:
    linear-gradient(
      145deg,
      var(--green-dark),
      var(--green)
    );
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: auto;

  padding: 0 5vw;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;

  padding: 8px 16px;

  border-radius: 999px;

  background: rgba(230,180,34,0.15);

  color: var(--gold);

  font-size: 12px;
  font-weight: 700;

  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;

  font-size: clamp(40px, 5vw, 60px);

  line-height: 1.1;

  color: white;

  margin-bottom: 24px;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  color: rgba(255,255,255,0.8);

  font-size: 18px;

  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  border-radius: 8px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
}

/* STATS */

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 16px;

  margin-top: 48px;
}

.hero-stat {
  background: rgba(255,255,255,0.08);

  padding: 20px;

  border-radius: 14px;
}

.hero-stat-num {
  font-size: 36px;

  color: var(--gold);

  font-family: 'Playfair Display', serif;

  font-weight: 700;
}

.hero-stat-label {
  color: rgba(255,255,255,0.7);

  font-size: 13px;
}

/* DASHBOARD */

.hero-visual {
  background: rgba(255,255,255,0.05);

  border-radius: 20px;

  padding: 30px;
}

.dashboard-preview {
  color: white;
}

.dash-header {
  margin-bottom: 24px;

  font-size: 12px;

  color: rgba(255,255,255,0.5);

  text-transform: uppercase;
}

.dash-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dash-kpi {
  background: rgba(255,255,255,0.08);

  padding: 18px;

  border-radius: 12px;
}

.dash-kpi-val {
  font-size: 26px;
  font-weight: 700;
}

.dash-kpi-lbl {
  font-size: 12px;
  opacity: 0.7;
}

.dash-kpi-badge {
  margin-top: 8px;

  display: inline-block;

  padding: 4px 10px;

  border-radius: 999px;

  font-size: 11px;
}

.badge-safe {
  background: rgba(52,199,89,0.15);
  color: #34c759;
}

.badge-warn {
  background: rgba(230,180,34,0.15);
  color: var(--gold);
}

/* SECTION */

.section-padding {
  padding: 100px 0;
}

.section-label {
  display: inline-block;

  padding: 6px 14px;

  border-radius: 999px;

  background: var(--green-light);

  color: var(--green);

  font-size: 12px;
  font-weight: 700;

  margin-bottom: 18px;
}

.section-title {
  font-family: 'Playfair Display', serif;

  font-size: clamp(32px, 4vw, 48px);

  margin-bottom: 18px;
}

.section-title em {
  color: var(--green);
  font-style: normal;
}

.section-lead {
  max-width: 700px;

  color: var(--text-muted);

  font-size: 18px;
}

/* FOOTER */

footer {
  background: var(--green-dark);

  color: white;

  padding: 60px 0 30px;
}

.footer-bottom {
  margin-top: 30px;

  padding-top: 20px;

  border-top: 1px solid rgba(255,255,255,0.1);

  color: rgba(255,255,255,0.5);

  font-size: 13px;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(20px);

  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 900px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-mobile-open .nav-links {
    display: flex;

    flex-direction: column;

    position: absolute;

    top: 70px;
    left: 0;
    right: 0;

    background: var(--green-dark);

    padding: 20px;
  }

}