/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES (OpenSkills Light Theme) ===== */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fc;
  --bg-dark: #1a1a2e;
  --bg-dark-card: #22223a;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --border-light: #e8ecf2;
  --border-glass: rgba(0, 0, 0, 0.06);
  --text-primary: #1a1a2e;
  --text-secondary: #5a607f;
  --text-muted: #9ca3af;
  --text-white: #ffffff;

  /* Google-inspired palette */
  --blue: #4285F4;
  --blue-light: #e8f0fe;
  --blue-glow: rgba(66, 133, 244, 0.25);
  --gold: #FBBC04;
  --gold-dark: #f09d00;
  --gold-light: #fef7e0;
  --gold-glow: rgba(251, 188, 4, 0.3);
  --green: #34A853;
  --green-light: #e6f4ea;
  --red: #EA4335;
  --red-light: #fce8e6;

  --gradient-blue: linear-gradient(135deg, #4285F4, #6a9cf7);
  --gradient-gold: linear-gradient(135deg, #FBBC04, #f09d00);
  --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-blue: 0 4px 20px rgba(66, 133, 244, 0.2);

  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== DECORATIVE DOTS ===== */
.dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.dot-blue   { background: var(--blue); }
.dot-gold   { background: var(--gold); }
.dot-green  { background: var(--green); }
.dot-red    { background: var(--red); }

/* ===== LAYOUT ===== */
.page-wrapper {
  position: relative;
  min-height: 100vh;
}

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-blue);
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: var(--transition-smooth);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--blue);
  color: white !important;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-blue);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--blue-glow);
}

.nav-cta::after { display: none !important; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Decorative dots in hero — floating animation */
.hero-right .dot {
  animation: floatDot 6s ease-in-out infinite;
}

.hero-right .dot:nth-child(3) { animation-delay: 1s; animation-duration: 5s; }
.hero-right .dot:nth-child(4) { animation-delay: 0.5s; animation-duration: 7s; }
.hero-right .dot:nth-child(5) { animation-delay: 2s; animation-duration: 8s; }

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

/* Hero Countdown Box (dark card in the hero) */
.hero-countdown-box {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  text-align: center;
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.25);
  animation: fadeInRight 0.8s ease-out 0.4s both;
  overflow: hidden;
}

.hero-countdown-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(66, 133, 244, 0.08), transparent 50%),
              radial-gradient(circle at 80% 60%, rgba(251, 188, 4, 0.06), transparent 50%);
  pointer-events: none;
}

/* Start here label inside card */
.start-here-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 .blue-text {
  color: var(--blue);
  font-style: italic;
}

.hero h1 .gold-text {
  color: var(--gold-dark);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: var(--blue);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--blue-glow);
}

.btn-outline {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ===== COUNTDOWN (inside hero card) ===== */
.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
}

.countdown-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}

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

.countdown-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
}

.countdown-card {
  width: 90px;
  height: 100px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0.7;
}

.countdown-card:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 133, 244, 0.3);
  box-shadow: 0 6px 24px rgba(66, 133, 244, 0.15);
}

.countdown-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: white;
}

.countdown-unit {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.countdown-separator {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  animation: blink 1s step-end infinite;
  align-self: flex-start;
  margin-top: 14px;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Progress Bar */
.launch-progress {
  max-width: 100%;
  margin: 0 0 20px;
  position: relative;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.progress-percent {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
}

.progress-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  width: 0%;
  transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Email Signup (inside card) */
.signup-form {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

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

.signup-form input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: var(--transition-smooth);
}

.signup-form input::placeholder { color: rgba(255, 255, 255, 0.35); }

.signup-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.signup-form .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}

.signup-form button {
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.signup-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--gold-glow);
}

.signup-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: rgba(52, 168, 83, 0.12);
  border: 1px solid rgba(52, 168, 83, 0.3);
  color: var(--green);
  font-weight: 600;
  font-size: 0.82rem;
  animation: fadeInUp 0.5s ease-out;
  position: relative;
}

/* ===== GLOBAL OPPORTUNITIES (Dark Section) ===== */
.opportunities {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

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

.opp-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.opp-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.opp-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.opp-content p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.7;
}

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

.opp-stat {
  text-align: center;
  padding: 20px 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.opp-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.opp-stat:nth-child(1) .opp-stat-value { color: var(--blue); }
.opp-stat:nth-child(2) .opp-stat-value { color: var(--gold); }
.opp-stat:nth-child(3) .opp-stat-value { color: var(--green); }

.opp-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Floating stats badge on image */
.opp-badge {
  position: absolute;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.opp-badge-top {
  top: 16px;
  right: -20px;
}

.opp-badge-bottom {
  bottom: 16px;
  left: -10px;
}

.opp-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.opp-badge-top .opp-badge-icon { background: rgba(66, 133, 244, 0.15); }
.opp-badge-bottom .opp-badge-icon { background: rgba(251, 188, 4, 0.15); }

.opp-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.opp-badge-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-title .blue-text { color: var(--blue); }
.section-title .gold-text { color: var(--gold-dark); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:nth-child(1)::before { background: var(--blue); }
.feature-card:nth-child(2)::before { background: var(--gold); }
.feature-card:nth-child(3)::before { background: var(--green); }
.feature-card:nth-child(4)::before { background: var(--red); }

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feature-card:nth-child(1) .feature-icon { background: var(--blue-light); }
.feature-card:nth-child(2) .feature-icon { background: var(--gold-light); }
.feature-card:nth-child(3) .feature-icon { background: var(--green-light); }
.feature-card:nth-child(4) .feature-icon { background: var(--red-light); }

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-icons-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.feature-mini-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ===== GLOBAL REACH SECTION ===== */
.global-reach {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-primary);
}

.reach-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.reach-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.reach-tab.active {
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
}

.reach-search {
  max-width: 420px;
  margin: 0 auto 16px;
  position: relative;
}

.reach-search input {
  width: 100%;
  padding: 12px 18px 12px 42px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: var(--transition-smooth);
}

.reach-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.reach-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.reach-search .search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--blue);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.reach-search .search-btn:hover {
  background: #3574d4;
}

.map-placeholder {
  max-width: 900px;
  margin: 0 auto;
  height: 320px;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  overflow: hidden;
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* ===== FOOTER / STAY CONNECTED ===== */
.footer-cta {
  padding: 80px 0 40px;
  background: var(--blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08), transparent 50%);
  pointer-events: none;
}

.footer-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  position: relative;
}

.footer-cta > .container > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  position: relative;
  font-size: 0.95rem;
}

.cta-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  margin-bottom: 48px;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: white;
  color: var(--blue);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.footer-links a:hover { color: white; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-subtitle { margin-left: auto; margin-right: auto; }

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

  .hero-right { max-width: 500px; margin: 0 auto; }

  .hero-countdown-box { max-width: 100%; }

  .opp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .opp-badge-top { right: 10px; }
  .opp-badge-bottom { left: 10px; }

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

  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 16px 60px; }

  .hero-countdown-box { padding: 24px 16px 24px; }

  .countdown-timer { gap: 6px; }

  .countdown-card {
    width: 65px;
    height: 80px;
  }

  .countdown-value { font-size: 1.5rem; }
  .countdown-unit { font-size: 0.5rem; letter-spacing: 1px; }
  .countdown-separator { font-size: 1.2rem; margin-top: 10px; }

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

  .signup-form .input-wrapper { width: 100%; }
  .signup-form button { width: 100%; }

  .opp-stats { grid-template-columns: 1fr; gap: 12px; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

