:root {
  --bg: #050013;
  --bg-alt: #0b0520;
  --card: #140428;
  --accent: #c32aff;
  --accent-soft: rgba(195, 42, 255, 0.18);
  --text: #f7f3ff;
  --muted: #a290c4;
  --border: #2a123f;
  --danger: #ff4b81;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.75);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: radial-gradient(
    circle at top,
    #33084f 0,
    #050013 45%,
    #02000a 100%
  );
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

/* Centered layout wrapper */

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding-inline: 20px;
}

/* Layout helpers */

.section {
  padding: 96px 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #2a0b4b 0, #050013 55%);
  border-radius: 32px;
  padding: 30px;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.4rem;
  margin: 0 0 8px;
}

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






/* ====== */
/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(5, 0, 19, 0.95),
      rgba(5, 0, 19, 0.8),
      transparent
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 0;
}

.navbar .Logo-Link {
  color: inherit;
  text-decoration: none;
  transition: all 1s ease-in-out;
}
.navbar .Logo-Link:hover {
  transform: scale(1.025);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1rem;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}
#Portal {
  color: whitesmoke;
}

.nav-links a:hover {
  transition: .2s ease-in-out all;
  color: var(--text);
  font-weight: bold;
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  color: var(--text);
  border: none;
  font-size: 1.6rem;
}

.nav-links a.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Active (current page) */
.nav-links a.nav-link.active,
.nav-drawer a.active {
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
}
.bold {
  font-weight: bold;
}






/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at top,
      rgba(80, 20, 140, 0.32),
      rgba(5, 0, 19, 0.9) 55%
    );
  backdrop-filter: blur(18px);
  display: none;
  flex-direction: column;
  align-items: center;         /* center links horizontally */
  justify-content: flex-start;
  padding: 96px 32px 32px;
  gap: 18px;
  z-index: 40;
}

/* When JS toggles the drawer */
.nav-drawer.is-open {
  display: flex;
}

.nav-drawer a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  max-width: 320px;
  padding: 10px 0;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

/* Subtle hover for mouse/trackpad (desktop or emulators) */
.nav-drawer a:hover {
  color: #ffffff;  
  font-weight: bold;
  transform: translateY(-1px);
}









/*======*/
/* Hero */
.hero {
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.77rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-sub {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

.hero-tags span {
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(39, 7, 81, 0.8);
}

/* Hero visual */

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.vr-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  background: radial-gradient(circle at 20% 0, #4a0b89 0, #050013 60%);
  border-radius: 32px;
  border: 1px solid rgba(195, 42, 255, 0.4);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 20px;
}

.vr-orbit {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px dashed rgba(220, 170, 255, 0.4);
}

.vr-sphere {
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #c32aff 35%, #1e0838);
  box-shadow: 0 0 48px rgba(195, 42, 255, 0.75);
  animation: float 5s ease-in-out infinite;
}

.vr-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 0, 28, 0.8);
  backdrop-filter: blur(12px);
}

/* Grid */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Cards */

.card,
.case-card {
  background: radial-gradient(circle at top left, #2b0b52 0, var(--card) 40%);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.card h3,
.case-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card p,
.case-card p {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--muted);
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.card li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Pills */

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: var(--muted);
  margin-right: 6px;
}

/* Steps */

.steps {
  list-style: none;
  max-width: 840px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps li {
  background: radial-gradient(circle at top left, #2b0b52 0, #0b0520 45%);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-form {
  background: rgba(12, 2, 34, 0.96);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 0, 24, 0.96);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-info h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.contact-info ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}

/* Buttons */

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
    color 0.12s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #7b6cff);
  color: #050013;
  box-shadow: 0 12px 32px rgba(195, 42, 255, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(195, 42, 255, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.full-width {
  width: 100%;
}

/* Footer */

.footer {
  padding: 24px 0 32px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Animations */

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 36px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .section {
    padding: 72px 0;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
}
