



 
[hidden] { display: none !important; }
:root {
  --background: #ffffff;
  --foreground: #0f0a2a;
  --card: #ffffff;
  --primary: #3b1f8e;
  --primary-dark: #2a1563;
  --primary-hover: #3b1f8e;
  --secondary: #f0ecfa;
  --muted: #f5f3fa;
  --muted-foreground: #6e6494;
  --accent: #f5a623;
  --accent-dark: #e69a1c;
  --border: #e6e0f3;
  --teal: #1a7a6d;
  --teal-light: #1f7e7a;
  --radius: 0.75rem;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}




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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--foreground);
  background: var(--card);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
input, textarea { font-family: inherit; }
ul { list-style: none; }




.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.container-md { max-width: 896px; }
.container-sm { max-width: 768px; }




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

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-fade-in-up { animation: fade-in-up 0.6s ease-out both; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }





 
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}

.btn-icon { flex-shrink: 0; width: 1rem; height: 1rem; }

.btn-primary {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(42, 21, 99, 0.25);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(42, 21, 99, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: #0f0a2a;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.2);
}
.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
}

.btn-outline {
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--secondary); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

.btn-ghost {
  background: transparent;
  color: var(--foreground);
}
.btn-ghost:hover { background: var(--secondary); }

 
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(59, 31, 142, 0.1);
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-pill-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border: none;
}

.badge-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--accent);
  color: #0f0a2a;
  flex-shrink: 0;
}
.badge-star svg { width: 0.75rem; height: 0.75rem; }

 
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

.section-desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  line-height: 1.7;
}

 
.divider {
  height: 1px;
  background: var(--border);
}




.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.navbar-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1rem 0;
}

@media (min-width: 1024px) {
  .navbar-wrap { padding: 1rem 2rem 0; }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.navbar-logo-img { width: 2rem; height: 2rem; object-fit: contain; }
.navbar-logo-icon { font-size: 1.5rem; }
.navbar-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover {
  background: var(--secondary);
  color: var(--foreground);
}

.navbar-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) { .navbar-right { display: flex; } }

.navbar-cta {
  font-size: 0.875rem;
  padding: 0.5625rem 1.25rem;
  border-radius: 0.75rem;
}

 
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: background 0.15s, color 0.15s;
}
.lang-btn:hover { background: var(--secondary); color: var(--foreground); }

.chevron-icon {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
}
.chevron-icon.rotated { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: 9rem;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 100;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: background 0.15s;
  text-align: left;
}
.lang-option:hover { background: var(--secondary); }
.lang-option.active { font-weight: 700; color: var(--primary-dark); }
.lang-code { font-size: 0.75rem; font-family: monospace; color: var(--muted-foreground); }

 
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.75rem;
  color: var(--foreground);
}
.mobile-toggle svg { width: 1.25rem; height: 1.25rem; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

 
.mobile-menu {
  margin-top: 0.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-link:hover { background: var(--secondary); color: var(--foreground); }

.mobile-bottom {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-lang-row {
  display: flex;
  gap: 0.25rem;
}
.mobile-lang-btn {
  flex: 1;
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: all 0.15s;
}
.mobile-lang-btn:hover { background: var(--secondary); }
.mobile-lang-btn.active {
  border-color: var(--primary-dark);
  background: #f0ecfa;
  color: var(--primary-dark);
}

.mobile-cta { width: 100%; border-radius: 0.75rem; }




.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 0;
  background: #ffffff;
}

@media (min-width: 1024px) {
  .hero-section { padding-top: 9rem; }
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #f0ecfa 0%, #ffffff 60%, #ffffff 100%);
  pointer-events: none;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-bg-blob-1 {
  width: 24rem;
  height: 24rem;
  top: -6rem;
  left: -6rem;
  background: rgba(59, 31, 142, 0.05);
}
.hero-bg-blob-2 {
  width: 18rem;
  height: 18rem;
  top: 5rem;
  right: -6rem;
  background: rgba(245, 166, 35, 0.08);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    padding-bottom: 5rem;
  }
}

 
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 36rem;
  align-self: flex-start;
}

@media (min-width: 1024px) {
  .hero-left {
    align-items: flex-start;
    text-align: left;
    align-self: flex-start;
  }
}

.hero-title {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.5rem; } }

.hero-title-gradient {
  display: block;
  margin-top: 0.25rem;
  background: linear-gradient(to right, #3b1f8e, #6b4fcf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  max-width: 28rem;
}

@media (min-width: 1024px) { .hero-desc { font-size: 1.125rem; } }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

.hero-cta-primary {
  box-shadow: 0 6px 20px rgba(42, 21, 99, 0.25);
  padding: 0.875rem 1.75rem;
}
.hero-cta-primary:hover { box-shadow: 0 8px 28px rgba(42, 21, 99, 0.3); }

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-trust { flex-direction: row; }
}
@media (min-width: 1024px) {
  .hero-trust { align-items: center; }
}

.trust-avatars { height: 2.5rem; }

.trust-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

 
.hero-right {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 26rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
}

 
.tab-switcher {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #f5f3fa;
  width: fit-content;
  margin: 0 auto 1rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: all 0.2s;
}
.tab-btn:hover { color: var(--foreground); }
.tab-btn.active {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 2px 8px rgba(42, 21, 99, 0.2);
}

 
.hero-screenshot {
  position: relative;
  width: 100%;
}

.screenshot-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(59,31,142,0.1), transparent, rgba(245,166,35,0.1));
  filter: blur(2rem);
}

.screenshot-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(42,21,99,0.1);
}

.screenshot-img {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

 
.hero-panel {
  width: 100%;
}

.hero-panel::-webkit-scrollbar { display: none; }

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

.hero-space-card {
  font-size: 0.82rem;
}

.hero-space-card .space-title {
  font-size: 0.92rem;
}

.hero-space-card .space-btns {
  gap: 0.3rem;
}

.hero-space-card .space-btn {
  font-size: 0.72rem;
  padding: 0.3rem 0.4rem;
}

 
.stats-bar {
  position: relative;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #f9f8fc;
}

@media (min-width: 1024px) { .stats-bar { margin-top: 6rem; } }

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

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item:nth-child(2) { border-right: none; }

@media (min-width: 768px) {
  .stat-item:nth-child(2) { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-right: none; }
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--foreground);
}
@media (min-width: 1024px) { .stat-value { font-size: 2.25rem; } }

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.stat-sub {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal);
}




.download-section {
  background: var(--card);
  padding: 5rem 0;
}

@media (min-width: 1024px) { .download-section { padding: 7rem 0; } }

.download-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(42,21,99,0.05);
}

@media (min-width: 768px) { .download-card { padding: 2rem; } }

 
.url-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) { .url-row { flex-direction: row; } }

.url-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #f9f8fc;
  transition: all 0.2s;
}

.url-input-wrap:focus-within {
  border-color: rgba(59, 31, 142, 0.4);
  background: var(--card);
  box-shadow: 0 0 0 4px rgba(59, 31, 142, 0.05);
}

.url-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
}

.url-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--foreground);
}
.url-input::placeholder { color: rgba(110, 100, 148, 0.5); }

.btn-download {
  flex-shrink: 0;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
}

 
.options-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.option-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #f9f8fc;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.option-label:hover {
  border-color: rgba(59, 31, 142, 0.2);
  background: var(--secondary);
}
.option-label svg { color: var(--muted-foreground); flex-shrink: 0; }

.option-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.375rem;
  border: 2px solid var(--border);
  background: var(--card);
  transition: border-color 0.15s;
  flex-shrink: 0;
}
.option-label:hover .option-checkbox { border-color: rgba(59,31,142,0.3); }

.download-notes {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(110, 100, 148, 0.6);
  line-height: 1.5;
}
.download-notes p { margin-bottom: 0.125rem; }




.library-section {
  background: #f9f8fc;
  padding: 5rem 0;
}
@media (min-width: 1024px) { .library-section { padding: 7rem 0; } }

.library-header {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .library-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.view-all-btn {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  gap: 0.375rem;
}
.view-all-btn:hover { background: var(--secondary); color: var(--primary-dark); }

 
.spaces-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { .spaces-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .spaces-grid { grid-template-columns: repeat(3, 1fr); } }

 
.space-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(135deg, #1a6b6a 0%, #1f7e7a 50%, #258a82 100%);
  padding: 1.25rem;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(26, 107, 106, 0.15);
  transition: all 0.25s ease;
}
.space-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 107, 106, 0.25);
}

.space-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.space-badge {
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  background: rgba(255,255,255,0.15);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.space-actions {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.space-card:hover .space-actions { opacity: 1; }

.space-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  transition: background 0.15s;
  color: #fff;
}
.space-action-btn:hover { background: rgba(255,255,255,0.2); }

.space-host-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}

.space-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}

.space-host-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.host-badge {
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  background: rgba(245, 166, 35, 0.9);
  color: #0f0a2a;
  font-size: 0.625rem;
  font-weight: 700;
  margin-left: auto;
}

.space-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.space-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.space-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.space-playbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  background: rgba(15, 10, 42, 0.3);
  backdrop-filter: blur(4px);
  margin-bottom: 0.875rem;
}

.space-play-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.space-duration {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.space-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.space-btn {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.15s;
}
.space-btn:hover { background: rgba(255,255,255,0.15); }

.load-more-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

.load-more-btn {
  padding: 0.625rem 2rem;
  font-weight: 600;
  color: var(--foreground);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}




.how-section {
  background: var(--card);
  padding: 5rem 0;
}
@media (min-width: 1024px) { .how-section { padding: 7rem 0; } }

.steps-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-connector {
  display: none;
  position: absolute;
  top: 4rem;
  left: calc(33.33% - 1rem);
  width: calc(33.33% + 2rem);
  height: 1px;
  background: linear-gradient(to right, rgba(59,31,142,0.2), rgba(26,122,109,0.2), rgba(245,166,35,0.2));
}
@media (min-width: 768px) { .step-connector { display: block; } }

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon-wrap { position: relative; margin-bottom: 1.5rem; }

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.2s;
}
.step-item:hover .step-icon { transform: scale(1.1); }

.step-icon-purple { background: var(--primary); color: #fff; }
.step-icon-teal { background: var(--teal); color: #fff; }
.step-icon-amber { background: var(--accent); color: #0f0a2a; }

.step-num {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--card);
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  ring: 2px solid var(--border);
  border: 2px solid var(--border);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  max-width: 16rem;
}




.features-section {
  background: var(--card);
  padding: 5rem 0;
}
@media (min-width: 1024px) { .features-section { padding: 7rem 0; } }

.features-featured {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .features-featured { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition: all 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59,31,142,0.15);
  box-shadow: 0 12px 32px rgba(59,31,142,0.05);
}

.feature-card-lg { padding: 1.75rem; }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
}

.feature-card-lg .feature-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.5rem;
}

.fi-purple { background: rgba(59,31,142,0.1); color: var(--primary); }
.fi-teal { background: rgba(26,122,109,0.1); color: var(--teal); }
.fi-amber { background: rgba(245,166,35,0.1); color: #c88a1a; }
.fi-blue { background: rgba(45,140,240,0.1); color: #2d8cf0; }
.fi-pink { background: rgba(224,82,151,0.1); color: #e05297; }

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.feature-title-sm {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}
.feature-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.features-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }




.pricing-section {
  background: #f9f8fc;
  padding: 5rem 0;
}
@media (min-width: 1024px) { .pricing-section { padding: 7rem 0; } }

.pricing-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--secondary);
  border-radius: 9999px;
  padding: 0.25rem;
  width: fit-content;
  margin: 0 auto 3rem;
}

.pricing-tab {
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}

.pricing-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(59,31,142,0.25);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1400px) { .pricing-grid { grid-template-columns: repeat(5, 1fr); } }

.pricing-onetime-grid {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px)  { .pricing-onetime-grid { grid-template-columns: repeat(3, 1fr); } }

 
.onetime-card {
  align-items: center;
  background-image: radial-gradient(circle, rgba(59,31,142,0.07) 1px, transparent 1px);
  background-size: 16px 16px;
  padding-top: 2rem;
}

.onetime-title {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.onetime-select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  color: var(--foreground);
  cursor: pointer;
  margin-bottom: 1rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236e6494' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.onetime-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59,31,142,0.1);
}

.onetime-total {
  min-height: 2.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.onetime-total span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted-foreground);
  display: block;
  margin-top: 0.1rem;
  letter-spacing: 0;
}

.onetime-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition: all 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(59,31,142,0.05);
}

.pricing-card-popular {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(59,31,142,0.1);
  outline: 1px solid var(--primary);
}

.popular-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: var(--accent);
  color: #0f0a2a;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.pricing-top { margin-bottom: 1.5rem; }

.plan-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.plan-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.price-period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.plan-features {
  flex: 1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.plan-feature.included { color: var(--foreground); }
.plan-feature.excluded { color: rgba(110,100,148,0.5); }

.feat-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.check-yes { background: rgba(26,122,109,0.1); color: var(--teal); }
.check-no { background: var(--muted); color: rgba(110,100,148,0.3); }

.plan-btn {
  width: 100%;
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
}

.plan-btn-primary {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(42,21,99,0.2);
}
.plan-btn-primary:hover { background: var(--primary-hover); }

.plan-btn-ghost {
  background: var(--secondary);
  color: var(--primary);
}
.plan-btn-ghost:hover { background: #e6e0f3; }

.plan-btn-ghost:disabled,
.plan-btn-ghost[disabled] {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.plan-btn-outline-danger {
  background: transparent;
  color: #dc2626;
  border: 1.5px solid #dc2626;
}
.plan-btn-outline-danger:hover { background: rgba(220,38,38,0.07); }

 
.onetime-card .package-select {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
.pricing-card .package-select {
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  border-color: var(--border);
  background: rgba(255,255,255,0.9);
  margin-bottom: 0;
}
.prc-cancel-link {
  display: block;
  margin-top: 6px;
  text-align: center;
  cursor: pointer;
  font-size: 0.75rem;
  color: #dc2626;
  text-decoration: underline;
}




.faq-section {
  background: var(--card);
  padding: 5rem 0;
}
@media (min-width: 1024px) { .faq-section { padding: 7rem 0; } }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.2s ease;
}
.faq-item:hover { border-color: rgba(59,31,142,0.1); }
.faq-item.open {
  border-color: rgba(59,31,142,0.2);
  background: #f9f8fc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
}

.faq-q {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  padding-right: 1rem;
  line-height: 1.5;
  flex: 1;
}

.faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-chevron.active {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}




.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
  padding: 5rem 0;
}
@media (min-width: 1024px) { .cta-section { padding: 7rem 0; } }

.cta-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-blob-1 {
  width: 20rem;
  height: 20rem;
  top: -10rem;
  left: -10rem;
  background: rgba(107, 79, 207, 0.2);
}
.cta-blob-2 {
  width: 20rem;
  height: 20rem;
  bottom: -10rem;
  right: -10rem;
  background: rgba(245, 166, 35, 0.1);
}

.cta-dots {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) { .cta-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-title { font-size: 3rem; } }

.cta-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

.cta-primary {
  box-shadow: 0 6px 20px rgb(167 85 247 / 23%);
}
.cta-primary:hover { box-shadow: 0 8px 28px rgb(245 166 35 / 35%); }




.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.footer-inner {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    padding: 4rem 0;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) { .footer-brand { align-items: flex-start; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-logo-img { width: 2rem; }
.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 24rem;
  text-align: center;
  line-height: 1.6;
}
@media (min-width: 768px) { .footer-tagline { text-align: left; } }

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.7;
}
@media (min-width: 768px) { .footer-copy { text-align: right; } }




::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted-foreground); }
