/* Register a custom property for smooth gradient animation */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Animation to rotate the gradient's angle */
@keyframes rotate-border {
  to {
    --angle: 360deg;
  }
}

/* New animation for the hero graphic ripples */
@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Register CSS variables for mouse position */
:root {
  --mouse-x: 50%;
  --mouse-y: 50%;
}

/* Basic body styling */
body {
  margin: 0;
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #D9D9D9; /* Base background color changed to off-white */
  color: #1e1e1e; /* Default text color changed to dark */
  position: relative;
  z-index: 0; /* Creates a stacking context */
  min-height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1; /* Places texture behind content but over background color */
  background-image: url('background-texture2.png');
  background-repeat: repeat;
  background-size: 400px 400px;
  opacity: 0.4; /* Adjust transparency here (0.1 to 1.0) */
  pointer-events: none;
}

/* The interactive grid background */
#grid-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  --grid-size: 50px;
  --line-color-faint: rgba(30, 30, 30, 0.15);
  --line-color-spotlight: #002855; /* Blue color for the spotlight lines */
  --intersection-color: #C0C0C0; /* Silver for dots */
  --spotlight-radius: 200px;

  /* This will now be the BASE grid (faint lines AND dots) */
  background-image:
    /* 1. Silver dots at intersections */
    radial-gradient(circle at top left, var(--intersection-color) 1px, transparent 1px),
    /* 2. Faint vertical lines */
    repeating-linear-gradient(
      to right,
      var(--line-color-faint) 0,
      var(--line-color-faint) 1px,
      transparent 1px,
      transparent var(--grid-size)
    ),
    /* 3. Faint horizontal lines */
    repeating-linear-gradient(
      to bottom,
      var(--line-color-faint) 0,
      var(--line-color-faint) 1px,
      transparent 1px,
      transparent var(--grid-size)
    );
  background-size: var(--grid-size) var(--grid-size), var(--grid-size) var(--grid-size), var(--grid-size) var(--grid-size);
}

/* This new element will hold the BLUE grid and be masked */
#grid-background-spotlight {
  position: absolute;
  inset: 0;
  background-image:
    /* 1. Silver dots (repeated here to appear in the spotlight) */
    radial-gradient(circle at top left, var(--intersection-color) 1px, transparent 1px),
    /* 2. BLUE vertical lines */
    repeating-linear-gradient(to right, var(--line-color-spotlight) 0, var(--line-color-spotlight) 1px, transparent 1px, transparent var(--grid-size)),
    /* 3. BLUE horizontal lines */
    repeating-linear-gradient(to bottom, var(--line-color-spotlight) 0, var(--line-color-spotlight) 1px, transparent 1px, transparent var(--grid-size));
  background-size: var(--grid-size) var(--grid-size);

  /* This is the magic: Use a radial gradient as a MASK */
  mask-image: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    black var(--spotlight-radius),
    transparent calc(var(--spotlight-radius) + 50px)
  );
  -webkit-mask-image: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    black var(--spotlight-radius),
    transparent calc(var(--spotlight-radius) + 50px)
  );
}

/* The main header/top-bar container */
.top-bar {
  /* --- Core Requirements --- */
  position: sticky; /* Always visible on scroll */
  top: 0;
  background-color: rgba(d9, d9, d9, 1); /* Semi-transparent version of the new light background */
  backdrop-filter: blur(10px); /* Adds a modern blur effect */
  z-index: 100; /* Ensure it's above the grid but allows content to scroll under */

  /* --- Layout --- */
  display: flex;
  justify-content: space-between; /* Pushes logo and menu apart */
  align-items: center;
  padding: 1rem 2.5rem; /* Vertical and horizontal padding */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); /* Adds a subtle shadow for depth */
  border-radius: 1rem; /* This won't be visible while full-width, but is good for consistency */
}

/* Logo and Company Name on the left */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* Space between logo and text */
  text-decoration: none; /* Remove underline from link */
  color: #1e1e1e; /* Text color changed to dark */
}

.logo-container h2 {
  margin: 0;
  font-size: 2.1rem;
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  letter-spacing: -2px; /* Tightens the letter spacing */
}

/* New wrapper to create the crop/zoom frame */
.logo-image-wrapper {
  height: 2.4rem; /* Match h2 font size */
  width: 2.4rem;
/* This is crucial, it hides the parts of the image outside the frame */
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styling for the logo image to be zoomed */
.logo-image {
  height: 100%;
  width: 100%;
  
  object-fit: contain;
}

/* Container for nav elements */
.nav-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hamburger button styling */
.hamburger-button {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1e1e1e;
}

/* Navigation menu on the right */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between menu items */
}

.nav-menu a {
  /* Default state: plain text */
  color: #555; /* Muted dark color for the text */
  text-decoration: none;
  font-size: 1rem; /* 14px */
  font-weight: 500;
  padding: 0.5rem 1rem; /* Keep padding to prevent layout shift on hover */
  border-radius: 0.375rem; /* Keep border-radius for a smooth shape transition */
  background-color: transparent; /* Start with no background */
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.nav-menu a:hover,
.nav-menu a.active-tap {
  /* Hover state: black rectangle with white text */
  color: #ffffff; /* White text */
  background-color: #1e1e1e; /* Black background */
}

/* Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Invisible bridge to prevent dropdown from closing when moving cursor across the gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  min-width: 240px; /* Matches the dropdown content width */
  height: 0.6rem; /* Covers the margin gap */
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  flex-direction: column;
  z-index: 100;
  margin-top: 0.5rem;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: flex;
}

.nav-menu .nav-dropdown-content a {
  color: #1e1e1e;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-radius: 0;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-menu .nav-dropdown-content a:hover {
  background-color: #1e1e1e;
  color: #ffffff;
}

/* "Download App" button */
.download-button {
  background-color: #000000; /* Primary red color */
  color: white;
  border: none;
  border-radius: 0.5rem; /* Rounded corners */
  padding: 0.625rem 1.25rem; /* 10px 20px */
  font-size: 0.875rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out; /* Smooth transition for the background */
}

.download-button:hover {
  outline: 1.5px dashed white; /* The "broken line" border */
  outline-offset: -2px; /* Pulls the border inwards */
}

/* Download App Dropdown */
.download-dropdown-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.download-dropdown-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 0.6rem;
}

.download-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
  margin-top: 0.5rem;
}

@media (min-width: 769px) {
  .download-dropdown-wrapper:hover .download-dropdown-menu {
    display: flex;
  }
}

.download-dropdown-wrapper.active .download-dropdown-menu {
  display: flex;
}

.download-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: flex-start;
}

.download-link img {
  height: 36px;
  width: auto;
  transition: opacity 0.2s;
}

.download-link:hover img {
  opacity: 0.8;
}

.download-date-hint {
  font-size: 0.7rem;
  color: #555;
  margin-top: 0.25rem;
  margin-left: 0.25rem;
  white-space: nowrap;
}

/* Main content container */
.page-content {
  padding: 2rem 4rem;
  position: relative; /* Ensure content is on top of the grid */
  z-index: 1;
}

/* Hero Section Styling */
.hero-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 70vh;
  padding: 4rem;
  border-radius: 2rem; /* Rounded rectangle */
  position: relative;
  overflow: hidden; /* Ensures content respects the border-radius */
  background-color: rgb(12, 12, 14); /* Translucent black background */
  background-image: 
    linear-gradient(to right, black 0px, black 20px, transparent 120px, transparent calc(100% - 120px), black calc(100% - 20px), black 100%),
    linear-gradient(to bottom, black 0px, black 20px, transparent 120px, transparent calc(100% - 120px), black calc(100% - 20px), black 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 80%),
    url('hero_section.png');
  background-size: cover;
  background-position: center;
}

.hero-content {
  flex: 1;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #f8f8f8; /* Ensure text is light on dark background */
}

.hero-content h2 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #f8f8f8; /* Same color as h1 */
  margin: -0.75rem 0 1.5rem; /* Pull it closer to the main title */
  opacity: 0.9; /* Make it slightly less prominent */
  letter-spacing: 0.5px;
}

.hero-content .hero-tagline {
  margin-top: 2.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}

.hero-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 80%;
}

.hero-button {
  margin-top: 2rem;
  background-color: #ea2a33;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

.hero-button:hover {
  opacity: 0.9;
}

/* Mission Section Styling */
.mission-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem; /* Space below the hero section */
  padding: 4rem;
  border-radius: 2rem; /* Rounded rectangle container */
  background-color: rgb(12,12,14); /* Black background */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

.mission-image-collage,
.mission-content {
  flex: 1; /* Each takes up 50% of the space */
}

.mission-image-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Creates a 2-column grid */
  gap: 1rem; /* Adds space between the images */
  align-content: start;
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  aspect-ratio: 1 / 1; /* Ensures all images are perfectly square */
  filter: sepia(15%) contrast(110%) saturate(90%); /* Adds a cinematic, slightly vintage tone */
}

/* Make the first image (Storyteller) span the full width and keep its natural aspect ratio */
.mission-image-collage .collage-img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  height: auto;
}

.collage-img:hover {
  transform: scale(1.05);
}

.mission-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #f8f8f8;
}

.mission-content p {
  font-size: 1rem;
  color: rgba(248, 248, 248, 0.8);
  max-width: 90%;
  line-height: 1.7;
}

/* Styling for the new highlights grid */
.mission-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.highlight-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f8f8f8;
}

.mission-button {
  background-color: transparent;
  color: #f8f8f8;
  border: 2px solid #f8f8f8;
  border-radius: 999px; /* Pill shape */
  padding: 0.625rem 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.mission-button:hover {
  background-color: #f8f8f8;
  color: #1e1e1e;
}

/* New modular class for the animated border effect */
.animated-border-box {
  --border-size: 3px;
  --border-color: #1e1e1e; /* Default border color, can be overridden */
  position: relative;
  background-color: rgba(255, 255, 255, 0.9); /* Default background */
}

.animated-border-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: var(--border-size);
  border-radius: inherit; /* Match the parent's border-radius */
  background: conic-gradient(
    from var(--angle),
    transparent 40%,
    var(--border-color)
  );
  animation: rotate-border 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Vision Section Styling */
.vision-section {
  text-align: center;
  margin-top: 4rem; /* Consistent spacing */
  padding: 4rem;
  border-radius: 2rem;
}

.vision-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1e1e1e;
  max-width: 80%;
  margin: 0 auto 1rem;
}

.vision-section p {
  font-size: 1.125rem;
  color: #555;
  margin: 0 auto 2.5rem;
}

.vision-app-preview {
  display: flex;
  justify-content: center;
}

.vision-app-preview img {
  max-width: 300px; /* Control the size of the app preview */
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Audio Preview Section Styling */
.audio-preview-section {
  text-align: center;
  margin-top: 4rem; /* Consistent spacing */
  padding: 4rem;
  background-color: rgb(12,12,14); /* Translucent black background */
  border-radius: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.audio-preview-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f8f8f8; /* Changed to light color */
}

.audio-preview-section p {
  font-size: 1.125rem;
  color: rgba(248, 248, 248, 0.8); /* Changed to light color */
  margin-bottom: 3rem;
}

.preview-cards-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.preview-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preview-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border-radius: 1rem;
  background-color: #1e1e1e; /* Ensures the rounded shape is visible for all images */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 0.25rem;
}

.preview-card .card-description {
  font-size: 0.9rem;
  color: #1e1e1e;
  margin: 0 0 1.5rem;
  flex-grow: 1; /* Allows description to push player down */
}

.time-display {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.waveform {
  width: 100%;
  height: 60px;
  margin-bottom: 1rem;
}

.play-button {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #1e1e1e; /* Kept dark as it's on a light card background */
  cursor: pointer;
  line-height: 1;
}

/* Creator's Note Section Styling */
.creator-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 4rem;
  padding: 4rem;
  background-color: rgba(12, 12, 14, 1); /* Translucent black background */
  border-radius: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.creator-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #1e1e1e;
  border: 3px solid #C0C0C0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #C0C0C0;
}

.creator-note-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8f8f8;
  margin-bottom: 1rem;
}

.creator-note-content blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(248, 248, 248, 0.9);
  max-width: 750px;
  margin: 0 auto 1.5rem;
}

.creator-note-content .creator-name {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(248, 248, 248, 0.7);
}

/* Footer Styling */
.site-footer {
  margin-top: 6rem;
  background-color: #121214;
  color: #f8f8f8;
  padding: 4rem 4rem 2rem;
  position: relative;
  border-radius: 2rem;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.footer-tagline {
  font-size: 1rem;
  color: rgba(248, 248, 248, 0.7);
  margin: 0.5rem 0 1.5rem;
}

.footer-download {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-badge-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-download img {
  height: 50px;
  width: auto;
  transition: opacity 0.2s ease-in-out;
}

.footer-download img:hover {
  opacity: 0.85;
}

.store-date {
  font-size: 0.75rem;
  color: rgba(248, 248, 248, 0.6);
  margin-top: 0.25rem;
  margin-left: 0.25rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li a {
  color: rgba(248, 248, 248, 0.7);
  text-decoration: none;
  line-height: 2;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-socials a {
  color: rgba(248, 248, 248, 0.7);
  transition: color 0.2s ease-in-out;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 248, 248, 0.5);
  font-size: 0.875rem;
}

/* ============================================= */
/* RESPONSIVE STYLES (Mobile & Tablet)           */
/* ============================================= */

/* For Tablets and smaller devices */
@media (max-width: 1024px) {
  .page-content {
    padding: 2rem 2rem;
  }

  .top-bar {
    padding: 1rem 2rem;
  }

  .hero-section,
  .mission-section {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem;
  }

  .mission-image-collage {
    grid-template-columns: repeat(2, 1fr);
    height: auto; /* Allow height to be flexible */
  }

  .preview-cards-container {
    grid-template-columns: 1fr; /* Stack audio cards */
  }

  .preview-card img {
    aspect-ratio: unset;
    height: auto;
    object-fit: cover;
    background-color: #1e1e1e;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for footer on tablets */
  }
}

/* For Mobile devices */
@media (max-width: 768px) {
  .page-content {
    padding: 1.5rem 1rem;
  }

  /* --- Top Bar --- */
  .top-bar {
    padding: 1rem 1.5rem;
  }

  /* --- Mobile Navigation --- */
  .hamburger-button {
    display: block; /* Show hamburger on mobile */
    z-index: 1001; /* Ensure it's on top */
  }

  #desktop-nav {
    display: none; /* Hide desktop nav container by default */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  #desktop-nav.mobile-open {
    display: flex; /* Show the menu when open */
  }

  #desktop-nav a {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  /* Mobile Dropdown Adjustments */
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
  }

  .nav-dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    background-color: transparent;
    margin-top: 0;
    padding: 0;
  }

  #desktop-nav .nav-dropdown-content a {
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.03);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #1e1e1e;
  }

  .logo-container h2 {
    font-size: 1.5rem; /* Reduce font size for mobile */
    letter-spacing: -1px;
  }

  .logo-image-wrapper {
    height: 1.5rem; /* Match mobile h2 font size */
    width: 1.5rem;
  }

  .download-button {
    padding: 0.5rem 0.75rem; /* Reduce button padding */
    font-size: 0.8rem;
  }

  /* --- Hero Section --- */
  .hero-section {
    min-height: 60vh;
    padding: 2rem;
    text-align: left;
    background-image: 
      linear-gradient(to right, black 0px, black 10px, transparent 40px, transparent calc(100% - 40px), black calc(100% - 10px), black 100%),
      linear-gradient(to bottom, black 0px, black 10px, transparent 40px, transparent calc(100% - 40px), black calc(100% - 10px), black 100%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%),
      url('hero_section.png');
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-top: 22vh;
  }

  .hero-content h2 {
    font-size: 1rem;
    white-space: normal;
  }

  .hero-content .hero-tagline {
    font-size: 4.5vw;
    white-space: nowrap;
  }

  .hero-content p {
    max-width: 100%;
  }

  /* --- Mission Section --- */
  .mission-section {
    padding: 2rem;
  }

  .mission-image-collage {
    grid-template-columns: repeat(2, 1fr); /* Two columns for images on mobile */
  }

  .mission-highlights {
    grid-template-columns: 1fr; /* Stack highlight items */
  }

  /* --- Vision Section --- */
  .vision-section {
    padding: 2rem;
  }

  .vision-section h2 {
    font-size: 2rem;
    max-width: 100%;
  }

  /* --- Audio & Creator Sections --- */
  .audio-preview-section,
  .creator-section {
    padding: 2rem;
  }

  .preview-card {
    padding: 1rem;
  }

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr; /* Single column for footer on mobile */
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}