:root {
  --bg: #0b1020;
  --card: #121936;
  --muted: #98a3b3;
  --brand: #4ade80;
  --accent: #60a5fa;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    9 Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans";
  background: linear-gradient(160deg, #0b1020, #0e1430 45%, #0b1020);
  color: #eef2ff;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(11, 16, 32, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.logo-badge {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: var(--shadow);
  font-weight: 800;
  color: #0a0f1f;
}
.nav-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn {
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(135deg, var(--brand), #22c55e);
  color: #0a0f1f;
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
}
.btn.ghost {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  color: #e5e7eb;
}
.btn:hover {
  transform: translateY(-1px);
  filter: saturate(110%);
  transition: 0.2s ease;
}

.hero {
  padding: 68px 0 42px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.05;
  margin: 0 0 10px;
}
.hero p {
  color: var(--muted);
  font-size: clamp(15px, 2.1vw, 18px);
}
.hero-card {
  background: linear-gradient(
    180deg,
    rgba(19, 27, 58, 0.9),
    rgba(15, 20, 44, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: #cfd7ff;
}

section {
  padding: 48px 0;
}
.section-card {
  background: linear-gradient(
    180deg,
    rgba(19, 27, 58, 0.7),
    rgba(14, 20, 46, 0.6)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3.2vw, 28px);
}
.muted {
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 16px;
}
.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  width: 0;
}
.steps {
  display: grid;
  gap: 14px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.step .no {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #0b1020;
}
.dates {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .dates {
    grid-template-columns: 1fr;
  }
}
.date {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}
form {
  display: grid;
  gap: 12px;
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-weight: 600;
  font-size: 14px;
}
.input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0e1532;
  color: #e5e7eb;
  width: 100%;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.hint {
  font-size: 12px;
  color: var(--muted);
}
footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #cbd5e1;
}
.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.12);
  color: #b7f7cb;
  border: 1px solid rgba(74, 222, 128, 0.35);
  font-size: 13px;
  font-weight: 700;
}

/* Footer links styling */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.footer-links a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--accent);
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 16, 32, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.loading-content {
  text-align: center;
  color: #eef2ff;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #4ade80;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
