/* ==========================================================================
   WASTE2VALUE INDONESIA - UNDER CONSTRUCTION STYLESHEET
   Aesthetics: Modern Eco-Tech, Glassmorphic, Deep Ocean Teal & Emerald Green
   ========================================================================== */

:root {
  /* Color Palette - Dark Theme (Default) */
  --bg-primary: #071518;
  --bg-secondary: #0c2024;
  --bg-surface: rgba(14, 38, 44, 0.65);
  --bg-surface-hover: rgba(20, 52, 60, 0.8);
  --border-color: rgba(74, 222, 128, 0.15);
  --border-highlight: rgba(74, 222, 128, 0.35);

  --text-main: #f0fdf4;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --accent-teal: #0d9488;
  --accent-teal-glow: rgba(13, 148, 136, 0.4);
  --accent-green: #22c55e;
  --accent-green-glow: rgba(34, 197, 94, 0.35);
  --accent-lime: #84cc16;

  --gradient-brand: linear-gradient(135deg, #22c55e 0%, #14b8a6 50%, #0284c7 100%);
  --gradient-glow: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(13, 148, 136, 0.25));

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 25px rgba(13, 148, 136, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-primary: #f4fbf7;
  --bg-secondary: #e8f5ed;
  --bg-surface: rgba(255, 255, 255, 0.85);
  --bg-surface-hover: rgba(255, 255, 255, 0.95);
  --border-color: rgba(22, 101, 52, 0.14);
  --border-highlight: rgba(22, 101, 52, 0.3);

  --text-main: #062419;
  --text-muted: #335347;
  --text-dim: #648074;

  --accent-teal: #0f766e;
  --accent-teal-glow: rgba(15, 118, 110, 0.2);
  --accent-green: #16a34a;
  --accent-green-glow: rgba(22, 163, 74, 0.2);
  --accent-lime: #65a30d;

  --gradient-brand: linear-gradient(135deg, #16a34a 0%, #0d9488 60%, #0369a1 100%);
  --gradient-glow: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(13, 148, 136, 0.15));

  --card-shadow: 0 15px 35px -10px rgba(6, 36, 25, 0.08), 0 0 20px rgba(22, 163, 74, 0.05);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Ambient Background Effects
   ========================================================================== */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-teal {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #0d9488 0%, rgba(13, 148, 136, 0) 70%);
  top: -100px;
  left: -150px;
}

.orb-green {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #22c55e 0%, rgba(34, 197, 94, 0) 70%);
  top: 30%;
  right: -200px;
  animation-duration: 22s;
  animation-delay: -5s;
}

.orb-blue {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #0284c7 0%, rgba(2, 132, 199, 0) 70%);
  bottom: -100px;
  left: 20%;
  animation-duration: 26s;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, 40px) scale(1.08);
  }
  100% {
    transform: translate(-40px, 70px) scale(0.95);
  }
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

[data-theme="light"] .grid-overlay {
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

/* ==========================================================================
   Layout Wrapper
   ========================================================================== */
.site-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  box-shadow: var(--card-shadow);
  margin-bottom: 2.5rem;
  transition: var(--transition-smooth);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mini-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 2px 6px rgba(34, 197, 94, 0.3));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.theme-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.theme-btn:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-highlight);
  transform: rotate(15deg);
}

.theme-btn svg {
  width: 18px;
  height: 18px;
}

[data-theme="dark"] .sun-icon {
  display: block;
}
[data-theme="dark"] .moon-icon {
  display: none;
}
[data-theme="light"] .sun-icon {
  display: none;
}
[data-theme="light"] .moon-icon {
  display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(8px);
}

/* Center Logo Showcase */
.logo-showcase-container {
  position: relative;
  margin: 0 auto 2.2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-aura {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, rgba(13, 148, 136, 0.25) 50%, rgba(0,0,0,0) 75%);
  filter: blur(40px);
  z-index: 0;
  animation: auraPulse 6s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.logo-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.45), 0 0 35px rgba(34, 197, 94, 0.25);
  transition: var(--transition-smooth);
  animation: floatLogo 6s ease-in-out infinite;
}

[data-theme="light"] .logo-card {
  background: #ffffff;
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow: 0 20px 40px -10px rgba(6, 36, 25, 0.15), 0 0 25px rgba(22, 163, 74, 0.12);
}

.logo-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.45), 0 0 45px rgba(34, 197, 94, 0.35);
}

.hero-logo {
  width: 220px;
  max-width: 70vw;
  height: auto;
  object-fit: contain;
  display: block;
}

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

.main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-heading {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto;
  font-weight: 400;
}

.sub-heading strong {
  color: var(--text-main);
  font-weight: 600;
}

/* ==========================================================================
   Countdown Section
   ========================================================================== */
.countdown-section {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--card-shadow);
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  margin-bottom: 1.75rem;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 85px;
}

.time-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 0.8rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.time-box:hover {
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

.time-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.time-label {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.countdown-divider {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  opacity: 0.6;
  margin-bottom: 1.8rem;
}

/* Progress Tracker */
.progress-container {
  max-width: 650px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.progress-percentage {
  color: var(--accent-green);
  font-family: var(--font-heading);
}

.progress-bar-track {
  width: 100%;
  height: 10px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  position: relative;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-milestones {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

.milestone.done {
  color: var(--accent-green);
}

.milestone.active {
  color: var(--accent-teal);
  font-weight: 600;
}

/* ==========================================================================
   Email Notification Section
   ========================================================================== */
.notify-section {
  margin-bottom: 3.5rem;
}

.notify-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--card-shadow);
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.notify-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.notify-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.notify-form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto 1.25rem auto;
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.input-wrapper .mail-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  pointer-events: none;
}

.input-wrapper input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
  background: var(--bg-primary);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: var(--gradient-brand);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px -4px rgba(34, 197, 94, 0.4);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(34, 197, 94, 0.55);
  filter: brightness(1.08);
}

.primary-btn:active {
  transform: translateY(0);
}

.privacy-note {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Pillars Section
   ========================================================================== */
.pillars-section {
  margin-bottom: 3.5rem;
}

.pillars-heading {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  background: var(--bg-surface-hover);
  box-shadow: var(--card-shadow);
}

.pillar-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pillar-icon-box svg {
  width: 26px;
  height: 26px;
}

.pillar-icon-box.eco {
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent-green);
}

.pillar-icon-box.tech {
  background: rgba(13, 148, 136, 0.15);
  color: var(--accent-teal);
}

.pillar-icon-box.collab {
  background: rgba(2, 132, 199, 0.15);
  color: #38bdf8;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   Quick Contact Section
   ========================================================================== */
.contact-section {
  margin-bottom: 3.5rem;
}

.contact-box {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(34, 197, 94, 0.1));
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-text h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

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

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.wa-btn {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.wa-btn:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.email-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.email-btn:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-domain-badge {
  font-size: 0.75rem;
  padding: 0.15rem 0.55rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-green);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.domain-link {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.domain-link:hover {
  text-decoration: underline;
  color: var(--accent-teal);
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #14532d;
  color: #dcfce7;
  border: 1px solid #22c55e;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 24px;
  height: 24px;
  background: #22c55e;
  color: #052e16;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
}

.toast-message {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 768px) {
  .site-wrapper {
    padding: 1rem 1rem 2.5rem 1rem;
  }

  .navbar {
    padding: 0.6rem 1rem;
    margin-bottom: 2rem;
  }

  .status-label {
    display: none;
  }

  .countdown-grid {
    gap: 0.5rem;
  }

  .countdown-item {
    min-width: 65px;
  }

  .time-box {
    padding: 0.75rem 0.5rem;
  }

  .countdown-divider {
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
  }

  .progress-milestones {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .notify-form {
    flex-direction: column;
  }

  .primary-btn {
    width: 100%;
    padding: 0.9rem;
  }

  .contact-box {
    flex-direction: column;
    text-align: center;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
