:root {
  --premium-ink: #0b0b15;
  --premium-night: #0f0f1f;
  --premium-surface: #17172a;
  --premium-surface-alt: #1e1e35;
  --premium-glow: #ff5ea8;
  --premium-teal: #38f6ff;
  --premium-amber: #f7b63f;
  --premium-lilac: #7b6cff;
  --premium-text: #f2f4ff;
  --premium-muted: #b7bdd7;
}

.premium-page {
  background: radial-gradient(circle at 10% 10%, rgba(123, 108, 255, 0.25), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(56, 246, 255, 0.18), transparent 40%),
    linear-gradient(180deg, #0a0a14, #121224 50%, #0a0a14 100%);
  color: var(--premium-text);
}

.premium-main {
  position: relative;
  overflow: hidden;
}

.premium-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.premium-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}

.premium-hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.premium-hero__glow--one {
  top: -150px;
  left: -120px;
  background: rgba(123, 108, 255, 0.7);
}

.premium-hero__glow--two {
  top: -180px;
  right: -140px;
  background: rgba(255, 94, 168, 0.6);
}

.premium-hero__content {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  z-index: 2;
}

.premium-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--premium-amber);
  margin-bottom: 1rem;
}

.premium-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1rem;
  text-shadow: 0 0 24px rgba(123, 108, 255, 0.4);
}

.premium-hero__subhead {
  font-size: 1.1rem;
  color: var(--premium-muted);
  margin: 0 auto 2rem;
  max-width: 700px;
}

.premium-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.premium-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.premium-cta--primary {
  color: #0a0a14;
  background: linear-gradient(90deg, var(--premium-amber), var(--premium-glow));
  box-shadow: 0 10px 30px rgba(255, 94, 168, 0.35);
}

.premium-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 94, 168, 0.45);
}

.premium-cta--ghost {
  color: var(--premium-text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(15, 15, 30, 0.6);
}

.premium-cta--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.premium-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.premium-chip {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--premium-text);
  background: rgba(15, 15, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 12px rgba(123, 108, 255, 0.2);
}

.premium-section {
  padding: 3.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--premium-muted);
  max-width: 720px;
  margin: 0 auto;
}

.perk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.perk-card {
  background: var(--premium-surface);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(6, 6, 18, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.perk-card--featured {
  position: relative;
  border-color: rgba(247, 182, 63, 0.4);
  box-shadow: 0 0 25px rgba(247, 182, 63, 0.2), 0 14px 30px rgba(6, 6, 18, 0.6);
}

.perk-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(90deg, var(--premium-amber), var(--premium-glow));
  color: #101020;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.perk-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.perk-card h3 {
  margin: 0;
}

.perk-card p {
  margin: 0;
  color: var(--premium-muted);
}

.perk-why {
  color: var(--premium-amber);
  font-size: 0.9rem;
}

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

.comparison-card {
  background: var(--premium-surface-alt);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-card--premium {
  border-color: rgba(255, 94, 168, 0.35);
  box-shadow: 0 0 30px rgba(255, 94, 168, 0.2);
}

.comparison-sub {
  color: var(--premium-muted);
  margin-top: 0.25rem;
}

.comparison-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin: 1rem 0;
}

.comparison-fill {
  height: 100%;
  background: linear-gradient(90deg, #3c6cff, #65f8ff);
  border-radius: 999px;
}

.comparison-fill--premium {
  background: linear-gradient(90deg, var(--premium-amber), var(--premium-glow));
}

.comparison-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--premium-muted);
}

.premium-section--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.feature-row {
  background: rgba(15, 15, 30, 0.6);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-row h3 {
  margin: 0 0 0.35rem;
}

.feature-row p {
  margin: 0;
  color: var(--premium-muted);
}

.craftprofit-spotlight {
  display: grid;
  gap: 1.5rem;
}

.spotlight-card {
  background: linear-gradient(135deg, rgba(247, 182, 63, 0.12), rgba(123, 108, 255, 0.18));
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 35px rgba(6, 6, 18, 0.55);
}

.spotlight-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.spotlight-card p {
  color: var(--premium-muted);
  margin-bottom: 1.25rem;
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--premium-amber);
}

.spotlight-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--premium-text);
}

.spotlight-list li {
  margin-bottom: 0.5rem;
  color: var(--premium-muted);
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.conversion-card {
  background: rgba(15, 15, 30, 0.6);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 600;
  color: var(--premium-amber);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: rgba(15, 15, 30, 0.6);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin-top: 0.75rem;
  color: var(--premium-muted);
}

.premium-section--final {
  padding-bottom: 5rem;
}

.final-cta {
  background: linear-gradient(135deg, rgba(123, 108, 255, 0.25), rgba(255, 94, 168, 0.25));
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .premium-hero {
    padding-top: 4rem;
  }

  .premium-hero__ctas {
    flex-direction: column;
  }

  .premium-cta {
    width: 100%;
  }

  .final-cta {
    padding: 2rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
