  main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 32px 96px;
    text-align: center;
    position: relative;
  }

  .thanks-tag {
    margin: 0 auto 16px;
    transform: rotate(-2deg);
    animation: fade-up .6s .1s both;
  }

  .dl-title {
    font-size: 56px;
    line-height: 1.05;
    color: var(--purple);
    margin: 24px auto 56px;
    max-width: 880px;
    letter-spacing: 1px;
    animation: fade-up .7s .2s both;
  }
  .dl-title .ink { color: var(--ink); }

  .team-q {
    font-size: 24px;
    color: var(--ink);
    margin: 0 0 28px;
    animation: fade-up .7s .3s both;
  }

  /* ---------- STORE BUTTONS ---------- */
  .stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fade-up .7s .4s both;
  }
  .store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #000;
    color: #fff;
    padding: 14px 24px 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
    transition: transform .18s, box-shadow .18s;
    min-width: 220px;
  }
  .store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
  }
  .store-btn .icon { width: 32px; height: 32px; flex: 0 0 32px; }
  .store-btn .meta { text-align: left; line-height: 1.1; white-space: nowrap; }
  .store-btn .meta .small { font-size: 11px; letter-spacing: .5px; opacity: .9; text-transform: uppercase; white-space: nowrap; }
  .store-btn .meta .big   { font-size: 20px; font-weight: 600; letter-spacing: .3px; margin-top: 2px; white-space: nowrap; }

  /* ---------- SOCIAL ---------- */
  .social-block { animation: fade-up .7s .55s both; }
  .social-title {
    font-size: 28px;
    color: var(--ink);
    margin: 0 0 28px;
  }
  .socials {
    display: flex;
    justify-content: center;
    gap: 28px;
  }
  .social-btn {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: grid; place-items: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
  }
  .social-btn:hover {
    transform: translateY(-4px) rotate(-3deg);
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
  }
  .social-btn svg { width: 30px; height: 30px; }
  .social-btn.linkedin  { background: #0A66C2; color: #fff; }
  .social-btn.instagram {
    color: #fff;
    background: linear-gradient(135deg, #FEDA77 0%, #F58529 25%, #DD2A7B 50%, #8134AF 75%, #515BD4 100%);
  }
  .social-btn.tiktok    { background: #000; color: #fff; position: relative; }

  /* ---------- ARROW + GREW PEEK ---------- */
  .peek {
    position: absolute;
    right: -20px;
    top: 240px;
    width: 220px;
    text-align: center;
    pointer-events: none;
    animation: fade-up .8s .65s both;
  }
  .peek .handwritten {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .peek svg { width: 100%; height: auto; }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-8px); }
  }
  .floater { animation: float 3.5s ease-in-out infinite; }

  @media (max-width: 1100px) {
    .peek { display: none; }
  }
  @media (max-width: 720px) {
    .dl-title { font-size: 36px; margin-bottom: 36px; }
    .team-q { font-size: 18px; }
    .social-title { font-size: 22px; }
    .stores { flex-direction: column; align-items: center; margin-bottom: 56px; }
    .store-btn { width: 100%; max-width: 280px; }
  }