:root {
  --bg: #0a0a12;
  --panel: rgba(20, 18, 40, 0.72);
  --panel-strong: rgba(30, 27, 55, 0.8);
  --stroke: rgba(124, 58, 237, 0.22);
  --stroke-strong: rgba(168, 130, 255, 0.42);
  --text: #e8e6f4;
  --muted: #a6a3bc;
  --violet: #a855f7;
  --violet-dark: #7c3aed;
  --violet-soft: rgba(124, 58, 237, 0.18);
  --aqua: #22d3ee;
  --coral: #ff4f84;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  background: linear-gradient(170deg, #12102a 0%, #0a0a12 50%, #0f0d20 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.topbar-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 130, 255, 0.3), transparent);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--violet), #d946ef);
  color: #fff;
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.24);
}

.brand-badge svg {
  width: 16px;
  height: 16px;
}

.brand-wordmark,
.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 800;
}

.brand-wordmark span:first-child,
.footer-wordmark span:first-child {
  color: rgba(255, 255, 255, 0.85);
}

.brand-wordmark span:last-child,
.footer-wordmark span:last-child {
  color: rgba(255, 255, 255, 0.42);
}

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

.nav a {
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.nav a:hover {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav a svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  font-weight: 600;
  font-size: 0.8rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.16);
}

.hero {
  padding: 54px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0a0a12);
}

.hero-shell {
  min-height: 320px;
  display: flex;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-copy-killa {
  max-width: 760px;
}

.badge {
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge-outline {
  border: 1px solid rgba(168, 130, 255, 0.42);
  color: #c7b6f2;
  background: rgba(124, 58, 237, 0.08);
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.6);
}

.hero-status strong {
  color: #d4ae75;
  font-weight: 600;
}

.badge-fill {
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.28);
}

.hero-title,
.section-title {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.55rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.gradient-text {
  background: linear-gradient(90deg, #b983ff, #d86dff, #85d6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-text,
.section-text,
.showcase-note p,
.service-card p,
.launch-meta {
  color: var(--muted);
}

.hero-text {
  max-width: 34ch;
  margin: 18px 0 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  min-width: 84px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.76);
}

.stat-item span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.24);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px 0 20px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-cta svg {
  width: 13px;
  height: 13px;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(124, 58, 237, 0.42);
}

.section-eyebrow,
.service-status {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
}

.section-eyebrow {
  color: #c4b0f0;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
  margin: 0 20px;
}

.section {
  padding: 42px 0;
  position: relative;
  z-index: 1;
}

.glass-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hub-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.section-eyebrow {
  margin: 0;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
}

.section-text {
  margin: 12px 0 0;
  max-width: 58ch;
  font-size: 0.82rem;
}

.chip-grid,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chip,
.tag-list li {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  max-width: 620px;
  margin-bottom: 24px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.section-kicker-line {
  width: 30px;
  height: 1px;
  flex: 0 0 30px;
  align-self: center;
  background: linear-gradient(90deg, rgba(168, 130, 255, 0.65), rgba(168, 130, 255, 0));
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: var(--panel-strong);
  border: 1px solid rgba(124, 58, 237, 0.22);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 130, 255, 0.46);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.service-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  opacity: 0.5;
  transition: opacity 200ms ease;
}

.accent-violet {
  background: linear-gradient(90deg, #d946ef, #7c3aed);
  box-shadow: 0 0 16px rgba(217, 70, 239, 0.35);
}

.accent-aqua {
  background: linear-gradient(90deg, #34d399, #22d3ee);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.3);
}

.accent-coral {
  background: linear-gradient(90deg, #f43f5e, #ec4899);
  box-shadow: 0 0 16px rgba(244, 63, 94, 0.3);
}

.service-card:hover .service-accent {
  opacity: 0.85;
}

.service-external {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255, 255, 255, 0.12);
  transition: color 200ms ease, transform 200ms ease;
}

.service-external svg {
  width: 14px;
  height: 14px;
}

.service-card:hover .service-external {
  color: rgba(255, 255, 255, 0.34);
  transform: translate(1px, -1px);
}

.featured-card {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.22), rgba(20, 18, 40, 0.82));
  border-color: rgba(168, 130, 255, 0.34);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  flex: 0 0 auto;
}

.service-icon svg {
  width: 16px;
  height: 16px;
}

.service-icon.violet {
  background: linear-gradient(135deg, #c04dff, #8f3fff);
  box-shadow: 0 10px 24px rgba(180, 92, 255, 0.24);
}

.service-icon.aqua {
  background: linear-gradient(135deg, #29dcc6, #1cc2fb);
  box-shadow: 0 10px 24px rgba(54, 226, 207, 0.18);
}

.service-icon.coral {
  background: linear-gradient(135deg, #ff5a84, #ff3565);
  box-shadow: 0 10px 24px rgba(255, 79, 132, 0.18);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  font-size: 0.78rem;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.price-tag {
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.24);
  font-size: 0.82rem;
}

.price-note {
  color: var(--muted);
  font-size: 0.74rem;
}

.tag-list {
  margin-top: auto;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.32);
  transition: color 180ms ease, transform 180ms ease;
  font-size: 0.78rem;
}

.card-link svg {
  width: 13px;
  height: 13px;
  transition: transform 180ms ease, color 180ms ease;
}

.card-link:hover {
  color: rgba(255, 255, 255, 0.62);
}

.card-link:hover svg {
  transform: translateX(2px);
}


.launch-card {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 26px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent 28%),
    rgba(20, 18, 40, 0.62);
}

.launch-copy {
  max-width: 620px;
}

#launch .section-eyebrow {
  margin-bottom: 8px;
}

#launch .section-title {
  max-width: 16ch;
  margin-bottom: 10px;
}

#launch .section-text {
  max-width: 58ch;
  line-height: 1.8;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-badge {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  opacity: 0.75;
}

.footer-badge svg {
  width: 12px;
  height: 12px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
}

.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.footer-mail svg {
  width: 13px;
  height: 13px;
}

.footer-mail:hover {
  color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 980px) {
  .hub-card,
  .launch-card,
  .service-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .launch-actions {
    align-items: flex-start;
  }

  .hero-stats {
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 14px;
    min-height: auto;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-stats {
    align-items: flex-start;
  }

  .stat-divider {
    display: none;
  }

  .glass-card,
  .service-card {
    padding: 22px;
  }

  .container {
    width: min(100% - 20px, 1100px);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
