*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --gold: #E8A020;
      --gold-lt: #F5C04A;
      --gold-dk: #B87A10;
      --ore: #C0392B;
      --coal: #0D0D0D;
      --rock: #1A1A1A;
      --slate: #252525;
      --gravel: #333333;
      --dust: #888888;
      --chalk: #CCCCCC;
      --white: #F5F0E8;
      --accent: #2E8B57;
      /* profit green */
      --warn: #E74C3C;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--coal);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ─── UTILITY ─── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .tag {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold-dk);
      padding: 4px 14px;
      border-radius: 2px;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
      color: var(--white);
    }

    .section-title span {
      color: var(--gold);
    }

    .section-sub {
      font-size: 16px;
      color: var(--chalk);
      line-height: 1.7;
      max-width: 560px;
      margin-top: 16px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--coal);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 14px 36px;
      border-radius: 2px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, transform .15s;
    }

    .btn-primary:hover {
      background: var(--gold-lt);
      transform: translateY(-2px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 13px 34px;
      border-radius: 2px;
      border: 2px solid rgba(255, 255, 255, .3);
      cursor: pointer;
      text-decoration: none;
      transition: border-color .2s, color .2s;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(13, 13, 13, .92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(232, 160, 32, .15);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 900;
      letter-spacing: 1px;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      background: var(--gold);
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--coal);
      font-weight: 900;
      flex-shrink: 0;
    }

    .logo span {
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: var(--chalk);
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: .5px;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-cta {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .nav-login {
      color: var(--chalk);
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: .5px;
      transition: color .2s;
    }

    .nav-login:hover {
      color: var(--gold);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all .25s;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(13, 13, 13, .98);
      flex-direction: column;
      padding: 40px 24px;
      gap: 28px;
      z-index: 998;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 32px;
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      padding-bottom: 20px;
      transition: color .2s;
    }

    .mobile-menu a:hover {
      color: var(--gold);
    }

    /* ─── HERO ─── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      padding-top: 72px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.32) saturate(.7);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
          rgba(13, 13, 13, .85) 0%,
          rgba(13, 13, 13, .4) 50%,
          rgba(184, 122, 16, .1) 100%);
    }

    /* animated ore particles */
    .particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }

    .particle {
      position: absolute;
      width: 3px;
      height: 3px;
      background: var(--gold);
      border-radius: 50%;
      animation: float linear infinite;
      opacity: 0;
    }

    @keyframes float {
      0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
      }

      10% {
        opacity: .6;
      }

      90% {
        opacity: .3;
      }

      100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 80px 0 100px;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      margin-left: 18px;
    }

    .hero-eyebrow-line {
      width: 48px;
      height: 2px;
      background: var(--gold);
    }

    .hero-eyebrow span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .hero-h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(56px, 9vw, 120px);
      font-weight: 900;
      line-height: .92;
      text-transform: uppercase;
      color: var(--white);
      max-width: 900px;
      margin-left: 18px;
    }

    .hero-h1 em {
      font-style: normal;
      color: var(--gold);
      display: block;
    }

    .hero-sub {
      font-size: clamp(16px, 2vw, 19px);
      color: var(--chalk);
      line-height: 1.7;
      max-width: 560px;
      margin: 28px 0 44px;
      margin-left: 18px;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-left: 18px;
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
      margin-top: 80px;
      padding-top: 48px;
      border-top: 1px solid rgba(255, 255, 255, .08);
      margin-left: 18px;
    }

    .hero-stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 48px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 13px;
      color: var(--dust);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 2;
    }

    .scroll-hint span {
      font-size: 11px;
      color: var(--dust);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .scroll-arrow {
      width: 24px;
      height: 24px;
      border-right: 2px solid var(--gold);
      border-bottom: 2px solid var(--gold);
      transform: rotate(45deg);
      animation: bounce 1.6s ease-in-out infinite;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: rotate(45deg) translateY(0)
      }

      50% {
        transform: rotate(45deg) translateY(6px)
      }
    }

    /* ─── TICKER TAPE ─── */
    .ticker {
      background: var(--gold-dk);
      overflow: hidden;
      padding: 10px 0;
      border-top: 1px solid rgba(232, 160, 32, .3);
      border-bottom: 1px solid rgba(232, 160, 32, .3);
    }

    .ticker-track {
      display: flex;
      gap: 0;
      animation: ticker 28s linear infinite;
      white-space: nowrap;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 32px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--coal);
    }

    .ticker-up {
      color: #0a5c2a;
    }

    .ticker-down {
      color: #8b0000;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* ─── HOW IT WORKS ─── */
    #how {
      padding: 120px 0;
      background: var(--rock);
      position: relative;
    }

    #how::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2px;
      margin-top: 64px;
    }

    .how-card {
      background: var(--slate);
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: background .25s;
    }

    .how-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s;
    }

    .how-card:hover {
      background: #2a2a2a;
    }

    .how-card:hover::before {
      transform: scaleX(1);
    }

    .how-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 72px;
      font-weight: 900;
      color: rgba(232, 160, 32, .08);
      line-height: 1;
      position: absolute;
      top: 12px;
      right: 20px;
    }

    .how-icon {
      font-size: 36px;
      margin-bottom: 20px;
      display: block;
    }

    .how-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: .5px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 12px;
    }

    .how-card p {
      font-size: 14px;
      color: var(--dust);
      line-height: 1.7;
    }

    /* ─── SERVICES / OFFERINGS ─── */
    #services {
      padding: 120px 0;
      background: var(--coal);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 64px;
    }

    .service-card {
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 4px;
      overflow: hidden;
      transition: border-color .25s, transform .2s;
      background: var(--rock);
    }

    .service-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }

    .service-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.55) saturate(.8);
      transition: filter .3s, transform .3s;
    }

    .service-card:hover .service-img img {
      filter: brightness(.65) saturate(1);
      transform: scale(1.04);
    }

    .service-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--gold);
      color: var(--coal);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2px;
      padding: 3px 10px;
      text-transform: uppercase;
    }

    .service-body {
      padding: 28px 28px 32px;
    }

    .service-body h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 24px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 10px;
    }

    .service-body p {
      font-size: 14px;
      color: var(--dust);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .service-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap .2s;
    }

    .service-link:hover {
      gap: 12px;
    }

    /* ─── LIVE DASHBOARD PREVIEW ─── */
    #dashboard {
      padding: 120px 0;
      background: var(--rock);
      position: relative;
      overflow: hidden;
    }

    #dashboard::after {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(232, 160, 32, .06) 0%, transparent 70%);
      pointer-events: none;
    }

    .dashboard-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      margin-top: 64px;
    }

    .dashboard-mockup {
      background: var(--slate);
      border: 1px solid rgba(232, 160, 32, .2);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(232, 160, 32, .05);
    }

    .mockup-topbar {
      background: var(--gravel);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .mockup-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .mockup-dot.r {
      background: #ff5f56;
    }

    .mockup-dot.y {
      background: #ffbd2e;
    }

    .mockup-dot.g {
      background: #27c93f;
    }

    .mockup-url {
      flex: 1;
      background: rgba(255, 255, 255, .05);
      border-radius: 3px;
      padding: 4px 10px;
      font-size: 11px;
      color: var(--dust);
      margin-left: 8px;
    }

    .mockup-body {
      padding: 20px;
    }

    .mockup-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--dust);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .mockup-kpis {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 16px;
    }

    .kpi {
      background: var(--coal);
      border-radius: 4px;
      padding: 14px 16px;
      border: 1px solid rgba(255, 255, 255, .04);
    }

    .kpi-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }

    .kpi-lbl {
      font-size: 11px;
      color: var(--dust);
      margin-top: 3px;
    }

    .kpi-chg {
      font-size: 11px;
      margin-top: 4px;
      font-weight: 600;
    }

    .kpi-chg.up {
      color: var(--accent);
    }

    .kpi-chg.dn {
      color: var(--warn);
    }

    .mockup-chart {
      height: 80px;
      position: relative;
      margin-bottom: 14px;
      background: rgba(0, 0, 0, .2);
      border-radius: 4px;
      overflow: hidden;
    }

    .mockup-chart svg {
      width: 100%;
      height: 100%;
    }

    .mockup-rows {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .mockup-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 12px;
      background: var(--coal);
      border-radius: 3px;
      font-size: 12px;
    }

    .mockup-row-name {
      color: var(--chalk);
      font-weight: 500;
    }

    .mockup-row-val {
      color: var(--gold);
      font-weight: 700;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
    }

    .dash-features {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .dash-feat {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .dash-feat-icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      background: rgba(232, 160, 32, .1);
      border: 1px solid rgba(232, 160, 32, .2);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .dash-feat h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 6px;
    }

    .dash-feat p {
      font-size: 14px;
      color: var(--dust);
      line-height: 1.6;
    }

    /* ─── STATS BAND ─── */
    #stats-band {
      background: var(--gold-dk);
      padding: 64px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 24px 20px;
      border-right: 1px solid rgba(13, 13, 13, .2);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-item-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 56px;
      font-weight: 900;
      color: var(--coal);
      line-height: 1;
    }

    .stat-item-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(13, 13, 13, .65);
      margin-top: 6px;
    }

    /* ─── FLEET / EQUIPMENT ─── */
    #fleet {
      padding: 120px 0;
      background: var(--coal);
    }

    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 16px;
      margin-top: 64px;
    }

    .fleet-card {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      height: 280px;
      cursor: pointer;
    }

    .fleet-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.4) saturate(.6);
      transition: filter .35s, transform .4s;
    }

    .fleet-card:hover img {
      filter: brightness(.55) saturate(.9);
      transform: scale(1.06);
    }

    .fleet-card-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px 20px 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 100%);
    }

    .fleet-card-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
    }

    .fleet-card-sub {
      font-size: 12px;
      color: var(--gold);
      margin-top: 2px;
    }

    .fleet-card-status {
      position: absolute;
      top: 14px;
      right: 14px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 2px;
    }

    .status-active {
      background: rgba(46, 139, 87, .9);
      color: #fff;
    }

    .status-standby {
      background: rgba(232, 160, 32, .9);
      color: var(--coal);
    }

    /* ─── EARNINGS PREVIEW ─── */
    #earnings {
      padding: 120px 0;
      background: var(--rock);
    }

    .earnings-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      margin-top: 64px;
    }

    .earnings-plans {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .plan-card {
      background: var(--slate);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 4px;
      padding: 24px 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: border-color .2s, background .2s;
      position: relative;
      overflow: hidden;
    }

    .plan-card.featured {
      border-color: var(--gold);
      background: rgba(232, 160, 32, .06);
    }

    .plan-card:hover {
      border-color: var(--gold);
    }

    .plan-badge {
      position: absolute;
      top: 0;
      right: 0;
      background: var(--gold);
      color: var(--coal);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 2px;
      padding: 3px 12px;
      text-transform: uppercase;
    }

    .plan-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
    }

    .plan-desc {
      font-size: 13px;
      color: var(--dust);
      margin-top: 4px;
    }

    .plan-roi {
      text-align: right;
    }

    .plan-roi-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 36px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }

    .plan-roi-label {
      font-size: 11px;
      color: var(--dust);
      margin-top: 2px;
    }

    .earnings-info h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 32px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }

    .earnings-info p {
      font-size: 15px;
      color: var(--chalk);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .earnings-checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 28px 0 36px;
    }

    .earnings-checklist li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 14px;
      color: var(--chalk);
    }

    .earnings-checklist li::before {
      content: '◆';
      color: var(--gold);
      font-size: 10px;
      margin-top: 4px;
      flex-shrink: 0;
    }

    /* ─── TESTIMONIALS ─── */
    #testimonials {
      padding: 120px 0;
      background: var(--coal);
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 64px;
    }

    .testi-card {
      background: var(--rock);
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 4px;
      padding: 32px;
      position: relative;
      transition: border-color .2s;
    }

    .testi-card:hover {
      border-color: rgba(232, 160, 32, .3);
    }

    .testi-quote {
      font-size: 48px;
      color: var(--gold-dk);
      line-height: 1;
      font-family: Georgia, serif;
      position: absolute;
      top: 20px;
      right: 24px;
      opacity: .4;
    }

    .testi-stars {
      color: var(--gold);
      font-size: 16px;
      margin-bottom: 16px;
    }

    .testi-text {
      font-size: 15px;
      color: var(--chalk);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--gravel);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 900;
      color: var(--gold);
      flex-shrink: 0;
    }

    .testi-name {
      font-weight: 600;
      font-size: 14px;
      color: var(--white);
    }

    .testi-role {
      font-size: 12px;
      color: var(--dust);
      margin-top: 2px;
    }

    /* ─── TRUST / SECURITY ─── */
    #trust {
      padding: 100px 0;
      background: var(--rock);
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px;
      margin-top: 56px;
    }

    .trust-item {
      text-align: center;
      padding: 36px 24px;
      border: 1px solid rgba(255, 255, 255, .05);
      border-radius: 4px;
      transition: border-color .2s, background .2s;
    }

    .trust-item:hover {
      border-color: rgba(232, 160, 32, .3);
      background: rgba(232, 160, 32, .03);
    }

    .trust-icon {
      font-size: 36px;
      margin-bottom: 16px;
      display: block;
    }

    .trust-item h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 8px;
    }

    .trust-item p {
      font-size: 13px;
      color: var(--dust);
      line-height: 1.6;
    }

    /* ─── CTA ─── */
    #cta {
      padding: 120px 0;
      background: var(--coal);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 100%, rgba(232, 160, 32, .08) 0%, transparent 65%);
    }

    .cta-inner {
      position: relative;
      z-index: 1;
    }

    .cta-inner h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(40px, 6vw, 80px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1;
      margin-bottom: 24px;
    }

    .cta-inner h2 span {
      color: var(--gold);
    }

    .cta-inner p {
      font-size: 17px;
      color: var(--chalk);
      max-width: 500px;
      margin: 0 auto 44px;
      line-height: 1.7;
    }

    .cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ─── FOOTER ─── */
    footer {
      background: #080808;
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding: 80px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 64px;
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--dust);
      line-height: 1.7;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--dust);
      text-decoration: none;
      transition: border-color .2s, color .2s;
    }

    .social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .footer-col h5 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul a {
      font-size: 14px;
      color: var(--dust);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-col ul a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .05);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: gap;
      gap: 16px;
    }

    .footer-bottom p {
      font-size: 13px;
      color: var(--dust);
    }

    .footer-bottom a {
      color: var(--gold);
      text-decoration: none;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 960px) {

      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .dashboard-layout,
      .earnings-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
    }

    @media (max-width: 640px) {
      .hero-stats {
        gap: 28px;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stat-item:nth-child(2n) {
        border-right: none;
      }

      .stat-item {
        border-bottom: 1px solid rgba(13, 13, 13, .2);
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }