:root {
  --ink: #0f1118;
  --muted: #5e6676;
  --bg: #0d0f16;
  --card: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.15);
  --accent-a: #ff4b8b;
  --accent-b: #ff8f1f;
  --accent-c: #2b7bff;
  --accent-d: #7c35ff;
  --shadow: 0 24px 60px rgba(10, 12, 20, 0.45);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #f4f6ff;
  background: #0b0d12;
}

img {
  max-width: 100%;
  display: block;
}

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

[v-cloak] {
  display: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(11, 13, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.logo {
  width: 130px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: #d5d8e2;
}

.nav-links a:hover {
  color: #fff;
}

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

.chip {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
}

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.solid {
  background: linear-gradient(120deg, var(--accent-a), var(--accent-b) 50%, var(--accent-c));
  color: #0d0f16;
  box-shadow: 0 14px 30px rgba(255, 100, 140, 0.35);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  background: transparent;
}

.btn.full {
  width: 100%;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 110px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 15% 20%, rgba(255, 75, 139, 0.45), transparent 45%),
              radial-gradient(circle at 85% 20%, rgba(43, 123, 255, 0.45), transparent 42%),
              radial-gradient(circle at 50% 80%, rgba(255, 143, 31, 0.35), transparent 50%);
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.65;
  animation: float 12s ease-in-out infinite;
}

.glow-a {
  top: -120px;
  left: -80px;
  background: rgba(255, 75, 139, 0.8);
}

.glow-b {
  bottom: -160px;
  right: -100px;
  background: rgba(43, 123, 255, 0.8);
  animation-delay: -4s;
}

.grain {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="160" height="160" filter="url(%23n)" opacity="0.12"/></svg>');
  opacity: 0.2;
}

.wave {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(90deg, rgba(255, 75, 139, 0.4), rgba(255, 143, 31, 0.35), rgba(43, 123, 255, 0.4));
  filter: blur(40px);
  animation: wave 8s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-family: "Eczar", serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 16px 0 18px;
}

.lead {
  color: #d2d6e3;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 22px 0 30px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 16px;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  color: #cbd0de;
}

.hero-stage {
  position: relative;
}

.slider {
  background: rgba(15, 17, 24, 0.8);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  min-height: 200px;
}

.slide {
  display: none;
  animation: fadeUp 0.6s ease;
}

.slide.active {
  display: block;
}

.slide-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent-b);
  text-transform: uppercase;
}

.slide h3 {
  margin: 12px 0;
  font-size: 24px;
}

.slide p {
  color: #c9cedc;
  line-height: 1.6;
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.slider-dots button {
  width: 26px;
  height: 5px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.slider-dots button.active {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-c));
}

.image-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.image-stack img {
  border-radius: 18px;
  height: 120px;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.pulse-card {
  position: absolute;
  right: -10px;
  top: -20px;
  background: linear-gradient(140deg, rgba(255, 75, 139, 0.9), rgba(124, 53, 255, 0.85));
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 12px;
  color: #fff;
  box-shadow: var(--shadow);
  animation: pulse 2.6s ease-in-out infinite;
}

.marquee {
  margin-top: 50px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  padding: 18px 0;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 90px 0;
}

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 12px;
}

.section-head p {
  color: #cbd0de;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step span {
  color: var(--accent-b);
  font-weight: 700;
}

.showcase {
  background: linear-gradient(120deg, rgba(255, 75, 139, 0.08), rgba(43, 123, 255, 0.08));
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.showcase-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-card.highlight {
  background: linear-gradient(140deg, rgba(255, 75, 139, 0.2), rgba(43, 123, 255, 0.2));
}

.plans .plan {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.plan .price {
  font-size: 28px;
  font-weight: 700;
  margin: 14px 0 12px;
}

.plan-placeholder {
  text-align: center;
  color: #cbd0de;
}

.download {
  padding: 80px 0 100px;
}

.download-box {
  background: linear-gradient(120deg, rgba(255, 75, 139, 0.25), rgba(43, 123, 255, 0.25));
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.download-actions {
  display: grid;
  gap: 8px;
}

.faq-grid details {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 12px;
}

.panel {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}

.panel.open {
  display: flex;
}

.panel-card {
  background: #f8f5f2;
  color: #141620;
  border-radius: 24px;
  padding: 24px;
  width: min(460px, 92vw);
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.panel-close {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.panel-logo {
  width: 110px;
}

.panel-actions {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.panel-actions form {
  display: grid;
  gap: 10px;
}

.panel-actions input,
.panel-actions select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
}

.panel-note {
  color: #52586a;
  font-size: 12px;
}

.divider {
  text-align: center;
  font-size: 12px;
  color: #6a7080;
  text-transform: uppercase;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.link {
  background: none;
  border: none;
  color: #4f4fff;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.footer {
  padding: 50px 0 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  width: 140px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-meta {
  display: grid;
  gap: 6px;
  color: #cbd0de;
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: 20px;
    left: 20px;
    background: rgba(10, 12, 18, 0.98);
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    transform: translateY(-140%);
    transition: transform 0.25s ease;
  }

  body.menu-open .nav-links {
    transform: translateY(0);
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .image-stack {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 90px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .grid-two {
    grid-template-columns: 1fr;
  }

  .download-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
