/* ============================================
   STUDIOPLAY THEME — CSS
   Dark Purple / Indigo Creative Studio
   ============================================ */

/* ── TOKENS ── */
:root {
  --bg-deep:        #06051a;
  --bg-dark:        #0d0b2e;
  --bg-mid:         #12103a;
  --bg-card:        #1a1748;
  --bg-card-hover:  #201c58;

  --accent-violet:  #7c3aed;
  --accent-purple:  #9d4edd;
  --accent-pink:    #c77dff;
  --accent-blue:    #4361ee;
  --accent-glow:    rgba(124, 58, 237, 0.35);

  --text-primary:   #f0eeff;
  --text-secondary: #a89fd4;
  --text-muted:     #6b5fa3;

  --gradient-main:  linear-gradient(135deg, #7c3aed, #c77dff);
  --gradient-card:  linear-gradient(160deg, #1a1748 0%, #0d0b2e 100%);
  --gradient-hero:  linear-gradient(160deg, #06051a 0%, #1a0533 50%, #0a0a2e 100%);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(124, 58, 237, 0.4);
}
.btn-ghost:hover {
  background: rgba(124, 58, 237, 0.1);
  color: var(--text-primary);
  border-color: var(--accent-purple);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.left-align { text-align: left; margin-bottom: 32px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

/* ── ORB DECORATIONS ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6, 5, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-right: auto;
}
.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { margin-left: 8px; padding: 10px 24px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg-orbs { position: absolute; inset: 0; }
.orb-1 {
  width: 600px; height: 600px;
  background: rgba(124, 58, 237, 0.18);
  top: -200px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(67, 97, 238, 0.15);
  bottom: 0; left: -100px;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(199, 125, 255, 0.1);
  top: 40%; left: 40%;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--accent-pink);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; }
.hero-card {
  width: 380px;
  height: 320px;
  position: relative;
}
.hero-card-inner {
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px var(--accent-glow);
}
.hero-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,125,255,0.5), transparent);
}
.studio-scene {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  font-size: 2.5rem;
  margin-bottom: 24px;
}
.scene-screen {
  background: rgba(67, 97, 238, 0.2);
  border: 1px solid rgba(67, 97, 238, 0.4);
  border-radius: var(--radius-sm);
  padding: 12px;
  width: 100px;
  height: 80px;
}
.screen-content { display: flex; flex-direction: column; gap: 8px; }
.screen-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  border-radius: 2px;
}
.screen-bar.short { width: 60%; }
.floating-badge {
  position: absolute;
  background: rgba(6, 5, 26, 0.9);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}
.badge-top { top: 16px; right: 16px; }
.badge-bottom { bottom: 16px; left: 16px; }
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.floating {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ── FEATURES ── */
.features-section {
  padding: 100px 0;
  background: var(--bg-dark);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-card:hover::after { opacity: 1; }
.feature-card.featured {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 40px var(--accent-glow);
}
.feature-card.featured::after { opacity: 1; }
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.card-link {
  color: var(--accent-pink);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { gap: 8px; }

/* ── PORTFOLIO ── */
.portfolio-section {
  padding: 100px 0;
  background: var(--bg-deep);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item { cursor: pointer; }
.portfolio-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  transition: var(--transition);
}
.portfolio-thumb:hover .thumb-overlay { opacity: 1; }
.portfolio-thumb:hover { transform: scale(1.02); }

/* Thumb backgrounds */
.workspace {
  background: linear-gradient(135deg, #1a3a5c 0%, #2d5a8e 50%, #1a3a5c 100%);
}
.workspace::before {
  content: '🖥️';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}
.rocket {
  background: linear-gradient(135deg, #c77dff 0%, #ff6b35 50%, #f7c59f 100%);
}
.rocket::before {
  content: '🚀';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}
.cosmos {
  background: linear-gradient(135deg, #06051a 0%, #1a0a3e 50%, #0d1b4a 100%);
}
.cosmos::before {
  content: '✨';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}
.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,5,26,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.thumb-overlay .tag {
  display: inline-block;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 8px;
  width: fit-content;
}
.thumb-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.portfolio-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portfolio-meta strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.portfolio-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── SERVICES ── */
.services-section {
  padding: 100px 0;
  background: var(--bg-dark);
}
.services-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
/* Service Big */
.service-big {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.service-big-visual {
  margin-bottom: 28px;
}
.orb-visual {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(124, 58, 237, 0.4);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}
.orb-ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--accent-purple);
  border-radius: 50%;
  transform: translateX(-50%);
}
.orb-center {
  font-size: 2rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.service-big h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-big p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-tags span {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--accent-pink);
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
}
/* Service Mini Grid */
.service-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-mini {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
}
.service-mini:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
}
.mini-icon { font-size: 1.6rem; margin-bottom: 10px; }
.service-mini strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-mini p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
}
/* Service Library */
.service-library {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.service-library h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.library-stack { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.library-item {
  height: 70px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-end;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.library-item:hover { transform: scaleX(1.02); }
.lib-warm { background: linear-gradient(135deg, #c97b3b, #f4a261); }
.lib-cool { background: linear-gradient(135deg, #4361ee, #7c3aed); }
.lib-dark { background: linear-gradient(135deg, #1a1748, #2d2b7a); border: 1px solid rgba(124,58,237,0.3); }
.library-labels {
  display: flex;
  gap: 12px;
}
.library-labels span {
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent-pink);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-deep);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
}
.testimonial-card.featured-testimonial {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 40px var(--accent-glow);
}
.testimonial-visual {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}
.globe { background: linear-gradient(135deg, #4361ee, #7c3aed); }
.avatar {
  background: linear-gradient(135deg, #7c3aed, #c77dff);
}
.library-thumb { background: linear-gradient(135deg, #c97b3b, #f4a261); }
.live-tag {
  position: absolute;
  top: -8px; right: -8px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 40px;
}
.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── CTA ── */
.cta-section {
  padding: 80px 0;
  background: var(--bg-dark);
}
.cta-box {
  background: var(--gradient-card);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px var(--accent-glow);
}
.cta-orb {
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
.cta-box p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-icon {
  width: 40px; height: 40px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 240px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent-pink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--accent-pink); }

/* ── ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-row {
    grid-template-columns: 1fr 1fr;
  }
  .service-library { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 1fr; }
  .service-library { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .cta-box { padding: 48px 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── ELEMENTOR UTILITY CLASSES ── */
.sp-hero-section { /* maps to hero */ }
.sp-feature-card { /* maps to feature-card */ }
.sp-gradient-btn { background: var(--gradient-main); color: #fff; padding: 14px 32px; border-radius: 40px; font-weight: 700; display: inline-block; }
.sp-section-pad { padding: 100px 0; }
.sp-card { background: var(--gradient-card); border: 1px solid rgba(124,58,237,0.2); border-radius: var(--radius-lg); padding: 40px; }
