
    /* ─── RESET & BASE ─── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #f6f8f9;
      color: #1a2332;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ─── VARIABLES ─── */
    :root {
      --teal: #4AADA0;
      --teal-dark: #3a9088;
      --teal-light: #e8f5f4;
      --teal-mid: #5bbdb0;
      --navy: #1a2332;
      --navy2: #243040;
      --slate-bg: #f0f4f5;
      --slate-bg2: #e8eef0;
      --dark-section: #2d3f50;
      --dark-cta: #1e2d3c;
      --text-muted: #6b7c8f;
      --text-light: #8a9bb0;
      --border: #e2e8ec;
      --card-bg: #ffffff;
      --nav-h: 60px;
      --gold: #d4af35;
    }

    /* ─── NAV ─── */
    .main-navbar {
      border-bottom: 1px solid var(--border);
      min-height: 61px;
      background: #f6f8f9;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--nav-h);
      background: #f6f8f9;
      backdrop-filter: blur(10px);
      /* border-bottom: 1px solid var(--border); */
      z-index: 1000;
      display: flex;
      align-items: center;
      padding: 0 32px;
      justify-content: space-between;
      transition: box-shadow .3s;
      max-width: 1400px;
      margin: auto;
    }

    nav .container {
      max-width: 1400px;
    }

    .main-navbar.scrolled {
      box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      cursor: pointer;
    }

    .nav-logo-icon {
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 14px;
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-center a {
      display: block;
      padding: 8px 18px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      border-radius: 8px;
      transition: color .2s, background .2s;
      position: relative;
      white-space: nowrap;
    }

    .nav-center a:hover {
      color: var(--navy);
      background: rgba(74, 173, 160, .06);
    }

    .nav-center a.active {
      color: var(--navy);
      font-weight: 600;
    }

    .nav-center a.active::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 50%;
      transform: translateX(-50%);
      width: 18px;
      height: 2px;
      background: var(--teal);
      border-radius: 99px;
    }

    .btn-nav {
      background: var(--teal);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 9px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      transition: background .2s, transform .15s, box-shadow .2s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-nav:hover {
      background: var(--teal-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(74, 173, 160, .35);
    }

    .btn-nav:active {
      transform: translateY(0);
    }

    /* hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .nav-hamburger span {
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0;
      right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 16px 24px;
      flex-direction: column;
      gap: 4px;
      z-index: 999;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      padding: 12px 16px;
      font-size: 15px;
      font-weight: 500;
      color: var(--navy);
      text-decoration: none;
      border-radius: 8px;
      transition: background .2s;
    }

    .mobile-nav a:hover {
      background: var(--teal-light);
    }

    .mobile-nav .btn-nav {
      margin-top: 8px;
      text-align: center;
    }

    /* ─── SCROLL OFFSET ─── */
    .scroll-target {
      scroll-margin-top: calc(var(--nav-h) + 16px);
    }

    /* ─── SECTION COMMON ─── */
    .section-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 99px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .section-pill .dot {
      width: 7px;
      height: 7px;
      background: var(--teal);
      border-radius: 50%;
    }

    .section-pill .icon {
      font-size: 0px;
    }

    /* ─── HERO ─── */
    #hero {
      /* min-height: 100vh; */
      background: #f6f8f9;
      padding: calc(var(--nav-h) + 72px) 32px 128px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
    }

    .hero-left {}

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .85);
      border: 1px solid var(--border);
      border-radius: 99px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .hero-pill .green-dot {
      width: 7px;
      height: 7px;
      background: #4caf7d;
      border-radius: 50%;
      animation: blink 2s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .4
      }
    }

    h1 {
      font-size: clamp(34px, 4.5vw, 60px);
      font-weight: 700;
      line-height: 1.08;
      color: var(--navy);
      margin-bottom: 22px;
      letter-spacing: -0.02em;
    }

    h1 .teal {
      /* color: var(--teal); */
      background-clip: text;
      background-image: linear-gradient(to bottom right, #5fa5a3, #d4af35);
      color: transparent;
    }

    .hero-desc {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 550px;
      font-weight: 500;
    }

    .hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .btn-primary {
      background: var(--teal);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background .2s, transform .15s, box-shadow .2s;
      text-decoration: none;
    }

    .btn-primary:hover {
      background: var(--teal-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(74, 173, 160, .35);
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    .btn-secondary {
      background: #fff;
      color: var(--navy);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: border-color .2s, transform .15s, box-shadow .2s;
      text-decoration: none;
    }

    .btn-secondary:hover {
      border-color: var(--teal);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hero-badge {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .hero-badge .check {
      color: var(--teal);
      font-size: 0px;
    }

    /* Hero image */
    .hero-right {}

    .hero-img-wrap {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.242);
      aspect-ratio: 16/11;
      background: #0d1f2e;
      position: relative;
    }

    .hero-img-canvas {
      width: 100%;
      height: 100%;
      background: radial-gradient(ellipse at 50% 30%, #1a3d5c 0%, #0a1a28 70%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    /* Illustrated city/asset network */
    .canvas-center-label {
      position: absolute;
      background: rgba(74, 173, 160, .15);
      border: 1px solid rgba(74, 173, 160, .5);
      border-radius: 14px;
      padding: 12px 22px;
      font-size: 16px;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: .05em;
      text-align: center;
      backdrop-filter: blur(6px);
      z-index: 10;
    }

    .asset-node {
      position: absolute;
      background: rgba(10, 26, 40, .85);
      border: 1px solid rgba(74, 173, 160, .35);
      border-radius: 12px;
      padding: 10px 14px;
      font-size: 11px;
      font-weight: 600;
      color: rgba(74, 173, 160, .9);
      backdrop-filter: blur(4px);
      white-space: nowrap;
    }

    .node-emoji {
      font-size: 18px;
      display: block;
      margin-bottom: 4px;
    }

    .connector-line {
      position: absolute;
      background: linear-gradient(90deg, transparent, rgba(74, 173, 160, .4), transparent);
      height: 1px;
      transform-origin: left center;
    }

    .teal-glow {
      position: absolute;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(74, 173, 160, .2) 0%, transparent 70%);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    /* ─── ASSETS SECTION ─── */
    #assets {
      background: #eaedf066;
      padding: 80px 0;
    }

    .assets-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .section-pill-wrap {
      margin-bottom: 20px;
    }

    h2 {
      font-size: clamp(26px, 3.5vw, 48px);
      font-weight: 700;
      line-height: 1.1;
      color: var(--navy);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .section-desc {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 800px;
      margin-bottom: 40px;
      font-weight: 500;
    }

    .asset-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .asset-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 26px;
      transition: all .22s ease;
      cursor: pointer;
    }

    .asset-card:hover {
      border-color: rgba(74, 173, 160, .45);
      box-shadow: 0 8px 28px rgb(74 173 160 / 17%), 0 2px 8px rgb(0 0 0 / 12%);
      transform: translateY(-3px);
    }

    .asset-card-icon,
    .infra-card-icon {
      width: 42px;
      height: 42px;
      background: var(--teal-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      margin-bottom: 18px;
      color: var(--teal);
      transition: ease-in-out 0.3s;
    }

    .asset-card:hover .asset-card-icon,
    .infra-card:hover .infra-card-icon {
      background: #4aada0;
    }

    .asset-card:hover .asset-card-icon svg,
    .infra-card:hover .infra-card-icon svg {
      color: #fff;
    }

    .asset-card-icon:hover,
    .infra-card-icon:hover {
      background: var(--teal);
      color: #fff
    }

    .asset-card-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .asset-card-amount {
      font-size: 19px;
      font-weight: 800;
      color: var(--teal);
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .asset-card-sub {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }

    .asset-card-source {
      font-size: 12px;
      color: var(--text-light);
    }

    /* ─── PLATFORM ─── */
    #platform {
      padding: 90px 0;
    }

    .platform-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .platform-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .platform-header .section-pill {
      margin: 0 auto 20px;
    }

    .platform-header p {
      margin: 0 auto;
      max-width: 580px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 26px;
      transition: all .22s;
      cursor: pointer;
    }

    .feature-card:hover {
      border-color: rgba(74, 173, 160, .4);
      box-shadow: 0 8px 28px rgba(74, 173, 160, .1);
      transform: translateY(-3px);
    }

    .feature-card-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #5fa5a3, #d4af35);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      color: #fff;
      margin-bottom: 16px;
    }

    .feature-card-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .feature-card-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─── HOW IT WORKS ─── */
    #howit {
      background: #eaedf066;
      padding: 90px 0;
    }

    .howit-inner {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 32px;
      text-align: center;
    }

    .howit-header {
      margin-bottom: 56px;
    }

    .steps-timeline {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
      text-align: left;
    }

    .steps-timeline:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 2px;
      height: 100%;
      background: #e1e7ef;
      margin: auto;
    }

    /* alternating left-right */
    .step-row {
      display: grid;
      grid-template-columns: 1fr 16px 1fr;
      align-items: flex-start;
      min-height: 120px;
      position: relative;
    }

    .step-row:last-child .step-line {
      display: none;
    }

    .step-left {
      padding-right: 16px;
      padding-bottom: 24px;
    }

    .step-right {
      padding-left: 16px;
      padding-bottom: 24px;
    }

    .step-empty {}

    .step-center-col {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .step-dot {
      width: 10px;
      height: 10px;
      background: var(--teal);
      border-radius: 50%;
      /* border: 3px solid #fff; */
      box-shadow: 0 0 0 2px var(--teal);
      flex-shrink: 0;
      position: absolute;
      z-index: 1;
      top: -45px;
      bottom: 0;
      margin: auto;
    }

    /* .step-line {
      width: 2px;
      flex: 1;
      background: linear-gradient(180deg, var(--teal) 0%, rgba(74, 173, 160, .2) 100%);
      min-height: 80px;
    } */

    .step-row:last-child .step-left {
        padding-bottom: 0;
    }

    .step-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px 22px;
      transition: all .22s;
      cursor: pointer;
    }

    .step-card:hover {
      border-color: rgba(74, 173, 160, .4);
      box-shadow: 0 6px 22px rgba(74, 173, 160, .1);
      transform: translateY(-2px);
    }

    .step-num {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 6px;
    }

    .step-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .step-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ─── MARKET ─── */
    #market {
      background: var(--dark-section);
      padding: 90px 0;
    }

    .market-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
      text-align: center;
    }

    .market-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 99px;
      padding: 6px 14px;
      font-size: 12px;
      color: rgb(255, 255, 255);
      margin-bottom: 24px;
    }

    .market-pill .icon {
      font-size: 13px;
    }

    .market-inner h2 {
      color: #fff;
      margin-bottom: 20px;
    }

    .market-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, .6);
      line-height: 1.75;
      max-width: 600px;
      margin: 0 auto 56px;
    }

    .market-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: left;
      max-width: 1024px;
      margin: auto;
    }

    .market-stat {}

    .market-stat-val {
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 6px;
      background-clip: text;
      background-image: linear-gradient(to bottom right, #5fa5a3, #d4af35);
      color: transparent;
    }

    .market-stat-label {
      font-size: 12px;
      color: rgba(255, 255, 255, .45);
      line-height: 1.5;
    }

    /* ─── BENEFITS ─── */
    #benefits {
      /* background: #fff; */
      padding: 80px 0;
    }

    .benefits-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .benefit-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
      transition: all .22s;
      cursor: pointer;
    }

    .benefit-card:hover {
      border-color: rgba(74, 173, 160, .4);
      box-shadow: 0 8px 28px rgba(74, 173, 160, .1);
      transform: translateY(-3px);
    }

    .benefit-tag {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--teal);
      margin-bottom: 14px;
    }

    .benefit-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 18px;
    }

    .benefit-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .benefit-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .benefit-list li .chk {
      color: var(--teal);
      font-size: 14px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ─── INFRASTRUCTURE ─── */
    #infra {
      background: var(--slate-bg);
      padding: 90px 0;
    }

    .infra-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .infra-top {
      display: grid;
      /* grid-template-columns: 1fr 1fr; */
      gap: 6px;
      align-items: flex-start;
      margin-bottom: 48px;
      max-width: 700px;
    }

    .infra-left h2 {
      margin-bottom: 0;
    }

    .infra-right p {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.75;
      padding-top: 8px;
    }

    .infra-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .infra-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 26px;
      transition: all .22s;
      cursor: pointer;
    }

    .infra-card:hover {
      border-color: rgba(74, 173, 160, .4);
      box-shadow: 0 8px 28px rgba(74, 173, 160, .1);
      transform: translateY(-3px);
    }

    .infra-card-icon {
      font-size: 22px;
      margin-bottom: 14px;
      color: var(--teal);
    }

    .infra-card-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .infra-card-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─── DISTRIBUTE / PARTNER ─── */
    #distribute {
      /* background: #fff; */
      padding: 90px 0;
    }

    .distribute-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: flex-start;
    }

    .dist-left {}

    .dist-left h2 {
      margin-bottom: 16px;
    }

    .dist-left p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .partner-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }

    .partner-tag {
      background: var(--teal-light);
      border: 1px solid rgba(74, 173, 160, .25);
      border-radius: 99px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 500;
      color: var(--navy);
      transition: all .2s;
      cursor: pointer;
    }

    .partner-tag:hover {
      background: rgba(74, 173, 160, .2);
      border-color: var(--teal);
    }

    .dist-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-outline-teal {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 11px 22px;
      font-size: 14px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: all .2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn-outline-teal:hover {
      border-color: var(--teal);
      color: var(--teal-dark);
    }

    .dist-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .dist-feat-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 22px;
      transition: all .22s;
      cursor: pointer;
    }

    .dist-feat-card:hover {
      border-color: rgba(74, 173, 160, .4);
      box-shadow: 0 6px 22px rgba(74, 173, 160, .1);
      transform: translateY(-2px);
    }

    .dist-feat-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, #5fa5a3, #d4af35);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      color: #fff;
      margin-bottom: 12px;
    }

    .dist-feat-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 7px;
    }

    .dist-feat-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ─── CTA DARK ─── */
    #cta {
      /* background: var(--dark-section); */
      background-image: linear-gradient(to bottom right, #2b3d4f, #2d3f50f2);
      padding: 90px 0;
      overflow: hidden;
      position: relative;
    }

    #cta:before {
        content: '';
        position: absolute;
        top: -40%;
        right: -10%;
        background: #5fa5a333;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        filter: blur(64px);
    }

    #cta::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -15%;
        background: #d4af3533;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        filter: blur(64px);
    }

    .cta-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 99px;
      padding: 6px 14px;
      font-size: 12px;
      color: rgb(255, 255, 255);
      margin-bottom: 24px;
    }

    .cta-inner h2 {
      color: #fff;
      font-size: clamp(30px, 4vw, 60px);
      margin-bottom: 18px;
    }

    .cta-inner h2 .gold {
      color: var(--gold);
    }

    .cta-inner p {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 672px;
    }

    .cta-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-gold {
      background: var(--gold);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .2s;
      text-decoration: none;
    }

    .btn-gold:hover {
      background: #b8943e;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(201, 168, 76, .35);
    }

    .btn-ghost-white {
      background: transparent;
      color: rgb(255, 255, 255);
      border: 1.5px solid rgba(255, 255, 255, .2);
      border-radius: 8px;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .2s;
      text-decoration: none;
    }

    .btn-ghost-white:hover {
      border-color: rgba(255, 255, 255, .5);
      color: #fff;
    }

    /* ─── FOOTER ─── */
    footer {
      /* background: white; */
      padding: 22px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, .05);
      flex-wrap: wrap;
      gap: 12px;
      max-width: 1400px;
      margin: auto;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* .footer-logo-icon {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px;
} */
    .footer-logo-icon {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo-img {
      width: 28px;
      height: 28px;
      object-fit: contain;
      display: block;
    }

    .footer-logo-name {
      font-size: 14px;
      font-weight: 700;
      color: black;
    }

    .footer-link {
      font-size: 14px;
      /* color: black; */
      color: var(--text-muted);
      margin-left: 6px;
      text-decoration: none;
    }

    .footer-link:hover {
      color: var(--teal);
    }

    .footer-copy {
      font-size: 14px;
      /* color: black; */
      color: var(--text-muted);
    }

    /* ─── MODAL ─── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      z-index: 2000;
      backdrop-filter: blur(4px);
      align-items: flex-start;
      justify-content: center;
      overflow-y: auto;
      padding: 28px 16px;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal-box {
      background: #fff;
      border-radius: 16px;
      padding: 34px;
      max-width: 680px;
      width: min(100%, 680px);
      max-height: calc(100dvh - 56px);
      overflow-y: auto;
      overscroll-behavior: contain;
      position: relative;
      box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
      animation: modalIn .25s ease;
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: scale(.95)translateY(10px)
      }

      to {
        opacity: 1;
        transform: scale(1)translateY(0)
      }
    }

    .modal-close {
      position: sticky;
      top: 0;
      float: right;
      margin: -18px -18px 2px 12px;
      background: #fff;
      border: none;
      font-size: 0;
      cursor: pointer;
      color: var(--text-light);
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      transition: background .2s;
    }

    .modal-close:hover {
      background: var(--slate-bg);
    }

    .modal-close:disabled,
    .modal-overlay.is-submitting .modal-close {
      cursor: wait;
      opacity: .38;
      pointer-events: none;
    }

    .modal-close::before {
      content: "\00d7";
      font-size: 24px;
      line-height: 1;
    }

    .modal-icon {
      width: 52px;
      height: 52px;
      background: var(--teal-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin: 0 auto 18px;
    }

    .modal-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
      text-align: center;
    }

    .modal-sub {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 8px;
      text-align: center;
      line-height: 1.6;
    }

    .modal-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .modal-input,
    .modal-select,
    .modal-textarea {
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 9px;
      font-size: 14px;
      font-family: inherit;
      color: var(--navy);
      background: #fff;
      outline: none;
      transition: border-color .2s;
      width: 100%;
    }

    .modal-input:focus,
    .modal-select:focus,
    .modal-textarea:focus {
      border-color: var(--teal);
    }

    .modal-textarea {
      height: 88px;
      resize: none;
    }

    .modal-submit {
      margin-top: 4px;
      justify-content: center;
    }

    .modal-contact-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .modal-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    #modal-dynamic-fields {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .modal-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .modal-field label {
      color: var(--navy);
      font-size: 13px;
      font-weight: 600;
    }

    .modal-field input,
    .modal-field select,
    .modal-field textarea {
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 9px;
      font-size: 14px;
      font-family: inherit;
      color: var(--navy);
      background: #fff;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      width: 100%;
    }

    .modal-field input:focus,
    .modal-field select:focus,
    .modal-field textarea:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(95, 167, 165, 0.14);
    }

    .modal-field textarea {
      min-height: 88px;
      resize: vertical;
    }

    .modal-field.has-error .modal-input,
    .modal-field.has-error .modal-select,
    .modal-field.has-error .modal-textarea,
    .modal-field.has-error input,
    .modal-field.has-error select,
    .modal-field.has-error textarea {
      border-color: #dc2626;
      box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
    }

    .modal-error {
      color: #dc2626;
      font-size: 12px;
      line-height: 1.35;
      margin: 0;
    }

    .modal-check {
      align-items: flex-start;
      color: var(--muted);
      display: flex;
      font-size: 13px;
      gap: 8px;
      line-height: 1.45;
    }

    .modal-check input {
      margin-top: 3px;
    }

    .modal-alert {
      background: #fef2f2;
      border: 1px solid #fecaca;
      border-radius: 8px;
      color: #b91c1c;
      display: none;
      font-size: 13px;
      line-height: 1.45;
      padding: 10px 12px;
    }

    .modal-alert.show {
      display: block;
    }

    .modal-submit[disabled],
    .modal-submit.is-loading {
      cursor: wait;
      opacity: .7;
    }

    .hp {
      height: 1px;
      left: -9999px;
      overflow: hidden;
      position: absolute;
      width: 1px;
    }

    .modal-success {
      text-align: center;
      padding: 16px 0;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      #hero {
        padding: calc(var(--nav-h) + 56px) 48px 56px;
        gap: 40px;
      }

      .market-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
    }

    @media (max-width: 900px) {
      nav {
        padding: 0 24px;
      }

      .nav-center {
        display: none;
      }

      .btn-nav.desktop-only {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      #hero {
        grid-template-columns: 1fr;
        padding: calc(var(--nav-h) + 40px) 24px 48px;
        gap: 36px;
      }

      .hero-desc{
        max-width: 100%;
      }

      .hero-right {
        order: -1;
      }

      .asset-grid {
        grid-template-columns: 1fr 1fr;
      }

      .feature-grid {
        grid-template-columns: 1fr 1fr;
      }

      .benefits-grid {
        grid-template-columns: 1fr;
      }

      .infra-top {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .infra-grid {
        grid-template-columns: 1fr 1fr;
      }

      .distribute-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .assets-inner,
      .platform-inner,
      .howit-inner,
      .market-inner,
      .benefits-inner,
      .infra-inner,
      .distribute-inner.full,
      .cta-inner {
        padding: 0 24px;
      }
    }

    @media (max-width: 640px) {
      .asset-grid {
        grid-template-columns: 1fr;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .market-stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .infra-grid {
        grid-template-columns: 1fr;
      }

      .dist-right {
        grid-template-columns: 1fr;
      }

      .modal-row {
        grid-template-columns: 1fr;
      }

      .modal-overlay {
        padding: 12px;
      }

      .modal-box {
        border-radius: 12px;
        max-height: calc(100dvh - 24px);
        padding: 28px 18px 22px;
      }

      h1 {
        font-size: 32px;
      }

      h2 {
        font-size: 26px;
      }

      .step-row {
        grid-template-columns: 1fr;
      }

      .step-center-col{
        align-items: start;
      }

      .step-left,
      .step-empty-right {
        display: block;
        padding-right: 0px;
        padding-left: 30px;
      }

      .step-right {
        padding-left: 30px;
      }

      .market-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .steps-timeline:before{
        right: auto;
        left: 4px;
      }
    }

    @media (max-width: 400px) {
      .market-stats-grid {
        grid-template-columns: 1fr;
      }

      .hero-ctas {
        flex-direction: column;
      }

      .hero-ctas .btn-primary,
      .hero-ctas .btn-secondary {
        justify-content: center;
      }
    }

    /* Dividers between sections */
    .section-sep {
      height: 0;
    }

    .hero-right {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-img-wrap {
      width: 100%;
      max-width: 760px;
      position: relative;
    }

    .hero-main-image {
      width: 100%;
      display: block;
      border-radius: 24px;
      object-fit: cover;
      box-shadow:
        0 20px 60px rgba(0, 0, 0, .18),
        0 0 0 1px rgba(255, 255, 255, .05);
    }

    /* optional glow behind image */
    .hero-img-wrap::before {
      content: '';
      position: absolute;
      inset: -40px;
      background: radial-gradient(circle,
          rgba(74, 173, 160, .20) 0%,
          transparent 70%);
      z-index: -1;
      filter: blur(40px);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      cursor: pointer;
    }

    .nav-logo-img {
      width: 38px;
      height: 38px;
      object-fit: contain;
      display: block;
    }

    .nav-logo span {
      font-size: 20px;
      font-weight: 700;
      color: #23384d;
      line-height: 1;
    }

    #cta:before,
    #cta:after {
        pointer-events: none;
    }
    .collabow_img{
      height: 36px;
    }
