@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/inter-v20-latin-variable.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/poppins-v24-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/poppins-v24-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-navy: #10203c;
  --color-navy-2: #182c50;
  --color-blue: #2563eb;
  --color-green: #8dc63f;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background: #0b1730;
  color: #e7ecfa;
  display: flex;
  align-items: center;
  justify-content: center;
}

#plexus-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.coming-soon {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
}

.logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  padding: 10px;
  box-sizing: content-box;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #dbe6ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 20px;
}

h1 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.sub {
  color: #b7c3dd;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 28px;
}

.contact-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
}
.contact-list .icon { color: var(--color-green); }
.contact-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.contact-list a:hover { color: var(--color-green); }

.back-link {
  display: inline-block;
  color: #8fa3d0;
  text-decoration: none;
  font-size: 0.9rem;
}
.back-link:hover { color: #fff; }

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  .coming-soon { padding: 32px 24px; }
}
