/* System CSS - Comida Para Todos Landing Page */
:root {
  --bg-dark: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.7);
  --bg-card-hover: rgba(30, 41, 59, 0.9);
  --border-card: rgba(255, 255, 255, 0.1);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --emerald-primary: #10b981;
  --emerald-hover: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.3);
  
  --orange-primary: #f97316;
  --orange-hover: #ea580c;
  --orange-glow: rgba(249, 115, 22, 0.3);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #34d399, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--emerald-primary);
  color: #fff;
  box-shadow: 0 4px 14px var(--emerald-glow);
}
.btn-primary:hover {
  background-color: var(--emerald-hover);
  transform: translateY(-2px);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 8px 20px var(--emerald-glow);
}
.btn-emerald:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px var(--emerald-glow);
}

.btn-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  box-shadow: 0 8px 20px var(--orange-glow);
}
.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px var(--orange-glow);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-card);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-card);
  transition: var(--transition);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.6);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #10b981, #f97316);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.logo-text .highlight {
  color: var(--emerald-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: var(--transition);
  padding: 4px 8px;
  border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
}

.navbar-actions {
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(249, 115, 22, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

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

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--emerald-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-pill.orange {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.25);
  color: var(--orange-primary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats-mini {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item-mini .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-main);
}

.stat-item-mini .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-card);
}

/* App Showcase Media */
.app-card-preview {
  position: relative;
  border-radius: 24px;
  padding: 12px;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.preview-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
  z-index: 10;
}

.hero-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.app-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.app-floating-card.top-right {
  top: 20%;
  right: -20px;
}

.app-floating-card.bottom-left {
  bottom: 10%;
  left: -20px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.2);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.card-icon.check {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-primary);
}

.card-info strong {
  display: block;
  font-size: 0.9rem;
}

.card-info small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Role Selector Tabs */
.section-roles {
  padding: 20px 0;
}

.role-selector-wrapper {
  display: flex;
  justify-content: center;
}

.role-tabs {
  display: flex;
  background: rgba(30, 41, 59, 0.6);
  padding: 6px;
  border-radius: 16px;
  border: 1px solid var(--border-card);
  gap: 8px;
}

.role-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  background: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.role-tab.active {
  background: var(--emerald-primary);
  color: #fff;
  box-shadow: 0 4px 12px var(--emerald-glow);
}

/* Features Section */
.section {
  padding: 90px 0;
}

.role-content {
  display: none;
}

.role-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.section-header {
  max-width: 650px;
  margin: 0 auto 60px;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.feature-icon.emerald {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-primary);
}

.feature-icon.orange {
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange-primary);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Impact Section */
.section-impact {
  background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.04), transparent);
}

.impact-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--border-card);
  border-radius: 28px;
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.impact-header {
  text-align: center;
  margin-bottom: 48px;
}

.impact-header h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.impact-header p {
  color: var(--text-muted);
}

.impact-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.counter-box {
  padding: 20px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--emerald-primary);
  margin-bottom: 8px;
}

.counter-label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Download Section */
.download-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(249, 115, 22, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.download-content h2 {
  font-size: 2.5rem;
  margin: 16px 0;
}

.download-content p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.download-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.download-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 32px;
}

.card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-primary);
  margin-bottom: 16px;
}

.card-badge.orange {
  background: rgba(249, 115, 22, 0.2);
  color: var(--orange-primary);
}

.download-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: var(--transition);
  color: var(--emerald-primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: #090d16;
  border-top: 1px solid var(--border-card);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-text {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 380px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--emerald-primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (Desktop, Laptop, Tablet, Mobile)
   ========================================================================== */

/* Laptop & Medium Screens (993px - 1200px) */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets & Small Laptops (769px - 992px) */
@media (max-width: 992px) {
  .navbar-content {
    height: 70px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--border-card);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

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

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
  }

  .hero {
    padding: 130px 0 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .badge-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats-mini {
    justify-content: center;
  }

  .app-card-preview {
    max-width: 540px;
    margin: 0 auto;
  }

  .app-floating-card.top-right {
    top: 10px;
    right: 10px;
  }

  .app-floating-card.bottom-left {
    bottom: 10px;
    left: 10px;
  }

  .download-banner {
    padding: 40px 24px;
  }

  .download-buttons {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .brand-col {
    grid-column: span 2;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 110px 0 50px;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item-mini .stat-number {
    font-size: 1.1rem;
  }

  .stat-item-mini .stat-label {
    font-size: 0.75rem;
  }

  .role-tabs {
    flex-direction: column;
    width: 100%;
  }

  .role-tab {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 24px;
  }

  .impact-card {
    padding: 36px 20px;
    border-radius: 20px;
  }

  .impact-header h2 {
    font-size: 1.8rem;
  }

  .impact-counters {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .counter-number {
    font-size: 2.5rem;
  }

  .download-banner h2 {
    font-size: 1.8rem;
  }

  .download-card {
    padding: 24px 16px;
  }

  .faq-question {
    padding: 18px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 0.9rem;
  }

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

  .brand-col {
    grid-column: span 1;
  }
}

/* ==========================================================================
   LAUNCH COUNTDOWN & POPUP MODAL STYLES (01/11/2026)
   ========================================================================== */

.launch-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 32px auto 0;
}

.countdown-unit {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.countdown-unit:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-4px);
}

.unit-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.unit-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  max-width: 520px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(249, 115, 22, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  transform: rotate(90deg);
}

.modal-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  margin-bottom: 16px;
}

.modal-title {
  font-size: 1.75rem;
  margin: 16px 0 12px;
  line-height: 1.25;
}

.modal-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.modal-countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.m-cd-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 10px 14px;
  min-width: 68px;
}

.m-cd-box span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--emerald-primary);
  line-height: 1;
}

.m-cd-box small {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.modal-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.modal-input:focus {
  border-color: var(--emerald-primary);
  box-shadow: 0 0 12px var(--emerald-glow);
}

.modal-footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

@media (max-width: 576px) {
  .launch-countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .unit-number {
    font-size: 2.2rem;
  }
  .modal-card {
    padding: 28px 20px;
  }
}


