@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #0b0e16;
  --panel: #12192b;
  --panel-strong: #1b2440;
  --border: #263352;
  --text: #e9ecf5;
  --muted: #b3bdd6;
  --accent: #7c5cff;
  --accent-2: #2ee6ff;
  --accent-3: #ff8a3d;
  --shadow: 0 20px 40px rgba(6, 10, 22, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #1b2340 0%, #0b0e16 55%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.top-bar {
  background: rgba(10, 14, 26, 0.85);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0b0e16;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--panel-strong);
  color: var(--text);
}

.hero {
  padding: 96px 0 72px;
  display: grid;
  gap: 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  max-width: 560px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0e16;
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.3);
}

.button.ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(16, 22, 39, 0.4);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-card {
  background: var(--panel);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(124, 92, 255, 0.2);
  background: #0f1729;
}

.hero-card h3 {
  margin-top: 0;
}

.stats-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.stats-grid div {
  padding: 16px;
  background: rgba(23, 30, 52, 0.8);
  border-radius: 16px;
  border: 1px solid transparent;
}

.section {
  padding: 72px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-header p {
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--panel);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.15);
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.highlight {
  background: linear-gradient(120deg, rgba(124, 92, 255, 0.2), rgba(46, 230, 255, 0.2));
  border: 1px solid rgba(124, 92, 255, 0.3);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(17, 24, 40, 0.7);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
}

.tag {
  background: rgba(124, 92, 255, 0.12);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 92, 255, 0.3);
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.form {
  display: grid;
  gap: 16px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(10, 15, 28, 0.8);
  color: var(--text);
  font-size: 0.95rem;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  padding: 48px 0 60px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer h4 {
  margin-bottom: 10px;
  color: var(--text);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.banner {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 138, 61, 0.35);
  background: linear-gradient(120deg, rgba(255, 138, 61, 0.15), rgba(124, 92, 255, 0.2));
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 72px;
  }
}
