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

:root {
  --bg: #0f172a;
  --bg-soft: #0b1221;
  --surface: #111a2f;
  --card: #15203a;
  --muted: #8ca2cf;
  --text: #e9eefc;
  --accent: #ffd166;
  --accent-2: #67e8f9;
  --danger: #f87171;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(8, 15, 31, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(103, 232, 249, 0.07), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(255, 209, 102, 0.12), transparent 28%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.7);
  border-bottom: 1px solid rgba(103, 232, 249, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand img {
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(103, 232, 249, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(103, 232, 249, 0.35);
  background: rgba(103, 232, 249, 0.08);
  color: #e9eefc;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #0b1221;
  background: linear-gradient(120deg, var(--accent) 0%, #ffb347 45%, #ffa53d 100%);
  box-shadow: 0 12px 30px rgba(255, 209, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: rgba(103, 232, 249, 0.18);
  color: #c8f7ff;
  box-shadow: none;
  border: 1px solid rgba(103, 232, 249, 0.4);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(255, 209, 102, 0.35);
}

.btn.secondary:hover {
  background: rgba(103, 232, 249, 0.26);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.5));
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: grid;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.16);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 52px);
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: -0.8px;
}

h2.section-title {
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 6px;
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: -0.3px;
}

.section-desc {
  color: var(--muted);
  margin: 0;
}

.section {
  padding: 70px 0;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(103, 232, 249, 0.02));
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 102, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 209, 102, 0.14);
  color: #ffeac2;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.list li::before {
  content: '•';
  color: var(--accent);
  font-weight: 700;
  line-height: 1.2;
}

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

.stat {
  padding: 14px;
  border-radius: 14px;
  background: rgba(103, 232, 249, 0.08);
  color: #e6fbff;
  font-weight: 700;
}

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

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer {
  margin-top: auto;
  padding: 30px 0 50px;
  background: rgba(12, 18, 32, 0.9);
  border-top: 1px solid rgba(103, 232, 249, 0.12);
}

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

.footer small {
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 700;
  color: #f3f6ff;
  font-size: 14px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(103, 232, 249, 0.6);
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.chips span {
  background: rgba(103, 232, 249, 0.12);
  color: #d6f7ff;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
}

.two-cols {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

@media (max-width: 720px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    display: none;
  }
  .nav-links[data-open="true"] {
    display: flex;
  }
  .nav-links a,
  .nav-links .btn {
    width: 100%;
    text-align: left;
  }
  .hero {
    padding: 90px 0 70px;
  }
  .card img {
    height: 160px;
  }
}
