:root {
    --bg-deep:    #080d1a;
    --bg-dark:    #0d1525;
    --bg-card:    #111d35;
    --bg-card2:   #0a1628;
    --green:      #3ddc84;
    --green-dim:  #2ab568;
    --green-glow: rgba(61,220,132,0.15);
    --red:        #e63946;
    --red-dim:    #c1121f;
    --gold:       #ffd60a;
    --text-bright:#f0f4ff;
    --text-body:  #b8c8e8;
    --text-dim:   #7a94b8;
    --border:     rgba(61,220,132,0.2);
    --font-display:   'Bebas Neue', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-body:      'Barlow', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg-deep);
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    overflow-x: hidden;
  }
  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.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(8,13,26,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 40px rgba(61,220,132,0.1); }
  .nav-left { display: flex; align-items: center; gap: 14px; }
  .nav-right { 
      display: flex; 
      align-items: center; 
      gap: 12px; 
    }
    
    .nav-right a:not(.btn-petition) {
      font-family: var(--font-condensed);
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--gold);
      text-decoration: none;
      white-space: nowrap;
      line-height: 1;
      letter-spacing: 0.03em;
    }
  .btn-petition {
    background: var(--red);
    color: #fff;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.1s;
    animation: pulse-btn 8s ease-in-out infinite;
  }
  .btn-petition:hover { background: var(--red-dim); transform: scale(1.03); }
  @keyframes pulse-btn {
    0%,90%,100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
    95% { box-shadow: 0 0 0 8px rgba(230,57,70,0.3); }
  }
  .hamburger {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-bright);
    font-size: 1.3rem;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: block;
  }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none;
    position: fixed !important;
    top: 64px; left: 0; right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    z-index: 99999 !important;
    padding: 20px 24px;
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
  .mobile-menu.open {
    display: flex !important;
    z-index: 99999 !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
  }
  .menu-section { width: 100%; max-width: 360px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .menu-section[open] > summary { color: var(--green); }
  .menu-section > summary.menu-label {
    cursor: pointer;
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-bright);
    padding: 14px 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .menu-section > summary.menu-label::after { content: '▾'; font-size: 0.85rem; transition: transform 0.2s; }
  .menu-section[open] > summary.menu-label::after { transform: rotate(180deg); }
  .menu-section > summary::-webkit-details-marker { display: none; }
  .menu-section a { display: block; padding: 10px 0; text-align: center; width: 100%; color: var(--text-body); text-decoration: none; font-size: 1rem; transition: color 0.2s; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .menu-section a:last-child { border-bottom: none; }
  .menu-section a:hover, .menu-section a.active { color: var(--green); }
  .menu-deepdive { color: var(--green) !important; font-weight: 700; }

  /* ── NEW CLASSES FOR THIS VERSION ── */
  .fast-action-bar {
    border: 2px solid #f5c842;
    background: rgba(245,200,66,0.07);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
  }
  .draft-block {
    border-left: 6px solid #ef5350;
    background: rgba(244,67,54,0.08);
    padding: 2rem 2rem 2rem 2.5rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
  }
  .draft-block p {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0.8rem 0;
    color: #f0f0f0;
  }
  .lever-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin: 2rem 0;
  }
  @media (max-width: 900px) {
    .lever-grid {
      grid-template-columns: 1fr;
    }
  }
  .momentum-block {
    border: 2px solid #4caf50;
    background: rgba(76,175,80,0.07);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
  }
  .orientation-line {
    text-align: center;
    color: #4caf50;
    font-size: 0.95rem;
    margin: 1.5rem 0;
    line-height: 2;
  }
  .collapse-toggle {
    color: #f5c842;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-top: 1rem;
    text-decoration: none;
    border: none;
    background: none;
  }
  .collapse-content {
    display: none;
  }
  .collapse-content.open {
    display: block;
  }

  /* ── LAYOUT ── */
  .section { position: relative; z-index: 1; padding: 80px 24px; max-width: 760px; margin: 0 auto; }
  .section-alt { position: relative; z-index: 1; background: var(--bg-card2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 24px; }
  .section-alt .inner { max-width: 760px; margin: 0 auto; }
  .section-full { position: relative; z-index: 1; padding: 80px 24px; }
  .section-full .inner { max-width: 760px; margin: 0 auto; }
  .divider { border: none; border-top: 1px solid var(--border); margin: 0; position: relative; z-index: 1; }

  /* ── TYPOGRAPHY ── */
  .eyebrow { font-family: var(--font-condensed); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.15em; color: var(--green); text-transform: uppercase; margin-bottom: 12px; display: block; }
  h2 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.2rem); color: var(--text-bright); line-height: 1.05; margin-bottom: 20px; }
  .green { color: var(--green); }
  .red   { color: var(--red); }
  .gold  { color: var(--gold); }
  p { margin-bottom: 1rem; }
  p:last-child { margin-bottom: 0; }

  /* ── BUTTONS ── */
  .btn-primary { display: inline-block; background: var(--green); color: var(--bg-deep); font-family: var(--font-condensed); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.05em; padding: 14px 32px; border-radius: 4px; text-decoration: none; transition: background 0.2s, transform 0.1s; }
  .btn-primary:hover { background: var(--green-dim); transform: scale(1.02); }
  .btn-secondary { display: inline-block; background: transparent; color: var(--green); font-family: var(--font-condensed); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.05em; padding: 13px 28px; border-radius: 4px; border: 1px solid var(--green); text-decoration: none; transition: background 0.2s; }
  .btn-secondary:hover { background: var(--green-glow); }
  .btn-gold { display: inline-block; background: var(--gold); color: #080d1a !important; font-family: var(--font-condensed); font-weight: 900; font-size: 1.15rem; letter-spacing: 0.06em; padding: 15px 36px; border-radius: 4px; text-decoration: none; transition: opacity 0.2s, transform 0.1s; }
  .btn-gold:hover { opacity: 0.88; transform: scale(1.02); }
  .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

  /* ── HERO ── */
  #hero {
    padding-top: 128px;
    padding-bottom: 60px;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
  }
  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem,8vw,5.5rem);
    color: var(--text-bright);
    line-height: 1.0;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-family: var(--font-condensed);
    font-size: clamp(1.1rem,3vw,1.5rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .hero-welcome {
    font-family: var(--font-display);
    font-size: clamp(2rem,6vw,3.8rem);
    color: var(--green);
    line-height: 1.0;
    margin: 20px 0 32px;
    letter-spacing: 0.02em;
  }
  #hero .cta-row { justify-content: center; }

  /* ── 3.5% STAT BLOCK ── */
  .stat-block {
    background: linear-gradient(135deg, rgba(61,220,132,0.07), rgba(61,220,132,0.02));
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 40px 32px;
    text-align: center;
    margin: 40px 0;
  }
  .stat-block .big-num { font-family: var(--font-display); font-size: clamp(4rem,12vw,7rem); color: var(--green); line-height: 1.0; margin-bottom: 4px; }
  .stat-block .slogan { font-family: var(--font-condensed); font-size: clamp(1.1rem,3vw,1.5rem); font-weight: 900; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 16px; }
  .stat-block p { color: var(--text-body); font-size: 1rem; line-height: 1.8; max-width: 580px; margin: 0 auto 10px; }
  .stat-block .mechanism { font-family: var(--font-condensed); font-size: 1.1rem; font-weight: 700; color: var(--green); font-style: italic; margin-top: 16px; }

  /* ── PHIERS DEFINITION BOX ── */
  .def-box { background: var(--bg-card); border-left: 4px solid var(--green); border-radius: 0 8px 8px 0; padding: 28px 32px; margin: 28px 0; }
  .def-box .def-headline { font-family: var(--font-display); font-size: clamp(1.6rem,4vw,2.4rem); color: var(--text-bright); line-height: 1.1; margin-bottom: 16px; }
  .def-box .def-statement { font-family: var(--font-condensed); font-weight: 700; font-size: 1.1rem; color: var(--text-bright); line-height: 1.6; margin-bottom: 16px; }
  .def-already-list { list-style: none; margin: 16px 0; }
  .def-already-list li { padding: 8px 0 8px 24px; color: var(--text-body); position: relative; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .def-already-list li::before { content: '→'; position: absolute; left: 0; color: var(--green); }
  .def-already-list li:last-child { border-bottom: none; }
  .def-missing { list-style: none; margin: 16px 0 20px; }
  .def-missing li { padding: 10px 0 10px 28px; color: var(--text-bright); position: relative; font-family: var(--font-condensed); font-weight: 700; font-size: 1.05rem; }
  .def-missing li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-size: 1rem; }
  .demand-block { background: var(--bg-card2); border-left: 4px solid var(--green); padding: 20px 24px; border-radius: 0 6px 6px 0; margin: 20px 0; }
  .demand-block p { font-size: 0.97rem; color: var(--text-body); margin-bottom: 8px; }
  .demand-result { list-style: none; margin: 12px 0; }
  .demand-result li { padding: 6px 0 6px 20px; color: var(--green); font-family: var(--font-condensed); font-weight: 700; font-size: 1rem; position: relative; }
  .demand-result li::before { content: '▸'; position: absolute; left: 0; }

  /* ── LEVER CARDS ── */
  .lever-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
  .lever-card.political { border-top: 3px solid var(--red); }
  .lever-card.economic  { border-top: 3px solid var(--gold); }
  .lever-card.consumer  { border-top: 3px solid var(--green); }
  .lever-icon { font-size: 1.8rem; margin-bottom: 10px; }
  .lever-title { font-family: var(--font-display); font-size: clamp(1.4rem,4vw,2rem); color: var(--text-bright); margin-bottom: 12px; line-height: 1.1; }
  .lever-card ul { list-style: none; margin: 14px 0; }
  .lever-card ul li { padding: 6px 0 6px 20px; color: var(--text-body); font-size: 0.97rem; position: relative; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .lever-card ul li::before { content: '▸'; position: absolute; left: 0; color: var(--green); }
  .lever-card ul li:last-child { border-bottom: none; }
  .lever-punchline { font-family: var(--font-condensed); font-weight: 700; font-size: 1rem; color: var(--green); margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border); }

  /* ── FOUR STEPS ── */
  .steps { margin: 28px 0; }
  .step { display: flex; gap: 20px; margin-bottom: 20px; align-items: flex-start; }
  .step-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--bg-deep); font-family: var(--font-condensed); font-weight: 900; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin-top: 3px; }
  .step-num.red-num { background: var(--red); color: #fff; }
  .step-body { flex: 1; }
  .step-title { font-family: var(--font-condensed); font-weight: 700; font-size: 1.15rem; color: var(--text-bright); margin-bottom: 4px; }
  .step-title.red-title { color: var(--red); }
  .step-desc { font-size: 0.97rem; color: var(--text-body); line-height: 1.7; }

  /* ── CANONICAL POWER BLOCK ── */
  .power-block {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 36px 32px;
    margin: 0;
  }
  .power-block h2 { margin-bottom: 20px; }
  .power-lines { list-style: none; margin: 20px 0; }
  .power-lines li { padding: 14px 0 14px 32px; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; color: var(--text-body); font-size: 1rem; line-height: 1.7; }
  .power-lines li:last-child { border-bottom: none; }
  .power-lines li::before { content: '⚡'; position: absolute; left: 0; font-size: 0.9rem; top: 16px; }
  .power-shift { font-family: var(--font-display); font-size: clamp(1.3rem,4vw,2rem); color: var(--green); line-height: 1.2; margin-top: 24px; }

  /* ── VIDEO ── */
  .video-embeds { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
  @media(max-width:560px){ .video-embeds { grid-template-columns: 1fr; } }
  .video-wrap { background: var(--bg-dark); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: border-color 0.2s; cursor: pointer; position: relative; padding-bottom: 56.25%; height: 0; }
  .video-wrap:hover { border-color: var(--green); }
  .video-facade { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; background-color: var(--bg-dark); background-size: cover; background-position: center; }
  .video-facade-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.9); transition: color 0.2s; }
  .video-wrap:hover .video-facade-overlay { color: var(--green); }
  .video-info { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(8,13,26,0.92); padding: 12px 14px; border-top: 1px solid var(--border); }
  .video-title { font-family: var(--font-condensed); font-weight: 700; font-size: 0.95rem; color: var(--text-bright); line-height: 1.4; margin-bottom: 2px; }
  .video-meta { font-size: 0.78rem; color: var(--text-dim); }

  /* ── WAR / DRAFT ── */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 28px 0; }
  @media(max-width:600px){ .two-col { grid-template-columns: 1fr; } }

  /* ── TESTIMONIALS ── */
  .testimonials { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; margin-top: 28px; }
  .testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 24px 20px; position: relative; }
  .testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 4rem; color: var(--green); opacity: 0.2; position: absolute; top: 8px; left: 14px; line-height: 1; }
  .testimonial-text { font-style: italic; color: var(--text-body); font-size: 0.97rem; line-height: 1.7; margin-bottom: 12px; padding-top: 20px; }
  .testimonial-attr { font-family: var(--font-condensed); font-weight: 700; font-size: 0.85rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

  /* ── STORM BUILDING ── */
  .storm-list { list-style: none; margin: 20px 0; }
  .storm-list li { padding: 10px 0 10px 24px; color: var(--text-body); position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1rem; }
  .storm-list li::before { content: '→'; position: absolute; left: 0; color: var(--green); }
  .storm-list li:last-child { border-bottom: none; }
  .exhaustion-line { font-family: var(--font-condensed); font-weight: 700; font-size: 1.05rem; color: var(--red); background: rgba(230,57,70,0.06); border-left: 3px solid var(--red); padding: 14px 18px; border-radius: 0 6px 6px 0; margin: 20px 0; }
  .teeth-img { width: 100%; border-radius: 8px; border: 1px solid var(--border); margin: 28px 0; display: block; }
  .pull-quote { border-left: 4px solid var(--green); padding: 16px 22px; background: var(--bg-card); border-radius: 0 8px 8px 0; margin: 20px 0; }
  .pull-quote p { font-family: var(--font-condensed); font-size: 1.2rem; font-weight: 700; color: var(--text-bright); line-height: 1.5; margin-bottom: 0; }
  .mechanism-line { font-family: var(--font-condensed); font-weight: 700; font-size: 1.05rem; color: var(--green); font-style: italic; margin: 12px 0 0; }

  /* ── PICK YOUR FIGHT ── */
  .fight-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 12px; margin-top: 28px; }
  .fight-btn { display: block; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 18px 12px; text-align: center; text-decoration: none; color: var(--text-bright); font-family: var(--font-condensed); font-weight: 700; font-size: 1rem; transition: border-color 0.2s, background 0.2s; line-height: 1.4; }
  .fight-btn:hover { border-color: var(--green); background: rgba(61,220,132,0.06); color: var(--green); }
  .fight-btn .fight-emoji { display: block; font-size: 1.6rem; margin-bottom: 6px; }

  /* ── FINAL CTA ── */
  .final-cta-box {
    border: 2px solid var(--green);
    border-radius: 10px;
    padding: 40px 32px;
    text-align: center;
    background: linear-gradient(135deg, rgba(61,220,132,0.05), transparent);
  }
  .final-cta-heading { font-family: var(--font-display); font-size: clamp(2.4rem,7vw,4rem); color: var(--red); line-height: 1.0; margin-bottom: 20px; }
  .record-lines { list-style: none; margin: 20px 0; }
  .record-lines li { font-family: var(--font-condensed); font-weight: 700; font-size: 1.15rem; color: var(--green); padding: 6px 0; }
  .organizing-promise { background: rgba(61,220,132,0.1); border-left: 4px solid var(--green); padding: 20px; margin: 20px 0; font-size: 0.97rem; color: var(--text-bright); }
  .cta-buttons-stack { display: flex; flex-direction: column; gap: 12px; max-width: 400px; margin: 24px auto 0; }
  .cta-buttons-stack a { display: block; text-align: center; }
  .slogan-gold { font-family: var(--font-condensed); font-weight: 900; font-size: 1.1rem; color: var(--gold); margin-top: 20px; line-height: 1.6; }

  /* ── FOUR ACTIONS ── */
  .four-actions { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 16px; margin-top: 28px; }
  .action-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 22px 18px; text-align: center; }
  .action-card .action-verb { font-family: var(--font-display); font-size: 1.6rem; color: var(--green); margin-bottom: 6px; }
  .action-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 12px; }
  .action-card a { display: inline-block; font-family: var(--font-condensed); font-weight: 700; font-size: 0.9rem; color: var(--bg-deep); background: var(--green); padding: 8px 16px; border-radius: 4px; text-decoration: none; transition: background 0.2s; }
  .action-card a:hover { background: var(--green-dim); }

  /* ── BACK TO TOP ── */
  .back-to-top { position: fixed; bottom: 28px; right: 24px; background: var(--green); color: var(--bg-deep); border: none; border-radius: 50%; width: 44px; height: 44px; font-size: 1.2rem; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 999; display: flex; align-items: center; justify-content: center; }
  .back-to-top.visible { opacity: 1; pointer-events: auto; }
  .back-to-top:hover { background: var(--green-dim); }

  /* ── FOOTER ── */
  footer { position: relative; z-index: 1; background: var(--bg-dark); border-top: 1px solid var(--border); padding: 48px 24px 32px; text-align: center; }
  .footer-logo { height: 40px; margin-bottom: 12px; }
  .footer-tagline { font-family: var(--font-condensed); font-size: 1rem; color: var(--text-dim); margin-bottom: 6px; font-style: italic; }
  .footer-power { font-family: var(--font-condensed); font-weight: 700; font-size: 1rem; color: var(--green); font-style: italic; margin-bottom: 20px; }
  .footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-bottom: 24px; }
  .footer-nav a { color: var(--text-dim); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-nav a:hover { color: var(--green); }
  .footer-copy { font-size: 0.8rem; color: var(--text-dim); line-height: 1.8; }
  .footer-copy a { color: var(--green); text-decoration: none; }

/* ── IMAGE SIZE CONTROL ── */
.graphic-wrap img {
  max-width: min(100%, 600px);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ── MOBILE OPTIMIZATION (ALL IN ONE PLACE) ── */
@media (max-width: 768px) {
  /* Nav fixes */
  .nav-left {
    flex-wrap: wrap;
    max-width: 60%;
  }
  
  .nav-tagline {
    font-size: 0.65rem;
    line-height: 1.2;
    width: 100%;
  }
  
  .nav-left a {
    font-size: 1.1rem;
    white-space: nowrap;
  }
  
  .nav-right {
    gap: 6px;
  }

  .nav-right a:not(.btn-petition) {
    font-size: 0.75rem;
    line-height: 1;
    white-space: nowrap;
  }
  
  .btn-petition {
    font-size: 0.8rem;
    padding: 8px 12px;
    white-space: nowrap;
  }
  
  .hamburger {
    font-size: 1.1rem;
    padding: 6px 10px;
  }
  
  /* Banner fixes */
  .phiers-def-wrap {
    margin-top: 100px !important;
  }
  
  .phiers-def-toggle {
    font-size: 1rem !important;
    padding: 14px 18px !important;
  }
  
  .phiers-def-toggle span {
    white-space: normal !important;
    line-height: 1.3;
  }
  
  /* Footer fixes */
  footer {
    clear: both;
    position: relative;
    margin-top: 40px;
  }
  
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  
  .footer-nav a {
    font-size: 0.8rem;
    padding: 4px 6px;
    background: transparent;
    border: none;
    color: var(--text-dim);
  }
  
  .page-wrap {
    min-height: 50vh;
  }
  
  /* Original 640px rules from earlier in the file */
  .two-col { gap: 20px; }
  .final-cta-box { padding: 28px 20px; }
  .cta-buttons-stack { max-width: 100%; }
  .lever-grid { grid-template-columns: 1fr; }
}

/* Extra small devices */
@media (max-width: 480px) {
  .nav-left a {
    font-size: 1rem;
  }
  
  .nav-tagline {
    font-size: 0.55rem;
  }
  
  .btn-petition {
    font-size: 0.7rem;
    padding: 6px 8px;
  }
}

/* Desktop MABAH fix */
@media (min-width: 769px) {
  .nav-tagline {
    font-size: 0.7rem;
    line-height: 1.2;
    max-width: 250px;
  }
  
  .nav-tagline br {
    display: none;
  }
}


/* =============================================
   VIDEO FIX - Responsive containers
   ============================================= */

/* Video wrap - container for video sections (NOT the responsive container) */
.video-wrap {
    margin: 30px 0;
    background: transparent;
    border: none;
    padding: 0;
    height: auto;
    position: relative;
}

.video-wrap h3 {
    font-family: var(--font-display);
    color: var(--green);
    margin-bottom: 16px;
    font-size: 1.3rem;
}

/* Responsive video container - this is what actually holds the iframe */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-caption {
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-container {
    margin-bottom: 25px;
  }
  
  .video-container .video-info {
    padding: 14px 16px;
  }
  
  .video-container .video-title {
    font-size: 1.1rem;
  }
  
  .video-container .video-meta {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .video-container .video-info {
    padding: 12px 14px;
  }
  
  .video-container .video-title {
    font-size: 1rem;
  }
  
  .video-container .video-meta {
    font-size: 0.9rem;
  }
}


/* Mobile nav - keep hamburger on right (unchanged) */
@media (max-width: 768px) {
  .nav-right {
    justify-content: flex-end;
  }
}

/* Door button hover effects */
.door-btn {
  transition: transform 0.2s, background 0.2s;
}
.door-btn:hover {
  transform: scale(1.02);
}

/* Optional: Add smooth transition to all buttons */
.btn-petition, .btn-primary, .btn-secondary, .door-btn {
  transition: all 0.2s ease;
}

/* Door button styling */
.door-button {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 6px;
  margin-top: 16px;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.door-button.red {
  background: var(--red);
  color: #fff;
}

.door-button.red:hover {
  background: var(--red-dim);
  transform: scale(1.02);
}

.door-button.green {
  background: var(--green);
  color: #080d1a;
}

.door-button.green:hover {
  background: var(--green-dim);
  transform: scale(1.02);
}

/* ── STAT CARDS (for NoWar.html) ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}

.stat-card .big {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card p {
  color: var(--text-body);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =============================================
   NAVIGATION UPDATES - Center menu button on desktop
   ============================================= */

/* Desktop specific styles (769px and above) */
@media (min-width: 769px) {
  /* Hide mobile hamburger on desktop */
  .hamburger {
    display: none;
  }
  
  /* Show desktop hamburger */
  .hamburger-desktop {
    display: block;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-bright);
    font-size: 1.3rem;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .hamburger-desktop:hover {
    border-color: var(--green);
    color: var(--green);
  }
  
  /* Grid layout for perfect centering */
  #main-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 24px;
    height: 64px;
  }
  
  .nav-left {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .nav-center {
    justify-self: center;
    display: flex;
    gap: 16px;
  }
  
  .nav-right {
    justify-self: end;
    display: flex;
    gap: 24px;
    align-items: center;
  }
  
  /* Keep the petition link visible */
  .nav-right a {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0.03em;
  }
}

/* Mobile specific styles (768px and below) */
@media (max-width: 768px) {
  /* Hide desktop hamburger on mobile */
  .hamburger-desktop {
    display: none;
  }
  
  /* Show mobile hamburger */
  .hamburger {
    display: block;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-bright);
    font-size: 1.3rem;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* Hide nav-center on mobile */
  .nav-center {
    display: none;
  }
  
  /* Keep original mobile nav layout */
  #main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 64px;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    max-width: 60%;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .nav-right a {
    font-size: 0.75rem;
  }
}

/* =============================================
   MODAL IMMEDIATE DISPLAY - No delays
   ============================================= */

/* Ensure modal has no transitions or animations */
#phiers-modal {
  transition: none !important;
  animation: none !important;
}

/* Prevent any content flash before modal */
body.modal-open {
  overflow: hidden;
}

/* =============================================
   Additional responsive fixes
   ============================================= */

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-left .nav-tagline {
    font-size: 0.7rem;
    max-width: 180px;
  }
  
  .nav-right a {
    font-size: 0.85rem;
  }
}

/* Small desktop adjustments */
@media (min-width: 1025px) {
  .nav-left .nav-tagline {
    font-size: 0.75rem;
    white-space: nowrap;
  }
}


/* ── HERO TYPOGRAPHY (for NoWar.html) ── */
.hero-subhead {
  font-size: 1.4rem;
  color: var(--text-body);
  max-width: 700px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero-paragraph {
  font-size: 1.2rem;
  color: var(--text-body);
  max-width: 700px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── COLORED BOXES (red-box, green-box, gold-box) ── */
.red-box {
  background: rgba(230,57,70,0.05);
  border: 1px solid rgba(230,57,70,0.25);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 28px;
  margin: 32px 0;
}

.green-box {
  background: rgba(61,220,132,0.05);
  border: 1px solid rgba(61,220,132,0.25);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 28px;
  margin: 32px 0;
}

.gold-box {
  background: rgba(255,214,10,0.05);
  border: 1px solid rgba(255,214,10,0.25);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 28px;
  margin: 32px 0;
}

/* ── SEQUENCE / STEPS (for NoWar.html) ── */
.sequence {
  counter-reset: step;
  margin: 30px 0;
}

.seq-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.seq-num {
  background: var(--green);
  color: var(--bg-deep);
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.2rem;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.seq-content h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.seq-content p {
  margin: 0;
}

/* ── NEXT GRID (Where You Go Next) ── */
.next-grid {
  background: var(--bg-dark);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 28px;
  margin: 40px 0;
}

.next-grid p {
  margin: 8px 0;
}

.next-grid a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.next-grid a:hover {
  text-decoration: underline;
}

/* ── HASHTAG ── */
.hashtag {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  text-align: center;
  margin: 40px 0 10px;
  letter-spacing: 0.04em;
}

/* ── WARNING BUTTON (if used) ── */
.btn-warning {
  background: var(--gold);
  color: var(--bg-deep);
  border: 1px solid var(--gold);
}

.btn-warning:hover {
  background: #e6c20a;
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 2rem auto;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--green);
}


/* Go Deeper Cards */
.go-card {
  flex: 1 1 260px;
  max-width: 300px;
  padding: 22px;
  border-radius: 14px;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  cursor: pointer;
}

.go-card:hover {
  transform: translateY(-4px);
}

/* Variants */
.go-card.default {
  border: 1px solid rgba(255,255,255,0.08);
}

.go-card.green {
  border: 1px solid rgba(61,220,132,0.25);
}

.go-card.green-strong {
  border: 1px solid rgba(61,220,132,0.35);
  box-shadow: 0 0 20px rgba(61,220,132,0.08);
}

.go-card.red {
  border: 1px solid rgba(230,57,70,0.25);
}

/* Card content */
.go-icon {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.go-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.go-card:hover .go-title {
  color: var(--green);
}

.go-description {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* Force mobile menu to show when toggled */
.mobile-menu.open {
    display: flex !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
}

/* Pathos video - standalone (does NOT affect Cascade) */
.pathos-video {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem auto;
    aspect-ratio: 16 / 9;
    background: #000;
    width: 100%;
    max-width: 100%;
}

.pathos-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pathos-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pathos-video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-size: 32px;
    color: white;
}

@media (max-width: 768px) {
  .pathos-video {
    width: 100% !important;
    margin: 1rem auto !important;
  }
}


/* Resource card hover - replaces inline JS */
.resource-card {
  transition: all 0.2s ease;
}
.resource-card:hover {
  border-color: var(--green) !important;
  background: rgba(61,220,132,0.1) !important;
}
.resource-card:hover .go-title {
  color: var(--green);
}

/* Go Deeper card text contrast fix */
.go-card .go-description {
  color: var(--text-bright) !important;
  opacity: 0.85;
}

.go-title {
  color: var(--text-bright) !important;
}

.go-card .go-title {
  color: var(--text-bright) !important;
  opacity: 1;
}
