/* ================================================================
   MY SONG SURPRISE — Design System
   Alegre, colorido, emocional. Dark-first com paleta pink/orange.
   ================================================================ */

/* ── Fonts ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Pacifico&display=swap');

/* ── CSS Variables ──────────────────────────────────────────────── */
:root {
  /* Colors — Dark Theme */
  --background: #0d0a0f;
  --foreground: #fafafa;
  --card: #160f1a;
  --card-foreground: #fafafa;
  --popover: #160f1a;
  --popover-foreground: #fafafa;
  --primary: #f0266f;        /* hot pink */
  --primary-hover: #d4185d;
  --primary-foreground: #fff;
  --secondary: #1e1525;
  --secondary-foreground: #a1a1aa;
  --muted: #1a1120;
  --muted-foreground: #8b7a97;
  --accent: #1e1525;
  --accent-foreground: #fafafa;
  --destructive: #ef4444;
  --destructive-foreground: #fafafa;
  --border: #2d1f38;
  --input: #2d1f38;
  --ring: #f0266f;
  --radius: 0.75rem;

  /* Brand colors */
  --pink: #f0266f;
  --orange: #f5a623;
  --purple: #9333ea;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #f0266f 0%, #f5a623 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(240,38,111,0.15) 0%, rgba(245,166,35,0.08) 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(240,38,111,0.15) 0%, transparent 70%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(240,38,111,0.25), transparent);
  --gradient-brand: linear-gradient(135deg, #f0266f 0%, #f97316 50%, #f5a623 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,.5);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.5), 0 2px 4px -2px rgba(0,0,0,.4);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.5), 0 4px 6px -4px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.6), 0 8px 10px -6px rgba(0,0,0,.4);
  --shadow-glow: 0 0 40px rgba(240,38,111,0.3);
  --shadow-glow-orange: 0 0 40px rgba(245,166,35,0.25);

  /* Typography */
  --font-sans: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-brand: 'Pacifico', cursive;
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ─────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p { color: var(--muted-foreground); line-height: 1.7; }

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 640px; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,10,15,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-brand);
  font-size: 1.35rem;
  font-weight: 400;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.navbar-brand .brand-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-primary);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  -webkit-text-fill-color: white;
  flex-shrink: 0;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.navbar-nav a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  padding: .4rem .75rem;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.navbar-nav a:hover { color: var(--foreground); background: var(--muted); }
.navbar-nav a.active { color: var(--primary); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(240,38,111,0.4);
}
.btn-primary:hover:not(:disabled) {
  opacity: .92;
  box-shadow: 0 6px 28px rgba(240,38,111,0.55);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--foreground);
  border-color: var(--border);
  border-radius: 9999px;
}
.btn-secondary:hover:not(:disabled) { background: var(--accent); border-color: var(--muted-foreground); }

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
  border-radius: 9999px;
}
.btn-outline:hover:not(:disabled) { background: var(--accent); border-color: var(--primary); color: var(--primary); }

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
  border-color: transparent;
  border-radius: 9999px;
}
.btn-ghost:hover:not(:disabled) { background: var(--muted); color: var(--foreground); }

.btn-destructive {
  background: var(--destructive);
  color: var(--destructive-foreground);
  border-radius: 9999px;
}
.btn-destructive:hover:not(:disabled) { opacity: .9; }

.btn-success { background: #22c55e; color: #fff; border: 1px solid #22c55e; border-radius: 9999px; }
.btn-success:hover { background: #16a34a; border-color: #16a34a; }

.btn-lg { padding: .9rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .35rem .9rem; font-size: .8rem; }
.btn-icon { padding: .5rem; width: 2.25rem; height: 2.25rem; }
.btn-full { width: 100%; }

/* ── Cards ──────────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
}
.card-header { padding: 1.5rem 1.5rem 0; }
.card-body { padding: 1.5rem; }
.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--muted);
}
.card-title { font-size: 1.125rem; font-weight: 700; color: var(--card-foreground); margin-bottom: .25rem; }
.card-description { font-size: .875rem; color: var(--muted-foreground); }

.card-hover {
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
}
.card-hover:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* ── Auth Card ──────────────────────────────────────────────────── */
.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

/* ── Forms ──────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1.25rem; }

label, .form-label {
  font-size: .875rem;
  font-weight: 700;
  color: var(--foreground);
}
.form-hint {
  font-size: .8125rem;
  color: var(--muted-foreground);
  margin-top: .25rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: .625rem .875rem;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  color: var(--foreground);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--muted-foreground); }

input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(240,38,111,0.2);
}

textarea { resize: vertical; min-height: 100px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b7a97' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-error {
  font-size: .8125rem;
  color: var(--destructive);
  margin-top: .25rem;
  display: flex;
  align-items: center;
  gap: .25rem;
}
input.error, textarea.error, select.error {
  border-color: var(--destructive);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

/* Radio cards */
.radio-card-group { display: grid; gap: .75rem; }
.radio-card { position: relative; cursor: pointer; }
.radio-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.25);
  background: var(--card);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.radio-card input[type="radio"]:checked + .radio-card-inner {
  border-color: var(--primary);
  background: rgba(240,38,111,0.08);
  box-shadow: 0 0 0 1px var(--primary);
}
.radio-card:hover .radio-card-inner { border-color: var(--muted-foreground); }
.radio-dot {
  width: 1.125rem; height: 1.125rem; border-radius: 50%;
  border: 2px solid var(--border); margin-top: .125rem; flex-shrink: 0;
  transition: all .2s; display: flex; align-items: center; justify-content: center;
}
.radio-card input[type="radio"]:checked ~ .radio-card-inner .radio-dot,
.radio-card input[type="radio"]:checked + .radio-card-inner .radio-dot {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(240,38,111,0.2);
}

/* File upload */
.file-drop {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.file-drop:hover, .file-drop.drag-over {
  border-color: var(--primary);
  background: rgba(240,38,111,0.05);
}
.file-drop input { display: none; }

/* ── Badges ─────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid transparent;
}
.badge-primary { background: rgba(240,38,111,0.15); color: #f472b6; border-color: rgba(240,38,111,0.3); }
.badge-success { background: rgba(34,197,94,0.15); color: #4ade80; border-color: rgba(34,197,94,0.3); }
.badge-warning { background: rgba(245,166,35,0.15); color: #f5a623; border-color: rgba(245,166,35,0.3); }
.badge-error { background: rgba(239,68,68,0.15); color: #f87171; border-color: rgba(239,68,68,0.3); }
.badge-muted { background: var(--muted); color: var(--muted-foreground); border-color: var(--border); }

/* ── Progress ───────────────────────────────────────────────────── */
.progress {
  width: 100%; height: .5rem; background: var(--border);
  border-radius: 9999px; overflow: hidden;
}
.progress-bar {
  height: 100%; background: var(--gradient-primary);
  border-radius: 9999px; transition: width .5s ease;
}

/* Step indicator */
.steps { display: flex; align-items: center; gap: 0; margin-bottom: 2.5rem; }
.step { display: flex; align-items: center; flex: 1; }
.step-dot {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .8125rem; font-weight: 700; flex-shrink: 0;
  transition: all .2s; background: var(--background); color: var(--muted-foreground); z-index: 1;
}
.step.active .step-dot {
  border-color: var(--primary); background: var(--primary); color: #fff;
  box-shadow: 0 0 0 5px rgba(240,38,111,0.2);
}
.step.done .step-dot { border-color: #22c55e; background: #22c55e; color: #fff; }
.step-line { flex: 1; height: 2px; background: var(--border); transition: background .3s; }
.step.done .step-line { background: #22c55e; }
.step-label {
  display: block; font-size: .75rem; color: var(--muted-foreground);
  margin-top: .375rem; text-align: center; white-space: nowrap; font-weight: 600;
}
.step.active .step-label { color: var(--primary); font-weight: 700; }
.step.done .step-label { color: #22c55e; }

/* ── Alerts / Toasts ────────────────────────────────────────────── */
.alert {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .875rem 1rem; border-radius: var(--radius);
  border: 1px solid; font-size: .875rem; margin-bottom: 1rem;
}
.alert-success { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.25); color: #4ade80; }
.alert-error { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.25); color: #f87171; }
.alert-warning { background: rgba(245,166,35,0.08); border-color: rgba(245,166,35,0.25); color: #f5a623; }
.alert-info { background: rgba(240,38,111,0.08); border-color: rgba(240,38,111,0.25); color: #f472b6; }

.toast-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  display: flex; flex-direction: column; gap: .5rem; max-width: 360px;
}
.toast {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1rem; background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.25);
  box-shadow: var(--shadow-lg); animation: toast-in .3s ease;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── Separator ──────────────────────────────────────────────────── */
.separator { height: 1px; background: var(--border); margin: 1.5rem 0; }
.separator-text {
  display: flex; align-items: center; gap: 1rem;
  color: var(--muted-foreground); font-size: .8125rem; font-weight: 600;
}
.separator-text::before, .separator-text::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── Skeleton Loader ────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--muted) 25%, var(--secondary) 50%, var(--muted) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Audio Player ───────────────────────────────────────────────── */
.audio-player {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
}
.audio-waveform {
  height: 60px; background: var(--muted); border-radius: var(--radius);
  margin: 1rem 0; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center; gap: 2px;
}
.audio-bar {
  width: 3px; background: var(--primary); border-radius: 2px;
  opacity: .6; animation: wave-idle 1.5s ease-in-out infinite;
}
.audio-player.playing .audio-bar { animation: wave-play 0.8s ease-in-out infinite alternate; opacity: 1; }
@keyframes wave-idle {
  0%, 100% { height: 20%; } 50% { height: 60%; }
}
@keyframes wave-play {
  from { height: 20%; }
  to { height: 90%; }
}
.audio-bar:nth-child(1) { animation-delay: 0s; }
.audio-bar:nth-child(2) { animation-delay: .1s; }
.audio-bar:nth-child(3) { animation-delay: .2s; }
.audio-bar:nth-child(4) { animation-delay: .3s; }
.audio-bar:nth-child(5) { animation-delay: .4s; }
.audio-bar:nth-child(6) { animation-delay: .5s; }
.audio-bar:nth-child(7) { animation-delay: .6s; }
.audio-bar:nth-child(8) { animation-delay: .7s; }
.audio-bar:nth-child(9) { animation-delay: .8s; }
.audio-bar:nth-child(10) { animation-delay: .9s; }

/* ── Plan cards ─────────────────────────────────────────────────── */
.plan-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.75rem;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.plan-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.plan-card.selected {
  border-color: var(--primary);
  background: rgba(240,38,111,0.07);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-glow);
}
.plan-card.popular { border-color: var(--orange); }
.plan-card.popular::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.07), transparent);
  pointer-events: none;
}
.plan-badge {
  display: inline-block;
  padding: .25rem .875rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 800;
  background: var(--gradient-primary);
  color: #fff;
  margin-bottom: .5rem;
  letter-spacing: .03em;
}
.plan-price {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: .375rem 0;
}
.plan-price span { font-size: .875rem; font-weight: 600; -webkit-text-fill-color: var(--muted-foreground); }

/* ── Occasion grid ──────────────────────────────────────────────── */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .75rem;
}
.occasion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem .75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  cursor: pointer;
  transition: all .2s;
}
.occasion-item:hover { border-color: var(--primary); background: rgba(240,38,111,0.07); transform: translateY(-2px); }
.occasion-icon { font-size: 2rem; }
.occasion-label { font-size: .75rem; font-weight: 700; text-align: center; color: var(--foreground); }

/* ── Dashboard ──────────────────────────────────────────────────── */
.dashboard-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  min-height: calc(100vh - 4rem);
}
.sidebar {
  padding: 1.5rem 0;
  border-right: 1px solid var(--border);
}
.sidebar-section-title {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-foreground);
  padding: 0 .75rem;
  margin-bottom: .5rem;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .625rem .75rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: all .2s;
  cursor: pointer;
}
.sidebar-item:hover { background: var(--muted); color: var(--foreground); }
.sidebar-item.active { background: rgba(240,38,111,0.12); color: var(--primary); }
.sidebar-item svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

/* ── Order status timeline ──────────────────────────────────────── */
.status-timeline { display: flex; flex-direction: column; gap: 0; }
.status-step { display: flex; gap: 1rem; position: relative; }
.status-step:not(:last-child)::after {
  content: ''; position: absolute; left: .9375rem; top: 2rem;
  width: 2px; height: calc(100% - 1rem); background: var(--border);
}
.status-step.done::after { background: #22c55e; }
.status-icon {
  width: 1.875rem; height: 1.875rem; border-radius: 50%;
  border: 2px solid var(--border); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; background: var(--background);
  font-size: .75rem; z-index: 1;
}
.status-step.done .status-icon { border-color: #22c55e; background: rgba(34,197,94,.1); color: #22c55e; }
.status-step.active .status-icon {
  border-color: var(--primary); background: rgba(240,38,111,.1);
  color: var(--primary); animation: pulse-icon 2s infinite;
}
@keyframes pulse-icon {
  0%,100% { box-shadow: 0 0 0 0 rgba(240,38,111,.4); }
  50% { box-shadow: 0 0 0 8px rgba(240,38,111,0); }
}
.status-content { padding-bottom: 1.5rem; }
.status-content h4 { font-size: .875rem; font-weight: 700; margin-bottom: .25rem; }
.status-content p { font-size: .8125rem; }

/* ── Hero section ───────────────────────────────────────────────── */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--background));
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(240,38,111,0.1);
  border: 1px solid rgba(240,38,111,0.3);
  border-radius: 9999px;
  padding: .375rem 1.125rem;
  font-size: .8125rem;
  font-weight: 700;
  color: #f472b6;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 500;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Feature cards ──────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.75rem;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(240,38,111,0.4); transform: translateY(-2px); }
.feature-icon {
  width: 3rem; height: 3rem;
  background: var(--gradient-subtle);
  border: 1px solid rgba(240,38,111,0.2);
  border-radius: calc(var(--radius) * 1.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.5rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--foreground); }
.feature-card p { font-size: .875rem; }

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

/* ── Utility ────────────────────────────────────────────────────── */
.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--muted-foreground) !important; }
.text-success { color: #4ade80 !important; }
.text-error { color: #f87171 !important; }
.text-center { text-align: center; }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .75rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

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

.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.w-full { width: 100%; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.rounded { border-radius: var(--radius); }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.hidden { display: none; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .sidebar.open { display: block; position: fixed; inset: 0; z-index: 200; border-right: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3rem; }
  .plan-cards { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .navbar-nav { display: none; }
}
@media (max-width: 480px) {
  .auth-card { padding: 1.75rem 1.25rem; }
  .hero-title { font-size: 2rem; }
}
