﻿:root {
  --bg: #f7f6f4;
  --surface: #ffffff;
  --ink: #121212;
  --muted: #6f6f6f;
  --line: #e4e2de;
  --accent: #1f1f1f;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
}

.noise {
  display: none;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 246, 244, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-name {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

main {
  position: relative;
  z-index: 1;
}

section {
  padding: 96px 24px;
}

.hero {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding-top: 110px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 600;
}

.accent {
  color: var(--ink);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #000;
}

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

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.hero-stats {
  display: flex;
  gap: 26px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat {
  display: grid;
  gap: 4px;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 600;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}

.card-glow {
  display: none;
}

.card-content ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.hero-orbit {
  display: none;
}

.section-title {
  max-width: 1080px;
  margin: 0 auto 40px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 600;
}

.program, .projects, .benefits, .testimonials, .faq {
  max-width: 1080px;
  margin: 0 auto;
}

.steps, .project-grid, .benefit-grid, .quote-grid, .faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step, .project-card, .benefit, .quote, .faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
}

.project-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0efec;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 20px;
}

.benefit-grid .benefit {
  min-height: 170px;
}

.quote blockquote {
  font-size: 1rem;
  margin: 0 0 12px;
}

.quote figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.apply {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.apply-content {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.apply-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
}

.apply-form h3 {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 600;
}

.apply-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.form-note {
  min-height: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer {
  padding: 40px 24px 60px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 20px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 600px) {
  section {
    padding: 70px 20px;
  }
  .hero-stats {
    gap: 16px;
  }
  .project-meta {
    flex-direction: column;
    gap: 8px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
