  :root {
    --red:       #c0392b;
    --red-dark:  #922b21;
    --red-light: #fdf0ef;
    --red-mid:   #f5b7b1;
    --green:     #1a6b4a;
    --green-dk:  #145239;
    --bg:        #f5f3ef;
    --surface:   #ffffff;
    --border:    rgba(0,0,0,0.08);
    --text:      #1c1c1c;
    --muted:     #6b6760;
    --subtle:    #a09d98;
  }

  /* ── HERO HEADER ── */
  .hero {
    background: linear-gradient(135deg, var(--red) 0%, #922b21 100%);
    padding: 3rem 2rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
  }
  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: .75rem;
    position: relative;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #fff;
    font-weight: 600;
    position: relative;
    letter-spacing: -0.3px;
  }
  .hero-line {
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    margin: 1.25rem auto 0;
    position: relative;
  }

  .download-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: .5rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
  }
