/* ===== ABOUT PAGE STYLES ===== */

/* Import the base startups styles */
@import url('./base.css');

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  animation: float 15s ease-in-out infinite;
}

.about-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-badge span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: var(--spacing-xl);
}

.title-line {
  display: block;
  animation: fadeInUp 1s ease-out both;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
  color: var(--pink);
}

.hero-lead {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.primary-btn {
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--pink);
}

.primary-btn:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.secondary-btn {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.secondary-btn:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ===== HERO ANIMATION ===== */
.hero-animation {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.5s ease-out 0.6s both;
}

.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
  animation: orbitRotate 60s linear infinite;
}

.planet {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #ff4757);
  box-shadow:
    0 0 60px rgba(255, 107, 157, 0.6),
    inset -20px -20px 40px rgba(0, 0, 0, 0.3);
  animation: planetGlow 4s ease-in-out infinite;
}

.planet-surface {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(10px);
}

.moon {
  position: absolute;
  border-radius: 50%;
  background: var(--gray-300);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.moon-1 {
  width: 30px;
  height: 30px;
  top: 10%;
  left: 10%;
  animation: moonOrbit 10s linear infinite;
}

.moon-2 {
  width: 25px;
  height: 25px;
  bottom: 15%;
  right: 20%;
  animation: moonOrbit 15s linear infinite reverse;
}

.moon-3 {
  width: 20px;
  height: 20px;
  top: 30%;
  right: 10%;
  animation: moonOrbit 8s linear infinite;
}

.rocket-path {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rocketOrbit 20s linear infinite;
}

.rocket {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  font-size: 2rem;
  color: var(--white);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  animation: rocketFloat 2s ease-in-out infinite;
}

/* ===== STORY SECTION ===== */
.story-section {
  background: var(--white);
  padding: var(--spacing-5xl) 0;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-4xl);
  align-items: center;
}

.section-badge {
  display: inline-block;
  background: var(--blue-dark) !important;
  color: #ffffff !important;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
  border: 2px solid var(--pink);
}

.story-content h2 {
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-xl);
}

.story-lead {
  font-size: 1.25rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.story-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.belief-box {
  background: #0052cc !important;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin: var(--spacing-2xl) 0;
  animation: fadeInUp 1s ease-out;
  border: 2px solid var(--pink);
}

.belief-icon {
  font-size: 3rem;
  color: #ffffff !important;
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.belief-text {
  font-size: 1.25rem;
  color: #ffffff !important;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.story-visual {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.visual-card {
  background: var(--gray-50);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: all var(--transition-normal);
  animation: fadeInRight 1s ease-out both;
}

.visual-card:nth-child(1) {
  animation-delay: 0.1s;
}

.visual-card:nth-child(2) {
  animation-delay: 0.2s;
}

.visual-card:nth-child(3) {
  animation-delay: 0.3s;
}

.visual-card:hover {
  transform: translateX(-10px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.visual-card i {
  font-size: 2rem;
  color: var(--blue);
}

.visual-card span {
  font-weight: var(--font-weight-semibold);
  color: var(--black);
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: var(--gray-50);
  padding: var(--spacing-5xl) 0;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.section-header h2 {
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
}

.section-lead {
  color: var(--gray-600);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--spacing-3xl);
}

.founder-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  animation: fadeInUp 1s ease-out both;
}

.founder-card:nth-child(1) {
  animation-delay: 0.1s;
}

.founder-card:nth-child(2) {
  animation-delay: 0.2s;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.founder-image {
  position: relative;
  margin-bottom: var(--spacing-xl);
}

.image-placeholder {
  width: 120px;
  height: 120px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.image-placeholder i {
  font-size: 3rem;
  color: var(--gray-400);
}

.founder-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-info h3 {
  color: var(--black);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.founder-title {
  color: var(--blue);
  font-weight: var(--font-weight-medium);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.founder-bio {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
}

.founder-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--gray-200);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--pink);
  margin-bottom: var(--spacing-xs);
}

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

/* ===== MISSION SECTION ===== */
.mission-section {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  padding: var(--spacing-4xl) 0;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.mission-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.mission-content {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.mission-icon {
  font-size: 4rem;
  color: var(--pink);
  margin-bottom: var(--spacing-lg);
  animation: bounce 2s ease-in-out infinite;
}

.mission-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-xl);
}

.mission-statement {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* ===== OFFER SECTION ===== */
.offer-section {
  background: var(--white);
  padding: var(--spacing-5xl) 0;
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.kits-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.kit-card {
  background: var(--gray-50);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
  animation: fadeInUp 1s ease-out both;
}

.kit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.kit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.kit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.kit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.kit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.kit-card.featured {
  background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
  border: 2px solid var(--pink);
}

.kit-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
}

.kit-price {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--blue);
  margin-bottom: var(--spacing-md);
}

.kit-card h3 {
  color: var(--black);
  margin-bottom: var(--spacing-md);
}

.kit-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

.kit-card.featured p {
  color: var(--black) !important;
  font-weight: var(--font-weight-medium);
}

.offer-features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-3xl);
  flex-wrap: wrap;
  padding: var(--spacing-2xl);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--gray-700);
  font-weight: var(--font-weight-medium);
}

.feature i {
  color: var(--pink);
  font-size: 1.25rem;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--gray-900);
  padding: var(--spacing-4xl) 0;
  text-align: center;
}

.why-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.why-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-3xl);
}

.why-reasons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-3xl);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-3xl);
}

.reason {
  animation: fadeInUp 1s ease-out both;
}

.reason:nth-child(1) {
  animation-delay: 0.1s;
}

.reason:nth-child(2) {
  animation-delay: 0.2s;
}

.reason:nth-child(3) {
  animation-delay: 0.3s;
}

.reason-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  animation: float 3s ease-in-out infinite;
}

.reason:nth-child(2) .reason-icon {
  animation-delay: 1s;
}

.reason:nth-child(3) .reason-icon {
  animation-delay: 2s;
}

.reason p {
  color: var(--gray-300);
  font-size: 1.25rem;
}

.reason strong {
  color: var(--pink);
}

.why-tagline {
  color: var(--gray-300);
  font-size: 1.25rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* ===== MASCOT SECTION ===== */
.mascot-section {
  background: var(--white);
  padding: var(--spacing-4xl) 0;
}

.mascot-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.mascot-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: var(--spacing-3xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 1s ease-out;
}

.mascot-icon {
  margin-bottom: var(--spacing-xl);
}

.lemur-emoji {
  font-size: 4rem;
  display: inline-block;
  animation: characterBob 3s ease-in-out infinite;
}

.mascot-card h3 {
  color: var(--black);
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
}

.mascot-card p {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-section {
  background: var(--gray-50);
  padding: var(--spacing-5xl) 0;
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-3xl);
}

.pillar {
  text-align: center;
  padding: var(--spacing-2xl);
  animation: fadeInUp 1s ease-out both;
}

.pillar:nth-child(1) {
  animation-delay: 0.1s;
}

.pillar:nth-child(2) {
  animation-delay: 0.2s;
}

.pillar:nth-child(3) {
  animation-delay: 0.3s;
}

.pillar-icon {
  width: 80px;
  height: 80px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  transition: all var(--transition-normal);
}

.pillar:hover .pillar-icon {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.pillar-icon i {
  font-size: 2rem;
  color: var(--white);
}

.pillar h3 {
  color: var(--black);
  margin-bottom: var(--spacing-sm);
}

.pillar p {
  color: var(--gray-600);
}

.philosophy-approach {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.philosophy-approach p {
  color: var(--gray-700);
  font-size: 1.25rem;
  line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.about-cta-section {
  background: linear-gradient(135deg, var(--gray-900), var(--black));
  padding: var(--spacing-5xl) 0;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(98, 0, 234, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content {
  padding: 20px;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out;
}

.cta-content>p {
  color: var(--gray-300);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-2xl);
  animation: fadeInUp 1s ease-out 0.1s both;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-3xl);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.contact-info {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-info p {
  color: var(--gray-400);
  margin-bottom: var(--spacing-sm);
}

.contact-link {
  color: var(--pink);
  text-decoration: none;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all var(--transition-normal);
}

.contact-link:hover {
  color: var(--pink-dark);
  transform: translateY(-2px);
}

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

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbitRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes planetGlow {

  0%,
  100% {
    box-shadow:
      0 0 60px rgba(255, 107, 157, 0.6),
      inset -20px -20px 40px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow:
      0 0 80px rgba(255, 107, 157, 0.8),
      inset -20px -20px 40px rgba(0, 0, 0, 0.3);
  }
}

@keyframes moonOrbit {
  0% {
    transform: rotate(0deg) translateX(150px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(150px) rotate(-360deg);
  }
}

@keyframes rocketOrbit {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rocketFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-45deg);
  }

  50% {
    transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  }
}

@keyframes characterBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

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

  .hero-animation {
    height: 300px;
    margin-top: var(--spacing-2xl);
  }

  .orbit-container {
    width: 300px;
    height: 300px;
  }

  .planet {
    width: 120px;
    height: 120px;
  }

  .story-container {
    grid-template-columns: 1fr;
  }

  .story-visual {
    flex-direction: row;
    justify-content: center;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .why-reasons {
    flex-direction: column;
    gap: var(--spacing-xl);
  }

  .philosophy-pillars {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .kits-preview {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto var(--spacing-3xl);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-lead {
    font-size: 1.125rem;
  }

  .orbit-container {
    width: 250px;
    height: 250px;
  }

  .planet {
    width: 80px;
    height: 80px;
  }

  .story-visual {
    flex-direction: column;
  }

  .visual-card {
    max-width: 300px;
    margin: 0 auto;
  }

  .founder-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .offer-features {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}