    :root {
      --black:  #0a0a0a;
      --dark:   #111;
      --card:   #161616;
      --border: #fff;
      --green:  #08f45f;
      --green2: #16a34a;
      --white:  #f0f0f0;
      --muted:  #f9f9f9;
      --purple: #7c3aed;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }

    h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }

    /* ── NAVBAR ── */
    .site-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      background: rgba(10,10,10,0.96);
      backdrop-filter: blur(16px);
      /*border-bottom: 1px solid var(--border);*/
      padding: 1.4rem 0;
    }

    .nav-inner {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.06em;
      line-height: 1;
    }

    .nav-brand .dot { color: var(--green); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--muted);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 0.4rem 0.8rem;
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }

    .btn-nav {
      background: var(--green);
      color: #000 !important;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.5rem 1.3rem;
      border-radius: 6px;
      text-decoration: none;
      margin-left: 1rem;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-nav:hover { background: var(--green2); transform: translateY(-1px); }

    /* Mobile hamburger — pure CSS, no icon font */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 0.45rem 0.6rem;
    }

    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .nav-mobile {
      display: none;
      flex-direction: column;
      gap: 0.5rem;
      padding: 1rem 2rem 1.25rem;
      border-top: 1px solid var(--border);
      max-width: 1300px;
      margin: 0 auto;
    }

    .nav-mobile.open { display: flex; }
    .nav-mobile a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 600; padding: 0.4rem 0; }
    .nav-mobile a:hover { color: var(--white); }

    @media (max-width: 991px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
    }

    /* ── WRAPPER ── */
    .wrap {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 110px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-glow {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 55% at 68% 44%, rgba(34,197,94,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 35% 35% at 12% 78%, rgba(34,197,94,0.04) 0%, transparent 55%);
      pointer-events: none;
    }

    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    @media (max-width: 991px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero { min-height: auto; padding-bottom: 60px; }
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: rgba(34,197,94,0.1);
      border: 1px solid rgba(34,197,94,0.22);
      border-radius: 100px;
      padding: 0.3rem 0.9rem;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--green);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: clamp(5rem, 8vw, 9.5rem);
      line-height: 0.88;
      margin-bottom: 1.75rem;
    }

    .hero-title .accent { color: var(--green); display: block; }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 440px;
      margin-bottom: 2.5rem;
    }

    .hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--green);
      color: #010703;
      font-weight: 700;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.9rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 0 32px rgba(34,197,94,0.2);
    }

    .btn-primary:hover {
      background: var(--green2);
      color: #000;
      transform: translateY(-2px);
      box-shadow: 0 0 48px rgba(34,197,94,0.35);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: transparent;
      color: var(--white);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 0.9rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      border: 1px solid var(--border);
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-outline:hover {
      border-color: #555;
      background: rgba(255,255,255,0.04);
      color: var(--white);
    }

    /* Phone mockup */
    .phone-wrap { display: flex; justify-content: center; }

.phone-outer {
  width: 300px;
  height: 620px;
  background: linear-gradient(145deg, #2a2a2a, #111);
  border-radius: 44px;
  border: 2px solid #333;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 50px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(34,197,94,0.08);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.p-status {
  background: #0d0d0d;
  padding: 10px 16px 3px;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
}
.p-status span { font-size: 9px; color: #555; font-weight: 600; }

.p-appbar {
  background: #111;
  padding: 6px 12px;
  border-bottom: 1px solid #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.p-appbar-title { font-family: 'Bebas Neue', sans-serif; font-size: 13px; color: #eee; letter-spacing: 0.04em; }
.p-menu-icon { display: flex; flex-direction: column; gap: 3px; width: 14px; }
.p-menu-icon span { display: block; height: 1.5px; background: #555; border-radius: 1px; }

.p-xpbar {
  margin: 5px 8px 0;
  background: rgba(255,255,255,0.04);
  border-radius: 7px;
  padding: 5px 8px;
  border: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.p-xp-badge {
  width: 26px; height: 26px;
  background: rgba(34,197,94,0.12);
  border-radius: 5px;
  border: 1px solid rgba(34,197,94,0.25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.p-xp-badge .em { font-size: 9px; line-height: 1; }
.p-xp-badge .lv { font-size: 7px; color: #22c55e; font-weight: 700; line-height: 1.2; }
.p-xp-info { flex: 1; }
.p-xp-row { display: flex; justify-content: space-between; }
.p-xp-rank { font-size: 7px; color: #888; font-weight: 700; }
.p-xp-num { font-size: 6px; color: #444; }
.p-xp-track { height: 3px; background: #1e1e1e; border-radius: 2px; margin-top: 3px; }
.p-xp-fill { height: 100%; width: 65%; background: #22c55e; border-radius: 2px; }

.p-day-banner {
  margin: 5px 8px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 6px;
  padding: 5px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.p-day-banner .l { font-size: 8px; color: #22c55e; font-weight: 700; }
.p-day-banner .r { font-size: 7px; color: #444; }

.p-rest {
  margin: 0 8px 4px;
  background: #1a2230;
  border: 1px solid #1e3a5f;
  border-radius: 6px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.p-rest-left { display: flex; align-items: center; gap: 5px; }
.p-rest-label { font-size: 7px; color: #5b8dd9; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.p-rest-time { font-size: 14px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.p-rest-skip { font-size: 6px; color: #5b8dd9; background: rgba(91,141,217,0.1); padding: 2px 5px; border-radius: 3px; border: 1px solid rgba(91,141,217,0.2); }
.p-rest-bar { height: 2px; background: #1e3a5f; border-radius: 1px; margin-top: 4px; }
.p-rest-bar-fill { height: 100%; width: 45%; background: #22c55e; border-radius: 1px; }

.p-ex-card {
  margin: 2px 8px;
  background: #141414;
  border-radius: 7px;
  padding: 7px 8px;
  border: 1px solid #1e1e1e;
  flex-shrink: 0;
}
.p-ex-card.complete { border-color: rgba(34,197,94,0.2); }
.p-ex-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.p-ex-name { font-size: 8px; font-weight: 700; color: #eee; }
.p-ex-name.done-name { color: #22c55e; }
.p-ex-badge { font-size: 6px; background: #1e1e1e; padding: 2px 4px; border-radius: 3px; color: #555; }

.p-section-label {
  font-size: 6px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 4px;
}

.p-sets { display: flex; gap: 4px; flex-wrap: wrap; }

.p-sq {
  border-radius: 5px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

.p-sq.warmup {
  width: 24px; height: 24px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
}
.p-sq.warmup .pw { font-size: 5px; color: #60a5fa; font-weight: 700; }
.p-sq.warmup .pr { font-size: 5px; color: #3b82f6; }

.p-sq.done {
  width: 30px; height: 30px;
  background: rgba(34,197,94,0.18);
  border: 1.5px solid #22c55e;
  color: #22c55e; font-size: 12px; font-weight: 700;
}
.p-sq.todo {
  width: 30px; height: 30px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}
.p-sq.todo .pw { font-size: 6px; color: #ccc; font-weight: 700; }
.p-sq.todo .pr { font-size: 5px; color: #444; }

.p-sq.amrap {
  width: 30px; height: 30px;
  background: rgba(139,92,246,0.12);
  border: 1.5px solid rgba(139,92,246,0.4);
}
.p-sq.amrap .pw { font-size: 5px; color: #a78bfa; font-weight: 700; }
.p-sq.amrap .amrap-label { font-size: 5px; color: #a78bfa; font-weight: 700; text-transform: uppercase; }

.p-plates { font-size: 5px; color: #333; margin-top: 3px; }

.p-finish {
  margin: 5px 8px 4px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-radius: 7px;
  padding: 7px;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.p-bottomnav {
  margin-top: auto;
  background: #0f0f0f;
  border-top: 1px solid #1a1a1a;
  display: flex;
  padding: 6px 0 8px;
  flex-shrink: 0;
}
.p-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.p-nav-icon { font-size: 12px; line-height: 1; }
.p-nav-label { font-size: 6px; color: #333; }
.p-nav-item.active .p-nav-label { color: #22c55e; }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--card);
      padding: 7.5rem 0;
    }

    .stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    @media (max-width: 768px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

    .stat {
      text-align: center;
      padding: 0 2rem;
      border-right: 1px solid var(--border);
    }

    .stat:last-child { border-right: none; }

    @media (max-width: 768px) {
      .stat { border-right: none; padding: 0; }
    }

    .stat-n {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 8.5rem;
      color: var(--green);
      line-height: 1;
    }

    .stat-l {
      font-size: 0.73rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      font-weight: 600;
      margin-top: 0.3rem;
    }

    /* ── COMMON SECTION ── */
    .section { padding: 7rem 0; }

    .eyebrow {
      font-size: 0.73rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--green);
      margin-bottom: 0.75rem;
    }

    .sec-title {
      font-size: clamp(2.8rem, 4.5vw, 4.5rem);
      line-height: 0.93;
      margin-bottom: 1.25rem;
    }

    .sec-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 520px;
    }

    /* ── FEATURE CARDS ── */
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 3.5rem;
    }

    @media (max-width: 991px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 576px) { .feat-grid { grid-template-columns: 1fr; } }

    .feat-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 2rem 1.75rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }

    .feat-card::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      opacity: 0;
      transition: opacity 0.25s;
    }

    .feat-card:hover {
      border-color: rgba(34,197,94,0.28);
      transform: translateY(-5px);
      box-shadow: 0 24px 48px rgba(0,0,0,0.45);
    }

    .feat-card:hover::after { opacity: 1; }

    .feat-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; line-height: 1; }
    .feat-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
    .feat-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

    /* ── GAMIFICATION ── */
    /*.gami { background: var(--card); 
     border-top: 1px solid var(--border); 
     border-bottom: 1px solid var(--border); }
     */

    .gami-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: center;
    }

    @media (max-width: 991px) { .gami-inner { grid-template-columns: 1fr; gap: 3rem; } }

    .check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.55rem 0;
      font-size: 0.95rem;
      color: #bbb;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .check-list li:last-child { border-bottom: none; }

    /* CSS checkmark circle */
    .ck {
      width: 18px; height: 18px;
      background: rgba(34,197,94,0.15);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 3px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ck::after {
      content: '';
      width: 5px; height: 9px;
      border-right: 2px solid #22c55e;
      border-bottom: 2px solid #22c55e;
      transform: rotate(45deg) translate(-1px, -1px);
      display: block;
    }

    .rank-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
    }

    @media (max-width: 576px) { .rank-grid { grid-template-columns: repeat(2, 1fr); } }

    .rank-tile {
      background: var(--black);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.1rem 0.75rem;
      text-align: center;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
      cursor: default;
    }

    .rank-tile:hover {
      border-color: rgba(34,197,94,0.3);
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.4);
    }

    .rank-tile.legend {
      border-color: rgba(234,179,8,0.25);
      background: rgba(234,179,8,0.03);
    }

    .rank-tile.legend:hover { border-color: rgba(234,179,8,0.5); }

    .rt-em { font-size: 1.9rem; line-height: 1; margin-bottom: 0.45rem; display: block; }
    .rt-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: 0.03em; }
    .rt-lvls { font-size: 0.68rem; color: var(--muted); margin-top: 0.1rem; }

    /* ── PRO SECTION ── */
    .pro { position: relative; overflow: hidden; }

    .pro::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(124,58,237,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .pro-box {
      background: linear-gradient(135deg, #17082e 0%, #0d1526 100%);
      border: 1px solid rgba(124,58,237,0.22);
      border-radius: 20px;
      padding: 3.5rem;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 768px) { .pro-box { padding: 2rem; } }

    .pro-box::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #7c3aed 40%, #22c55e 60%, transparent);
    }

    .pro-inner {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 4rem;
      align-items: center;
    }

    @media (max-width: 768px) { .pro-inner { grid-template-columns: 1fr; gap: 2rem; } }

    .pro-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(124,58,237,0.15);
      border: 1px solid rgba(124,58,237,0.3);
      border-radius: 100px;
      padding: 0.3rem 0.85rem;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #08f45f;
      margin-bottom: 1.25rem;
    }

    .pro-price { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; line-height: 1; margin: 1rem 0 0.3rem; }
    .pro-price sup { font-size: 2rem; vertical-align: top; margin-top: 0.8rem; display: inline-block; }
    .pro-price-note { font-size: 1rem; color: #08f45f; }
    .pro-desc { font-size: 1.2rem; color: #fff; margin-top: 1rem; line-height: 1.6; }

    .btn-pro {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      width: 100%;
      background: linear-gradient(135deg, #7c3aed, #4f46e5);
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 1rem 2rem;
      border-radius: 10px;
      text-decoration: none;
      margin-top: 1.75rem;
      transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 0 30px rgba(124,58,237,0.25);
    }

    .btn-pro:hover {
      opacity: 0.9; color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 0 44px rgba(124,58,237,0.45);
    }

    .pro-note { text-align: center; font-size: 0.72rem; color: #fff; margin-top: 0.6rem; }

    .pro-feat-list { list-style: none; padding: 0; margin: 0; }

    .pro-feat-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      padding: 0.65rem 0;
      font-size: 0.93rem;
      color: #ccc;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .pro-feat-list li:last-child { border-bottom: none; }

    /* ── DOWNLOAD ── */
    .dl {
      background: var(--card);
      padding: 6rem 0;
      text-align: center;
    }

    .gplay-btn {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      background: var(--black);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1rem 2rem;
      text-decoration: none;
      color: var(--white);
      transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    }

    .gplay-btn:hover {
      border-color: var(--green);
      transform: translateY(-3px);
      box-shadow: 0 16px 32px rgba(0,0,0,0.4), 0 0 24px rgba(34,197,94,0.08);
      color: var(--white);
    }

    .gplay-icon { font-size: 2.4rem; line-height: 1; }

    .gplay-text small {
      display: block;
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
    }

    .gplay-text strong { font-size: 1.1rem; }

    .dl-chips {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 2rem;
    }

    .dl-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 0.35rem 0.9rem;
      font-size: 0.78rem;
      color: var(--muted);
    }

    .dot-g { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      padding: 7.5rem 0 2.5rem 0;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: center;
      gap: 2rem;
    }

    @media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; text-align: center; } }

    .footer-brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      color: var(--white);
      letter-spacing: 0.06em;
    }

    .footer-brand .dot { color: var(--green); }
    .footer-tag { font-size: 0.78rem; color: #3a3a3a; margin-top: 0.25rem; }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-links a { color: var(--muted); font-size: 0.83rem; text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }

    .footer-copy { font-size: 0.78rem; text-align: right; }

    @media (max-width: 768px) {
      .footer-copy { text-align: center; }
    }

    /* ── DIVIDER ──
    
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
    }
    */

    /* ── REVEAL ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .fu { animation: fadeUp 0.65s ease both; }
    .d1 { animation-delay: 0.1s; }
    .d2 { animation-delay: 0.2s; }
    .d3 { animation-delay: 0.3s; }
    .d4 { animation-delay: 0.4s; }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .reveal.in { opacity: 1; transform: none; }
    .bull-icon { width: 100px; height: auto; opacity: 0.8; }

    .price-block {
      margin: 1.5rem 0 1.75rem;
      padding: 1.1rem 1.25rem;
      border: 1px solid rgba(34, 197, 94, 0.25);
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.02));
      max-width: 420px;
    }
    .price-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.85rem;
      letter-spacing: 0.02em;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .price-headline .free { color: #22c55e; }
    .price-detail {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.78);
      margin-bottom: 0.3rem;
      font-weight: 500;
    }
    .price-detail .save { color: #22c55e; font-weight: 600; }
    .price-trust {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.02em;
    }
    .price-trust .sep {
      color: rgba(255,255,255,0.2);
      margin: 0 0.5rem;
    }
    .sub-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    @media (max-width: 540px) {
    .sub-grid { grid-template-columns: 1fr; }
    }
    .sub-tile {
      padding: 1.4rem 1.25rem;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.02);
      position: relative;
    }
    .sub-tile.best {
      border-color: rgba(34, 197, 94, 0.5);
      background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.02));
    }
    .sub-tile .tag {
      position: absolute;
      top: -10px;
      right: 14px;
      background: #22c55e;
      color: #000;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 3px 10px;
      border-radius: 6px;
    }
    .sub-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 0.5rem;
    }
    .sub-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.4rem;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.25rem;
    }
    .sub-price sup { font-size: 1.1rem; margin-right: 2px; opacity: 0.7; }
    .sub-per { font-size: 0.95rem; color: rgba(255,255,255,0.55); }
    .sub-extra { font-size: 0.8rem; color: #22c55e; margin-top: 0.4rem; font-weight: 600; }
