@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Raleway:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Colors */
  --gold-dark: #8B7340;
  --gold: #B8963E;
  --gold-light: #D4B867;
  --gold-glow: #E8D5A0;
  --cream: #FDF6EC;
  --cream-dark: #F5E6D0;
  --blush: #F2D4D0;
  --blush-dark: #E8A9A0;
  --rose: #D4848A;
  --charcoal: #2C2420;
  --charcoal-light: #4A3F38;
  --warm-gray: #8A7E76;
  --white: #FFFAF5;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  --section-pad-nav: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 5vw, 4rem);

  /* Borders */
  --border-gold-faint: 1px solid rgba(184, 150, 62, 0.15);
  --radius-sm: 4px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography styles */
.text-display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
}

.text-display i, .text-display em {
  font-style: italic;
}

.text-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-heading i, .text-heading em {
  font-style: italic;
  font-weight: 300;
}

.text-subheading {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.8;
  max-width: 600px;
}

.text-accent {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Utility Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* Custom text effects */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-glow), var(--gold-dark));
  background-size: 200% auto;
  color: #000;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  display: inline-block;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

/* Base Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(184, 150, 62, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.btn-primary:hover::after {
  left: 150%;
}

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

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

.btn-outline-light {
  background-color: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}
.btn-outline-light:hover {
  background-color: var(--cream);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.section-label {
  display: inline-block;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

/* Decorative */
.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 62, 0.3), transparent);
}

/* Sections Base */
.section {
  padding: var(--section-pad);
  position: relative;
}

.bg-dark {
  background-color: var(--charcoal);
  color: var(--white);
}

.bg-dark .text-subheading {
  color: var(--warm-gray);
}

.bg-light {
  background-color: var(--white);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-gradient-light {
  background: radial-gradient(circle at 100% 0%, var(--blush) 0%, var(--cream) 50%, var(--cream-dark) 100%);
}

.bg-gradient-dark {
  background: radial-gradient(circle at 0% 100%, #1a1512 0%, var(--charcoal) 50%, #2f2723 100%);
}


/* 1. Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--section-pad-nav);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: var(--cream);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.header.scrolled .logo img {
  margin-bottom: -35px; /* Allows the feathers to hang over the edge */
  transform: translateY(5px); /* Fine-tunes the text alignment */
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  transition: transform 0.3s ease;
}

@media (min-width: 769px) {
  .nav-links {
    transform: translateY(-30px); /* Brings the menu up to align with logo text */
  }

  .header.scrolled .nav-links {
    transform: translateY(0);
  }
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-link.scrolled-link {
  color: var(--charcoal);
}

.header.scrolled .nav-link {
  color: var(--charcoal);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--gold-dark);
  transition: all 0.3s ease;
}

/* Add X morph for mobile menu */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 2. Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 100px;
  background: linear-gradient(135deg, #fdf8eb 0%, #fbede3 40%, #edd1c7 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  display: none; /* Hidden until elements are uploaded */
}

.hero-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-elements {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-element {
  position: absolute;
  opacity: 0.25;
  animation: floatWobble 12s ease-in-out infinite;
}

.el-magic {
  top: 35%;
  left: 50%;
  margin-top: -100px; /* moved up 100px */
  margin-left: -520px;
  width: 220px;
  opacity: 0.45; /* Increased opacity to make it more visible */
  animation-delay: 0s;
  animation-duration: 14s;
}

.el-flower {
  bottom: -240px; /* pushed firmly into the bottom corner and down 200px */
  left: calc(50% - 46vw); /* Locked to the true left edge of the screen */
  width: 400px;
  rotate: -45deg; /* Modern CSS rotate property composites with transform animation */
  animation-delay: -3s;
  animation-duration: 18s;
  transform-origin: center center;
}

.el-leaf {
  top: 25%;
  left: 50%;
  margin-left: 380px;
  width: 50px;
  animation-delay: -5s;
  animation-duration: 10s;
}

.el-sun {
  bottom: 0%;
  right: 2%;
  margin-right: -120px; /* Moved 120px to the right */
  width: 304px; /* 20% smaller than 380px */
  animation-delay: -7s;
  animation-duration: 20s;
}

@keyframes floatWobble {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(12px, -15px) rotate(3deg); }
  66% { transform: translate(-8px, -8px) rotate(-2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.sparkle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow);
  animation: pulseOpacity ease-in-out infinite alternate;
}

@keyframes pulseOpacity {
  0% { transform: scale(0.8); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
}

.badge-wrapper {
  margin-bottom: 2rem;
}

.hero .text-display {
  margin: 0rem 0 1.5rem;
}

.hero .text-subheading {
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  animation: scrollFloat 3s ease-in-out infinite;
}

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

/* 3. What Is */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream), var(--blush));
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
  z-index: -1;
}

.about-visual svg {
  width: 80px;
  height: 80px;
  color: var(--gold-dark);
}

.quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--charcoal-light);
}

/* 4. Services */
.services-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.flow-indicator {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-style: italic;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.flow-indicator svg {
  width: 20px;
  height: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 150, 62, 0.12);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-sm);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 150, 62, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}

.service-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-list li::before {
  content: '\2014';
  color: var(--gold);
}

/* 5. Audience */
.audience-header {
  text-align: center;
  margin-bottom: 4rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  border: var(--border-gold-faint);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(184, 150, 62, 0.1);
}

.audience-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin: 0 auto 1rem;
}

.audience-card h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
}

/* 6. Case Study */
.ecosystem-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.ecosystem-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.ecosystem-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.9);
}

.eco-number {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ecosystem-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.ecosystem-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.ecosystem-banner {
  background: var(--charcoal);
  padding: 2.5rem;
  text-align: center;
  border-radius: var(--radius-sm);
}

.ecosystem-banner p {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold-light);
}

/* 7. Film */
.film-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.film-visual {
  aspect-ratio: 16/9;
  background: radial-gradient(circle at center, var(--charcoal-light), #111);
  border-radius: var(--radius-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(184, 150, 62, 0.2);
  overflow: hidden;
}

.film-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(184, 150, 62, 0.15) 0%, transparent 60%);
}

.play-btn {
  width: 72px;
  height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.3);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  margin-left: 5px;
}

.play-btn:hover {
  transform: scale(1.05);
  background: var(--gold);
}

.play-btn:hover svg {
  color: var(--white);
}

.film-status {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  font-family: var(--font-display);
  letter-spacing: 2px;
  color: var(--gold-light);
}

.film-meta {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 2rem;
}

/* 8. Founders */
.founders-header {
  text-align: center;
  margin-bottom: 4rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
}

.founders-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.founder-card {
  background: transparent;
  position: relative;
  margin-bottom: 3rem;
}

.founder-card:last-child {
  margin-bottom: 0;
}

/* founder icon removed */

.founder-name {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.founder-title {
  margin-bottom: 1.5rem;
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.founder-bio {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.founder-tags .tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--gold);
  border-radius: 20px;
  color: var(--gold-dark);
}

/* 9. Why */
.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.why-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border: var(--border-gold-faint);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(184, 150, 62, 0.1);
}

.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1rem;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.why-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  margin-bottom: 4rem;
}

/* Partnership Models */
.models-header {
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.model-card {
  background: var(--white);
  padding: 1.5rem;
  border-left: 2px solid var(--gold);
  transition: transform 0.3s ease;
}

.model-card:hover {
  transform: translateX(8px);
}

.model-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* 10. Final CTA */
.final-cta {
  text-align: center;
  padding: 140px 20px;
  position: relative;
  overflow: hidden;
}

.final-cta-bg1 {
  position: absolute;
  top: 0;
  left: -20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(184, 150, 62, 0.15) 0%, transparent 70%);
  z-index: 0;
}
.final-cta-bg2 {
  position: absolute;
  bottom: -10%;
  right: -20%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(212, 132, 138, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta .text-heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.final-cta .hero-actions {
  margin-top: 2.5rem;
}

/* 11. Footer */
.footer {
  background: #1a1512;
  color: var(--warm-gray);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(184, 150, 62, 0.08);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  margin-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .header .btn {
    display: none;
  }

  .nav-links .btn {
    display: inline-flex;
    margin-top: 1rem;
  }

  .about-grid, .film-grid, .founders-grid {
    grid-template-columns: 1fr;
  }

  .services-grid, .ecosystem-grid, .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-grid, .ecosystem-grid, .models-grid, .why-grid, .audience-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
