/* ============================================
   THE FINANCIAL ALLIANCE — Michaelism Metaverse
   Neon-Teal + Celestial Violet Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #0a0a1a;
  --accent-color: #0ef0c0;
  --accent-purple: #7c3aed;
  --text-color: #f5f5f5;
  --text-secondary: rgba(245, 245, 245, 0.7);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(14, 240, 192, 0.2);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --glow-teal: 0 0 20px rgba(14, 240, 192, 0.3);
  --glow-purple: 0 0 20px rgba(124, 58, 237, 0.3);
}

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

/* Sacred Geometry Background Pattern */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(14, 240, 192, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.015) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(14, 240, 192, 0.01) 100px, rgba(14, 240, 192, 0.01) 101px),
    repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(14, 240, 192, 0.01) 100px, rgba(14, 240, 192, 0.01) 101px),
    repeating-linear-gradient(60deg, transparent, transparent 140px, rgba(124, 58, 237, 0.008) 140px, rgba(124, 58, 237, 0.008) 141px),
    repeating-linear-gradient(120deg, transparent, transparent 140px, rgba(124, 58, 237, 0.008) 140px, rgba(124, 58, 237, 0.008) 141px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--accent-color);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
}

h1 { font-size: 3rem; letter-spacing: -0.5px; }
h2 { font-size: 2.2rem; letter-spacing: -0.3px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #fff;
  text-shadow: var(--glow-teal);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* ============================================
   PAGE NAVIGATION (sub-page links)
   ============================================ */
.alliance-page-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 5%;
  background: rgba(10, 10, 26, 0.95);
  border-bottom: 1px solid rgba(14, 240, 192, 0.1);
  position: relative;
  overflow: hidden;
}
.alliance-page-nav a {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.alliance-page-nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(14, 240, 192, 0.4);
}
.alliance-page-nav a.page-active {
  color: #fff;
  opacity: 1;
}
.alliance-page-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color, #0ef0c0), transparent);
  animation: nav-scan 4s linear infinite;
}
@keyframes nav-scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@media (max-width: 600px) {
  .alliance-page-nav {
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
}

/* ============================================
   HEADER
   ============================================ */
.mm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 5%;
  background-color: rgba(10, 10, 26, 0.95);
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mm-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.mm-logo {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--accent-color);
}

.mm-logo img {
  flex-shrink: 0;
  height: 32px;
  width: auto;
}

.mm-links {
  display: flex;
  gap: 0.6rem 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.mm-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  position: relative;
}

.mm-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.mm-links a:hover {
  color: var(--accent-color);
  text-shadow: none;
}

.mm-links a:hover::after {
  width: 100%;
}

.mm-links a[href*="alliance"] {
  color: var(--accent-color);
  font-weight: 600;
}

.mm-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--card-border);
  color: var(--accent-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mm-menu-toggle:hover {
  background: rgba(14, 240, 192, 0.1);
  box-shadow: var(--glow-teal);
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 5%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -3rem;
  margin-bottom: 3rem;
  padding: 6rem 5%;
  background-color: #0a0a1a;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 26, 0.5) 0%,
    rgba(10, 10, 26, 0.3) 40%,
    rgba(10, 10, 26, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  box-shadow: 0 0 40px rgba(14, 240, 192, 0.15);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
  background: linear-gradient(135deg, var(--accent-color), #7dfce0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
  font-style: italic;
}

.hero .secondary-line {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 2rem 0;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.stats-bar .stat {
  padding: 1rem 2rem;
  border: 1px solid var(--card-border);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(14, 240, 192, 0.05);
}

.stats-bar .stat:first-child {
  border-radius: 8px 0 0 8px;
}

.stats-bar .stat:last-child {
  border-radius: 0 8px 8px 0;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-color), #0bbf99);
  color: var(--bg-color);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 1.5rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(14, 240, 192, 0.5);
  color: var(--bg-color);
  text-shadow: none;
}

.cta-btn:active {
  transform: translateY(0);
}

/* ============================================
   CARDS GRID
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--glow-teal);
  transform: translateY(-4px);
  background: rgba(14, 240, 192, 0.03);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.card .card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-purple));
  margin: 0 auto 2rem;
  border: none;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 3rem auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), var(--accent-purple), var(--accent-color));
  box-shadow: 0 0 10px rgba(14, 240, 192, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: -52px;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--bg-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color);
  box-shadow: var(--glow-purple);
  z-index: 2;
  line-height: 36px;
  text-align: center;
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  font-size: 0.95rem;
}

.timeline-item .timeline-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.timeline-item .timeline-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--glow-teal);
}

/* ============================================
   NUMBERED REASONS
   ============================================ */
.reason-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.4s ease;
  margin-bottom: 1.5rem;
}

.reason-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--glow-teal);
  transform: translateX(8px);
}

.reason-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  min-width: 50px;
  opacity: 0.6;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reason-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.reason-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   PARTNER PROFILE / SEEK SECTION
   ============================================ */
.seek-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 3rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.seek-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-purple), var(--accent-color));
}

.seek-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.seek-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.seek-list li {
  padding: 0.75rem 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.seek-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(14, 240, 192, 0.4);
}

.faq-question {
  width: 100%;
  background: var(--card-bg);
  border: none;
  color: var(--text-color);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(14, 240, 192, 0.05);
}

.faq-question .faq-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   FORM STYLES
   ============================================ */
.apply-form {
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group label .required {
  color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(14, 240, 192, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%230ef0c0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-color);
  color: var(--text-color);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .error-msg {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ef4444;
}

.form-group.error .error-msg {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-color), #0bbf99);
  color: var(--bg-color);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.form-submit:hover {
  box-shadow: 0 0 30px rgba(14, 240, 192, 0.5);
  transform: translateY(-2px);
}

.privacy-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
}

/* ============================================
   MEMBERS PAGE
   ============================================ */
.members-announcement {
  text-align: center;
  padding: 3rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin: 2rem 0;
  position: relative;
}

.members-announcement::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple), var(--accent-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.members-announcement p {
  font-size: 1.1rem;
  font-style: italic;
}

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

.placeholder-card {
  aspect-ratio: 16 / 10;
  border: 1px dashed var(--card-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14, 240, 192, 0.3);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.4s ease;
  background: var(--card-bg);
}

.placeholder-card:hover {
  border-color: var(--accent-color);
  border-style: solid;
  box-shadow: var(--glow-teal);
  color: var(--accent-color);
}

/* ============================================
   PAGE INTRO
   ============================================ */
.page-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
  padding-top: 2rem;
}

.page-intro h1 {
  margin-bottom: 1rem;
}

.page-intro p {
  font-size: 1.1rem;
}

/* ============================================
   WHAT WE PROVIDE
   ============================================ */
.provide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.provide-item {
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.provide-item:hover {
  border-color: var(--accent-color);
  box-shadow: var(--glow-teal);
}

.provide-item h4 {
  margin-bottom: 0.5rem;
}

/* ============================================
   EXPANSION SECTION
   ============================================ */
.expansion-section {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(14, 240, 192, 0.05));
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
}

.expansion-section h2 {
  margin-bottom: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.mm-footer {
  padding: 3rem 5% 1.5rem;
  background-color: rgba(10, 10, 26, 0.98);
  border-top: 1px solid var(--card-border);
}

.mm-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 2rem;
}

.mm-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mm-footer-col h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.mm-footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.mm-footer-col a:hover {
  color: var(--accent-color);
}

.mm-footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.mm-footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .provide-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 2.5rem; }
  .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .mm-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--card-border);
    gap: 0.75rem;
  }

  .mm-links.open {
    display: flex;
  }

  .mm-menu-toggle {
    display: block;
  }

  .mm-dropdown {
    width: 100%;
  }
  .mm-dropdown-toggle {
    display: none;
  }
  .mm-dropdown-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    transform: none;
    background: none;
    border: none;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: auto;
  }
  .mm-dropdown-menu a {
    padding: 0.75rem 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .placeholder-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    flex-direction: column;
    align-items: center;
  }

  .stats-bar .stat {
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-radius: 0;
  }

  .stats-bar .stat:first-child {
    border-radius: 8px 8px 0 0;
  }

  .stats-bar .stat:last-child {
    border-radius: 0 0 8px 8px;
  }

  .hero h1 { font-size: 2.2rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .seek-list {
    grid-template-columns: 1fr;
  }

  .mm-footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reason-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item::before {
    left: -46px;
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
    line-height: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero .subtitle { font-size: 1.1rem; }

  .placeholder-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .mm-header,
  .mm-footer,
  .mm-menu-toggle,
  .hero-video,
  .hero-overlay,
  .cta-btn {
    display: none !important;
  }

  h1, h2, h3, h4 {
    color: #000;
    -webkit-text-fill-color: #000;
    page-break-after: avoid;
  }

  .card, .reason-card, .timeline-item .timeline-card,
  .faq-item, .seek-section, .members-announcement {
    border: 1px solid #ccc;
    background: #fff;
    box-shadow: none;
    page-break-inside: avoid;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  .cards-grid, .placeholder-grid, .provide-grid {
    grid-template-columns: 1fr 1fr;
  }

  p, .faq-answer-inner, .reason-content p {
    color: #333;
  }

  .timeline-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .faq-answer {
    max-height: none !important;
  }
}

/* ============================================
   DROPDOWN NAVIGATION
   ============================================ */
.mm-dropdown {
  position: relative;
  display: inline-block;
}
.mm-dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.mm-dropdown-toggle:hover,
.mm-dropdown.active .mm-dropdown-toggle {
  opacity: 1;
}
.mm-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 26, 0.98);
  border: 1px solid rgba(14, 240, 192, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 160px;
  z-index: 1001;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mm-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.mm-dropdown:hover .mm-dropdown-menu,
.mm-dropdown.open .mm-dropdown-menu {
  display: flex;
  flex-direction: column;
}
.mm-dropdown-menu a {
  padding: 0.5rem 1.2rem;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s, background 0.3s;
}
.mm-dropdown-menu a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
}
.mm-dropdown-menu a.active {
  color: var(--accent-color);
  font-weight: 600;
  opacity: 1;
}
.mm-ecosystem-link {
  opacity: 0.6;
  font-size: 0.85em;
}
.mm-ecosystem-link:hover {
  opacity: 1;
}

/* ============================================
   PAGE HERO BANNER (sub-pages)
   ============================================ */
.page-hero-banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
}
.page-hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
