:root {
  --brand: #203f85;
  --brand2: #2a52a8;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f6f8fc;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  --shadow2: 0 10px 25px rgba(15, 23, 42, 0.1);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Helvetica Neue";
  color: var(--ink);
  background: #fff;
}

/* NAVBAR */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.nav-link {
  color: #0b1226 !important;
  font-weight: 600;
  opacity: 0.78;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}

/* HERO */
.hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      1200px 700px at 20% 20%,
      rgba(255, 255, 255, 0.14),
      transparent 55%
    ),
    radial-gradient(
      900px 550px at 80% 30%,
      rgba(255, 255, 255, 0.12),
      transparent 52%
    ),
    linear-gradient(120deg, #203f85, #2a52a8);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 60% 60%,
      rgba(255, 255, 255, 0.12),
      transparent 42%
    );
  filter: blur(2px);
  animation: floatGlow 10s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(2%, -2%, 0) rotate(2deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 18px;
}

.hero h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 0.6rem;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero p {
  margin: 0 auto 1.6rem;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.6;
}

.btn-hero {
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  min-width: 170px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.btn-hero-primary {
  background: #fff;
  color: #203f85;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* SECTION */
section {
  scroll-margin-top: 90px;
}

.section-wrap {
  background: #fff;
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 38px;
}

.section-title h2 {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.section-title p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.6;
}

/* INVESTORS GRID */
.investors-grid {
  align-items: start;
  /* gap: 22px; */
}

.benefits-title {
  font-weight: 900;
  margin-bottom: 14px;
}

.benefit-item {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 16px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(32, 63, 133, 0.12);
  color: var(--brand);
  flex: 0 0 auto;
}

.benefit-item h6 {
  margin: 0;
  font-weight: 900;
}

.benefit-item p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* FORM CARD */
.form-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 22px;
}

.form-card h5 {
  font-weight: 900;
  margin-bottom: 14px;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.75rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(32, 63, 133, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(32, 63, 133, 0.16);
}

.btn-submit {
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border: none;
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  font-weight: 900;
  box-shadow: 0 18px 30px rgba(32, 63, 133, 0.22);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(32, 63, 133, 0.28);
  filter: brightness(1.02);
}

/* SIMPLE ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero {
    padding: 110px 0 80px;
  }

  .btn-hero {
    min-width: 155px;
  }
}

@media (max-width: 575.98px) {
  .btn-hero {
    width: 100%;
  }

  .hero-actions {
    gap: 10px !important;
  }

  .form-card {
    padding: 18px;
  }
}
