@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --blue-navy: #030a24;
  --blue-mid: #0b1f5a;
  --blue-soft: #142a78;
  --blue-accent: #3ec4ff;
  --orange-sun: #ff6a1f;
  --orange-glow: #f97316;
  --gray-soft: #d5e1ff;
  --white: #f7fbff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, rgba(14, 63, 122, 0.9), rgba(3, 10, 36, 1) 45%);
  color: var(--white);
  min-height: 100vh;
}

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

header.hero {
  padding: 2rem 5vw 3rem;
  background: linear-gradient(180deg, rgba(3, 10, 36, 0.85), rgba(1, 4, 18, 0.95));
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.logo-image {
  height: 80px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.75rem;
}

.hero-content {
  margin-top: 0.3rem;
  max-width: 960px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-brand h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin: 0;
  color: #ffffff;
}

.hero-star {
  height: 120px;
  width: auto;
  display: block;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(247, 251, 255, 0.85);
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-ctas a {
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}

.hero-ctas a.primary {
  background: var(--orange-sun);
  color: #07121c;
}

.hero-ctas a.secondary {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-ctas a:hover {
  transform: translateY(-2px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.2rem;
  backdrop-filter: blur(18px);
}

.stat-card strong {
  display: block;
  font-size: 1.9rem;
}

section {
  padding: 3rem 5vw;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.section-heading .dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--blue-accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.card {
  background: rgba(10, 21, 47, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.6rem;
  min-height: 180px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  color: rgba(247, 251, 255, 0.8);
  line-height: 1.5;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(62, 196, 255, 0.16);
  border: 1px solid rgba(62, 196, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 600;
}

blockquote {
  margin: 0;
  padding-left: 1.2rem;
  border-left: 4px solid var(--orange-glow);
  color: rgba(255, 255, 255, 0.8);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-member h4 {
  margin: 0 0 0.3rem;
}

.team-member span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.role-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
}

.role-button {
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(2, 10, 30, 0.4);
}

.role-button:hover {
  transform: translateY(-3px);
  border-color: var(--blue-accent);
}

footer {
  padding: 3rem 5vw;
  background: linear-gradient(180deg, rgba(3, 10, 36, 0.95), rgba(0, 0, 0, 0.8));
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
}

