:root {
  --bg: #0a0e1a;
  --bg-alt: #0e1424;
  --surface: #131b30;
  --surface-2: #182240;
  --border: #233152;
  --text: #e9eef9;
  --muted: #9aa7c2;
  --accent: #00e0c7;
  --accent-2: #6a8bff;
  --maple: #ff5a4d;
  --radius: 16px;
  --container: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(0, 224, 199, 0.10), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(106, 139, 255, 0.12), transparent 45%),
    linear-gradient(rgba(35, 49, 82, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 49, 82, 0.35) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

h1, h2, h3, .brand-name, .stat-num { font-family: "Space Grotesk", sans-serif; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 14, 26, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
.brand-mark { color: var(--accent); font-size: 22px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* BUTTONS */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04121a;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 30px rgba(0, 224, 199, 0.22);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0, 224, 199, 0.34); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(0, 224, 199, 0.06); }

/* HERO */
.hero { padding: 96px 0 80px; }
.hero-inner { max-width: 860px; }
.pill {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 700; line-height: 1.05; margin-bottom: 22px; }
.grad { background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(17px, 2.2vw, 21px); color: var(--muted); max-width: 640px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 34px; font-weight: 700; color: var(--text); }
.stat-label { font-size: 14px; color: var(--muted); }

/* SECTIONS */
.section { padding: 88px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow { color: var(--accent); font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 44px; max-width: 720px; }
.prose { color: var(--muted); font-size: 17px; margin-bottom: 18px; max-width: 560px; }
.prose strong { color: var(--text); }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--accent); }
.card-icon { font-size: 34px; margin-bottom: 16px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.card-list li { color: var(--text); font-size: 14.5px; padding-left: 22px; position: relative; }
.card-list li::before { content: "›"; color: var(--accent); position: absolute; left: 6px; font-weight: 700; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.about-side { display: flex; flex-direction: column; gap: 14px; }
.fact { display: flex; justify-content: space-between; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; }
.fact-k { color: var(--muted); font-size: 14px; }
.fact-v { font-weight: 600; }

/* LEADERSHIP */
.leader { display: flex; gap: 32px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; flex-wrap: wrap; }
.leader-photo {
  flex: 0 0 120px;
  width: 120px; height: 120px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px; font-weight: 700;
  color: #04121a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.leader-body { flex: 1; min-width: 260px; }
.leader-body h3 { font-size: 26px; }
.leader-role { color: var(--accent); font-weight: 600; margin-bottom: 14px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-block { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-label { color: var(--accent); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-value { color: var(--text); font-size: 17px; }
.contact-value a { color: var(--accent-2); }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 500; color: var(--muted); }
.contact-form input, .contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.form-note { color: var(--accent); font-size: 14px; font-weight: 500; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 40px 0; background: var(--bg-alt); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 18px; }
.footer-brand p { font-family: "Inter", sans-serif; font-weight: 400; font-size: 14px; color: var(--muted); margin-top: 8px; }
.footer-meta { text-align: right; color: var(--muted); font-size: 14px; }
.footer-meta p { margin-bottom: 4px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .hero-stats { gap: 28px; }
  .footer-inner, .footer-meta { text-align: left; }
  .footer-meta { text-align: left; }
}
