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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a1a;
  color: #f8fafc;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.text-indigo { color: #818cf8; }

.gradient-text {
  background: linear-gradient(to right, #818cf8, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-tri {
  background: linear-gradient(to right, #818cf8, #a855f7, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(to right, #22d3ee, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Containers */
.container-sm { max-width: 48rem; margin: 0 auto; }
.container-md { max-width: 56rem; margin: 0 auto; }
.container-lg { max-width: 72rem; margin: 0 auto; }

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.glass-hover {
  transition: all 0.5s ease;
}

.glass-hover:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.37),
    0 0 30px rgba(99, 102, 241, 0.15);
  transform: translateY(-4px);
}

.glow-indigo { box-shadow: 0 0 30px rgba(99, 102, 241, 0.5); }
.glow-cyan { box-shadow: 0 0 30px rgba(6, 182, 212, 0.5); }

.card-padding { padding: 1.5rem; border-radius: 1rem; }

/* ===== SECTION COMMON ===== */
.section {
  position: relative;
  padding: 6rem 1rem;
}

.section-overflow { overflow: hidden; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: #94a3b8;
  font-size: 1.125rem;
  max-width: 36rem;
  margin: -1.5rem auto 0;
  margin-bottom: 3rem;
}

.section-accent {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.accent-left { top: 50%; left: 0; transform: translateY(-50%); background: rgba(99, 102, 241, 0.05); }
.accent-right-bottom { bottom: 0; right: 0; background: rgba(168, 85, 247, 0.05); }
.accent-right-top { top: 0; right: 0; background: rgba(6, 182, 212, 0.05); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.5s ease;
  transform: translateY(-100%);
  animation: slideDown 0.6s 0.1s forwards;
}

@keyframes slideDown {
  to { transform: translateY(0); }
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.nav-logo span {
  font-size: 1.125rem;
}

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

.nav-links button {
  color: #94a3b8;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links button:hover { color: #818cf8; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #cbd5e1;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.5rem 1rem 0;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu.open {
  display: flex;
  animation: fadeInDown 0.2s ease;
}

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

.mobile-menu button {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: #cbd5e1;
  transition: all 0.3s;
}

.mobile-menu button:hover {
  color: #818cf8;
  background: rgba(255, 255, 255, 0.05);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1), transparent 70%);
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  top: 25%;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background: rgba(99, 102, 241, 0.1);
}

.orb-2 {
  bottom: 25%;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: rgba(6, 182, 212, 0.1);
  animation-delay: 2s;
}

.orb-3 {
  top: 50%;
  left: 50%;
  width: 12rem;
  height: 12rem;
  background: rgba(168, 85, 247, 0.1);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-5px); }
  75% { transform: translateY(-25px) translateX(15px); }
}

.hero-logo {
  position: relative;
  z-index: 10;
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.3));
  margin-bottom: 2rem;
}

.hero-title {
  position: relative;
  z-index: 10;
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  font-weight: 700;
  text-align: center;
  background: linear-gradient(to right, #818cf8, #a855f7, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-tagline {
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
  min-height: 4rem;
}

.tagline-text {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #a5b4fc;
  text-shadow:
    0 0 20px rgba(99, 102, 241, 0.6),
    0 0 40px rgba(99, 102, 241, 0.3),
    0 0 80px rgba(99, 102, 241, 0.15);
}

.typewriter-cursor {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #818cf8;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  transition: color 0.3s;
}

.scroll-indicator:hover { color: #818cf8; }

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-indicator svg {
  animation: bounce-slow 2s ease-in-out infinite;
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

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

.feature-card {
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 1rem;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.5s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-accent {
  margin-top: 1.25rem;
  height: 2px;
  width: 0;
  border-radius: 9999px;
  transition: width 0.7s ease;
}

.feature-card:hover .feature-accent {
  width: 100%;
}

/* ===== WHY RIZEX ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.why-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(to bottom, rgba(99,102,241,0.3), rgba(99,102,241,0.05));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== WHO IS RIZEX FOR ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.audience-card {
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.5s ease;
}

.audience-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.audience-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.audience-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.audience-card p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  padding: 2rem;
  border-radius: 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-featured {
  border-color: rgba(99, 102, 241, 0.4) !important;
  background: rgba(99, 102, 241, 0.08) !important;
}

.pricing-popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #4f46e5, #6366f1);
  color: #fff;
  padding: 0.35rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0 0 0.75rem 0.75rem;
}

.pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 9999px;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #818cf8;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #818cf8, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-desc {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: "✓";
  color: #22d3ee;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.pricing-btn:hover {
  color: #fff;
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(99, 102, 241, 0.1);
}

.pricing-btn-primary {
  background: linear-gradient(to right, #4f46e5, #6366f1) !important;
  color: #fff !important;
  border: none !important;
}

.pricing-btn-primary:hover {
  background: linear-gradient(to right, #6366f1, #06b6d4) !important;
}

/* ===== FOUNDER ===== */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.founder-image-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.founder-frame {
  border-radius: 1.5rem;
  padding: 0.75rem;
}

.founder-frame img {
  max-width: 24rem;
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.founder-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #67e8f9;
}

.founder-name {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.founder-role {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.founder-content p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.founder-quote {
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  border-left: 3px solid #818cf8;
  font-style: italic;
  color: #a5b4fc;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 1.5rem 0;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  gap: 1rem;
}

.faq-question:hover { color: #818cf8; }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #64748b;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #818cf8;
}

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

.faq-item.active .faq-answer {
  max-height: 20rem;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: #64748b;
  font-size: 0.8125rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: #818cf8; }

.footer-divider {
  color: #334155;
  font-size: 0.75rem;
}

/* ===== HERO STATS ===== */
.hero-stats {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-item {
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  text-align: center;
  min-width: 10rem;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(to right, #818cf8, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.hero-sub {
  position: relative;
  z-index: 10;
  color: #94a3b8;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  text-align: center;
  max-width: 36rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.nav-cta {
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
  background: linear-gradient(to right, #4f46e5, #6366f1) !important;
  color: #fff !important;
  font-weight: 600 !important;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: linear-gradient(to right, #6366f1, #06b6d4) !important;
}

/* ===== CTA ===== */
.cta-title {
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  background: linear-gradient(to right, #4f46e5, #6366f1);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: linear-gradient(to right, #6366f1, #06b6d4);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4), 0 0 40px rgba(99, 102, 241, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6), 0 0 60px rgba(99, 102, 241, 0.3);
  }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  filter: blur(1px);
  animation: float var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  padding: 5rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 27, 75, 0.2), transparent);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 10;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 32rem;
  margin: 0 auto 4rem;
}

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

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

.input-wrap input {
  width: 100%;
  border-radius: 0.75rem;
  padding: 1rem 1rem 1rem 3rem;
  color: #e2e8f0;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}

.input-wrap input::placeholder { color: #64748b; }

.input-wrap input:focus {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right, #4f46e5, #6366f1);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
}

.join-button:hover {
  background: linear-gradient(to right, #6366f1, #06b6d4);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s;
}

.social-link:hover {
  color: #818cf8;
  border-color: rgba(99, 102, 241, 0.3);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.footer-logo span { font-size: 1.125rem; }

.copyright {
  color: #64748b;
  font-size: 0.875rem;
}

/* ===== ANIMATIONS ===== */
/* Hero entrance animations */
.anim-scale-in {
  opacity: 0;
  transform: scale(0);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

@keyframes scaleIn {
  to { opacity: 1; transform: scale(1); }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.anim-fade-delay {
  opacity: 0;
  animation: fadeIn 0.5s ease 1.2s forwards;
}

.anim-fade-late {
  opacity: 0;
  animation: fadeIn 0.5s ease 2s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a1a; }
::-webkit-scrollbar-thumb { background: rgba(99, 102, 241, 0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99, 102, 241, 0.6); }

::selection {
  background: rgba(99, 102, 241, 0.4);
  color: #f8fafc;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .waitlist-form {
    flex-direction: row;
  }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .section { padding: 8rem 1rem; }

  .nav-links { display: flex; }
  .hamburger { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .founder-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }

  .hero-logo { width: 9rem; height: 9rem; }
}

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

  .hero-logo { width: 11rem; height: 11rem; }

  .feature-card { padding: 2rem 2rem 1.5rem; }
  .founder-frame { padding: 1rem; }
}
