@font-face {
  font-family: "TypeRight";
  src: url("type-right.type-right.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0f1114;
  --surface: #171a1f;
  --surface-light: #20242b;
  --border: rgba(255, 255, 255, 0.1);
  --text: #e8ebef;
  --text-muted: #aab3bd;
  --accent: #a020f0;
  --accent-strong: #d08bff;
  --glow: #e0b6ff;
  --gradient: linear-gradient(135deg, #7a00cc, #a020f0, #c96bff);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Trebuchet MS", Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.display-font {
  font-family: "TypeRight", "Impact", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

.glow-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.blob-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(160, 32, 240, 0.35) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  animation: float1 14s ease-in-out infinite;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214, 122, 255, 0.28) 0%, transparent 70%);
  top: 35%;
  left: -120px;
  animation: float2 16s ease-in-out infinite;
}

.blob-3 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(125, 0, 210, 0.3) 0%, transparent 70%);
  bottom: -130px;
  right: -80px;
  animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(35px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-45px) translateX(28px); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(30px) translateX(-36px); }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 17, 20, 0.74);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.35rem;
  color: var(--accent-strong);
  text-shadow: 0 0 15px rgba(208, 139, 255, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text) !important;
}

.btn-nav:hover {
  border-color: rgba(160, 32, 240, 0.5);
  background: var(--surface-light);
}

.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 128px 24px 40px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--accent-strong);
  background: rgba(160, 32, 240, 0.12);
  border: 1px solid rgba(160, 32, 240, 0.32);
  margin-bottom: 28px;
}

.hero-brand {
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  line-height: 1;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff 12%, #e1b8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: clamp(1.9rem, 5.4vw, 3.9rem);
  line-height: 1.08;
  background: linear-gradient(180deg, #ffffff 24%, #d9a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}

.showcase {
  max-width: 980px;
  margin: 0 auto;
  padding: 8px 24px 24px;
}

.showcase-window {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121419;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 24px 80px rgba(160, 32, 240, 0.12),
    0 0 120px rgba(160, 32, 240, 0.08);
}

.desktop-stage {
  position: relative;
  min-height: 340px;
  padding: 52px 20px 68px;
  background:
    linear-gradient(150deg, rgba(45, 22, 56, 0.45), rgba(21, 24, 30, 0.95)),
    radial-gradient(circle at 20% 25%, rgba(214, 122, 255, 0.14), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(160, 32, 240, 0.1), transparent 55%);
}

.ghost-icon {
  position: relative;
  width: 82px;
  height: 82px;
  z-index: 1;
  animation: ghostFade 4.8s ease-in-out infinite;
  filter: drop-shadow(0 0 14px rgba(200, 110, 255, 0.45));
}

.stage-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: left;
}

@keyframes ghostFade {
  0% { opacity: 1; transform: scale(1); }
  35% { opacity: 0.88; transform: scale(0.98); }
  58% { opacity: 0.12; transform: scale(0.96); }
  74% { opacity: 0; transform: scale(0.95); }
  84% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  scroll-margin-top: 90px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  color: #111318;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--gradient);
  box-shadow: 0 6px 24px rgba(160, 32, 240, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(160, 32, 240, 0.4);
}

.btn-primary.large {
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 10px;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-secondary:hover {
  border-color: rgba(160, 32, 240, 0.5);
  background: var(--surface-light);
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.72;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  background: linear-gradient(180deg, #ffffff 20%, #d7a4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.features,
.screenshots,
.how-it-works {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(23, 26, 31, 0.72);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(160, 32, 240, 0.45);
  transform: translateY(-3px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(160, 32, 240, 0.14);
  color: var(--glow);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.02rem;
  margin-bottom: 9px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.screenshot-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.screenshot-card:hover {
  border-color: rgba(160, 32, 240, 0.45);
  transform: translateY(-2px);
}

.mock-desktop {
  min-height: 240px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(52, 24, 71, 0.35), rgba(23, 26, 31, 0.95));
}

.mock-icon {
  width: 72px;
  height: 72px;
}

.hover-window {
  cursor: default;
}

.hover-icon {
  opacity: 0;
  transform: scale(0.96);
  filter: drop-shadow(0 0 12px rgba(160, 32, 240, 0.42));
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hover-window:hover .hover-icon {
  opacity: 1;
  transform: scale(1);
}

.screenshot-label {
  display: block;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  text-align: center;
  padding: 22px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #0f1114;
  background: var(--gradient);
  box-shadow: 0 0 22px rgba(160, 32, 240, 0.35);
  margin-bottom: 18px;
}

.step h3 {
  font-size: 1.03rem;
  margin-bottom: 9px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px 64px;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 620px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.28rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-bottom: 6px;
}

.footer-disclaimer {
  opacity: 0.6;
}

.feature-card,
.screenshot-card,
.step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.feature-card.visible,
.screenshot-card.visible,
.step.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .nav-links a:not(.btn-nav) {
    display: none;
  }

  .hero {
    padding-top: 116px;
  }

  .features-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .desktop-stage {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .showcase {
    padding-left: 0;
    padding-right: 0;
  }
}
