:root {
  --bg: #0B1220;
  --panel: rgba(255, 255, 255, .06);
  --panel-2: rgba(255, 255, 255, .10);
  --text: #EAF0FF;
  --muted: rgba(234, 240, 255, .72);
  --line: rgba(234, 240, 255, .14);
  --accent: #6C4CFF;
  --accent-2: #39D0FF;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .35);
  --max: 1100px;

  /* Timing & Animation */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* Modern smooth scrolling */
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(circle at 20% 10%, rgba(108, 76, 255, .25) 0%, rgba(108, 76, 255, .15) 25%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(57, 208, 255, .18) 0%, rgba(57, 208, 255, .10) 25%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(108, 76, 255, .12) 0%, rgba(108, 76, 255, .06) 30%, transparent 55%),
    var(--bg);
  background-attachment: fixed;
  background-size: 100% 100%;
  color: var(--text);
  line-height: 1.45;
  /* Smooth animations */
  animation: fadeIn 0.6s ease-out;
}

/* Page load animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Mobile-optimized background */
@media (max-width: 900px) {
  body {
    background:
      radial-gradient(circle at 30% 15%, rgba(108, 76, 255, .28) 0%, rgba(108, 76, 255, .12) 35%, transparent 55%),
      radial-gradient(circle at 70% 25%, rgba(57, 208, 255, .20) 0%, rgba(57, 208, 255, .08) 35%, transparent 55%),
      radial-gradient(ellipse 120% 80% at 50% 85%, rgba(108, 76, 255, .15) 0%, rgba(108, 76, 255, .05) 40%, transparent 65%),
      var(--bg);
    background-attachment: fixed;
    background-size: 100% 100%;
  }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11, 18, 32, .55);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform var(--transition-fast);
}

.brand:hover {
  transform: translateY(-1px);
}


.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 12px;
  position: relative;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

/* Focus states for accessibility */
.nav-links a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  transition: transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(234, 240, 255, .22);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.btn:active {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(108, 76, 255, .95), rgba(57, 208, 255, .85));
  border-color: transparent;
  color: #07101F;
  box-shadow: 0 4px 16px rgba(108, 76, 255, .3);
}

.btn.primary:hover {
  filter: saturate(1.1) brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 76, 255, .4);
}

.hero {
  padding: 56px 0 24px;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .nav-links {
    display: none;
  }
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .4);
  border-color: rgba(234, 240, 255, .2);
}

.hero-card {
  padding: 28px
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(57, 208, 255, .12);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(57, 208, 255, .12);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(57, 208, 255, .06);
  }
}

/* Fluid responsive typography */
h1 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 5vw + 1rem, 2.75rem);
  line-height: 1.08;
  letter-spacing: -.6px;
}

@media (max-width: 520px) {
  h1 {
    letter-spacing: -.4px
  }
}

.sub {
  color: var(--muted);
  font-size: clamp(0.938rem, 1vw + 0.75rem, 1rem);
  max-width: 62ch;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
}

.stat {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(234, 240, 255, .10);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.stat:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(234, 240, 255, .16);
}

.stat b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 26px 0;
  animation: fadeInSection 0.6s ease-out;
}

@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section h2 {
  font-size: clamp(1.25rem, 2vw + 0.75rem, 1.375rem);
  margin: 0 0 10px;
}

.section p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(0.875rem, 1vw + 0.625rem, 0.938rem);
}

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

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr
  }
}

.feature {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(234, 240, 255, .10);
  transition: transform var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.feature:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(234, 240, 255, .18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.feature h3 {
  margin: 0 0 6px;
  font-size: clamp(0.938rem, 1.5vw + 0.5rem, 1rem);
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.813rem, 1vw + 0.5rem, 0.875rem);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(108, 76, 255, .14);
  border: 1px solid rgba(108, 76, 255, .25);
  color: var(--text);
  font-size: 12px;
  margin-bottom: 10px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.pill:hover {
  background: rgba(108, 76, 255, .2);
  border-color: rgba(108, 76, 255, .35);
}

.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 900px) {
  .products {
    grid-template-columns: 1fr
  }
}

.product {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(234, 240, 255, .10);
  transition: transform var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
  cursor: pointer;
}

.product:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(234, 240, 255, .18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
}

.product .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.badge {
  font-size: 12px;
  color: #07101F;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(108, 76, 255, .95), rgba(57, 208, 255, .85));
  box-shadow: 0 2px 8px rgba(108, 76, 255, .25);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.product:hover .badge {
  box-shadow: 0 4px 12px rgba(108, 76, 255, .35);
  transform: scale(1.05);
}

.product h3 {
  margin: 10px 0 6px;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
}

.product p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: clamp(0.813rem, 1vw + 0.5rem, 0.875rem);
}

.product a {
  font-weight: 700;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.product a:hover {
  color: var(--accent-2);
  transform: translateX(3px);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

footer {
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 13px;
}

footer .row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.muted-link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.muted-link:hover {
  color: var(--text);
}

.site-logo {
  height: 42px;
  width: auto;
  display: block;
  transition: transform var(--transition-fast);
}

.site-logo:hover {
  transform: scale(1.05);
}