  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0a1f44;
    --red: #c0392b;
    --red-light: #e74c3c;
    --gold: #d4a843;
    --cream: #faf8f3;
    --white: #ffffff;
    --text: #1a1a2e;
    --muted: #5a6070;
    --pad-v: 4rem;
    --pad-h: 3rem;
    --max-w: 1100px;
  }
  html { scroll-behavior: smooth; color-scheme: light; overscroll-behavior: none; }
  body { font-family: 'Source Sans 3', sans-serif; background: var(--navy); color: var(--text); overflow-x: hidden; overscroll-behavior: none; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 20;
    opacity: 0;
    overflow: visible;
    transition: opacity 0.5s ease;
  }

  .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.1rem var(--pad-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    border-radius: 0 0 6px 6px;
  }
  .nav-logo-link { display: flex; align-items: center; position: relative; z-index: 21; }
  .nav-logo-img { height: 140px; width: auto; display: block; margin-bottom: -70px; }
  .nav-center { display: flex; align-items: center; justify-content: center; }
  .nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; justify-content: center; }
  .nav-links a {
    color: var(--navy); text-decoration: none;
    font-size: 0.84rem; font-weight: 700;
    letter-spacing: 0.09em; text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 3px;
    background: #c8ced8;
    border-top: 4px solid var(--navy);
    transition: background 0.2s;
  }
  .nav-links a:hover { color: var(--navy); background: #e3e6eb; }

  /* Mobile icon nav */
  .nav-icons { display: none; gap: 0.4rem; align-items: center; }
  .nav-icon-btn {
    display: flex; flex-direction: column; align-items: center; gap: 0.18rem;
    padding: 0.38rem 0.7rem; border-radius: 3px;
    background: #c8ced8;
    border-top: 4px solid var(--navy);
    text-decoration: none; font-size: 1.3rem; line-height: 1;
    transition: background 0.2s;
  }
  .nav-icon-btn:hover { background: #e3e6eb; }
  .nav-icon-label {
    font-size: 0.5rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy);
  }
  .nav-icon-svg { width: 20px; height: 20px; display: block; fill: var(--navy); }

  .btn-support {
    display: inline-block;
    background: var(--red); color: var(--white);
    font-size: 0.86rem; font-weight: 700; letter-spacing: 0.04em;
    padding: 0.7rem 1.5rem; border-radius: 3px;
    text-decoration: none; white-space: nowrap;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-support:hover { background: var(--red-light); transform: translateY(-1px); }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.18s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Single fixed background video */
  #bg-video {
    position: fixed; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
  }

  /* Single persistent tint — always above video, always below content */
  #tint {
    position: fixed; inset: 0;
    z-index: -1;
    background: rgba(10, 31, 68, 0.78);
    pointer-events: none;
  }

  /* ── HERO ── */
  .candidate {
    position: relative; overflow: hidden;
    background: transparent;
    height: 100dvh;
    display: flex; flex-direction: column; justify-content: center;

  }
  .candidate::after {
    content: ''; position: absolute; inset: 0;
    z-index: 2; pointer-events: none;
  }
  .candidate-content {
    position: relative; z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center; gap: 3rem;
    padding: 2.5rem var(--pad-h) 4rem;
    max-width: var(--max-w); margin: 0 auto;
  }
  .district-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18);
    color: var(--gold); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.13em; text-transform: uppercase;
    padding: 0.3rem 0.85rem; border-radius: 2px; margin-bottom: 1rem;
  }
  .district-badge::before { content: '★'; font-size: 0.58rem; color: var(--gold); }
  .gold { color: var(--gold); }
  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 900; color: var(--white);
    line-height: 1.05; margin-bottom: 0.6rem;
  }
  h1 .nickname { color: var(--gold); font-style: italic; }
  .candidate-slogan {
    font-size: 1.05rem; color: rgba(255,255,255,0.88);
    font-weight: 400; margin-bottom: 1.8rem;
    border-left: 3px solid var(--red); padding-left: 0.85rem; line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .candidate-slogan strong { color: var(--white); font-weight: 700; font-style: italic; display: block; font-size: 1.15em; letter-spacing: 0.01em; }
  .candidate-image-wrap { position: relative; display: flex; justify-content: center; }
  .candidate-img {
    width: 100%; max-width: 380px; border-radius: 4px; display: block;
    position: relative; z-index: 2; border: 2px solid rgba(255,255,255,0.1);
  }
  .candidate-img-frame {
    position: absolute; inset: -10px -10px -4px;
    border: 2px solid var(--gold); border-radius: 4px; opacity: 0.3; z-index: 1;
  }

  /* TICKER */
  .stripe {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 25;
    background: rgba(10, 31, 68, 0.88);
    color: var(--white); text-align: center;
    padding: 0.55rem 2rem; font-size: 0.73rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap; overflow: hidden;
  }
  @keyframes stripe-marquee {
    from { transform: translateX(100vw); }
    to   { transform: translateX(-100%); }
  }
  @media (max-width: 860px) {
    .stripe { padding-left: 0; padding-right: 0; text-align: left; }
    .stripe-text {
      display: inline-block;
      padding-left: 1rem;
      animation: stripe-marquee 22s linear infinite;
    }
  }

  /* ── ABOUT ── */
  .intro-band { background: transparent; padding: 0; }
  .intro-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-h);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem; align-items: center;
  }
  .intro-video-wrap {
    width: 220px; flex-shrink: 0;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.45);
    aspect-ratio: 9/16;
  }
  .intro-video-wrap iframe { display: block; width: 100%; height: 100%; border: none; }
  .section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 700; color: var(--white); margin-bottom: 0.55rem; line-height: 1.2; }
  .intro-text p { color: rgba(255,255,255,0.92); font-size: 1.0rem; line-height: 1.6; font-weight: 400; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
  .section-title { text-shadow: 0 1px 6px rgba(0,0,0,0.55); }

  /* ── PLATFORM ── */
  .platform { background: transparent; padding: var(--pad-v) var(--pad-h); }
  .platform-inner { max-width: var(--max-w); margin: 0 auto; }
  .platform-header { text-align: center; margin-bottom: 2.2rem; }
  .platform-title { font-size: clamp(4rem, 8vw, 6rem); }
  .palm-title span { text-shadow: 0 0 8px rgba(255,255,255,1), 0 0 20px rgba(255,255,255,0.95), 0 0 40px rgba(255,255,255,0.8), 0 0 80px rgba(255,255,255,0.5), 0 0 120px rgba(255,255,255,0.2); }
  .palm-p { color: var(--navy); }
  .palm-a { color: var(--red); }
  .palm-l { color: var(--gold); }
  .palm-m { color: #27ae60; }
  .platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .platform-card {
    border-radius: 4px; padding: 0;
    border-top: 4px solid var(--navy);
    perspective: 1000px;
    cursor: pointer;
  }
  .platform-card:nth-child(2) { border-top-color: var(--red); }
  .platform-card:nth-child(3) { border-top-color: var(--gold); }
  .platform-card:nth-child(4) { border-top-color: #27ae60; }
  .platform-grid { align-items: stretch; }
  .card-inner {
    display: grid;
    min-height: 310px;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
    border-radius: 0 0 4px 4px;
  }
  .platform-card.flipped .card-inner { transform: rotateY(180deg); }
  .card-front, .card-back {
    grid-area: 1 / 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 1.8rem 1.6rem;
    border-radius: 0 0 4px 4px;
  }
  .card-front { background: #c8ced8; display: flex; flex-direction: column; }
  .platform-card:hover .card-front { background: #d5dae3; }
  .card-back { transform: rotateY(180deg); background: var(--cream); display: flex; flex-direction: column; }
  .card-icon { font-size: 1.25rem; margin-bottom: 0.5rem; display: block; }
  .platform-card h3 { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 0.55rem; line-height: 1.25; }
  .card-back h3 { color: var(--navy); }
  .platform-card ul { list-style: none; margin: auto 0; padding: 0; }
  .platform-card ul li { font-size: 0.84rem; font-weight: 700; color: var(--text); padding: 0.28rem 0; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.1); line-height: 1.42; }
  .platform-card ul li:last-child { border-bottom: none; }
  /* PALM badge — back face (small) */
  .card-palm { display: flex; align-items: baseline; justify-content: center; gap: 0.1rem; margin-bottom: 0.65rem; }
  .palm-letter { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; line-height: 1; }
  .palm-word { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
  /* PALM badge — front face (hero) */
  .card-front .card-palm { flex: 1; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; margin-bottom: 0; }
  .card-front .palm-letter { font-size: 5.5rem; }
  .card-front .palm-word { font-size: 0.75rem; letter-spacing: 0.18em; text-align: center; }
  /* Front face letter colors */
  .card-front .palm-letter, .card-front .palm-word { color: var(--navy); }
  .platform-card:nth-child(2) .card-front .palm-letter,
  .platform-card:nth-child(2) .card-front .palm-word { color: var(--red); }
  .platform-card:nth-child(3) .card-front .palm-letter,
  .platform-card:nth-child(3) .card-front .palm-word { color: var(--gold); }
  .platform-card:nth-child(4) .card-front .palm-letter,
  .platform-card:nth-child(4) .card-front .palm-word { color: #27ae60; }
  /* Back face colors */
  .card-back .palm-letter, .card-back .palm-word { color: var(--navy); }
  /* Flip hint */
  .card-front::after {
    content: '↻  tap to flip';
    display: block;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.65;
    padding-top: 0.45rem;
  }
  .platform-card.flipped .card-front::after { display: none; }
  /* Front h3 sits at bottom with separator — fixed height so all cards match */
  .card-front h3 { text-align: center; border-top: 1px solid rgba(0,0,0,0.12); padding-top: 0.65rem; margin-bottom: 0; min-height: 3.5rem; display: flex; align-items: center; justify-content: center; }
  /* Back heading (was card-closing) */
  .card-back-heading { font-size: 0.9rem !important; font-style: italic; text-align: center; margin-bottom: 0.75rem !important; padding-bottom: 0.7rem; border-bottom: 1px solid rgba(0,0,0,0.12); line-height: 1.45 !important; }

  /* ── FACEBOOK ── */
  .fb-section { background: transparent; padding: var(--pad-v) var(--pad-h); }
  .fb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
  }
  .fb-header { text-align: center; width: 100%; }
  .fb-cols {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }
  .fb-left { flex: 1 1 0; min-width: 0; max-width: 500px; }
  .fb-right {
    flex: 1 1 0;
    min-width: 0;
    max-width: 500px;
    border-radius: 4px;
    overflow: hidden;
    border-top: 4px solid var(--gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  }
  .fb-inner .section-title { margin-bottom: 0.25rem; }
  .social-links { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
  .social-link {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    padding: 0.85rem 1.2rem; border-radius: 3px;
    background: rgba(255,255,255,0.12);
    color: var(--white); text-decoration: none; font-weight: 600;
    font-size: 1rem; letter-spacing: 0.02em;
    border: 1px solid rgba(255,255,255,0.18);
    transition: background 0.2s, border-color 0.2s;
  }
  .social-link:hover { background: rgba(255,255,255,0.22); border-color: var(--gold); color: var(--gold); }
  .social-icon { width: 24px; height: 24px; flex-shrink: 0; }
  img.social-icon { filter: invert(1); }
  .social-link .nf { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
  .fb-embed-wrap { display: flex; justify-content: center; }

  /* ── CTA ── */
  .cta-band {
    background: transparent; padding: var(--pad-v) var(--pad-h);
    text-align: center; position: relative; overflow: hidden;

  }
  .cta-band::before { display: none; }
  .cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--white); margin-bottom: 0.45rem; position: relative; }
  .cta-band p { color: rgba(255,255,255,0.58); font-size: 0.97rem; margin-bottom: 1.6rem; position: relative; }
  .btn-outline { display: inline-block; border: 2px solid var(--gold); color: var(--gold); font-size: 0.86rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.7rem 1.5rem; border-radius: 3px; text-decoration: none; transition: background 0.2s, color 0.2s; position: relative; }
  .btn-outline:hover { background: var(--gold); color: var(--navy); }
  .cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; margin-top: 0.4rem; }
  .cta-buttons .btn-support,
  .cta-buttons .btn-outline { min-width: 13rem; text-align: center; }
  .cta-buttons .btn-outline {
    border: none;
    border-top: 4px solid var(--navy);
    background: #c8ced8;
    color: var(--navy);
    letter-spacing: 0.09em; text-transform: uppercase;
  }
  .cta-buttons .btn-outline:hover { background: #e3e6eb; color: var(--navy); }

  /* ── COUNTDOWN BAR ── */
  #countdown-bar {
    position: fixed; bottom: var(--stripe-h, 48px); left: 0; right: 0; z-index: 24;
    display: block; text-decoration: none;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s;
  }
  #countdown-bar.visible { opacity: 1; pointer-events: auto; }
  .countdown-inner {
    margin: 0 auto;
    padding: 0.35rem 0;
    text-align: center;
    white-space: nowrap;
    background: var(--navy);
    box-shadow: -6px 0 12px rgba(255,255,255,0.35), 6px 0 12px rgba(255,255,255,0.35), 0 -6px 12px rgba(255,255,255,0.35);
    border-radius: 6px 6px 0 0;
    transition: background 0.2s;
  }
  #countdown-bar:hover .countdown-inner { background: #0d2654; }
  .countdown-text {
    font-size: 0.88rem; font-weight: 700; color: var(--white);
    letter-spacing: 0.04em;
  }
  .countdown-text #cd-days { color: var(--gold); font-size: 1.05rem; }



  /* ── FOOTER ── */
  footer { position: absolute; bottom: 2.5rem; left: 0; right: 0; background: transparent; color: rgba(255,255,255,0.42); text-align: center; padding: 0.6rem 1.4rem; font-size: 0.74rem; letter-spacing: 0.03em; }
  footer strong { color: rgba(255,255,255,0.72); }

  .intro-band { display: flex; align-items: center; }

  @media (min-width: 861px) {
    .candidate, .intro-band, .platform, .fb-section, .cta-band {
      height: 100dvh;
      overflow: hidden;
    }
  }
  .platform, .fb-section {
    display: flex;
    align-items: center;
    padding: 0 var(--pad-h);
  }
  .cta-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }


  /* ── Platform carousel nav buttons (mobile only) ── */
  .platform-nav { display: none; }

  /* ── 4-col platform on wide screens ── */
  @media (min-width: 1200px) {
    .platform-grid { grid-template-columns: repeat(4, 1fr); }
  }

  /* ── MOBILE ── */
  @media (max-width: 860px) {
    :root { --pad-v: 2.5rem; --pad-h: 1.5rem; }

    .nav-inner {
      padding: 0.1rem 1.2rem;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      grid-template-areas: "logo center" "logo donate";
      gap: 0.2rem 0.75rem;
    }
    .nav-logo-link { grid-area: logo; align-self: center; }
    .nav-center { grid-area: center; justify-content: flex-start; }
    .nav-right { grid-area: donate; }
    .nav-right .nav-cta { display: block; width: 100%; text-align: center; box-sizing: border-box; }
    .nav-logo-img { height: 88px; margin-bottom: 0; }
    .nav-links { display: none !important; }
    .nav-icons { display: flex; gap: 0.2rem; width: 100%; }
    .nav-icon-btn { flex: 1; justify-content: center; padding: 0.25rem 0.3rem; gap: 0.1rem; font-size: 1rem; }
    .nav-icon-svg { width: 15px; height: 15px; }
    .nav-icon-label { font-size: 0.44rem; }

    .candidate { justify-content: flex-start; padding-top: var(--logo-clearance, 100px); overflow: visible; height: auto; }
    .candidate-content { grid-template-columns: 1fr; padding: 0.5rem 1.5rem 3rem; gap: 2rem; }
    .candidate-image-wrap { order: -1; }
    .candidate-img { max-width: 260px; }

    .intro-band { align-items: flex-start; padding-top: var(--nav-clearance, 60px); }
    .intro-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .intro-video-wrap { width: 100%; max-width: 180px; margin: 0 auto; }

    .platform, .fb-section { align-items: flex-start; padding-top: var(--nav-clearance, 60px); }
    .platform-grid-wrap { position: relative; }
    .platform-nav {
      display: flex; align-items: center; justify-content: center;
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 10; width: 2.25rem; height: calc(80% - 1.2rem);
      background: rgba(10, 31, 68, 0.72);
      border: 1px solid rgba(255,255,255,0.18);
      color: var(--white); cursor: pointer; padding: 0;
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    }
    .platform-nav svg { width: 20px; height: 20px; }
    .platform-prev { left: calc(-1 * var(--pad-h)); border-radius: 0 4px 4px 0; }
    .platform-next { right: calc(-1 * var(--pad-h)); border-radius: 4px 0 0 4px; }
    .fb-cols { flex-direction: column; align-items: center; }
    .fb-left { order: 1; width: 100%; flex: none; }
    .fb-right { order: 2; width: 100%; flex: none; }
    .cta-band { justify-content: flex-start; padding-top: var(--nav-clearance, 60px); padding-bottom: 100px; }
    .cta-band footer { position: static; margin-top: 1.5rem; }

    .platform-inner { max-width: 100%; }
    .platform-grid {
      display: flex;
      grid-template-columns: unset;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 1rem;
      margin-left: calc(-1 * var(--pad-h));
      margin-right: calc(-1 * var(--pad-h));
      padding: 0.5rem calc(50vw - min(41vw, 160px)) 1rem;
    }
    .platform-grid::-webkit-scrollbar { display: none; }
    .platform-card {
      flex: 0 0 82vw;
      max-width: 320px;
      scroll-snap-align: center;
      display: flex;
      flex-direction: column;
    }
    .card-inner { flex: 1; }

    .cta-buttons .btn-support,
    .cta-buttons .btn-outline { width: 100%; max-width: 18rem; }

    #landing-logo { width: clamp(140px, 55vw, 300px); }


  }

  /* ── LANDING SECTION ── */
  #landing {
    height: 100vh;
    height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  #landing-logo-link { display: inline-block; line-height: 0; }
  #landing-logo {
    position: relative;
    z-index: 1;
    width: clamp(200px, 35vw, 480px);
    height: auto;
    opacity: 0;
    transition: opacity 5s ease;
    cursor: pointer;
  }

  #zeffy-backdrop {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(10, 31, 68, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  #zeffy-card {
    position: fixed; z-index: 201;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.96);
    border-radius: 6px;
    padding: 2rem 2.2rem;
    max-width: 360px; width: 90%;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  }
  #zeffy-modal-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem; color: var(--navy);
    margin-bottom: 0.8rem; line-height: 1.5;
  }
  #zeffy-countdown-text {
    font-size: 0.85rem; color: var(--muted);
    margin-bottom: 1.4rem;
  }
  #zeffy-counter {
    font-weight: 700; color: var(--red);
    font-size: 1rem;
  }
  #zeffy-continue {
    display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
    background: var(--red); color: var(--white);
    text-decoration: none; margin-bottom: 0.7rem;
    padding: 0.7rem 1.4rem; border-radius: 3px;
    transition: background 0.2s;
  }
  #zeffy-continue:hover { background: var(--red-light); }
  #zeffy-continue-main { font-size: 0.88rem; font-weight: 700; letter-spacing: 0.05em; }
  #zeffy-continue-sub { font-size: 0.72rem; font-weight: 400; opacity: 0.85; }
  #zeffy-cancel {
    background: none; border: none; cursor: pointer;
    font-size: 0.8rem; color: var(--muted);
    text-decoration: underline; padding: 0;
  }
  #zeffy-cancel:hover { color: var(--navy); }
