/* Color Palette */
:root {
  --bg-color: #2D0855; /* Matched from logo */
  --cta-color: #FF007F; /* Electric Pink */
  --highlight-color: #E6E600; /* Electric Yellow */
  --text-primary: #FFFFFF; /* Pure White */
  --bg-secondary: #F0F0F0; /* Soft Grey */
  --card-border: rgba(255, 255, 255, 0.1);
  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif; /* Fallback for high-legibility sans-serif */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 9999;
}

h1, h2, h3 {
  font-family: var(--font-header);
  font-weight: 800; /* Extra Bold */
  text-transform: uppercase;
  line-height: 1.2;
}

/* Header */
header {
  padding: 2rem 5%;
  text-align: center;
}

.logo-link {
  display: inline-block;
}

.logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

/* Common Section padding */
section {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.hero .headline {
  color: var(--highlight-color);
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  color: var(--text-primary);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 3rem;
}

/* Buttons */
.cta-button {
  display: inline-block;
  background-color: var(--cta-color);
  color: var(--text-primary);
  font-family: var(--font-header);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
  transition: all 0.2s ease-in-out;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 0, 127, 0.6);
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(255, 0, 127, 0.4);
}

/* Agitator Section */
.agitator {
  text-align: center;
  padding: 4rem 5%;
  background: rgba(0,0,0,0.2);
  border-radius: 20px;
  margin-bottom: 4rem;
}

.agitator-content p {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
}

/* Value Prop - Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Making it asymmetrical if there's space */
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .card-quality {
    grid-column: span 2;
  }
  .card-format {
    grid-column: span 2;
  }
}

.bento-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-card h3 {
  color: var(--highlight-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.bento-card p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 0 20px rgba(230, 230, 0, 0.05);
}

/* Logistics Section */
.logistics-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 3rem;
}

.logistics-content h2 {
  color: var(--highlight-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.details {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
}

.schedule {
  list-style: none;
}

.schedule li {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.schedule li:last-child {
  border-bottom: none;
}

.schedule .time {
  font-weight: 800;
  color: var(--highlight-color);
  width: 100px;
  flex-shrink: 0;
}

.schedule .event {
  font-size: 1.1rem;
}

.cta-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* FAQ Section */
.faq-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 3rem;
}

.faq-container h2 {
  color: var(--highlight-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

/* Founder Vision Section */
.founder-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 3rem;
  flex-wrap: wrap;
}

.founder-photo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--highlight-color);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-secondary);
}

.founder-quote {
  flex: 1;
  min-width: 250px;
}

.founder-quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.founder-quote cite {
  font-weight: 800;
  color: var(--highlight-color);
  font-style: normal;
  text-transform: uppercase;
}

/* Application Form Section */
.application {
  display: flex;
  justify-content: center;
}

.form-container {
  background: var(--bg-secondary);
  border-radius: 30px;
  padding: 3rem;
  width: 100%;
  max-width: 600px;
  color: var(--bg-color); /* Dark text for light background */
}

.form-container h2 {
  color: var(--bg-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: var(--font-header);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(45, 10, 77, 0.2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #FFFFFF;
  color: var(--bg-color);
  transition: all 0.3s ease;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.08);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cta-color);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(255, 0, 127, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section {
    padding: 3rem 5%;
  }
  .hero {
    padding-bottom: 3rem;
  }
  .founder-card {
    flex-direction: column;
    text-align: center;
  }
  .schedule li {
    flex-direction: column;
    gap: 0.5rem;
  }
  .schedule .time {
    width: auto;
  }
}