:root {
  --dark: #2f3d3d;
  --light: #ffffff;
  --gray: #c2c3c3;
  --accent: #cdc098;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #2f3d3d, #1f2b2b);
  color: var(--light);
  line-height: 1.7;
}

/* HOME */
.hero {
  min-height: 100vh;
  padding: 90px 20px 60px;
  text-align: center;
}

.logo {
  width: 190px;
  margin-bottom: 40px;
}

/* TEXT */
h1 {
  font-size: 32px;
  margin-bottom: 40px;
}

h2 {
  font-size: 22px;
  margin-bottom: 26px;
}

.intro {
  max-width: 720px;
  margin: 0 auto 70px;
  font-size: 18px;
  color: var(--gray);
}

.division {
  margin-bottom: 18px;
}

.division strong {
  display: block;
  color: var(--light);
}

.division span {
  color: var(--gray);
}

.vision {
  margin-top: 70px;
  font-size: 15px;
  color: var(--accent);
}

/* FOOTER */
footer {
  margin-top: 80px;
  font-size: 14px;
}

footer a {
  color: var(--gray);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

/* LEGAL PAGES */
.page {
  max-width: 900px;
  margin: auto;
  padding: 90px 20px 60px;
  animation: fadeUp 0.8s ease forwards;
}

.page h1 {
  margin-bottom: 40px;
}

/* ANIMATION */
.fade {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

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

