/* ─── RESET & BASE ─────────────────────────────── */
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
      }
      body {
        font-family: "DM Sans", sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.55;
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      img {
        display: block;
        max-width: 100%;
        height: auto;
      }
      button {
        font-family: "DM Sans", sans-serif;
        cursor: pointer;
      }

      /* ─── TOKENS ───────────────────────────────────── */
      :root {
        --p: #6c2bd9;
        --p-mid: #7c3aed;
        --p-light: #8b5cf6;
        --p-glow: rgba(108, 43, 217, 0.22);
        --p-soft: #ede9fe;
        --p-bg: #f5f3ff;

        --g1: #0f0a1e;
        --g2: #1a1035;
        --text: #1a1035;
        --sub: #4b4468;
        --muted: #8e87a8;
        --bg: #f7f6fc;
        --card: #ffffff;
        --border: #e5e0f5;
        --border-soft: #ede9fe;
        --radius: 16px;
        --radius-sm: 10px;
        --shadow: 0 2px 16px rgba(108, 43, 217, 0.1);
        --shadow-md: 0 8px 32px rgba(108, 43, 217, 0.16);
        --shadow-lg: 0 20px 60px rgba(108, 43, 217, 0.18);
      }

      /* ─── LAYOUT ───────────────────────────────────── */
      .wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }
      @media (max-width: 480px) {
        .wrap {
          padding: 0 14px;
        }
      }

      .page {
        display: none;
      }
      .page.on {
        display: block;
      }


      /* ─── NAV ──────────────────────────────────────── */
      .nav {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        z-index: 200;
      }
      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        gap: 12px;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 9px;
        font-family: "Outfit", sans-serif;
        font-weight: 900;
        font-size: 1.18rem;
        color: var(--g2);
        letter-spacing: -0.01em;
        flex-shrink: 0;
      }
      .logo em {
        color: var(--p);
        font-style: normal;
      }
      .logo img {
        border-radius: 8px;
        flex-shrink: 0;
      }
      .nav-links {
        display: flex;
        gap: 4px;
        align-items: center;
      }
      .nbtn {
        background: none;
        border: none;
        font-family: "DM Sans", sans-serif;
        font-size: 0.875rem;
        font-weight: 500;
        padding: 7px 15px;
        border-radius: 9px;
        color: var(--sub);
        transition: 0.15s;
      }
      .nbtn:hover {
        background: var(--p-bg);
        color: var(--text);
      }
      .nbtn.on {
        background: var(--p-bg);
        color: var(--p);
        font-weight: 600;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-family: "Outfit", sans-serif;
        font-weight: 700;
        font-size: 0.875rem;
        padding: 10px 22px;
        border-radius: 10px;
        border: none;
        transition: 0.2s;
        white-space: nowrap;
      }
      .btn-p {
        background: var(--p);
        color: #fff;
        box-shadow: 0 3px 14px var(--p-glow);
      }
      .btn-p:hover {
        background: #5b1fc4;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(108, 43, 217, 0.35);
      }
      .btn-out {
        background: #fff;
        border: 1.5px solid var(--p);
        color: var(--p);
      }
      .btn-out:hover {
        background: var(--p-bg);
        transform: translateY(-1px);
      }

      /* ─── HERO ─────────────────────────────────────── */
      .hero {
        padding: clamp(56px, 7vw, 88px) 0 64px;
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -80px;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          ellipse,
          rgba(108, 43, 217, 0.13) 0%,
          transparent 68%
        );
        pointer-events: none;
        border-radius: 50%;
      }
      .hero::after {
        content: "";
        position: absolute;
        bottom: -60px;
        left: -100px;
        width: 420px;
        height: 420px;
        background: radial-gradient(
          ellipse,
          rgba(139, 92, 246, 0.09) 0%,
          transparent 65%
        );
        pointer-events: none;
        border-radius: 50%;
      }
      .hero-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 410px;
        gap: clamp(36px, 6vw, 76px);
        align-items: center;
        position: relative;
        z-index: 1;
      }
      @media (max-width: 900px) {
        .hero-inner {
          grid-template-columns: 1fr;
          gap: 36px;
        }
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--p-soft);
        color: var(--p);
        font-size: 0.72rem;
        font-weight: 700;
        padding: 5px 14px;
        border-radius: 100px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 20px;
        border: 1px solid rgba(108, 43, 217, 0.18);
      }
      .live-dot {
        width: 7px;
        height: 7px;
        background: #22c55e;
        border-radius: 50%;
        animation: blink 1.4s ease infinite;
      }
      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.35;
        }
      }

      .hero h1 {
        font-family: "Outfit", sans-serif;
        font-size: clamp(2.4rem, 5.2vw, 3.6rem);
        font-weight: 900;
        line-height: 1.08;
        letter-spacing: -0.03em;
        color: var(--g1);
        margin-bottom: 18px;
      }
      .hero h1 em {
        font-style: normal;
        color: var(--p);
        background: linear-gradient(135deg, #6c2bd9, #a855f7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .hero-lead {
        font-size: 1.05rem;
        color: var(--sub);
        max-width: 520px;
        line-height: 1.76;
        margin-bottom: 32px;
      }
      .hero-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 36px;
      }
      .hero-btns .btn {
        padding: 14px 28px;
        font-size: 0.97rem;
      }

      .hero-card {
        position: relative;
        padding: 20px;
        border-radius: 26px;
        background: linear-gradient(145deg, #211047, #5420ac 55%, #7c3aed);
        box-shadow: 0 26px 58px rgba(66, 25, 151, 0.3);
        color: #fff;
        transform: rotate(2.5deg);
      }
      .hero-card::before {
        content: "";
        position: absolute;
        inset: 1px;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        pointer-events: none;
      }
      .earn-card-top,
      .earn-total,
      .earn-item {
        position: relative;
        z-index: 1;
      }
      .earn-card-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }
      .earn-card-top i { color: #facc15; }
      .earn-total {
        margin: 28px 0 22px;
        padding: 22px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(8px);
      }
      .earn-total span { display: block; font-size: 0.78rem; color: rgba(255,255,255,.7); }
      .earn-total strong { display: block; margin: 3px 0; font: 800 clamp(2rem, 5vw, 2.75rem)/1 "Outfit", sans-serif; }
      .earn-total small { color: #bbf7d0; font-weight: 700; }
      .earn-list { display: grid; gap: 10px; }
      .earn-item { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 13px; background: rgba(9, 4, 28, 0.22); }
      .earn-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: rgba(255,255,255,.15); color: #fef3c7; }
      .earn-item div { flex: 1; font-size: .8rem; font-weight: 700; }
      .earn-item small { display: block; color: rgba(255,255,255,.6); font-size: .68rem; font-weight: 400; }
      .earn-item b { font: 800 .9rem "Outfit", sans-serif; color: #bbf7d0; }
      .hero-note { position: absolute; right: -22px; bottom: -20px; z-index: 2; padding: 11px 15px; border-radius: 12px; background: #fff; color: var(--g2); box-shadow: 0 14px 30px rgba(28, 13, 70, .18); font-size: .76rem; font-weight: 700; transform: rotate(-5deg); }
      .hero-note i { color: #16a34a; margin-right: 5px; }

      .hero-trust {
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
      }
      .avatars {
        display: flex;
      }
      .avatars img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid #fff;
        margin-left: -9px;
        object-fit: cover;
      }
      .avatars img:first-child {
        margin-left: 0;
      }
      .trust-info {
        font-size: 0.82rem;
        color: var(--sub);
        line-height: 1.5;
      }
      .trust-info strong {
        color: var(--g2);
        font-weight: 700;
      }
      .trust-stars {
        color: #f59e0b;
        font-size: 0.82rem;
        letter-spacing: 1.5px;
      }
      /* ─── SECTION HEADER ───────────────────────────── */
      .sect {
        padding: 8px 0 44px;
      }
      .sect-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 22px;
        flex-wrap: wrap;
        gap: 10px;
      }
      .sect-head-l h2 {
        font-family: "Outfit", sans-serif;
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--g2);
      }
      .sect-head-l p {
        font-size: 0.82rem;
        color: var(--muted);
        margin-top: 3px;
      }
      .tag-live {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #f0fdf4;
        color: #15803d;
        border: 1px solid #bbf7d0;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 100px;
        letter-spacing: 0.04em;
      }

      /* ─── AD GRID ──────────────────────────────────── */
      .ad-grid {
        display: grid;
        /* Six campaigns stay balanced as two easy-to-scan rows. */
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }
      .ad-grid > .ad-card:nth-child(n + 7) {
        display: none;
      }
      @media (max-width: 600px) {
        .ad-grid {
          grid-template-columns: 1fr 1fr;
          gap: 12px;
        }
      }
      @media (max-width: 380px) {
        .ad-grid {
          grid-template-columns: 1fr;
          gap: 12px;
        }
      }

      .ad-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        display: flex;
        flex-direction: column;
      }
      .ad-card.ad-card--switching {
        opacity: 0;
        transform: translateY(5px) scale(0.992);
        transition:
          opacity 0.48s ease,
          transform 0.48s ease;
        pointer-events: none;
      }
      .ad-card:hover {
        border-color: #c4b5fd;
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
      }

      .ac-thumb {
        height: 152px;
        position: relative;
        overflow: hidden;
        background: #e8e4f3;
        flex-shrink: 0;
      }
      @media (max-width: 600px) {
        .ac-thumb {
          height: 110px;
        }
      }
      .ac-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.35s;
      }
      .ad-card:hover .ac-thumb img {
        transform: scale(1.05);
      }

      .ac-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          160deg,
          transparent 40%,
          rgba(0, 0, 0, 0.45)
        );
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .play-btn {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.94);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
        transition: 0.2s;
      }
      .ad-card:hover .play-btn {
        transform: scale(1.1);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
      }
      .play-btn svg {
        margin-left: 2px;
      }

      .ac-badges {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 6px;
      }
      .ac-dur {
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(4px);
        color: #fff;
        font-size: 0.68rem;
        font-weight: 700;
        padding: 3px 9px;
        border-radius: 100px;
      }
      .ac-lock {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        color: #fff;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
      }

      .ac-body {
        padding: 14px 15px 15px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }
      .ac-brand {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--muted);
        margin-bottom: 5px;
      }
      .brand-dot {
        width: 12px;
        height: 12px;
        border-radius: 3px;
        flex-shrink: 0;
      }
      .ac-title {
        font-family: "Outfit", sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--g2);
        line-height: 1.3;
        margin-bottom: 5px;
      }
      .ac-desc {
        font-size: 0.77rem;
        color: var(--sub);
        line-height: 1.55;
        margin-bottom: auto;
        padding-bottom: 12px;
        flex: 1;
      }

      .ac-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding-top: 11px;
        border-top: 1px solid var(--border);
      }
      .earn-chip {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: #f0fdf4;
        color: #15803d;
        border: 1px solid #bbf7d0;
        padding: 4px 11px;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 700;
        white-space: nowrap;
      }
      .earn-btn {
        background: var(--p);
        color: #fff;
        border: none;
        padding: 7px 15px;
        border-radius: 8px;
        font-family: "Outfit", sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        cursor: pointer;
        transition: 0.15s;
        white-space: nowrap;
      }
      .earn-btn:hover {
        background: #5b1fc4;
        transform: translateY(-1px);
      }

      /* Mobile compact card */
      @media (max-width: 600px) {
        .ac-body {
          padding: 10px 11px 12px;
        }
        .ac-desc {
          display: none;
        }
        .ac-title {
          font-size: 0.85rem;
          margin-bottom: 8px;
        }
        .earn-chip {
          font-size: 0.68rem;
          padding: 3px 8px;
        }
        .earn-btn {
          font-size: 0.72rem;
          padding: 6px 11px;
        }
        .ac-foot {
          padding-top: 8px;
        }
      }

      /* ─── BIZ STRIP ────────────────────────────────── */
      .biz-strip {
        background: linear-gradient(
          135deg,
          var(--p) 0%,
          #7c3aed 60%,
          #a855f7 100%
        );
        border-radius: 20px;
        padding: 32px 36px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        margin: 0 0 52px;
        position: relative;
        overflow: hidden;
      }
      .biz-strip::after {
        content: "";
        position: absolute;
        right: -60px;
        top: -60px;
        width: 220px;
        height: 220px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        pointer-events: none;
      }
      .biz-strip::before {
        content: "";
        position: absolute;
        left: -30px;
        bottom: -40px;
        width: 160px;
        height: 160px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
        pointer-events: none;
      }
      .biz-txt h3 {
        font-family: "Outfit", sans-serif;
        font-size: 1.1rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 5px;
        position: relative;
        z-index: 1;
      }
      .biz-txt p {
        font-size: 0.84rem;
        color: rgba(255, 255, 255, 0.72);
        position: relative;
        z-index: 1;
      }
      .btn-white {
        background: #fff;
        color: var(--p);
        border: none;
        padding: 12px 26px;
        border-radius: 10px;
        font-family: "Outfit", sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        transition: 0.18s;
        white-space: nowrap;
        position: relative;
        z-index: 1;
      }
      .btn-white:hover {
        background: var(--p-soft);
        transform: translateY(-1px);
      }

      /* ─── DASHBOARD ────────────────────────────────── */
      .dash-wrap {
        padding: 32px 0 56px;
      }
      .dash-top {
        margin-bottom: 26px;
      }
      .dash-top h2 {
        font-family: "Outfit", sans-serif;
        font-size: 1.4rem;
        font-weight: 900;
        color: var(--g2);
        margin-bottom: 4px;
      }
      .dash-top p {
        font-size: 0.85rem;
        color: var(--muted);
      }

      .stat-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-bottom: 26px;
      }
      @media (max-width: 500px) {
        .stat-row {
          grid-template-columns: 1fr 1fr 1fr;
          gap: 8px;
        }
      }
      .stat-c {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 18px 20px;
        transition: 0.18s;
      }
      .stat-c:hover {
        border-color: #c4b5fd;
        box-shadow: var(--shadow);
      }
      .stat-lbl {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: var(--muted);
        font-weight: 700;
        margin-bottom: 7px;
      }
      .stat-val {
        font-family: "Outfit", sans-serif;
        font-size: 1.85rem;
        font-weight: 900;
        color: var(--p);
      }
      @media (max-width: 500px) {
        .stat-c {
          padding: 14px 12px;
        }
        .stat-val {
          font-size: 1.4rem;
        }
        .stat-lbl {
          font-size: 0.62rem;
        }
      }

      /* Tabs */
      .tabs {
        display: flex;
        gap: 2px;
        background: var(--border);
        border-radius: 12px;
        padding: 4px;
        width: fit-content;
        margin-bottom: 20px;
      }
      .tab {
        background: none;
        border: none;
        font-family: "DM Sans", sans-serif;
        font-size: 0.84rem;
        font-weight: 500;
        padding: 9px 20px;
        border-radius: 9px;
        color: var(--sub);
        transition: 0.15s;
      }
      .tab.on {
        background: var(--card);
        color: var(--text);
        font-weight: 600;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
      }
      .tc {
        display: none;
      }
      .tc.on {
        display: block;
      }

      /* Dash ad item */
      .dai {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 16px;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 12px;
        margin-bottom: 10px;
        transition: 0.15s;
      }
      .dai:hover {
        border-color: #c4b5fd;
        box-shadow: var(--shadow);
      }
      .dai-l {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        min-width: 0;
      }
      .dai-thumb {
        width: 54px;
        height: 40px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        background: #e8e4f3;
      }
      .dai-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .dai-name {
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--g2);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
      }
      .dai-sub {
        font-size: 0.74rem;
        color: var(--muted);
        margin-top: 1px;
      }
      .dai-earn {
        background: #f0fdf4;
        color: #15803d;
        border: 1px solid #bbf7d0;
        padding: 4px 11px;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 700;
        white-space: nowrap;
      }
      .wbtn {
        background: var(--p);
        color: #fff;
        border: none;
        padding: 9px 20px;
        border-radius: 9px;
        font-family: "Outfit", sans-serif;
        font-size: 0.82rem;
        font-weight: 700;
        cursor: pointer;
        transition: 0.15s;
        white-space: nowrap;
      }
      .wbtn:hover {
        background: #5b1fc4;
        transform: translateY(-1px);
      }
      @media (max-width: 540px) {
        .dai {
          flex-wrap: wrap;
          gap: 8px;
        }
        .wbtn {
          width: 100%;
          text-align: center;
          padding: 10px;
        }
        .dai-name {
          max-width: 160px;
        }
      }

      /* Upload empty */
      .up-empty {
        text-align: center;
        padding: 60px 20px;
        background: var(--card);
        border: 1px dashed var(--border);
        border-radius: var(--radius);
      }
      .up-empty-icon {
        font-size: 3.2rem;
        opacity: 0.25;
        margin-bottom: 16px;
      }
      .up-empty h4 {
        font-family: "Outfit", sans-serif;
        font-size: 1rem;
        font-weight: 800;
        color: var(--g2);
        margin-bottom: 8px;
      }
      .up-empty p {
        font-size: 0.84rem;
        color: var(--muted);
        line-height: 1.7;
        max-width: 300px;
        margin: 0 auto 20px;
      }
      .up-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--p-bg);
        color: var(--p);
        border: none;
        font-family: "Outfit", sans-serif;
        font-size: 0.86rem;
        font-weight: 700;
        padding: 11px 22px;
        border-radius: 100px;
        cursor: pointer;
        transition: 0.15s;
      }
      .up-btn:hover {
        background: var(--p-soft);
      }

      /* ─── MODAL ────────────────────────────────────── */
      .ld {
        position: fixed;
        inset: 0;
        background: rgba(10, 6, 24, 0.65);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        transition: 0.22s;
      }
      .ld.show {
        opacity: 1;
        pointer-events: all;
      }
      .ld-box {
        background: #fff;
        border-radius: 24px;
        padding: 38px 32px;
        max-width: 380px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transform: scale(0.92) translateY(16px);
        transition: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
      }
      .ld.show .ld-box {
        transform: scale(1) translateY(0);
      }

      .spin-ring {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
      }
      .spin-ring svg {
        animation: spin 0.85s linear infinite;
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }
      .ld-ico {
        font-size: 2.4rem;
        margin-bottom: 12px;
        display: none;
      }
      .ld-title {
        font-family: "Outfit", sans-serif;
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--g2);
        margin-bottom: 7px;
      }
      .ld-msg {
        font-size: 0.84rem;
        color: var(--sub);
        line-height: 1.68;
        margin-bottom: 22px;
      }
      .ld-prog {
        width: 100%;
        height: 5px;
        background: var(--p-soft);
        border-radius: 100px;
        overflow: hidden;
        margin-bottom: 22px;
      }
      .ld-bar {
        height: 100%;
        background: linear-gradient(90deg, var(--p), #a855f7);
        border-radius: 100px;
        width: 0%;
        transition: width 0.09s linear;
      }
      .ld-steps {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-bottom: 22px;
      }
      .ld-step {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.81rem;
        color: var(--muted);
        text-align: left;
        transition: 0.3s;
      }
      .ld-step.done {
        color: var(--sub);
      }
      .ld-step.active {
        color: var(--text);
        font-weight: 600;
      }
      .step-dot {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 1.5px solid var(--border);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        transition: 0.3s;
      }
      .ld-step.done .step-dot {
        background: #22c55e;
        border-color: #22c55e;
        color: #fff;
      }
      .ld-step.active .step-dot {
        border-color: var(--p);
        background: var(--p-bg);
      }

      .ld-cta {
        width: 100%;
        background: linear-gradient(135deg, var(--p), #7c3aed);
        color: #fff;
        border: none;
        padding: 14px;
        border-radius: 12px;
        font-family: "Outfit", sans-serif;
        font-weight: 700;
        font-size: 0.97rem;
        cursor: pointer;
        text-decoration: none;
        display: none;
        transition: 0.18s;
      }
      .ld-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px var(--p-glow);
      }
      .ld-skip {
        background: none;
        border: none;
        font-family: "DM Sans", sans-serif;
        font-size: 0.8rem;
        color: var(--muted);
        cursor: pointer;
        margin-top: 12px;
        padding: 4px 8px;
        display: none;
      }
      .ld-skip:hover {
        color: var(--sub);
      }
      @media (max-width: 440px) {
        .ld-box {
          padding: 28px 20px;
          border-radius: 18px;
        }
      }

      /* ── FOOTER ── */
      .footer {
        background: linear-gradient(
          135deg,
          #0a0f1a 0%,
          #141b2b 50%,
          #1a2335 100%
        );
        color: rgba(255, 255, 255, 0.6);
        padding: clamp(50px, 6vw, 70px) 0 24px;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(99, 102, 241, 0.1);
      }

      .footer::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle at 30% 20%,
          rgba(99, 102, 241, 0.06) 0%,
          rgba(139, 92, 246, 0.04) 30%,
          transparent 60%
        );
        animation: footerGlow 20s ease-in-out infinite alternate;
        pointer-events: none;
      }

      @keyframes footerGlow {
        0% {
          transform: translate(0, 0) scale(1);
        }
        100% {
          transform: translate(5%, 5%) scale(1.2);
        }
      }

      .footer .container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }

      .ft-grid {
        display: grid;
        grid-template-columns: minmax(260px, 1.8fr) repeat(2, minmax(130px, 0.7fr));
        gap: clamp(28px, 5vw, 72px);
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .ft-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }

      .ft-logo img {
        height: 30px;
        width: auto;
        filter: brightness(1.1);
        transition: filter 0.3s ease;
      }

      .ft-logo:hover img {
        filter: brightness(1.3);
      }

      .ft-logo-name {
        font-family: var(--ff-head);
        font-size: 1.15rem;
        font-weight: 700;
        background: linear-gradient(135deg, #818cf8, #a78bfa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 1.5px;
      }

      .ft-desc {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.8;
        margin-bottom: 22px;
        max-width: 600px;
      }

      .ft-desc strong {
        color: rgba(255, 255, 255, 0.7);
      }

      .ft-contact-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
        margin-bottom: 6px;
      }

      .ft-contact {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.5);
        padding: 8px 14px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.25s ease;
      }

      .ft-contact:hover {
        background: rgba(99, 102, 241, 0.08);
        border-color: rgba(99, 102, 241, 0.15);
        color: rgba(255, 255, 255, 0.8);
        transform: translateX(4px);
      }

      .ft-contact a {
        color: #93c5fd;
        text-decoration: none;
        transition: color 0.2s ease;
      }

      .ft-contact a:hover {
        color: #c7d2fe;
      }

      .ft-links-title { color: rgba(255,255,255,.9); font: 700 .82rem "Outfit", sans-serif; letter-spacing: .06em; text-transform: uppercase; margin: 5px 0 15px; }
      .ft-links { list-style: none; display: grid; gap: 10px; }
      .ft-links a { color: rgba(255,255,255,.5); font-size: .84rem; transition: color .2s ease, padding-left .2s ease; }
      .ft-links a:hover { color: #c4b5fd; padding-left: 4px; }

      .ft-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
      }

      .ft-copy {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.25);
      }

      .ft-copy a {
        color: rgba(255, 255, 255, 0.3);
        text-decoration: none;
        transition: color 0.2s ease;
      }

      .ft-copy a:hover {
        color: #93c5fd;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .hero-card { max-width: 410px; width: 100%; margin: 0 auto; transform: none; }
        .hero-note { right: -6px; }
        .ft-grid {
          grid-template-columns: 1.2fr 1fr;
          gap: 30px;
        }

        .ft-desc {
          max-width: 100%;
        }

        .ft-contact-list {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 480px) {
        .footer {
          padding: 40px 0 20px;
        }

        .ft-grid {
          grid-template-columns: 1fr 1fr;
          gap: 24px;
          padding-bottom: 30px;
        }

        .ft-bottom {
          flex-direction: column;
          text-align: center;
          gap: 8px;
        }

        .ft-logo img {
          height: 24px;
        }

        .ft-logo-name {
          font-size: 1rem;
        }

        .ft-contact {
          font-size: 0.75rem;
          padding: 6px 12px;
        }
        .ft-grid > :first-child { grid-column: 1 / -1; }
        .footer .container { padding: 0 14px; }
      }
      /* ─── BOTTOM NAV (mobile only) ─────────────────── */
      .bottom-nav {
        display: none;
      }
      @media (max-width: 768px) {
        /* Push page content up so footer isn't hidden behind the bar */
        body {
          padding-bottom: 76px;
        }
        .bottom-nav {
          display: flex;
          position: fixed;
          bottom: 0;
          left: 0;
          right: 0;
          z-index: 300;
          align-items: stretch;
          background: rgba(255, 255, 255, 0.97);
          backdrop-filter: blur(24px);
          -webkit-backdrop-filter: blur(24px);
          border-top: 1px solid var(--border);
          box-shadow: 0 -4px 24px rgba(108, 43, 217, 0.1);
          padding: 0 6px;
          padding-bottom: env(safe-area-inset-bottom, 0px);
        }
      }

      .bn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 10px 4px 10px;
        border-radius: 0;
        color: var(--muted);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: color 0.18s;
        border: none;
        background: none;
        font-family: "DM Sans", sans-serif;
        position: relative;
      }
      .bn-item:hover,
      .bn-item.on {
        color: var(--p);
      }
      /* Active top indicator bar */
      .bn-item.on::before {
        content: "";
        position: absolute;
        top: 0;
        left: 20%;
        right: 20%;
        height: 2.5px;
        background: var(--p);
        border-radius: 0 0 3px 3px;
      }
      .bn-icon {
        font-size: 20px;
        line-height: 1;
        transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .bn-item.on .bn-icon,
      .bn-item:active .bn-icon {
        transform: translateY(-2px) scale(1.15);
      }
      .bn-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.03em;
        line-height: 1;
      }

      /* Centre Join Now pill */
      .bn-join {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 4px;
      }
      .bn-join a {
        display: flex;
        align-items: center;
        gap: 5px;
        background: var(--p);
        color: #fff;
        font-family: "Outfit", sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 9px 16px;
        border-radius: 100px;
        box-shadow: 0 3px 14px var(--p-glow);
        white-space: nowrap;
        transition: 0.18s;
        -webkit-tap-highlight-color: transparent;
      }
      .bn-join a:hover {
        background: #5b1fc4;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(108, 43, 217, 0.35);
      }

      /* Hide the two desktop nav text buttons on mobile */
      @media (max-width: 768px) {
        .nav-links .nbtn {
          display: none;
        }
      }