/* style.css — xvr's stock 1:1 (dark / red / modern) */

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

:root {
  --background: oklch(0.14 0.02 20);
  --foreground: oklch(0.97 0.005 20);
  --surface: oklch(0.18 0.025 20);
  --surface-elevated: oklch(0.22 0.03 20);
  --border: oklch(0.28 0.03 20);
  --primary: oklch(0.62 0.22 25);
  --primary-glow: oklch(0.7 0.24 22);
  --primary-foreground: oklch(0.99 0 0);
  --muted: oklch(0.22 0.02 20);
  --muted-foreground: oklch(0.68 0.02 20);
  --shadow-glow: 0 0 60px -10px oklch(0.62 0.22 25 / 0.5);
  --gradient-hero: radial-gradient(ellipse at top, oklch(0.32 0.18 25 / 0.5), transparent 60%);
  --gradient-glow: linear-gradient(135deg, oklch(0.7 0.24 22), oklch(0.55 0.22 18));
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', system-ui, sans-serif;
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, oklch(0.4 0.2 25 / 0.25), transparent),
                    radial-gradient(ellipse 60% 40% at 100% 100%, oklch(0.35 0.18 25 / 0.15), transparent);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -0.02em;
}

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

/* ----- HEADER ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: oklch(0.14 0.02 20 / 0.7);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.logo-highlight {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: none;
  gap: 32px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.nav a:hover {
  color: var(--foreground);
  transition: color 0.2s;
}

.btn-primary {
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px -5px var(--primary);
}

.btn-primary:hover {
  background: var(--primary-glow);
  box-shadow: 0 0 30px -5px var(--primary);
}

/* ----- HERO ----- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 100px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

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

.hero-highlight {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.hero-desc strong {
  color: var(--foreground);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.btn-hero {
  padding: 14px 32px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 40px -10px var(--primary);
}

.btn-hero:hover {
  background: var(--primary-glow);
  box-shadow: 0 0 60px -10px var(--primary);
  transform: scale(1.02);
}

.btn-ghost {
  padding: 14px 32px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn-ghost:hover {
  background: var(--surface-elevated);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.stat {
  padding: 16px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 2px;
}

/* ----- SECTION ----- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
}

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

.section-sub {
  color: var(--muted-foreground);
  margin-top: 8px;
}

/* ----- PRICING GRID ----- */
.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 32px;
}

.pricing-card {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.popular {
  background: linear-gradient(135deg, oklch(0.62 0.22 25 / 0.2), var(--surface));
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 2px 16px;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-robux-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-robux {
  font-size: 2.25rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  margin-top: 4px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 12px;
}

.pricing-amount {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.pricing-btn {
  display: block;
  margin-top: 16px;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.pricing-btn:hover {
  background: var(--primary-glow);
}

/* ----- CUSTOM ----- */
.custom-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

.custom-left {
  flex: 1;
  min-width: 200px;
}

.custom-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.custom-left input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  background: transparent;
  cursor: pointer;
}

.custom-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 4px;
}

.custom-right {
  text-align: right;
}

.custom-robux {
  font-size: 1.75rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
}

.custom-robux span {
  font-size: 1rem;
  color: var(--muted-foreground);
}

.custom-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.custom-order {
  padding: 12px 28px;
  border: none;
  cursor: pointer;
}

/* ----- PAYMENTS ----- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.payment-btn {
  padding: 16px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.payment-btn:hover {
  background: var(--surface-elevated);
  border-color: var(--primary);
}

.payment-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 6px;
  box-shadow: 0 0 8px var(--primary);
}

.payment-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 20px;
}

/* ----- STEPS ----- */
.steps-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  padding: 24px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

.step-number {
  font-size: 3rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 4px;
}

/* ----- FAQ ----- */
.faq-section {
  max-width: 768px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 20px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  user-select: none;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.2s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ----- CTA ----- */
.cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.cta-card {
  position: relative;
  padding: 48px 24px;
  border-radius: 24px;
  overflow: hidden;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  text-align: center;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.cta-content {
  position: relative;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
}

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

.cta-desc {
  color: var(--muted-foreground);
  max-width: 400px;
  margin: 8px auto 28px;
}

.cta-btn {
  display: inline-block;
}

/* ----- FOOTER ----- */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.footer-discord {
  transition: color 0.2s;
}

.footer-discord:hover {
  color: var(--foreground);
}

/* ----- responsive tweaks ----- */
@media (min-width: 768px) {
  .nav { display: flex; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:last-child { grid-column: span 2; }
  .custom-card { flex-direction: column; align-items: stretch; }
  .custom-right { text-align: left; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
