/* Arbinex Beta Landing Page Styles
 * Design system: Sleek grays/blues/greens, Inter font, no purple
 */

/* Reset and Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Sand palette (warm grays) */
  --color-sand-50: #1F1F1F;
  --color-sand-100: #2A2A2A;
  --color-sand-200: #484848;
  --color-sand-300: #5A5A5A;
  --color-sand-400: #666666;
  --color-sand-500: #888888;
  --color-sand-600: #A0A0A0;
  --color-sand-700: #BDBDBD;
  --color-sand-900: #FFFFFF;

  /* Accent colors */
  --color-accent: #7BB5D9;
  --color-accent-dark: #5A9DC4;
  --color-sage: #8FBC8F;
  --color-teal: #14B8A6;
  --color-indigo: #818cf8;
  --color-amber: #f59e0b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #2A2A2A;
  color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Gradient - exact match from LandingPage.tsx */
.background-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #2A2A2A;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(85, 95, 109, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 100% 70% at 50% 35%, rgba(65, 75, 91, 0.8) 0%, transparent 60%),
    radial-gradient(ellipse 140% 90% at 50% 30%, rgba(50, 60, 70, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, #2A2A2A 0%, #1F1F1F 100%);
}

.content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
  background: rgba(42, 42, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: var(--color-sand-700);
  text-decoration: none;
  transition: color 0.2s;
}

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

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--color-sand-700);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.hidden {
  display: none !important;
}

.nav-mobile {
  padding: 1rem 0;
  border-top: 1px solid var(--color-sand-300);
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-link-mobile {
  color: var(--color-sand-700);
  text-decoration: none;
  padding: 0.5rem 0;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  min-height: 100vh;
}

.hero-content {
  max-width: 48rem;
  width: 100%;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-sand-700);
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Waitlist Form */
.waitlist-form {
  max-width: 32rem;
  margin: 0 auto 2rem;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-row {
    flex-direction: row;
  }
}

.email-input {
  flex: 1;
  padding: 0.875rem 1rem;
  background: var(--color-sand-200);
  border: 1px solid var(--color-sand-300);
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.email-input::placeholder {
  color: var(--color-sand-500);
}

.email-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(123, 181, 217, 0.2);
}

.submit-btn {
  padding: 0.875rem 1.5rem;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.submit-btn:hover {
  background: var(--color-accent-dark);
}

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

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-details {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-details {
    flex-direction: row;
    gap: 1rem;
  }
}

.form-group {
  flex: 1;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-sand-600);
  margin-bottom: 0.5rem;
}

.select-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-sand-200);
  border: 1px solid var(--color-sand-300);
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  outline: none;
  cursor: pointer;
}

.select-input:focus {
  border-color: var(--color-accent);
}

.form-note {
  font-size: 0.875rem;
  color: var(--color-sand-500);
  margin-top: 0.75rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-sand-700);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-teal);
  border-radius: 50%;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-sand-700);
  max-width: 42rem;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  background: linear-gradient(180deg, transparent 0%, rgba(42, 42, 42, 0.3) 50%, rgba(42, 42, 42, 0.6) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  background: var(--color-sand-100);
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--color-sand-600);
  font-size: 0.9375rem;
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.6) 0%, transparent 50%, transparent 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  padding: 2rem;
  background: var(--color-sand-100);
  border-radius: 1rem;
  border: 1px solid var(--color-sand-300);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--color-accent);
  border-color: var(--color-accent);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0 1rem 0 0.5rem;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.coming-soon-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.125rem 0.5rem;
  background: rgba(123, 181, 217, 0.1);
  color: var(--color-accent);
  border-radius: 9999px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
}

.period {
  color: var(--color-sand-600);
}

.pricing-card.featured .period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--color-sand-500);
}

.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-sand-700);
}

.pricing-card.featured .pricing-features li {
  color: white;
}

.pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--color-sage);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
  background: white;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.pricing-btn.primary {
  background: white;
  color: var(--color-accent-dark);
}

.pricing-btn.primary:hover {
  background: #f3f4f6;
}

.pricing-btn.secondary {
  background: transparent;
  color: var(--color-sand-700);
  border: 1px solid var(--color-sand-400);
}

.pricing-btn.secondary:hover {
  background: var(--color-sand-200);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(180deg, transparent 0%, rgba(58, 58, 58, 0.4) 50%, rgba(58, 58, 58, 0.7) 100%);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-sand-100);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question[aria-expanded="true"] {
  background: var(--color-sand-200);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-sand-500);
  transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1rem;
  background: var(--color-sand-200);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  color: var(--color-sand-700);
  line-height: 1.7;
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, rgba(58, 58, 58, 0.7) 0%, rgba(58, 58, 58, 0.4) 50%, rgba(42, 42, 42, 0.2) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-item {
  display: flex;
  gap: 1rem;
}

.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-icon svg {
  width: 24px;
  height: 24px;
}

.about-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-item p {
  color: var(--color-sand-600);
  font-size: 0.9375rem;
}

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

.stat-card {
  padding: 1.5rem;
  background: var(--color-sand-100);
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-value.accent { color: var(--color-accent); }
.stat-value.sage { color: var(--color-sage); }
.stat-value.indigo { color: var(--color-indigo); }
.stat-value.amber { color: var(--color-amber); }

.stat-label {
  color: var(--color-sand-600);
  font-size: 0.875rem;
}

.about-cta {
  text-align: center;
  margin-top: 4rem;
}

.about-cta p {
  font-size: 1.125rem;
  color: var(--color-sand-700);
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--color-accent);
  color: white;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  background: var(--color-accent-dark);
}

/* Footer */
.footer {
  padding: 1.5rem;
  border-top: 1px solid transparent;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-sand-500);
}

.footer-logo {
  width: 16px;
  height: 16px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--color-sand-500);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-sand-700);
}

/* Join Beta Button */
button.join-beta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #7BB5D9;
  color: #FFFFFF;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(123, 181, 217, 0.4);
  margin-bottom: 1rem;
}

button.join-beta-btn:hover {
  background: #5A9DC4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 181, 217, 0.5);
}

button.join-beta-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(123, 181, 217, 0.4);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.2s;
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Modal */
.modal {
  background: var(--color-sand-100);
  border-radius: 1rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(1);
  transition: transform 0.2s;
}

.modal-overlay.hidden .modal {
  transform: scale(0.95);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--color-sand-500);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--color-sand-200);
  color: white;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--color-sand-600);
  font-size: 0.9375rem;
}

/* Modal Form */
.modal-form {
  padding: 1rem 2rem 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-sand-700);
}

.form-group .required {
  color: #EF4444;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-sand-200);
  border: 1px solid var(--color-sand-300);
  border-radius: 0.5rem;
  color: white;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
  color: var(--color-sand-500);
}

.form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(123, 181, 217, 0.2);
}

/* Checkbox Styles */
.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--color-sand-700);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-sand-400);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  background: white;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

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

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

/* Radio Styles */
.radio-group {
  display: flex;
  gap: 1.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--color-sand-700);
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-sand-400);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--color-accent);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Other Input */
.other-input {
  margin-top: 0.75rem;
}

.other-input.hidden {
  display: none;
}

/* Modal Submit Button */
.modal-form .submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Modal Success State */
.modal-success {
  padding: 3rem 2rem;
  text-align: center;
}

.modal-success.hidden {
  display: none;
}

.modal-success .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(143, 188, 143, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-success .success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-sage);
}

.modal-success h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-success p {
  color: var(--color-sand-600);
  margin-bottom: 1.5rem;
}

.close-success-btn {
  padding: 0.75rem 2rem;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.close-success-btn:hover {
  background: var(--color-accent-dark);
}

/* Success state */
.success-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(143, 188, 143, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-sage);
}

.success-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.success-text {
  color: var(--color-sand-600);
}
