:root {
  --bg: #05030a;
  --bg-alt: #0c0714;
  --accent: #ff8acb;
  --accent-strong: #ff6fb3;
  --accent-soft: rgba(255, 182, 229, 0.7);
  --accent-muted: #f3a7d9;
  --text: #fdf5ff;
  --text-muted: #c8b7d9;
  --border-subtle: rgba(255, 255, 255, 0.12);
  --glass: rgba(11, 5, 25, 0.85);
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  background: radial-gradient(circle at top, #1b0b2a 0%, #05030a 40%, #020109 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orbit,
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.bg-orbit {
  background:
    radial-gradient(circle at 20% -10%, rgba(255, 182, 229, 0.35), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(255, 132, 200, 0.6), transparent 55%),
    radial-gradient(circle at 50% 110%, rgba(119, 46, 134, 0.8), transparent 60%);
  filter: blur(1px);
}

.bg-grid {
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.11;
  mix-blend-mode: screen;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(3, 0, 8, 0.9), transparent);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(8, 4, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-muted);
}

.logo-text {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-muted);
  text-shadow:
    0 0 24px rgba(255, 144, 215, 0.65),
    0 0 2px rgba(255, 255, 255, 0.7);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), #ffe1f7);
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

.main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 20px 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(8, 4, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffe8fb;
  text-shadow:
    0 20px 40px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(255, 173, 229, 0.85);
}

h1 span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-subtitle {
  margin: 8px 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-strong), #ffe1f7);
  color: #2c071b;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.9),
    0 0 26px rgba(255, 160, 220, 0.9);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.95),
    0 0 32px rgba(255, 177, 230, 1);
}

.btn-ghost {
  background: rgba(8, 3, 18, 0.8);
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(14, 7, 32, 0.95);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
}

.hero-stats > div {
  min-width: 80px;
}

.stat-number {
  margin: 0;
  font-weight: 600;
  color: var(--accent-muted);
}

.stat-label {
  margin: 2px 0 0;
  color: var(--text-muted);
}

.hero-right {
  position: relative;
}

.card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(255, 182, 229, 0.25), transparent 65%),
    var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(26px);
}

.card-main {
  padding: 16px 16px 18px;
  transform-origin: center;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 11px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot-red {
  background: #ff5464;
}

.dot-yellow {
  background: #ffcf5a;
}

.dot-green {
  background: #43d98d;
}

.card-title {
  margin-left: 6px;
  color: var(--text-muted);
}

.card-tag {
  margin-left: auto;
  padding: 2px 8px;
  font-size: 10px;
  border-radius: 999px;
  background: rgba(255, 182, 229, 0.15);
  color: var(--accent-muted);
  border: 1px solid rgba(255, 182, 229, 0.5);
}

.card-body {
  padding-top: 6px;
}

.card-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card-column h3 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-muted);
}

.card-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}

.card-column li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.switch {
  position: relative;
  width: 30px;
  height: 16px;
  display: inline-block;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  content: '';
  position: absolute;
  height: 12px;
  width: 12px;
  left: 2px;
  bottom: 2px;
  background: linear-gradient(135deg, var(--accent-strong), #ffe1f7);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 150, 222, 0.9);
  transition: 0.2s;
}

.switch input:checked + .slider {
  background-color: rgba(255, 182, 229, 0.35);
}

.switch input:checked + .slider::before {
  transform: translateX(12px);
}

.pill-small {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  background: rgba(255, 182, 229, 0.16);
  color: var(--accent-soft);
  border: 1px solid rgba(255, 182, 229, 0.45);
}

.range {
  position: relative;
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.range-fill {
  position: absolute;
  inset: 0;
  width: 55%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
}

.range-fill-pink {
  width: 78%;
  background: linear-gradient(90deg, var(--accent-strong), rgba(255, 255, 255, 0.6));
  box-shadow: 0 0 18px rgba(255, 171, 226, 0.9);
}

.card-tagline {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 2, 16, 0.9);
}

.card-tagline p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.tag-paid {
  padding: 4px 10px;
  border-radius: 999px;
  background: radial-gradient(circle at top, #ffe1f7, var(--accent-strong));
  color: #2c071b;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.floating-delayed {
  animation: float 7s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateZ(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-10px) translateZ(0) rotateX(0.2deg);
  }
}

.section {
  padding: 40px 0;
}

.section-header {
  margin-bottom: 20px;
}

.section-header h2 {
  margin: 0 0 4px;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-muted);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(7, 2, 18, 0.9);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--accent-muted);
}

.feature-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.preview-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.preview-card {
  max-width: 560px;
  width: 100%;
  padding: 20px 22px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(255, 182, 229, 0.22), transparent 60%),
    rgba(8, 2, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.preview-pill {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 182, 229, 0.65);
  font-size: 11px;
  color: var(--accent-soft);
}

.preview-image {
  width: 100%;
  max-height: 260px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  margin: 4px 0 10px;
}

.preview-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.section-download {
  padding-top: 52px;
}

.download-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 26px;
  padding: 20px 22px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(255, 182, 229, 0.32), transparent 60%),
    rgba(7, 2, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
}

.download-info h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.download-info p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.download-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.download-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.btn-download {
  min-width: 220px;
}

.download-note {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.faq-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: rgba(7, 2, 18, 0.9);
  border: 1px solid var(--border-subtle);
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--accent-muted);
}

.faq-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

code {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(11, 4, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--accent-soft);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding: 16px 0 22px;
  background: radial-gradient(circle at top, rgba(255, 182, 229, 0.1), transparent 55%);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-brand {
  font-weight: 500;
  color: var(--accent-muted);
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .header-inner {
    gap: 14px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .features-grid,
  .faq-grid,
  .download-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .download-card {
    padding: 18px 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .main {
    padding-inline: 16px;
  }

  .hero-subtitle {
    max-width: none;
  }

  .card-main {
    border-radius: 22px;
  }
}

