/* Home & marketing – premium dark UI (extends style.css) */

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  .hero-blob,
  .hero-particle,
  .animate-float,
  .hero-badge-dot,
  .btn-gradient::after,
  .feature-card,
  .social-proof-inner { animation: none !important; }
  .hero-flow-card { transform: none !important; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  text-align: center;
  padding: 5rem 1.5rem 6rem;
  width: 100%;
  min-height: 85vh;
  overflow: hidden;
}

/* Soft glow – full width */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100vw;
  height: 500px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

/* Blob orbs – full viewport so background feels large */
.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.18;
  animation: heroBlob 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 18rem;
  height: 18rem;
  top: -4rem;
  left: -4rem;
  background: var(--primary);
}

.hero-blob-2 {
  width: 18rem;
  height: 18rem;
  bottom: -4rem;
  right: -4rem;
  background: var(--accent);
  animation-delay: 2s;
}

.hero-blob-3 {
  width: 14rem;
  height: 14rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(99, 102, 241, 0.5);
  animation-delay: 4s;
}

@keyframes heroBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-blob-3 { animation-name: heroBlobCenter; }
@keyframes heroBlobCenter {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Floating particles */
.hero-particle {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  opacity: 0.35;
  animation: heroParticle 18s linear infinite;
}

.hero-particle-1 { top: 15%; left: 12%; background: var(--primary); }
.hero-particle-2 { top: 75%; right: 15%; background: var(--accent); animation-delay: 5s; }
.hero-particle-3 { top: 45%; left: 25%; background: #60a5fa; animation-delay: 10s; }
.hero-particle-4 { top: 25%; right: 30%; background: #34d399; animation-delay: 12s; }

@keyframes heroParticle {
  0% { opacity: 0.35; transform: translate(0, 0) rotate(0deg); }
  25% { opacity: 0.5; transform: translate(60px, -80px) rotate(90deg); }
  50% { opacity: 0.35; transform: translate(-30px, -140px) rotate(180deg); }
  75% { opacity: 0.5; transform: translate(-80px, -60px) rotate(270deg); }
  100% { opacity: 0.35; transform: translate(0, 0) rotate(360deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-title,
.hero h1 {
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  position: relative;
  animation: fadeInDown 0.6s ease;
  overflow: hidden;
}

.hero-badge-dot {
  position: relative;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--primary);
}

.hero-badge-dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
  animation: badgePing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes badgePing {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.hero .hero-title,
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  position: relative;
}

.hero-lead {
  color: var(--text-secondary);
  font-size: 1.1875rem;
  margin: 0 0 2rem;
  line-height: 1.65;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 .gradient-text,
.hero .gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero flow (Store → CSV) */
.hero-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-flow-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hero-flow-icon {
  font-size: 1.5rem;
  line-height: 1;
  filter: grayscale(0.2) brightness(1.1);
}

.hero-flow-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-flow-arrow {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-flow-arrow-bar {
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  animation: flowPulse 1.5s ease-in-out infinite;
}

.hero-flow-arrow-head {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}

@keyframes flowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.animate-delay-1 {
  animation-delay: 1.25s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-cta .btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border-radius: 12px;
}

/* Primary button with gradient hover overlay (full sauce) */
.btn-gradient {
  position: relative;
  overflow: hidden;
}

.btn-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 50%, var(--primary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  pointer-events: none;
}

.btn-gradient:hover:not(:disabled)::after {
  opacity: 1;
}

.btn-gradient span {
  position: relative;
  z-index: 1;
}

.hero-cta .btn-ghost {
  border-color: var(--border);
  color: var(--text-secondary);
}

.hero-cta .btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(99, 102, 241, 0.06);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
}

.hero-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  transition: border-color var(--transition), background var(--transition);
}

.hero-stat:hover {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-stat strong {
  color: var(--primary);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ----- Section shared (match hero dark SaaS) ----- */
.page-section {
  position: relative;
  padding: 4.5rem 1.5rem;
  background: var(--bg);
}

.page-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-head .section-sub {
  margin: 0 0 0.5rem;
}

/* ----- Social proof ----- */
.social-proof {
  text-align: center;
  padding: 4.5rem 1.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.social-proof-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-quote {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0 auto 0.5rem;
  line-height: 1.65;
  position: relative;
  padding-left: 1.5rem;
}


.social-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.15em;
  font-size: 2rem;
  font-style: normal;
  color: var(--primary);
  opacity: 0.6;
  font-family: Georgia, serif;
}

.social-attribution {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

/* ----- Features ----- */
.features .feature-grid {
  margin-top: 0;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.0625rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .feature-card {
    background: rgba(20, 20, 28, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .feature-card:hover {
    background: rgba(26, 26, 36, 0.9);
  }
}

@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .feature-card {
    background: var(--surface);
  }
  .feature-card:hover {
    background: var(--surface-hover);
  }
}

.feature-card:nth-child(1) { animation: cardFadeIn 0.5s ease 0.05s both; }
.feature-card:nth-child(2) { animation: cardFadeIn 0.5s ease 0.15s both; }
.feature-card:nth-child(3) { animation: cardFadeIn 0.5s ease 0.25s both; }
.feature-card:nth-child(4) { animation: cardFadeIn 0.5s ease 0.35s both; }

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(99, 102, 241, 0.08);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.22) 0%, rgba(167, 139, 250, 0.12) 100%);
  border: 1px solid rgba(99, 102, 241, 0.28);
  border-radius: 14px;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1.125rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.55;
}

.section-cta {
  text-align: center;
}

.section-cta .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.section-cta {
  margin-top: 0.5rem;
}

.cta-final .section-cta {
  margin-top: 1.5rem;
}

/* ----- Pricing ----- */
.pricing .pricing-grid {
  margin-top: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pricing-card-pro {
  border-color: rgba(99, 102, 241, 0.5);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, var(--bg) 100%);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.2), 0 8px 32px rgba(0, 0, 0, 0.15);
}

.pricing-card-pro:hover {
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.3), 0 12px 40px rgba(99, 102, 241, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.price {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0 0 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price .price-period {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
}

/* ----- FAQ ----- */
.faq .faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.125rem 0;
  transition: background 0.2s ease;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.02);
  margin: 0 -1rem;
  padding: 1.125rem 1rem;
  border-radius: 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.125rem 0;
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: var(--text-secondary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 300;
  flex-shrink: 0;
  opacity: 0.8;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-item p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 1rem 0 0;
  line-height: 1.65;
  padding-right: 1.5rem;
}

/* ----- Final CTA ----- */
.cta-final {
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border);
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0.8;
}

.cta-final .section-head h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.cta-final .btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border-radius: 12px;
}

/* ----- Footer ----- */
.site-footer {
  padding: 3rem 1.5rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-brand a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.0625rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.8125rem;
  margin: 0;
}

/* ----- Buttons (ghost / outline) ----- */
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.btn-ghost:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover:not(:disabled) {
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

/* ----- Auth ----- */
.auth-page {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.auth-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.auth-sub {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0 0 1.75rem;
}

.auth-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

.auth-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.auth-form input::placeholder {
  color: var(--muted);
}

.auth-form .btn:active:not(:disabled) {
  transform: scale(0.98);
}

.auth-form .btn {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
}

.auth-error {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 0.9rem;
  line-height: 1.4;
}

.auth-swap {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.auth-swap a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.auth-swap a:hover {
  text-decoration: underline;
}

/* ----- Policy ----- */
.policy-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.policy-page h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.policy-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 2.5rem;
}

.policy-page section {
  margin-bottom: 2rem;
}

.policy-page h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.policy-page p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.policy-page a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.policy-page a:hover {
  text-decoration: underline;
}

/* ----- Dashboard ----- */
.dashboard-page {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
}

.dashboard-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.dashboard-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.dashboard-plan {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0 0 1rem;
}

.dashboard-plan strong {
  color: var(--primary);
}

.dashboard-info {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0 0 1.75rem;
  line-height: 1.6;
}

.dashboard-card .btn {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
}
