
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500&display=swap');

  :root {
    --night: #08081a;
    --deep: #0f0f28;
    --surface: #16163a;
    --pink: #e8197d;
    --gold: #f0a500;
    --violet: #7c3aed;
    --sky: #38bdf8;
    --text: #f0eeff;
    --muted: #8080a8;
    --border: rgba(240,238,255,0.08);
    --rainbow: linear-gradient(90deg, #e8197d, #f0a500, #22c55e, #38bdf8, #7c3aed);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--night);
    color: var(--text);
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    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)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* ── RAINBOW BAR ── */
  .rainbow-bar {
    height: 4px;
    background: var(--rainbow);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 4px; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(8,8,26,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

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

  .nav-logo-mark {
    width: 36px; height: 36px;
    background: var(--rainbow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: white;
  }

  .nav-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
  }

  .nav-logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    background: var(--pink);
    color: white !important;
    padding: 8px 20px;
    border-radius: 100px;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.85; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 60%, rgba(124,58,237,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 30%, rgba(232,25,125,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 50% 100%, rgba(56,189,248,0.08) 0%, transparent 60%);
  }

  /* Stars */
  .hero-stars {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 35% 10%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 55% 25%, rgba(255,255,255,0.7) 0%, transparent 100%),
      radial-gradient(1px 1px at 75% 8%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 10% 60%, rgba(255,255,255,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 80% 55%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(1px 1px at 25% 75%, rgba(255,255,255,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 60% 80%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 45% 50%, rgba(255,255,255,0.6) 0%, transparent 100%);
  }

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

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,25,125,0.12);
    border: 1px solid rgba(232,25,125,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--pink);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }

  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--pink);
    border-radius: 50%;
  }

  .hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(52px, 8vw, 92px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  .hero-title em {
    font-style: italic;
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 20px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 48px;
    font-weight: 300;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .btn-primary {
    background: var(--pink);
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 32px rgba(232,25,125,0.35);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(232,25,125,0.5);
  }

  .btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-ghost:hover {
    border-color: rgba(240,238,255,0.25);
    background: rgba(240,238,255,0.05);
  }

  .hero-float {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .event-card-hero {
    background: rgba(22,22,58,0.8);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    width: 280px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
  }

  .event-card-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rainbow);
  }

  .event-card-hero .date-big {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: var(--text);
  }

  .event-card-hero .month {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 4px;
  }

  .event-card-hero .event-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin: 16px 0 8px;
    color: var(--text);
  }

  .event-card-hero .event-details {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
  }

  .event-card-hero .event-tag {
    display: inline-block;
    margin-top: 16px;
    background: rgba(232,25,125,0.15);
    color: var(--pink);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(232,25,125,0.25);
  }

  /* ── MARQUEE ── */
  .marquee-wrap {
    background: var(--pink);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
  }

  .marquee-dot {
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── SECTIONS COMMON ── */
  section {
    padding: 100px 48px;
    position: relative;
  }

  .section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .section-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── PRIDE 2026 EVENT SECTION ── */
  .event-section {
    background: var(--deep);
  }

  .event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
  }

  .event-visual {
    background: var(--surface);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .event-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.2), transparent 60%);
  }

  .event-big-date {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
  }

  .event-meta {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
  }

  .event-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--muted);
  }

  .event-meta-icon {
    width: 36px; height: 36px;
    background: rgba(240,238,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pink);
  }

  .event-meta-icon svg { width: 18px; height: 18px; }

  .event-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .event-info p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }

  .tag {
    background: rgba(240,238,255,0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 13px;
    color: var(--text);
  }

  /* ── RESOURCES ── */
  .resources-section {
    background: var(--night);
  }

  .resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .resource-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
    text-decoration: none;
    display: block;
  }

  .resource-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240,238,255,0.18);
  }

  .resource-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }

  .resource-card.pink::before { background: var(--pink); }
  .resource-card.gold::before { background: var(--gold); }
  .resource-card.violet::before { background: var(--violet); }
  .resource-card.sky::before { background: var(--sky); }
  .resource-card.green::before { background: #22c55e; }
  .resource-card.coral::before { background: #f97316; }

  .resource-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .resource-icon svg { width: 24px; height: 24px; }
  .resource-icon.pink { background: rgba(232,25,125,0.15); color: var(--pink); }
  .resource-icon.gold { background: rgba(240,165,0,0.15); color: var(--gold); }
  .resource-icon.violet { background: rgba(124,58,237,0.15); color: var(--violet); }
  .resource-icon.sky { background: rgba(56,189,248,0.15); color: var(--sky); }
  .resource-icon.green { background: rgba(34,197,94,0.15); color: #22c55e; }
  .resource-icon.coral { background: rgba(249,115,22,0.15); color: #f97316; }

  .resource-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
  }

  .resource-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }

  .resource-arrow {
    position: absolute;
    bottom: 24px; right: 24px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(240,238,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: background 0.2s, color 0.2s;
  }

  .resource-card:hover .resource-arrow {
    background: var(--pink);
    color: white;
  }

  /* ── COMMUNITY VOICES ── */
  .voices-section {
    background: var(--deep);
    overflow: hidden;
  }

  .voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .voice-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
  }

  .voice-card blockquote {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
  }

  .voice-card blockquote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--pink);
    position: absolute;
    top: -16px; left: -8px;
    line-height: 1;
    opacity: 0.4;
  }

  .voice-attr {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
  }

  /* ── GET INVOLVED ── */
  .involved-section {
    background: var(--night);
  }

  .involved-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .involved-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s;
    text-decoration: none;
    display: block;
  }

  .involved-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240,238,255,0.18);
  }

  .involved-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
  }

  .involved-card h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
  }

  .involved-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ── ABOUT STRIP ── */
  .about-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .stat-box {
    background: rgba(240,238,255,0.04);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 13px;
    color: var(--muted);
  }

  .about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .about-text p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
    font-weight: 300;
  }

  /* ── NEWSLETTER ── */
  .newsletter-section {
    background: var(--deep);
    text-align: center;
  }

  .newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
  }

  .newsletter-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .newsletter-inner p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 36px;
    font-weight: 300;
  }

  .newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
  }

  .newsletter-form input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 14px 22px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
  }

  .newsletter-form input:focus {
    border-color: rgba(232,25,125,0.5);
  }

  .newsletter-form input::placeholder { color: var(--muted); }

  .newsletter-form button {
    background: var(--pink);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
  }

  .newsletter-form button:hover { opacity: 0.85; }

  /* ── FOOTER ── */
  footer {
    background: var(--night);
    border-top: 1px solid var(--border);
    padding: 64px 48px 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }

  .footer-brand p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
    font-weight: 300;
  }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-col ul a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s;
  }

  .footer-col ul a:hover { opacity: 1; }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 13px;
    color: var(--muted);
  }

  .footer-rainbow {
    height: 3px;
    background: var(--rainbow);
    border-radius: 2px;
    width: 120px;
  }

  /* ── CRISIS BANNER ── */
  .crisis-banner {
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .crisis-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(124,58,237,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    flex-shrink: 0;
  }

  .crisis-icon svg { width: 24px; height: 24px; }

  .crisis-text strong {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
  }

  .crisis-text p {
    font-size: 14px;
    color: var(--muted);
  }

  .crisis-number {
    margin-left: auto;
    background: var(--violet);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
  }

  .crisis-number:hover { opacity: 0.85; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── DIVIDER ── */
  .rainbow-divider {
    height: 1px;
    background: var(--rainbow);
    opacity: 0.3;
    margin: 0;
  }
