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

:root {
  --bg: #05060c;
  --card: #0e101d;
  --primary: #5c7cfa;
  --accent: #f16bbe;
  --text: #f5f7ff;
  --muted: rgba(245, 247, 255, 0.64);
  --grid: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --success: #7ed7c1;
}

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

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, rgba(92, 124, 250, 0.35), transparent 40%),
              radial-gradient(circle at top right, rgba(241, 107, 190, 0.3), transparent 45%),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

main {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 4rem 0 6rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

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

nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  padding: 4rem;
  border-radius: 32px;
  background: rgba(14, 16, 29, 0.8);
  border: 1px solid var(--border);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(92, 124, 250, 0.25);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px),
                    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: drift 30s linear infinite;
  opacity: 0.4;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-60px, -60px, 0); }
}

.hero-content {
  position: relative;
  display: grid;
  gap: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.1;
}

.highlight {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: var(--text);
  box-shadow: 0 20px 40px rgba(92, 124, 250, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.stat-card h3 {
  font-size: 2rem;
}

.section {
  margin-top: 5rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
}

.pill {
  padding: 0.3rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

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

.card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(14, 16, 29, 0.85);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(92, 124, 250, 0.35), transparent 55%);
  top: -40px;
  right: -40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.badge span {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list li {
  display: flex;
  gap: 0.8rem;
}

.list li span {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(92, 124, 250, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}

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

.contact-card {
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(14, 16, 29, 0.9);
}

.contact-card a {
  color: var(--text);
  text-decoration: none;
}

form {
  display: grid;
  gap: 1.2rem;
}

input,
textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

footer nav {
  display: flex;
  gap: 1.5rem;
}

.subpage {
  background: rgba(10, 12, 24, 0.85);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 3rem;
}

.subpage h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.subpage h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.subpage p {
  color: var(--muted);
}

.breadcrumb {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.thankyou {
  text-align: center;
  padding: 4rem 2rem;
}

.thankyou h1 {
  font-size: 3.5rem;
}

.thankyou p {
  max-width: 540px;
  margin: 1rem auto 2rem;
  color: var(--muted);
}

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

  .hero {
    padding: 2.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

