*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html,
body {
  height: 100%;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(ellipse at bottom, #0b1b3a 0, #020617 55%);
  color: #e5e7eb;
  overflow-x: hidden;
}


.section,
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}


#bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  --mouse-x: 50%;
  --mouse-y: 50%;
  background:
    radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(59, 130, 246, 0.35),
      rgba(15, 23, 42, 0) 130px
    ),
    radial-gradient(ellipse at bottom, #0b1b3a 0, #020617 55%);
  mix-blend-mode: screen;
  z-index: 1;
}


.night {
  position: fixed;
  inset: 0;
  overflow: hidden;
  transform: rotateZ(35deg);
  z-index: 2;
}


.star {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 170px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0), #93c5fd, rgba(59, 130, 246, 0));
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(147, 197, 253, 0.85);
  animation: shooting 3.2s linear infinite;
}


.star::before,
.star::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0), #bfdbfe, rgba(59, 130, 246, 0));
  border-radius: 999px;
}


.star:nth-child(1) { top: 5%; right: -5%; animation-delay: 0.3s; }
.star:nth-child(2) { top: 22%; right: 0%; animation-delay: 1.0s; }
.star:nth-child(3) { top: 42%; right: -8%; animation-delay: 1.7s; }
.star:nth-child(4) { top: 63%; right: -2%; animation-delay: 2.3s; }
.star:nth-child(5) { top: 82%; right: -10%; animation-delay: 2.9s; }


@keyframes shooting {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translate3d(-150vw, 60vh, 0); opacity: 0; }
}


.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.5));
  border-bottom: 1px solid rgba(30, 64, 175, 0.6);
}


.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}


.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 1),
    0 0 0 3px rgba(59, 130, 246, 0.7);
}


.nav-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}


.nav-accent {
  color: #3b82f6;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}


.nav-links a {
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.18s ease, opacity 0.18s ease;
}


.nav-links a:hover {
  color: #f9fafb;
}


.nav-cta {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.7);
  background: rgba(15, 23, 42, 0.9);
}



.panel-badge {
  position: absolute;
  left: 16px;
  bottom: 8px;
  padding: 4px 10px;
  font-size: 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  background: linear-gradient(135deg, #38bdf8, #3b82f6);
  color: #021527;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(56, 189, 248, 0.7);
  z-index: 11;
}



.hero {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
}


.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.9);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #dbeafe;
  margin-bottom: 12px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3), transparent 70%);
}


.hero-text h1 {
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 10px;
}


.hero-text p {
  color: #9ca3af;
  font-size: 0.96rem;
  max-width: 32rem;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}


.btn.primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  border-color: rgba(187, 247, 208, 0.9);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.45);
}


.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(34, 197, 94, 0.65);
}


.btn.ghost {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(148, 163, 184, 0.75);
  color: #e5e7eb;
}


.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.85);
}



.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font-size: 0.86rem;
}


.stat {
  display: flex;
  flex-direction: column;
}


.stat-num {
  font-weight: 700;
  font-size: 1.1rem;
}


.stat-label {
  color: #9ca3af;
}



.hero-panel {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: heroFadeIn 0.7s ease-out forwards;
}


.hero-logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  margin: 0 auto 8px;
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 1),
    0 0 0 4px rgba(59, 130, 246, 0.65),
    0 18px 36px rgba(37, 99, 235, 0.8);
}


.hero-panel h2 {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 10px;
}


.hero-list {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
}


.hero-list li {
  padding: 7px 9px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(31, 41, 55, 0.9);
}


.hero-list li span {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bfdbfe;
  margin-bottom: 2px;
}


.hero-list li p {
  color: #9ca3af;
}



.section {
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 34px;
  scroll-margin-top: 80px;
}


.section h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}


.section p {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 18px;
}



.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}


.card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 18px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
}


.card h3 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}


.card p {
  font-size: 0.88rem;
  color: #9ca3af;
  margin-bottom: 8px;
}


.card ul {
  list-style: none;
  display: grid;
  gap: 4px;
  font-size: 0.86rem;
  color: #9ca3af;
}



.setup-grid .card {
  position: relative;
}



.section-alt {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.25), rgba(15, 23, 42, 0.98));
  border-top: 1px solid rgba(30, 64, 175, 0.7);
  border-bottom: 1px solid rgba(30, 64, 175, 0.7);
}


.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}


.commands-column h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}


.commands-column ul {
  list-style: none;
  display: grid;
  gap: 4px;
  font-size: 0.86rem;
  color: #9ca3af;
}


code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.84rem;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 6px;
  padding: 1px 4px;
}



.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}


.team-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 18px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
}


.team-card h3 {
  font-size: 1.02rem;
  margin-bottom: 2px;
}


.team-role {
  display: block;
  font-size: 0.8rem;
  color: #60a5fa;
  margin-bottom: 6px;
}


.team-card p {
  font-size: 0.86rem;
  color: #9ca3af;
}



.section-cta {
  padding-bottom: 50px;
}


.cta-inner {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(22, 163, 74, 0.18));
  border-radius: 22px;
  padding: 22px 18px 18px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.95);
  text-align: center;
}


.cta-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}


.cta-inner p {
  font-size: 0.94rem;
  color: #e5e7eb;
  margin-bottom: 14px;
}


.cta-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}



.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 40;
}


.modal.hidden {
  display: none;
}


.modal-content {
  width: min(380px, 92%);
  background: rgba(15, 23, 42, 0.96);
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
}


.modal-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}


.modal-content p {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 14px;
}


.modal-btn {
  width: 100%;
}



.footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(15, 23, 42, 1);
  background: #020617;
  padding: 10px 16px 16px;
  font-size: 0.78rem;
  color: #9ca3af;
}


.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}



@keyframes heroFadeIn {
  0%   { opacity: 0; transform: translateY(18px) scale(0.96); }
  60%  { opacity: 1; transform: translateY(-2px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}



@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }


  .hero-panel {
    order: -1;
    margin-bottom: 10px;
  }


  .nav-links {
    gap: 10px;
  }


  .nav-links a:nth-child(1),
  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3),
  .nav-links a:nth-child(4),
  .nav-links a:nth-child(5) {
    display: none;
  }
}


@media (max-width: 540px) {
  .hero-text h1 {
    font-size: 1.9rem;
  }


  .hero-actions {
    flex-direction: column;
  }


  .btn {
    width: 100%;
    justify-content: center;
  }


  .cta-actions {
    flex-direction: column;
  }


  .footer-inner {
    flex-direction: column;
    gap: 4px;
  }
}