/* CSS Variables */
:root {
  --bg: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --accent: #efebe2;
  --light-bg: #f5f5f7;
  --border: #e5e5e7;
  --success: #30d158;
  --error: #ff453a;
  --shadow: rgba(0, 0, 0, 0.1);
  
  --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --container-max: 1200px;
  --container-padding: 24px;
  
  --radius: 8px;
  --radius-lg: 12px;
  
  --transition: all 0.2s ease;
  
  /* Typography scale */
  --font-size-hero: 56px;
  --font-size-h2: 36px;
  --font-size-h3: 24px;
  --font-size-body: 18px;
  --font-size-small: 16px;
  
  --line-height-tight: 1.1;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  
  /* Spacing rhythm (8px grid) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-system);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  text-decoration: none;
  transition: var(--transition);
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 400;
  font-size: 16px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--accent);
  color: black;
}

.btn-primary:hover:not(:disabled) {
  background-color: #d6d2c6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 235, 226, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover:not(:disabled) {
  background-color: var(--light-bg);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover:not(:disabled) {
  background-color: var(--accent);
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
}

.btn-prominent {
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(239, 235, 226, 0.4);
  transform: scale(1.02);
}

.btn-prominent:hover:not(:disabled) {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 235, 226, 0.5);
}

/* Hero Section */
.hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--bg) 0%, var(--light-bg) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-size: var(--font-size-hero);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.hero-subtitle {
  font-size: 21px;
  color: var(--muted);
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-normal);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

/* Trust note */
.trust-note {
  font-size: var(--font-size-small);
  color: var(--muted);
  font-weight: 500;
  margin-top: var(--space-md);
}


.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

/* Device frame for hero mockups */
.device-frame {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}

.section-alt {
  background-color: var(--light-bg);
}

.section-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xl);
  text-align: center;
  color: var(--text);
}

/* How it Works Section */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  position: relative;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.step-visual {
  margin-bottom: var(--space-md);
}

.step-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step-title {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.step-description {
  font-size: var(--font-size-body);
  color: var(--muted);
  line-height: var(--line-height-relaxed);
}


/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--bg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.feature-title {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.feature-description {
  font-size: var(--font-size-body);
  color: var(--muted);
  line-height: var(--line-height-relaxed);
}

/* For Whom Section */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.use-case {
  text-align: center;
}

.use-case-title {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.use-case-description {
  font-size: var(--font-size-body);
  color: var(--muted);
  line-height: var(--line-height-relaxed);
}

/* Social Proof Section */
.social-proof-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial {
  margin-bottom: var(--space-xl);
}

.testimonial-quote {
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  line-height: var(--line-height-normal);
  font-style: italic;
  margin: 0 0 var(--space-sm) 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  font-size: var(--font-size-small);
  color: var(--muted);
  font-style: normal;
}

.logos-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.logos-label {
  font-size: var(--font-size-small);
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logos {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.logo {
  height: 32px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: var(--transition);
}

.logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-placeholder {
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background-color: var(--light-bg);
  opacity: 0.6;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.logo-placeholder:hover {
  opacity: 1;
  color: var(--accent);
  border-color: var(--accent);
  background-color: var(--bg);
}

/* Pricing Section */
.pricing-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pricing-card {
  background-color: var(--light-bg);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.pricing-tier {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.pricing-description {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

/* FAQ Section */
.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.faq-answer {
  font-size: var(--font-size-body);
  color: var(--muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  max-width: 800px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  background-color: var(--bg);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  border: 4px solid var(--light-bg);
}

.team-name {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.team-role {
  font-size: var(--font-size-body);
  color: var(--text);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.team-bio {
  font-size: var(--font-size-small);
  color: var(--muted);
  line-height: var(--line-height-relaxed);
  text-align: left;
}


/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-wrapper h3,
.contact-call h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.waitlist-description {
  font-size: var(--font-size-body);
  color: var(--muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.contact-call p {
  font-size: var(--font-size-body);
  color: var(--muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

/* Forms */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: var(--font-size-small);
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.form-input {
  padding: var(--space-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: var(--font-size-small);
  transition: var(--transition);
  background-color: var(--bg);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-error {
  font-size: 14px;
  color: var(--error);
  margin-top: var(--space-xs);
  display: block;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  background-color: var(--text);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  height: 28px;
  width: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: var(--radius);
  z-index: 1000;
  font-size: 14px;
}

.skip-link:focus {
  top: 6px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--success);
  font-weight: 500;
  max-width: 300px;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(100%);
  opacity: 0;
  transition: var(--transition);
}

.toast-success {
  border-left-color: var(--success);
}

.toast-error {
  border-left-color: var(--error);
}

.toast-show {
  transform: translateX(0);
  opacity: 1;
}

.toast-hide {
  transform: translateX(100%);
  opacity: 0;
}

.toast-icon {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--success);
}

.toast-error .toast-icon {
  color: var(--error);
}

.toast-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
}

/* Mobile Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay-active {
  opacity: 1;
  visibility: visible;
}

/* Form Error States */
.form-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 69, 58, 0.1);
}

.form-error:not(:empty) {
  display: block;
}

/* Form Success State */
.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--success);
  color: white;
  border-radius: var(--radius);
  font-weight: 500;
  animation: successSlideIn 0.3s ease;
}

.success-icon {
  font-size: 18px;
  font-weight: bold;
}

@keyframes successSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus States */
.focused {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Animations */
.animate-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Header scroll state */
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 95;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.nav-open {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 18px;
    font-weight: 500;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .appstore-cta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers under the button */
    gap: 8px;
  }
  .appstore-copy {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
  }
  .appstore-cta img {
    height: auto;
    display: block;
  }
  
  .how-it-works-grid {
    gap: var(--space-lg);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }
  
  .hero {
    padding: var(--space-2xl) 0 var(--space-xl);
  }
  
  .hero-title {
    font-size: 44px;
  }
  
  .hero-subtitle {
    font-size: 19px;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .team-social a {
    margin-right: 10px;
    text-decoration: none;
  }
  .team-social a img {
    display: inline-block;
    vertical-align: middle;
  }

  .team-social a:last-child {
    margin-right: 0; /* remove margin after the last icon */
  }
  
  .logos {
    gap: var(--space-md);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .hero-cta {
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .feature-card {
    padding: var(--space-lg) var(--space-md);
  }
  
  
  .pricing-card {
    padding: var(--space-xl) var(--space-md);
  }
  
  .team-member {
    padding: var(--space-lg) var(--space-md);
  }
}

/* Focus styles for accessibility */
.btn:focus-visible,
.form-input:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible,
.nav-logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: #000000;
    --muted: #333333;
  }
}

/* Performance optimization - reduce rendering work */
.hero-image,
.team-photo {
  will-change: auto;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .hero-cta,
  .nav-cta,
  .btn {
    display: none;
  }
  
  .section {
    padding: 20px 0;
    page-break-inside: avoid;
  }
  
  .team-member,
  .feature-card {
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 11pt;
  }
}

/* Ensure content is accessible at all zoom levels */
@media (min-resolution: 2dppx) {
  .hero-image,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Mailchimp Form Styles */
#mc_embed_shell {
  width: 100%;
}

#mc_embed_signup {
  width: 100%;
}

#mc_embed_signup_scroll {
  width: 100%;
}

/* Hide Mailchimp branding */
.mailchimp-form .optionalParent .refferal_badge,
.mailchimp-form .optionalParent p[style*="margin: 0px auto"] {
  display: none !important;
}

/* Style required asterisk */
.required-asterisk {
  color: var(--error);
  font-weight: bold;
}

/* Response messages */
.mailchimp-form .response {
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-size: var(--font-size-small);
  line-height: 1.4;
}

#mce-success-response {
  background-color: var(--success);
  color: white;
  border: 1px solid var(--success);
}

#mce-error-response {
  background-color: #ffeaa7;
  color: #d63031;
  border: 1px solid #fdcb6e;
}

/* Clear Mailchimp default styles */
.mailchimp-form .clear {
  clear: both;
}

.mailchimp-form .foot {
  margin-top: 0;
}

/* Ensure form maintains existing layout */
.mailchimp-form .optionalParent {
  margin-top: var(--space-md);
}

.mailchimp-form .optionalParent .clear.foot {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Success message animation */
.mailchimp-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--success);
  color: white;
  border-radius: var(--radius);
  font-weight: 500;
  animation: successSlideIn 0.3s ease;
  margin-top: var(--space-sm);
}

