    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { overflow-x: hidden; }
    body {
      font-family: 'Inter', sans-serif;
      color: #1a1a2e;
      background: #fff;
      overflow-x: hidden;
    }

    /* ── NAVIGATION ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      height: 68px;
      display: flex;
      align-items: center;
      padding: 0 48px;
    }
    .nav-inner {
      max-width: 1440px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }
    .nav-logo-text {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: #1DB88A;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }
    .nav-links a {
      font-size: 15px;
      color: #3a3a4a;
      text-decoration: none;
      padding: 5px 18px;
      font-weight: 500;
      border-radius: 20px;
      transition: color .15s;
    }
    .nav-links a:hover { color: #1DB88A; }
    .nav-wp {
      background: #1a1a2e !important;
      color: #fff !important;
      font-weight: 700 !important;
      border: none !important;
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px !important;
      padding: 7px 16px !important;
    }
    .nav-wp:hover { background: #2e2e45 !important; color: #fff !important; }
    .nav-wp svg { flex-shrink: 0; }
    .nav-wp-mobile { display: none; }

    /* ── SHARED ── */
    .pill {
      display: block;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 44px;
    }
    .pill-teal  { background: rgba(29,184,138,.13); color: #1DB88A; border: 1px solid rgba(29,184,138,.25); }
    .pill-dark  { background: #1a1a2e; color: #fff; }
    .pill-light { background: rgba(255,255,255,.5); color: #5a2a22; border: 1px solid rgba(255,255,255,.4); }
    .pill-white { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.28); }

    .section-h2 {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 48px;
      line-height: 1.12;
      color: #1a1a2e;
      margin-bottom: 24px;
      text-align: center;
    }
    .section-p {
      font-size: 16px;
      color: #5a5a6a;
      line-height: 1.7;
      max-width: 620px;
      margin-bottom: 72px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 100px 40px;
    }

    /* ── HERO ── */
    .hero {
      background: #fff;
      min-height: 760px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 68px;
      padding-bottom: 52px;
    }
    .hero-chars {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      transform: translateY(80px);
    }
    .hc {
      position: absolute;
      line-height: 1;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,.08));
    }
    .hc-peek { display: none; }
    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding-top: 80px;
      max-width: 980px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,200,200,0.20);
      color: #1a1a2e;
      padding: 8px 18px;
      border-radius: 24px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 32px;
    }
    .hero-badge::before { display: none; }
    .hero-h1 {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 54px;
      line-height: 1.08;
      color: #1a1a2e;
      margin-bottom: 28px;
      letter-spacing: -.01em;
    }
    .hero-desc {
      font-size: 18px;
      color: #5a5a6a;
      line-height: 1.65;
      max-width: 680px;
      margin: 0 auto 44px;
    }
    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
    }
    .btn-green {
      background: #2ECC71;
      color: #1a1a2e;
      padding: 16px 34px;
      border-radius: 14px;
      font-family: 'Nunito', sans-serif;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      display: inline-block;
      transition: opacity .15s;
    }
    .btn-green:hover { opacity: .88; }
    .btn-dark {
      background: #1a1a2e;
      color: #fff;
      padding: 16px 34px;
      border-radius: 14px;
      font-family: 'Nunito', sans-serif;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      display: inline-block;
      transition: opacity .15s;
    }
    .btn-dark:hover { opacity: .85; }

    .stats-bar {
      width: min(1016px, 90vw);
      background: #e8e8ec;
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 16px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      overflow: hidden;
      z-index: 2;
      margin-top: auto;
      margin-bottom: 40px;
      flex-shrink: 0;
    }
    .stat-item {
      background: #fff;
      padding: 22px 20px;
      text-align: center;
    }
    .stat-item:last-child { border-right: none; }
    .stat-val {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 28px;
      color: #1a1a2e;
      display: block;
      margin-bottom: 5px;
    }
    .stat-lbl { font-size: 12px; color: #888; }

    /* ── HERO CAROUSEL ── */
    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide--1 { background: #fff; }
    .hero-slide--2 {
      background: #0f0f1a;
      background-size: cover;
      background-position: center top;
    }
    .hero-slide--2::after,
    .hero-slide--3::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.42);
    }
    .hero--photo .hero-h1 { color: #fff; }
    .hero--photo .hero-desc { color: rgba(255,255,255,0.85); }
    .hero--photo .hero-badge { background: rgba(255,255,255,0.20); color: #fff; }
    .hero-slide--3 {
      background-size: cover;
      background-position: center top;
    }
    .hero-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 8px;
    }
    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 8px;
      border: none;
      padding: 0;
      cursor: pointer;
      background: rgba(46,204,113,.35);
      transition: width .4s ease;
      position: relative;
      overflow: hidden;
    }
    .hero-dot.active {
      width: 28px;
      background: rgba(46,204,113,.3);
    }
    .hero-dot.active::after {
      content: '';
      position: absolute;
      inset: 0;
      background: #2ECC71;
      border-radius: 8px;
      transform-origin: left center;
      transform: scaleX(0);
      animation: dot-progress 5s linear forwards;
    }
    @keyframes dot-progress {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }

    /* ── WHAT MINICOIN DOES ── */
    .what-sec {
      background: #52BF7C;
      position: relative;
      overflow: hidden;
    }
    .what-sec .inner { position: relative; }
    .what-h2 {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 48px;
      line-height: 1.12;
      color: #1a1a2e;
      max-width: none;
      margin-bottom: 14px;
      text-align: center;
    }
    .what-sub {
      font-size: 16px;
      color: rgba(26,26,46,.65);
      margin-bottom: 56px;
      text-align: center;
    }
    .what-cards {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
    }
    .what-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,.06);
    }
    .what-card-l {
      flex: 0 0 340px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .what-card-r { flex: 0 0 420px; }
    .what-arrow { font-size: 28px; color: rgba(255,255,255,.7); }
    .familiar-lbl {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .1em;
      color: #aaa;
      text-transform: uppercase;
    }
    .dollar-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .dollar-ico {
      width: 44px;
      height: 44px;
      background: #F0F0F0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .dollar-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 20px;
      color: #1a1a2e;
    }
    .dollar-sub { font-size: 13px; color: #888; margin-top: 2px; }
    .wrap-tag {
      display: block;
      background: #F4F4F4;
      border-radius: 10px;
      padding: 10px 16px;
      font-size: 14px;
      color: #666;
    }
    .minicoin-lbl {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .1em;
      color: #1DB88A;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .ip-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .ip-ico {
      width: 44px;
      height: 44px;
      background: #ececec;
      border: 2px solid #d0d0d0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .ip-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 20px;
      color: #1a1a2e;
    }
    .ip-name { font-size: 13px; color: #1DB88A; font-weight: 600; margin-top: 2px; }
    .ip-action {
      background: #E8F8F2;
      border-radius: 10px;
      padding: 12px 16px;
      margin-top: 8px;
      font-size: 14px;
      font-weight: 600;
      color: #1a1a2e;
    }
    .ip-action strong { color: #1DB88A; font-weight: 800; }
    .what-card-r { position: relative; overflow: visible; }
    .what-char {
      position: absolute;
      bottom: -50px;
      right: -36px;
      width: 100px;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
      pointer-events: none;
    }
    .what-char img { width: 100%; height: auto; display: block; }

    .tokens-char {
      position: absolute;
      bottom: -50px;
      right: -36px;
      width: 110px;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
      pointer-events: none;
      z-index: 2;
    }
    .tokens-char img { width: 100%; height: auto; display: block; }
    .principles-char {
      position: absolute;
      bottom: -50px;
      right: -36px;
      width: 110px;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
      pointer-events: none;
      z-index: 2;
    }
    .principles-char img { width: 100%; height: auto; display: block; }
    .red-char {
      position: absolute;
      bottom: -50px;
      right: -36px;
      width: 110px;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
      pointer-events: none;
      z-index: 2;
    }
    .red-char img { width: 100%; height: auto; display: block; }

    /* ── TWO TOKENS ── */
    .tokens-sec { background: #FEFACA; }
    .tokens-sec .section-p { white-space: nowrap; }
    .token-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 8px;
      max-width: 844px;
      margin-left: auto;
      margin-right: auto;
    }
    .token-card {
      background: #fff;
      border-radius: 24px;
      position: relative;
      padding: 40px 42px 44px;
      box-shadow: 0 4px 24px rgba(0,0,0,.07);
      overflow: visible;
    }
    .tc-top {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 160px;
      border-radius: 24px 24px 0 0;
    }
    .tc-top-mint { background: linear-gradient(135deg,#C8F7E8,#E4FCF4); }
    .tc-top-purple { background: linear-gradient(135deg,#E4DCFF,#F0ECFF); }
    .tc-thumb {
      position: absolute;
      top: -44px; right: 40px;
      width: 112px; height: 112px;
      background: #1a1a2e;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 58px;
      box-shadow: 0 8px 28px rgba(0,0,0,.22);
      z-index: 2;
    }
    .tc-badge {
      display: inline-block;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 18px;
      margin-top: 0;
    }
    .tc-badge-mint { background: rgba(29,184,138,.12); color: #1DB88A; }
    .tc-badge-purple { background: rgba(139,92,246,.12); color: #8B5CF6; }
    .tc-name-mini {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 32px;
      color: #22C45E;
      line-height: 1;
      margin-bottom: 6px;
    }
    .tc-name-ip {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 32px;
      color: #8B5CF6;
      line-height: 1;
      margin-bottom: 6px;
    }
    .tc-sub { font-size: 13px; color: #888; margin-bottom: 18px; }
    .tc-desc { font-size: 15px; color: #4a4a5a; line-height: 1.65; margin-bottom: 28px; }
    .feat-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 13px 16px;
      background: #F8F9FA;
      border-radius: 12px;
      margin-bottom: 10px;
    }
    .feat-ico {
      width: 36px; height: 36px;
      background: #EEF4FC;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .feat-txt { font-size: 14px; font-weight: 600; color: #2a2a3a; }

    /* ── DESIGN PRINCIPLES ── */
    .principles-sec { background: #F9B2A0; }
    .p-rows { margin-top: 56px; display: flex; flex-direction: column; gap: 14px; max-width: 844px; margin-left: auto; margin-right: auto; position: relative; }
    .p-row {
      background: rgba(255,255,255,.82);
      border-radius: 16px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.55);
    }
    .p-num {
      width: 66px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 26px;
      color: #1DB88A;
      flex-shrink: 0;
    }
    .p-div { width: 1px; background: rgba(0,0,0,.07); margin: 16px 0; }
    .p-body { padding: 22px 32px; flex: 1; }
    .p-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 17px;
      color: #1a1a2e;
      margin-bottom: 5px;
    }
    .p-desc { font-size: 14px; color: #5a5a6a; line-height: 1.6; }

    /* ── REVENUE FLOW ── */
    .revenue-sec { background: #D4EEF8; position: relative; }
    .rev-char {
      position: absolute;
      top: 260px; right: 60px;
      font-size: 96px;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,.12));
    }
    .rev-cards {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 24px;
      margin-top: 88px;
      position: relative;
      max-width: 844px;
      margin-left: auto;
      margin-right: auto;
    }
    .rev-cards::before {
      content: '';
      position: absolute;
      top: -44px;
      left: 16%; right: 16%;
      height: 1.5px;
      background: #B0D8EE;
    }
    .rev-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px 24px 30px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.06);
      position: relative;
    }
    .rev-thumb {
      position: absolute;
      top: -44px; left: 50%;
      transform: translateX(-50%);
      width: 92px; height: 92px;
      background: #1a1a2e;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 46px;
      box-shadow: 0 6px 20px rgba(0,0,0,.22);
    }
    .rev-num {
      width: 72px; height: 72px;
      margin: 0 auto 20px;
    }
    .rev-num img { width: 100%; height: auto; display: block; }
    .rev-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: #1a1a2e;
      margin-bottom: 12px;
    }
    .rev-desc { font-size: 14px; color: #5a5a6a; line-height: 1.6; }

    /* ── REDEMPTION ── */
    .redemption-sec { background: #EAEAF0; }
    .red-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 56px;
      max-width: 844px;
      margin-left: auto;
      margin-right: auto;
    }
    .red-card {
      background: #fff;
      border-radius: 20px;
      padding: 40px 40px 36px;
      position: relative;
      overflow: visible;
      position: relative;
    }
    .red-tag {
      display: inline-block;
      padding: 5px 12px;
      border-radius: 16px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .tag-pur { background: rgba(139,92,246,.1); color: #8B5CF6; border: 1px solid rgba(139,92,246,.25); }
    .tag-teal { background: rgba(29,184,138,.1); color: #1DB88A; border: 1px solid rgba(29,184,138,.25); }
    .red-ico { display: none; }
    .red-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: #1a1a2e;
      margin-bottom: 12px;
    }
    .red-desc { font-size: 15px; color: #5a5a6a; line-height: 1.65; margin-bottom: 24px; }
    .chk-list { list-style: none; }
    .chk-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: #4a4a5a;
      padding: 6px 0;
    }
    .chk-list li::before { content: '✓'; color: #1DB88A; font-weight: 700; }
    .red-note {
      background: rgba(139,92,246,.08);
      border-radius: 12px;
      padding: 16px 24px;
      text-align: center;
      font-size: 14px;
      color: #5a5a6a;
      margin-top: 28px;
      max-width: 844px;
      margin-left: auto;
      margin-right: auto;
    }
    .red-note strong { color: #8B5CF6; }

    /* ── USE CASES ── */
    .usecases-sec { background: #F3F5BE; position: relative; overflow: hidden; }
    .uc-floater { position: absolute; bottom: 60px; right: 240px; width: 180px; height: auto; pointer-events: none; z-index: 2; }
    .tabs {
      display: flex;
      gap: 10px;
      border-bottom: none;
      margin-bottom: 24px;
      margin-top: -28px;
      justify-content: center;
    }
    .tab {
      padding: 12px 28px;
      font-size: 15px; font-weight: 800;
      font-family: 'Nunito', sans-serif;
      color: #1a1a2e;
      background: rgba(255,255,255,.5);
      cursor: pointer;
      border-radius: 12px;
      border: none;
      transition: background .15s, color .15s;
    }
    .tab.active {
      background: #2ECC71;
      color: #1a1a2e;
    }
    .tab:hover:not(.active) { background: rgba(255,255,255,.7); }
    .uc-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .uc-left {
      background: rgba(255,255,255,.72);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding-bottom: 100px;
    }
    .uc-right {
      background: rgba(255,255,255,.72);
      border-radius: 20px;
      padding: 36px 32px;
      display: none;
      flex-direction: column;
      align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .uc-h3 {
      font-family: 'Nunito', sans-serif;
      font-weight: 800; font-size: 22px;
      color: #1a1a2e; margin-bottom: 10px;
    }
    .uc-p { font-size: 14px; color: #5a5a6a; line-height: 1.65; margin-bottom: 20px; }
    .stat-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 28px;
    }
    .sg-cell {
      background: #fff;
      border-radius: 12px;
      padding: 16px 18px;
    }
    .sg-val {
      font-family: 'Nunito', sans-serif;
      font-weight: 900; font-size: 26px;
      color: #1DB88A;
      display: block; margin-bottom: 3px;
    }
    .sg-lbl { font-size: 11px; color: #888; line-height: 1.4; }
    .prob-sol-row {
      display: flex; gap: 24px; margin-top: 20px;
    }
    .prob-col, .sol-col { flex: 1; min-width: 0; }
    .probs-lbl {
      font-size: 10px; font-weight: 800;
      letter-spacing: .08em; text-transform: uppercase;
      color: #E53E3E; margin-bottom: 10px;
    }
    .sols-lbl {
      font-size: 10px; font-weight: 800;
      letter-spacing: .08em; text-transform: uppercase;
      color: #1DB88A; margin-bottom: 10px;
    }
    .prob-item, .sol-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: #4a4a5a; padding: 5px 0;
    }
    .prob-item::before { content: '✕'; color: #E53E3E; font-weight: 700; flex-shrink: 0; }
    .sol-item::before { content: '✓'; color: #1DB88A; font-weight: 700; flex-shrink: 0; }
    .uc-emoji { font-size: 112px; display: block; text-align: center; margin-bottom: 20px; }
    .uc-ip-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 800; font-size: 24px;
      color: #1a1a2e; margin-bottom: 6px; text-align: center;
    }
    .uc-ip-sub { font-size: 13px; color: #888; text-align: center; }
    .uc-num {
      position: absolute; bottom: 18px; right: 26px;
      font-family: 'Nunito', sans-serif;
      font-weight: 900; font-size: 88px;
      color: rgba(0,0,0,.04); line-height: 1; user-select: none;
    }

    /* ── TECHNOLOGY ── */
    .tech-sec { background: #fff; }
    .tech-cards {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 20px;
      margin-top: 88px;
    }
    .tech-card {
      background: #fff;
      border: 1px solid #e8e8ec;
      border-radius: 20px;
      padding: 40px 26px;
      position: relative;
    }
    .tech-thumb {
      position: absolute;
      top: -44px; left: 26px;
      width: 90px; height: 90px;
      background: #1a1a2e;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 42px;
      box-shadow: 0 6px 20px rgba(0,0,0,.22);
    }
    .tech-badge {
      display: inline-block;
      padding: 5px 12px;
      border-radius: 20px;
      background: rgba(29,184,138,.12);
      color: #1DB88A;
      font-size: 10px; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase;
      margin-bottom: 14px;
    }
    .tech-ico { font-size: 34px; display: block; margin-bottom: 14px; }
    .tech-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 800; font-size: 18px;
      color: #1a1a2e; margin-bottom: 10px;
    }
    .tech-desc { font-size: 13px; color: #666; line-height: 1.65; }
    .settle-flow {
      background: rgba(29,184,138,.13);
      border-radius: 16px;
      padding: 36px 48px;
      margin-top: 44px;
      text-align: center;
    }
    .settle-lbl {
      font-size: 10px; font-weight: 800;
      letter-spacing: .1em; text-transform: uppercase;
      color: #aaa; margin-bottom: 20px;
    }
    .settle-steps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .ss {
      background: #fff;
      border: 1px solid #e0e0e8;
      border-radius: 10px;
      padding: 10px 18px;
      font-size: 14px; font-weight: 600;
      color: #2a2a3a;
      white-space: nowrap;
    }
    .ss.acc { border-color: #1DB88A; color: #1DB88A; }
    .ss-arrow { color: #ccc; font-size: 16px; }
    .tc-nav { display: none; }
    .tc-btn {
      width: 38px; height: 38px; border-radius: 50%;
      background: #282a2c; border: 1px solid #444648;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; flex-shrink: 0; padding: 0;
    }
    .tc-btn svg { width: 12px; height: 12px; }
    .tc-btn:disabled { opacity: 0.3; cursor: default; }

    /* ── VISION ── */
    .vision-sec { background: #FBF4E3; }
    .vision-chars {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 20px;
      padding: 36px 0;
      text-align: center;
    }
    .vc { display: flex; align-items: center; justify-content: center; }
    .vc.text {
      font-family: 'Nunito', sans-serif;
      font-weight: 900; font-size: 22px;
      color: #1a1a2e;
      filter: none;
    }
    .vision-cards {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      margin-top: 80px;
    }
    .vis-card {
      background: rgba(255,255,255,.72);
      border-radius: 20px;
      padding: 40px 28px 30px;
      position: relative;
    }
    .vis-thumb {
      position: absolute;
      top: -44px; right: 28px;
      width: 90px; height: 90px;
      background: #1a1a2e;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 44px;
      box-shadow: 0 6px 20px rgba(0,0,0,.2);
    }
    .vis-label {
      font-family: 'Nunito', sans-serif;
      font-weight: 900; font-size: 42px;
      margin-bottom: 14px; line-height: 1;
    }
    .lbl-create { color: #22C45E; }
    .lbl-own { color: #8B5CF6; }
    .lbl-monetize { color: #F59E0B; }
    .vis-h3 {
      font-family: 'Nunito', sans-serif;
      font-weight: 800; font-size: 18px;
      color: #1a1a2e; margin-bottom: 10px;
    }
    .vis-p { font-size: 14px; color: #5a5a6a; line-height: 1.65; }
    .vision-closing { text-align: center; padding-top: 52px; }
    .vision-closing p {
      font-size: 16px; color: #5a5a6a; line-height: 1.7;
      max-width: 600px; margin: 0 auto;
    }

    /* ── ECOSYSTEM ── */
    .eco-sec { background: #3A9060; }
    .eco-sec .section-h2 { color: #fff; }
    .eco-sec .section-p { color: rgba(255,255,255,.8); }
    .partner-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      margin-top: 56px;
    }
    .partner-card {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 20px;
      padding: 40px 24px 32px;
      min-height: auto;
      display: flex; flex-direction: column;
    }
    .partner-logo {
      flex: 1;
      display: flex; align-items: center; justify-content: center;
      padding: 20px 0;
    }
    .partner-logo-txt {
      font-family: 'Nunito', sans-serif;
      font-weight: 900; font-size: 26px;
      color: #fff;
      text-align: center;
      line-height: 1.3;
    }
    .partner-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 800; font-size: 22px;
      color: #fff; margin-bottom: 10px; text-align: center;
    }
    .partner-desc { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.65; text-align: center; }

    /* ── FOOTER ── */
    footer {
      background: #3A9060;
      border-top: 1px solid rgba(255,255,255,.14);
      padding: 44px 0;
    }
    .foot-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 80px;
    }
    .foot-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,.14);
    }
    .foot-logo {
      display: flex; align-items: center; gap: 8px;
    }
    .foot-logo-ico {
      width: 24px; height: 24px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }
    .foot-logo-txt {
      font-family: 'Nunito', sans-serif;
      font-weight: 800; font-size: 16px;
      color: #fff;
    }
    .foot-logo { display: flex; align-items: center; gap: 20px; }
    .foot-x { color: rgba(255,255,255,.75); display: flex; align-items: center; transition: color .15s; }
    .foot-x:hover { color: #fff; }
    .foot-links { display: flex; gap: 36px; list-style: none; }
    .foot-links a {
      font-size: 14px; color: rgba(255,255,255,.75);
      text-decoration: none;
    }
    .foot-links a:hover { color: #fff; }
    .foot-copy {
      padding-top: 20px;
      font-size: 13px;
      color: rgba(255,255,255,.65);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }
    .foot-copy a {
      color: rgba(255,255,255,.65);
      text-decoration: none;
    }
    .foot-copy a:hover { color: #fff; }
    .foot-disc {
      padding-top: 22px;
      font-size: 12px; color: rgba(255,255,255,.45);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════
       RESPONSIVE - TABLET (≤ 900px)
    ══════════════════════════════════════ */
    @media (max-width: 900px) {
      section { scroll-margin-top: 92px; }
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .inner { padding: 64px 24px; }
      .section-h2 { font-size: 36px; }
      .hero { min-height: 100svh; padding-bottom: 56px; box-sizing: border-box; }
      .hero-h1 { font-size: 48px; }
      .hero-content { padding-top: 60px; }
      .stats-bar { width: calc(100% - 48px); margin: 32px auto 0; grid-template-columns: repeat(2,1fr); }
      .hc { max-width: 44px; }
      .hc-edge { display: block; max-width: 36px; opacity: 1; z-index: 0; }
      .stat-item:nth-child(2) { border-right: none; }
      .what-cards { flex-direction: column; gap: 16px; }
      .what-card-l, .what-card-r { flex: none; width: 100%; }
      .what-arrow { transform: rotate(90deg); }
      .what-char { width: 70px; bottom: -28px; right: 8px; }
      .tokens-char { width: 80px; bottom: -28px; right: 8px; }
      .token-cards { grid-template-columns: 1fr; }
      .token-card { min-height: auto; }
      .rev-cards { grid-template-columns: 1fr; gap: 60px; }
      .rev-cards::before { display: none; }
      .rev-char { display: none; }
      .red-cards { grid-template-columns: 1fr; }
      .uc-grid { grid-template-columns: 1fr; }
      .uc-floater { right: auto; left: calc(50% - 81px); bottom: 10px; width: 162px; }
      .tech-cards { grid-template-columns: repeat(2,1fr); margin-top: 60px; }
      .vision-chars { grid-template-columns: repeat(3,1fr); }
      .vision-cards { grid-template-columns: 1fr; margin-top: 60px; }
      .vis-card { padding-top: 60px; }
      .partner-grid { grid-template-columns: repeat(2,1fr); }
      .foot-inner { padding: 0 24px; }
      .foot-top { flex-direction: column; align-items: flex-start; gap: 20px; }
      .foot-links { flex-wrap: wrap; gap: 16px 28px; }
    }

    /* ══════════════════════════════════════
       RESPONSIVE - MOBILE (≤ 600px)
    ══════════════════════════════════════ */
    @media (max-width: 600px) {
      nav { padding: 0 16px; height: 56px; }
      section { scroll-margin-top: 84px; }
      .inner { padding: 48px 16px; }
      .pill { margin-bottom: 24px; }
      .section-h2 { font-size: 28px; }
      .hero-dots { position: static; margin: 20px auto 0; transform: none; }
      .section-p { font-size: 15px; margin-bottom: 40px; }
      .hero-h1 { font-size: 36px; }
      .hero-desc { font-size: 14px; }
      .hc, .hc-edge { display: none; }
      .hc-m { display: block !important; max-width: 36px !important; opacity: .75; }
      .hc-peek { display: block !important; opacity: 1 !important; }
      .hc-peek-l { left: -22px !important; top: 34% !important; width: 68px !important; max-width: 68px !important; }
      .hc-peek-r { right: -20px !important; top: 42% !important; width: 62px !important; max-width: 62px !important; }
      .hero-btns { flex-direction: column; gap: 10px; }
      .btn-green, .btn-dark { width: 100%; text-align: center; }
      .stat-item { padding: 20px 12px; }
      .stat-val { font-size: 22px; }
      .what-h2 { font-size: 28px; }
      .desktop-only { display: none; }
      .what-card { padding: 24px; }
      .what-card-r { padding-bottom: 72px; overflow: visible; }
      .what-sec { overflow: visible; }
      .tc-name-mini, .tc-name-ip { font-size: 28px; }
      .token-card { padding: 28px 24px 28px; }
      .tc-thumb { top: -32px; width: 80px; height: 80px; font-size: 40px; }
      .tc-badge { margin-top: 0; }
      .p-body { padding: 16px 20px; }
      .tokens-char { width: 64px; bottom: -20px; right: 8px; }
      .token-card:last-child { padding-bottom: 88px; }
      .rev-cards { display: flex; flex-direction: row; overflow-x: auto; gap: 16px; padding-bottom: 16px; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-top: 60px; }
      .rev-cards::-webkit-scrollbar { display: none; }
      .rev-card { width: 80vw; flex-shrink: 0; padding: 64px 20px 28px; }
      .rev-thumb { width: 72px; height: 72px; font-size: 36px; top: -36px; }
      .red-card { padding: 28px 24px; }
      .red-card.offplat { padding-bottom: 80px; }
      .red-card.offplat .red-char { right: 4px; width: 88px; bottom: -35px; }
      .tabs { overflow-x: auto; white-space: nowrap; }
      .hc-up { margin-top: -30px !important; }
      .prob-sol-row { flex-direction: column; }
      .stat-grid-2 { grid-template-columns: 1fr; }
      .tabs { justify-content: flex-start; }
      .principles-sec .p-row:nth-child(5) { padding-bottom: 60px; }
      .principles-char { width: 72px; bottom: -16px; right: 8px; }
      .principles-sec .p-rows { padding-bottom: 0; }
      .tc-wrap {
        position: relative;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        overflow: hidden;
      }
      .tc-nav {
        order: 2;
        display: flex;
        position: static;
        transform: none;
        justify-content: center;
        gap: 12px;
        z-index: 5;
        pointer-events: auto;
        margin-top: 14px;
      }
      .tc-btn { pointer-events: all; }
      .tech-cards {
        order: 1;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        width: 100%;
        padding: 0 0 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-top: 0;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
      }
      .tech-cards::-webkit-scrollbar { display: none; }
      .tech-card {
        width: 100%;
        min-width: 100%;
        flex: 0 0 100%;
        padding: 56px 20px 56px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }
      .settle-flow { padding: 24px 20px; overflow-x: unset; }
      .settle-steps { flex-direction: column; align-items: stretch; flex-wrap: nowrap; overflow-x: unset; justify-content: flex-start; gap: 4px; }
      .settle-steps .ss { text-align: center; }
      .ss-arrow { transform: rotate(90deg); flex-shrink: 0; display: inline-block; }
      .vision-chars { grid-template-columns: repeat(2,1fr); gap: 12px; }
      .vc img { width: 64px !important; }
      .vis-label { font-size: 30px; }
      .vis-thumb { width: 72px; height: 72px; font-size: 34px; top: -36px; right: 20px; }
      .partner-grid { grid-template-columns: 1fr; }
      .partner-card { min-height: auto; }
      .foot-inner { padding: 0 16px; }
      .foot-links { gap: 12px 20px; }
    }

    /* ── BURGER MENU ── */
    .nav-burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      transition: background .15s;
    }
    .nav-burger:hover { background: rgba(0,0,0,.06); }
    .nav-burger span {
      display: block;
      width: 100%;
      height: 2px;
      background: #1a1a2e;
      border-radius: 2px;
      transition: transform .25s, opacity .25s;
      transform-origin: center;
    }
    .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0; right: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,.08);
      flex-direction: column;
      padding: 12px 24px 20px;
      z-index: 199;
      box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-dim {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.45);
      z-index: 198;
      backdrop-filter: blur(2px);
    }
    .nav-dim.open { display: block; }
    .nml {
      font-size: 16px;
      font-weight: 500;
      color: #3a3a4a;
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid rgba(0,0,0,.06);
      transition: color .15s;
    }
    .nml:last-child { border-bottom: none; }
    .nml:hover { color: #1DB88A; }
    .nml-wp { color: #1a1a2e; font-weight: 700; }

    @media (max-width: 900px) {
      .nav-burger { display: flex; }
      .nav-mobile-menu { top: 68px; }
      .nav-wp-mobile {
        display: inline-flex; align-items: center; gap: 5px;
        background: none; border: 1.5px solid #1a1a2e; border-radius: 20px;
        padding: 5px 14px; font-size: 13px; font-weight: 700;
        color: #1a1a2e; text-decoration: none; white-space: nowrap;
        margin-left: auto;
      }
    }
    @media (max-width: 600px) {
      .nav-mobile-menu { top: 56px; }
    }

    .nav-left { display: flex; align-items: center; gap: 8px; }
    @media (max-width: 900px) {
    }
    @keyframes char-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    @keyframes char-float-tilt {
      0%, 100% { transform: translateY(0) rotate(-2deg); }
      50% { transform: translateY(-10px) rotate(2deg); }
    }
    @keyframes char-float-sm {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }
    .hc { animation: char-float-sm 4s ease-in-out infinite; }
    .uc-floater { animation: char-float-tilt 5s ease-in-out infinite; }
    .what-char img, .tokens-char img, .principles-char img { animation: char-float-tilt 4.5s ease-in-out infinite; }
    .red-char img, .rev-char img { animation: char-float 4.5s ease-in-out infinite; }
