/* ============================================================
   PROJECT: rhythmap-about
   FILE:    style.css
   URL:     about.rhythmap.com
   PURPOSE: B2B promoter & event partner landing page
   REPO:    ~/Projects/rhythmap-about
   ============================================================ */

/* ============================================================
   RHYTHMAP — about.rhythmap.com
   Brand: #0D1117 bg | #D30320 red | #4DD0E1 cyan | #090979→#00D4FF blue
   Font: Playfair Display + Inter
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0D1117;
  --bg2:        #111820;
  --red:        #D30320;
  --red-glow:   #D3032044;
  --cyan:       #4DD0E1;
  --cyan-dim:   #4DD0E122;
  --blue-deep:  #090979;
  --blue-mid:   #1D1D75;
  --blue-light: #00D4FF;
  --white:      #FFFFFF;
  --muted:      #8899AA;
  --card-bg:    #141C26;
  --border:     rgba(77, 208, 225, 0.12);
  --radius:     16px;
  --radius-sm:  8px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NOISE TEXTURE ─────────────────────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-light) 50%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(77, 208, 225, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--red) 0%, #8B0015 100%);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px var(--red-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(211, 3, 32, 0.5);
}

/* ── SECTION SHARED ───────────────────────────────────────── */
.section { padding: 100px 0; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 52px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--red) 0%, #8B0015 100%);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
  box-shadow: 0 4px 30px var(--red-glow);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(211, 3, 32, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(77, 208, 225, 0.35);
  color: var(--cyan);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 140px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(9,9,121,0.45) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(211,3,32,0.2) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: orb-drift 16s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orb-drift 10s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(30px, 20px); }
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(77, 208, 225, 0.25);
  background: rgba(77, 208, 225, 0.07);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s 0.1s forwards;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.8s 0.25s forwards;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s 0.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s 0.55s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s 0.7s forwards;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(77, 208, 225, 0.2);
}

/* ── HERO LOGO ────────────────────────────────────────────── */
.hero-logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  animation: logo-appear 1s 0.3s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.logo-glow-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.12), inset 0 0 80px rgba(0, 212, 255, 0.06);
  animation: ring-pulse 4s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.04); opacity: 0.4; }
}

.hero-logo-img {
  width: 380px;
  max-width: 90%;
  filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 120px rgba(9, 9, 121, 0.5));
  animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

@keyframes logo-appear {
  to { opacity: 1; transform: scale(1); }
}

/* ── ABOUT CARDS ──────────────────────────────────────────── */
.about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.about-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 208, 225, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(77, 208, 225, 0.08);
}

.about-icon { font-size: 2rem; margin-bottom: 20px; }

.about-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── OPPORTUNITY ──────────────────────────────────────────── */
.opportunity { background: var(--bg); }

.opp-bg-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(77, 208, 225, 0.15), transparent);
  pointer-events: none;
}

.opp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.opp-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateX(-30px);
}

.opp-item.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s;
}

.opp-item:hover {
  border-color: rgba(211, 3, 32, 0.35);
  transform: translateX(4px);
}

.opp-check {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #8B0015 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 0 16px var(--red-glow);
  margin-top: 2px;
}

.opp-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.opp-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── WHO WE NEED ──────────────────────────────────────────── */
.whoneed { background: var(--bg2); }

.need-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.need-card {
  padding: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.need-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}

.need-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-deep), var(--cyan), var(--blue-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.need-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 208, 225, 0.25);
}

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

.need-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(77, 208, 225, 0.1);
  border: 1px solid rgba(77, 208, 225, 0.25);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.need-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── APPLY FORM ───────────────────────────────────────────── */
.apply { background: var(--bg); }

.apply-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(9,9,121,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.apply-inner { text-align: center; }
.apply-inner .section-body { margin: 0 auto 52px; }

.apply-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(77, 208, 225, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 153, 170, 0.5);
}

.form-group select option {
  background: #1a2233;
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(77, 208, 225, 0.04);
  box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.1);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  margin-bottom: 28px;
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--cyan);
  cursor: pointer;
  margin-top: 1px;
}

.form-check label {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 18px 36px;
  border-radius: var(--radius-sm);
}

/* Spinner */
.spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon { font-size: 3rem; margin-bottom: 16px; }

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
  font-size: 1rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(77, 208, 225, 0.08);
  background: var(--bg2);
  padding: 48px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-logo-img {
  width: 28px; height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.footer-copy {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.825rem;
  color: var(--muted);
}

.footer-links a {
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 0.7; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 130px 40px 80px;
    text-align: center;
  }

  .hero-subtitle { margin: 0 auto 40px; }

  .hero-actions { justify-content: center; }

  .hero-stats { justify-content: center; }

  .hero-logo-wrap { order: -1; }

  .hero-logo-img { width: 260px; }
  .logo-glow-ring { width: 300px; height: 300px; }

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

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }

  .nav-logo-text { display: none; }

  .hero { padding: 110px 24px 60px; }

  .section { padding: 70px 0; }
  .section-inner { padding: 0 24px; }

  .apply-form { padding: 32px 24px; }
}

/* ── WHY RHYTHMAP ──────────────────────────────────────────── */
.why { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 60px;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 1;
  transform: none;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-deep), var(--cyan), var(--blue-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 208, 225, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(77, 208, 225, 0.08);
}

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

.why-icon { font-size: 2rem; margin-bottom: 20px; }

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.why-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.8rem;
}

/* Feature strip */
.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  opacity: 1;
  transform: none;
}

.why-feature.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.why-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.why-feature p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PROMOTER FAQ ACCORDION ─────────────────────────────────── */
.pfaq { background: transparent; }

.pfaq-list {
  max-width: 680px;
  margin: 0 auto;
}

.pfaq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pfaq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.pfaq-q:hover { color: var(--accent); }

.pfaq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease, border-color 0.2s, background 0.2s;
}

.pfaq-q[aria-expanded="true"] .pfaq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: rgba(211,3,32,0.12);
  color: var(--accent);
}

.pfaq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.pfaq-a.open {
  max-height: 300px;
  padding-bottom: 18px;
}

.pfaq-a p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.97rem;
  margin: 0;
}

.pfaq-a p strong {
  color: var(--white);
}

/* ── CONTACT MODAL ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(77,208,225,0.05);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(211, 3, 32, 0.15);
  color: var(--white);
  border-color: rgba(211, 3, 32, 0.3);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .why-grid     { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .modal        { padding: 36px 24px; }
  .why-features { padding: 28px 24px; }
}
