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

:root {
  --bg: #070c18;
  --panel: rgba(12, 18, 34, 0.92);
  --card: #0f1629;
  --card-soft: rgba(18, 25, 43, 0.75);
  --stroke: rgba(255, 255, 255, 0.06);
  --text: #e7ecf5;
  --muted: #98a3b8;
  --accent: #f97316;
  --accent-strong: #fb923c;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --glow: 0 20px 70px rgba(32, 131, 255, 0.14), 0 8px 24px rgba(0, 0, 0, 0.35);
}

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

body {
  margin: 0;
  font-family: 'Manrope', 'Space Grotesk', Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(16, 185, 129, 0.08), transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(249, 115, 22, 0.08), transparent 30%),
    linear-gradient(135deg, #060a14 0%, #0a1222 50%, #0c1533 100%);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main {
  padding-top: 86px;
}

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

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 12, 24, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 44px;
}

.brand .name {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--accent-soft);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--stroke);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 18px;
}

.hero {
  padding: 32px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.5);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pill .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.22);
}

.hero h1 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 18px 0 12px;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, #f97316 0%, #fb923c 100%);
  color: #0b0f1a;
  box-shadow: var(--glow);
}

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

.btn-ghost {
  border-color: var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: rgba(249, 115, 22, 0.6);
  color: #fff;
}

.section {
  padding: 28px 0 8px;
}

.section header {
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.section h2 {
  margin: 6px 0 10px;
  font-size: clamp(26px, 3vw, 34px);
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: -0.01em;
}

.section p {
  color: var(--muted);
  max-width: 860px;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.card-highlight {
  background: linear-gradient(145deg, rgba(31, 41, 55, 0.8), rgba(8, 145, 178, 0.08));
}

.card h3 {
  margin: 8px 0 6px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card .tag {
  display: inline-flex;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 13px;
  color: #fff;
  border: 1px solid var(--stroke);
}

.list {
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.list li {
  list-style: none;
  display: flex;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb923c, #22d3ee);
  margin-top: 6px;
}

.stat {
  padding: 12px 0;
}

.stat .number {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

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

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.3), rgba(255, 255, 255, 0.05));
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.image-card .overlay {
  position: relative;
  padding: 22px;
  display: grid;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(26, 34, 51, 0.8);
  border: 1px solid var(--stroke);
  color: #fff;
  border-radius: 12px;
  width: fit-content;
}

.badge .spark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.22);
}

.accent-panel {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(59, 130, 246, 0.12));
  border: 1px solid rgba(249, 115, 22, 0.5);
  box-shadow: var(--glow);
}

.muted-card {
  background: var(--card-soft);
}

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

.contact-card {
  display: grid;
  gap: 10px;
}

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

label {
  font-weight: 600;
  color: #fff;
}

input,
textarea,
select {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent-soft);
  border-color: rgba(249, 115, 22, 0.6);
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid var(--stroke);
  color: var(--text);
}

footer {
  border-top: 1px solid var(--stroke);
  padding: 20px 0 30px;
  color: var(--muted);
  margin-top: 36px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive navigation */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(7, 12, 24, 0.96);
    border-bottom: 1px solid var(--stroke);
    padding: 14px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  main {
    padding-top: 86px;
  }
}
