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

  :root {
      --black: #000;
      --white: #fff;
      --lime: #63e600;
      --lime-dim: #a8d430;
      --gray1: #0c0c0c;
      --gray2: #141414;
      --gray3: #1e1e1e;
      --gray4: #2a2a2a;
      --gray5: #444;
      --gray6: #666;
      --gray7: #888;
      --gray8: #aaa;
      --gray9: #ccc;
      --text-primary: #ffffff;
      --text-body: rgba(255, 255, 255, 0.92);
      --text-secondary: rgba(255, 255, 255, 0.82);
      --text-muted: rgba(255, 255, 255, 0.72);
      --text-subtle: rgba(255, 255, 255, 0.58);
      --amber: #4662fc;
      --red: #ff4444;
      --font-display: 'Bebas Neue', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
  }

  html {
      scroll-behavior: smooth
  }

  body {
      background: var(--black);
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden
  }

  /* Dark theme — brighter body copy, green reserved for accents/actions */
  .text-secondary,
  .text-white-50 {
      color: var(--text-secondary) !important;
  }

  .text-muted {
      color: var(--text-muted) !important;
  }

  .text-body-secondary {
      color: var(--text-secondary) !important;
  }

  /* ── UTILITY ── */
  .sn-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--lime);
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: block
  }

  .sn-h1 {
      font-family: var(--font-display);
      font-size: clamp(52px, 8.5vw, 70px);
      line-height: .92;
      letter-spacing: 3px;
      color: var(--white)
  }

  .sn-h2 {
      font-family: var(--font-display);
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1;
      letter-spacing: 2px;
      color: var(--white)
  }

  .sn-h3 {
      font-family: var(--font-display);
      font-size: 24px;
      letter-spacing: 2px;
      color: var(--white)
  }

  .body-lg {
      font-size: 17px;
      color: var(--text-body);
      font-weight: 300;
      line-height: 1.75;
      max-width: 560px
  }

  .rule {
      border: none;
      border-top: 0.5px solid var(--gray3);
      margin: 0
  }

  .sn-tag {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--lime);
      border: .5px solid rgba(200, 245, 63, .25);
      padding: 3px 10px;
      border-radius: 2px
  }

  .section {
      padding: 7rem 0
  }

  /* ── BUTTONS ── */
  .btn-sn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: .8rem 2rem;
      border-radius: 2px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: .5px;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      background: var(--lime);
      color: var(--black);
      border: none
  }

  .btn-sn-primary:hover {
      background: var(--lime-dim);
      transform: translateY(-1px);
      color: var(--black)
  }

  .btn-sn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: .8rem 2rem;
      border-radius: 2px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: .5px;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      background: transparent;
      color: var(--white);
      border: .5px solid var(--gray4)
  }

  .btn-sn-ghost:hover {
      border-color: var(--gray6);
      transform: translateY(-1px);
      color: var(--white)
  }

  /* ── NAV (Bootstrap Overrides) ── */
  .navbar-sn {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1050;
      background: rgba(0, 0, 0, .92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: .5px solid var(--gray3);
      padding-top: 20px;
      padding-bottom: 20px;
  }

  .navbar-sn .navbar-brand {
      font-family: var(--font-display);
      font-size: 26px;
      letter-spacing: 4px;
      color: var(--white) !important;
      padding: 0
  }

  .navbar-sn .navbar-brand span {
      color: var(--lime)
  }

  .navbar-sn .nav-link {
      color: var(--text-secondary) !important;
      font-size: 13px;
      font-family: var(--font-mono);
      letter-spacing: 1px;
      transition: color .2s;
      padding: .4rem 0 !important
  }

  .navbar-sn .nav-link:hover,
  .navbar-sn .nav-link:focus {
      color: var(--white) !important
  }

  .navbar-sn .nav-cta {
      background: var(--lime) !important;
      color: var(--black) !important;
      padding: .4rem 1.2rem !important;
      border-radius: 2px;
      font-weight: 500 !important;
      text-transform: uppercase;
  }

  .navbar-sn .navbar-toggler {
      border: .5px solid var(--gray4);
      padding: 4px 8px;
      border-radius: 2px
  }

  .navbar-sn .navbar-toggler:focus {
      box-shadow: none;
      border-color: var(--gray6)
  }

  .navbar-sn .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      width: 18px;
      height: 18px
  }

  /* Offcanvas dark theme */
  .offcanvas-sn {
      background: rgba(0, 0, 0, .98) !important;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-left: .5px solid var(--gray3) !important;
      z-index: 1060 !important
  }

  .offcanvas-sn .offcanvas-header {
      border-bottom: .5px solid var(--gray3)
  }

  .offcanvas-sn .btn-close {
      filter: invert(1);
      opacity: .6
  }

  .offcanvas-sn .btn-close:hover {
      opacity: 1
  }

  .offcanvas-sn .nav-link {
      font-family: var(--font-display);
      font-size: 28px !important;
      letter-spacing: 4px;
      color: var(--white) !important;
      padding: .75rem 0 !important;
      transition: color .2s
  }

  .offcanvas-sn .nav-link:hover {
      color: #ffffff !important
  }

  .offcanvas-sn .nav-cta {
      font-size: 16px !important;
      margin-top: 1rem
  }

  .offcanvas-sn .nav-cta {
      font-size: 26px !important;
      margin-top: 1rem;
      background-color: #63e600;
      padding: 11px !important;
      color: #000000 !important;
  }



  /* ── HERO ── */
  .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 9rem 2rem 5rem;
      position: relative;
      overflow: hidden
  }

  .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
      opacity: .08;
      pointer-events: none;
      filter: grayscale(100%)
  }

  .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none
  }

  .hero-glow {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 320px;
      background: radial-gradient(ellipse, rgba(200, 245, 63, .06) 0%, transparent 70%);
      pointer-events: none
  }

  .hero-title .accent {
      color: var(--lime);
      display: block
  }

  .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2.5rem
  }

  .hero-mockup {
      width: 100%;
      max-width: 860px;
      margin: 4rem auto 0;
      position: relative
  }

  .mockup-frame {
      background: #080808;
      border: .5px solid var(--gray3);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0, 0, 0, .6)
  }

  .mockup-bar {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 11px 16px;
      border-bottom: .5px solid var(--gray3);
      background: #060606
  }

  .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--gray4)
  }

  .mockup-url {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-secondary);
      margin-left: 10px
  }

  .mockup-url span {
      color: var(--lime)
  }

  .mockup-body {
      display: grid;
      grid-template-columns: 200px 1fr;
      height: 400px
  }

  .mock-sidebar {
      border-right: .5px solid var(--gray3);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: .6rem;
      overflow: hidden
  }

  .sidebar-lbl {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--text-secondary);
      text-transform: uppercase;
      margin-bottom: .2rem
  }

  .pcard {
      background: #0d0d0d;
      border: .5px solid var(--gray3);
      border-radius: 3px;
      padding: .6rem .8rem;
      cursor: pointer;
      transition: border-color .2s
  }

  .pcard.active {
      border-color: var(--lime);
      background: rgba(200, 245, 63, .03)
  }

  .pid {
      font-family: var(--font-mono);
      font-size: 9px;
      color: var(--lime);
      margin-bottom: 2px
  }

  .pname {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.88);
      font-weight: 500
  }

  .pmeta {
      font-size: 10px;
      color: var(--text-secondary);
      margin-top: 1px
  }

  .pstatus {
      display: inline-block;
      font-size: 8px;
      font-family: var(--font-mono);
      letter-spacing: 1px;
      padding: 2px 6px;
      border-radius: 2px;
      margin-top: 4px
  }

  .s-a {
      background: rgba(200, 245, 63, .1);
      color: var(--lime)
  }

  .s-p {
      background: rgba(255, 180, 0, .1);
      color: var(--amber)
  }

  .s-r {
      background: rgba(255, 68, 68, .1);
      color: var(--red)
  }

  .mock-map {
      position: relative;
      background: #060606;
      overflow: hidden
  }

  .scanline {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: rgba(200, 245, 63, .07);
      animation: scanDown 4s linear infinite
  }

  @keyframes scanDown {
      0% {
          top: -4px;
          opacity: .8
      }

      100% {
          top: 100%;
          opacity: 0
      }
  }

  /* ── STATS ── */
  .stats-bar {
      border-top: .5px solid var(--gray3);
      border-bottom: .5px solid var(--gray3)
  }

  .stat-cell {
      padding: 2.5rem 1rem;
      text-align: center;
      border-right: .5px solid var(--gray3)
  }

  .stat-cell:last-child {
      border-right: none
  }

  .stat-num {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 56px);
      letter-spacing: 2px;
      color: var(--lime);
      line-height: 1
  }

  .stat-lbl {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-top: .4rem
  }

  /* ── IMAGE CARD ── */
  .img-card {
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      background: var(--gray2)
  }

  .img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: grayscale(20%)brightness(.85);
      transition: filter .4s
  }

  .img-card:hover img {
      filter: grayscale(0%)brightness(1)
  }

  .img-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: .75rem 1rem;
      background: linear-gradient(transparent, rgba(0, 0, 0, .85));
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-secondary);
      letter-spacing: 1px
  }

  /* ── GRID CELLS (Challenges, Features, Builders, Buyers) ── */
  .grid-bordered {
      background: var(--gray3);
      border: .5px solid var(--gray3)
  }

  .grid-cell {
      background: var(--black);
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: background .2s;
      height: 100%
  }

  .grid-cell:hover {
      background: var(--gray1)
  }

  .grid-cell::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--lime);
      transition: width .3s
  }

  .grid-cell:hover::before {
      width: 100%
  }

  .cell-num {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-secondary);
      letter-spacing: 2px;
      margin-bottom: .6rem
  }

  .cell-title {
      font-family: var(--font-display);
      font-size: 21px;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: .5rem
  }

  .cell-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
      font-weight: 300
  }

  /* Feature cells - bottom line variant */
  .feature-cell {
      background: var(--black);
      padding: 2.2rem;
      position: relative;
      overflow: hidden;
      transition: background .2s;
      height: 100%
  }

  .feature-cell:hover {
      background: var(--gray1)
  }

  .feature-cell::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--lime);
      transition: width .35s
  }

  .feature-cell:hover::after {
      width: 100%
  }

  .f-num {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 2px;
      margin-bottom: .5rem
  }

  .f-img img {
      width: 100px;
      height: 100%;
      object-fit: cover;
      border-radius: 3px;
      border: 0.1px solid #63e600;
  }

  .f-img {
      margin-bottom: 10px;
  }

  .f-title {
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: .5rem
  }

  .f-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
      font-weight: 300
  }

  /* ── PLATFORM CAPABILITIES ── */
  #features.capabilities-section {
      padding: clamp(4rem, 6vw, 5.5rem) 0;
      position: relative;
  }

  .capabilities-header {
      max-width: 780px;
      margin-bottom: 2.75rem;
  }

  .capabilities-eyebrow {
      display: inline-block;
      margin-bottom: 0.75rem;
  }

  .capabilities-heading {
      font-size: clamp(2.1rem, 4.5vw, 3.5rem);
      line-height: 1.08;
      letter-spacing: 0.02em;
      margin-bottom: 1rem;
      background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.78) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
  }

  .capabilities-desc {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text-body);
      font-weight: 300;
      margin: 0 auto;
      max-width: 58ch;
  }

  .capabilities-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.875rem;
      align-items: stretch;
  }

  @media (min-width: 768px) {
      .capabilities-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 1rem;
      }
  }

  @media (min-width: 992px) {
      .capabilities-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
          gap: 1rem;
      }
  }

  .cap-card {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 1.125rem 1.375rem;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
      transition:
          transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.35s ease,
          border-color 0.35s ease;
  }

  .cap-card:hover {
      transform: translateY(-4px);
      border-color: rgba(98, 255, 0, 0.18);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
  }

  .cap-head {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
  }

  .cap-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--lime);
      background: rgba(255, 255, 255, 0.05);
      transition: box-shadow 0.35s ease, background 0.35s ease;
  }

  .cap-icon svg {
      width: 20px;
      height: 20px;
  }

  .cap-card:hover .cap-icon {
      background: rgba(99, 230, 0, 0.08);
      box-shadow: 0 0 20px rgba(99, 230, 0, 0.16);
  }

  .cap-title {
      flex: 1;
      min-width: 0;
      font-family: var(--font-body);
      font-size: clamp(1.0625rem, 1.05vw, 1.1875rem);
      font-weight: 600;
      letter-spacing: -0.01em;
      color: rgba(255, 255, 255, 0.88);
      margin: 0;
      line-height: 1.3;
  }

  .cap-desc {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 400;
      margin: 0;
  }

  .cap-card:hover .cap-desc {
      color: rgba(255, 255, 255, 0.92);
  }

  /* Builder cells - left line variant */
  .builder-cell {
      background: var(--black);
      padding: 2rem;
      position: relative;
      transition: background .2s;
      height: 100%
  }

  .builder-cell:hover {
      background: var(--gray1)
  }

  .builder-cell::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 2px;
      height: 0;
      background: var(--lime);
      transition: height .3s
  }

  .builder-cell:hover::before {
      height: 100%
  }

  .b-title {
      font-size: 15px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: .4rem
  }

  .b-desc {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.7
  }

  /* Buyer cells */
  .buyer-cell {
      background: var(--black);
      padding: 2rem;
      transition: background .2s;
      height: 100%
  }

  .buyer-cell:hover {
      background: var(--gray1)
  }

  /* ── HOW IT WORKS ── */
  .how-section {
      padding: clamp(4rem, 6vw, 5.5rem) 0;
  }

  .how-header {
      max-width: 720px;
      margin-bottom: 2.5rem;
  }

  .how-heading {
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.05;
      letter-spacing: 0.02em;
      margin-bottom: 1rem;
  }

  .how-desc {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text-body);
      font-weight: 300;
      margin: 0;
  }

  .how-steps-wrap {
      position: relative;
  }

  .how-timeline-rail {
      position: absolute;
      top: 11px;
      left: calc(16.666% + 12px);
      right: calc(16.666% + 12px);
      height: 2px;
      z-index: 0;
      pointer-events: none;
  }

  .how-timeline-track {
      position: relative;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 999px;
      overflow: hidden;
  }

  .how-timeline-fill {
      position: absolute;
      inset: 0 auto 0 0;
      width: 0;
      background: linear-gradient(90deg, rgba(99, 230, 0, 0.35), rgba(99, 230, 0, 0.85));
      border-radius: inherit;
      box-shadow: 0 0 12px rgba(99, 230, 0, 0.35);
      animation: how-progress 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  @keyframes how-progress {
      to { width: 100%; }
  }

  @keyframes how-progress-vertical {
      to { height: 100%; }
  }

  .how-step-col {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: stretch;
  }

  .how-marker {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
  }

  .how-marker-dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--black);
      border: 2px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.4);
      transition:
          border-color 0.35s ease,
          box-shadow 0.35s ease,
          background 0.35s ease;
  }

  .how-marker-num {
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      letter-spacing: 0.16em;
      color: rgba(255, 255, 255, 0.72);
      transition: color 0.35s ease;
  }

  .how-step-col:hover .how-marker-dot {
      border-color: rgba(99, 230, 0, 0.75);
      background: rgba(99, 230, 0, 0.12);
      box-shadow:
          0 0 0 4px rgba(0, 0, 0, 0.4),
          0 0 18px rgba(99, 230, 0, 0.35);
  }

  .how-step-col:hover .how-marker-num {
      color: rgba(99, 230, 0, 0.85);
  }

  .how-step-card {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      min-height: 0;
      height: 100%;
      padding: 1rem 1.15rem 1.1rem;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition:
          transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.35s ease,
          border-color 0.35s ease;
  }

  .how-step-col:hover .how-step-card {
      transform: translateY(-4px);
      border-color: rgba(98, 255, 0, 0.18);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
  }

  .how-step-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 12px;
  }

  .how-step-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--lime);
      background: rgba(99, 230, 0, 0.08);
      margin: 0;
      flex-shrink: 0;
      transition: box-shadow 0.35s ease, background 0.35s ease;
  }

  .how-step-icon svg {
      width: 24px;
      height: 24px;
  }

  .how-step-col:hover .how-step-icon {
      background: rgba(99, 230, 0, 0.12);
      box-shadow: 0 0 24px rgba(99, 230, 0, 0.2);
  }

  .how-step-title {
      font-family: var(--font-body);
      font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--white);
      margin: 0 !important;
      line-height: 1.15;
  }

  .how-step-desc {
      font-size: 0.875rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.82);
      font-weight: 400;
      margin: 0 0 0.75rem;
  }

  @media (max-width: 767.98px) {
      .how-step-header {
          gap: 12px;
          margin-bottom: 10px;
      }

      .how-step-icon {
          width: 44px;
          height: 44px;
      }

      .how-step-icon svg {
          width: 22px;
          height: 22px;
      }
  }

  .how-step-highlights {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
  }

  .how-step-highlights li {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.8125rem;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.92);
      transition: color 0.35s ease;
  }

  .how-step-highlights li::before {
      content: "✓";
      flex-shrink: 0;
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--lime);
      opacity: 0.85;
  }

  .how-step-col:hover .how-step-highlights li {
      color: rgba(255, 255, 255, 0.72);
  }

  @media (max-width: 767.98px) {
      .how-timeline-rail {
          top: 5px;
          bottom: 8%;
          left: 4px;
          right: auto;
          width: 2px;
          height: auto;
      }

      .how-timeline-track {
          width: 100%;
          height: 100%;
      }

      .how-timeline-fill {
          width: 100% !important;
          height: 0;
          inset: 0 auto auto 0;
          background: linear-gradient(180deg, rgba(99, 230, 0, 0.35), rgba(99, 230, 0, 0.85));
          box-shadow: 0 0 10px rgba(99, 230, 0, 0.3);
          animation: how-progress-vertical 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      .how-steps-wrap {
          padding-left: 0.35rem;
      }

      .how-marker {
          flex-direction: row;
          justify-content: flex-start;
          gap: 0.65rem;
          margin-bottom: 0.75rem;
      }

      .how-marker-dot {
          width: 10px;
          height: 10px;
          box-shadow: none;
      }

      .how-step-col:hover .how-marker-dot {
          box-shadow: 0 0 12px rgba(99, 230, 0, 0.35);
      }
  }

  /* ── IMG GALLERY ── */
  .gallery-img {
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      background: var(--gray2)
  }

  .gallery-img img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      filter: grayscale(15%)brightness(.8);
      transition: filter .4s, transform .4s
  }

  .gallery-img:hover img {
      filter: grayscale(0%)brightness(1);
      transform: scale(1.03)
  }

  .gallery-img.tall img {
      height: 340px
  }

  .g-label {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, .75);
      border: .5px solid var(--gray4);
      border-radius: 2px;
      font-family: var(--font-mono);
      font-size: 9px;
      color: var(--lime);
      padding: 3px 8px;
      letter-spacing: 1px
  }

  /* ── CTA ── */
  .cta-band {
      border-top: .5px solid var(--gray3);
      border-bottom: .5px solid var(--gray3);
      padding: 6rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden
  }

  .cta-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80') center/cover no-repeat;
      opacity: .05;
      pointer-events: none;
      filter: grayscale(100%)
  }

  .cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 240px;
      background: radial-gradient(ellipse, rgba(200, 245, 63, .05) 0%, transparent 70%);
      pointer-events: none
  }

  .cta-title {
      font-family: var(--font-display);
      font-size: clamp(48px, 8vw, 96px);
      letter-spacing: 5px;
      line-height: .95;
      color: var(--white);
      margin-bottom: 2rem
  }

  .cta-desc {
      color: var(--text-body);
      font-size: 14px;
      margin-bottom: 2.5rem;
      font-weight: 300;
      letter-spacing: 0.3px;
      line-height: 1.7;
  }

  /* ── FOOTER ── */
  footer {
      padding: 2.5rem 0 0;
      border-top: .5px solid var(--gray3)
  }

  footer .app-footer {
      margin-top: 2rem;
  }

  .app-footer {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.78);
      text-align: center;
      padding: 8px 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      line-height: 1.35;
      min-height: 32px;
  }

  .app-footer a {
      color: inherit;
      text-decoration: none;
      font-weight: 600;
  }

  .app-footer a:hover {
      color: #62ff00;
  }

  @media (max-width: 480px) {
      .app-footer {
          font-size: 11px;
          padding: 6px 12px;
          line-height: 1.45;
      }
  }

  .footer-logo {
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: 4px;
      color: var(--white)
  }

  .footer-logo span {
      color: var(--lime)
  }

  .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      padding: 0;
      margin: 0;
      flex-wrap: wrap
  }

  .footer-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 12px;
      font-family: var(--font-mono);
      letter-spacing: 1px;
      transition: color .2s
  }

  .footer-links a:hover {
      color: var(--white)
  }

  .footer-copy {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 1px
  }

  /* ── AUDIENCE (Built for Everyone) ── */
  #built-for-everyone.audience-section {
      position: relative;
      overflow: hidden;
      padding: clamp(3rem, 5vw, 4.5rem) 0;
  }

  .audience-bg-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.35;
      background-image:
          linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse at center, #000 35%, transparent 78%);
      pointer-events: none;
  }

  .audience-bg-glow {
      position: absolute;
      pointer-events: none;
      border-radius: 50%;
      filter: blur(40px);
  }

  .audience-bg-glow--green {
      top: 18%;
      left: 8%;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(99, 230, 0, 0.12) 0%, transparent 70%);
  }

  .audience-bg-glow--blue {
      top: 22%;
      right: 6%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(70, 98, 252, 0.1) 0%, transparent 70%);
  }

  .audience-bg-radial {
      position: absolute;
      top: 55%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: min(680px, 90vw);
      height: 420px;
      background: radial-gradient(circle, rgba(99, 230, 0, 0.06) 0%, rgba(70, 98, 252, 0.05) 45%, transparent 72%);
      pointer-events: none;
  }

  .audience-header {
      position: relative;
      z-index: 1;
      margin-bottom: 1.35rem;
  }

  .audience-eyebrow {
      display: inline-block;
      margin-bottom: 0.55rem !important;
  }

  .audience-heading {
      background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.78) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: none;
      filter: drop-shadow(0 0 28px rgba(99, 230, 0, 0.12));
      margin-bottom: 0.65rem !important;
  }

  .audience-subtitle {
      max-width: 640px;
      margin: 0 auto;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-body);
      font-weight: 300;
  }

  .audience-stats {
      position: relative;
      z-index: 1;
      margin-bottom: 1.35rem;
      max-width: 920px;
      margin-left: auto;
      margin-right: auto;
  }

  .audience-stat {
      height: 100%;
      padding: 0.85rem 0.75rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(255, 255, 255, 0.02);
      backdrop-filter: blur(8px);
      text-align: center;
      transition: border-color 0.25s ease, background 0.25s ease;
  }

  .audience-stat:hover {
      border-color: rgba(99, 230, 0, 0.22);
      background: rgba(99, 230, 0, 0.04);
  }

  .audience-stat-value {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 2.5vw, 1.75rem);
      letter-spacing: 0.06em;
      color: var(--white);
      line-height: 1.1;
  }

  .audience-stat-label {
      margin-top: 0.25rem;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-secondary);
  }

  .audience-wrapper {
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
      max-width: 1080px;
      margin: 0 auto;
      gap: 0;
  }

  @media (min-width: 992px) {
      .audience-wrapper {
          flex-direction: row;
          align-items: stretch;
          min-height: 520px;
      }
  }

  .audience-box {
      flex: 1;
      position: relative;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(12, 12, 12, 0.55);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      overflow: hidden;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .audience-box-inner {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 1.35rem 1.25rem 1.15rem;
  }

  @media (min-width: 992px) {
      .audience-box-inner {
          padding: 1.5rem 1.45rem 1.25rem;
      }
  }

  .dev-box {
      background:
          linear-gradient(145deg, rgba(99, 230, 0, 0.08) 0%, rgba(12, 12, 12, 0.72) 42%, rgba(10, 10, 10, 0.85) 100%);
      box-shadow: inset 0 1px 0 rgba(99, 230, 0, 0.08);
  }

  .buyer-box {
      background:
          linear-gradient(145deg, rgba(70, 98, 252, 0.08) 0%, rgba(12, 12, 12, 0.72) 42%, rgba(10, 10, 10, 0.85) 100%);
      box-shadow: inset 0 1px 0 rgba(70, 98, 252, 0.08);
  }

  .dev-box:hover {
      transform: translateY(-8px);
      border-color: rgba(99, 230, 0, 0.35);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 32px rgba(99, 230, 0, 0.1);
  }

  .buyer-box:hover {
      transform: translateY(-8px);
      border-color: rgba(70, 98, 252, 0.35);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 32px rgba(70, 98, 252, 0.1);
  }

  .audience-icon-large {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 1.35rem;
      flex-shrink: 0;
  }

  .audience-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
  }

  .audience-card-icon,
  .audience-card .audience-icon-large {
      margin: 0 !important;
  }

  .audience-content {
      display: flex;
      flex-direction: column;
      flex: 1;
  }

  .audience-title,
  .audience-card-title,
  .audience-card h3 {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 2.5vw, 1.65rem);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin: 0 !important;
      line-height: 1.1;
  }

  .audience-lead {
      font-size: 0.88rem;
      line-height: 1.5;
      color: var(--text-body);
      font-weight: 300;
      margin-bottom: 0.85rem;
  }

  @media (max-width: 767.98px) {
      .audience-card-header {
          gap: 12px;
          margin-bottom: 12px;
      }

      .audience-card-icon,
      .audience-card .audience-icon-large {
          width: 44px;
          height: 44px;
          font-size: 1.15rem;
      }
  }

  .dev-icon {
      background: rgba(99, 230, 0, 0.12);
      color: var(--lime);
      box-shadow: 0 8px 24px rgba(99, 230, 0, 0.14);
  }

  .buyer-icon {
      background: rgba(70, 98, 252, 0.12);
      color: var(--amber);
      box-shadow: 0 8px 24px rgba(70, 98, 252, 0.14);
  }

  .audience-features {
      list-style: none;
      padding: 0;
      margin: 0 0 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      flex: 1;
  }

  .audience-features li {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.84rem;
      color: var(--text-secondary);
      transition: color 0.25s ease;
  }

  .audience-box:hover .audience-features li {
      color: rgba(255, 255, 255, 0.88);
  }

  .check {
      font-size: 0.62rem;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      flex-shrink: 0;
  }

  .dev-check {
      background: rgba(99, 230, 0, 0.12);
      color: var(--lime);
  }

  .buyer-check {
      background: rgba(70, 98, 252, 0.12);
      color: var(--amber);
  }

  .audience-footer {
      margin-top: auto;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
  }

  .dev-footer {
      color: rgba(168, 212, 48, 0.9);
  }

  .buyer-footer {
      color: rgba(120, 150, 255, 0.95);
  }

  .audience-divider {
      display: none;
      align-items: center;
      justify-content: center;
      position: relative;
      flex-shrink: 0;
  }

  @media (min-width: 992px) {
      .audience-divider {
          display: flex;
          width: 88px;
          padding: 0 0.25rem;
      }
  }

  @media (max-width: 991.98px) {
      .audience-divider {
          display: flex;
          width: 100%;
          align-items: center;
          justify-content: center;
      }
  }

  @keyframes audienceBeamHorizontal {
      0% { left: -40%; opacity: 0; }
      20% { opacity: 1; }
      100% { left: 100%; opacity: 0; }
  }

  .audience-divider-bridge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      width: 100%;
      height: 100%;
      position: relative;
  }

  .audience-divider-label {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.72);
      white-space: nowrap;
  }

  .audience-divider-line {
      flex: 1;
      width: 2px;
      min-height: 72px;
      border-radius: 999px;
      background: linear-gradient(to bottom, transparent, rgba(99, 230, 0.35), rgba(70, 98, 252, 0.35), transparent);
      position: relative;
      overflow: hidden;
  }

  .audience-divider-line::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.55), transparent);
      animation: audienceBeam 2.8s ease-in-out infinite;
  }

  @keyframes audienceBeam {
      0% { top: -40%; opacity: 0; }
      20% { opacity: 1; }
      100% { top: 100%; opacity: 0; }
  }

  .sync-icon.audience-marker {
      width: 44px;
      height: 44px;
      background: rgba(8, 8, 8, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--lime);
      font-size: 1.1rem;
      z-index: 2;
      box-shadow:
          0 0 0 4px rgba(99, 230, 0, 0.08),
          0 0 24px rgba(99, 230, 0, 0.22),
          0 0 18px rgba(70, 98, 252, 0.15);
      animation: audiencePulse 2.4s ease-in-out infinite;
  }

  @keyframes audiencePulse {
      0%, 100% {
          transform: scale(1);
          box-shadow:
              0 0 0 4px rgba(99, 230, 0, 0.08),
              0 0 24px rgba(99, 230, 0, 0.22),
              0 0 18px rgba(70, 98, 252, 0.15);
      }
      50% {
          transform: scale(1.06);
          box-shadow:
              0 0 0 8px rgba(99, 230, 0, 0.06),
              0 0 36px rgba(99, 230, 0, 0.32),
              0 0 28px rgba(70, 98, 252, 0.22);
      }
  }

  /* Mobile / tablet: horizontal bridge (must follow base column rules) */
  @media (max-width: 991.98px) {
      .audience-divider {
          padding: 0.75rem 0;
      }

      .audience-divider-bridge {
          display: flex !important;
          flex-direction: row !important;
          flex-wrap: nowrap !important;
          align-items: center !important;
          justify-content: center !important;
          gap: 0.5rem;
          width: 100%;
          max-width: 100%;
          height: auto !important;
          padding: 0 0.75rem;
      }

      .audience-divider-line {
          flex: 1 1 auto !important;
          height: 2px !important;
          width: auto !important;
          min-width: 30px !important;
          min-height: 0 !important;
          background: linear-gradient(to right, transparent, rgba(99, 230, 0, 0.35), rgba(70, 98, 252, 0.35), transparent);
      }

      .audience-divider-line--left {
          background: linear-gradient(to right, rgba(99, 230, 0, 0.4), rgba(99, 230, 0, 0.12), transparent) !important;
      }

      .audience-divider-line--right {
          background: linear-gradient(to right, transparent, rgba(70, 98, 252, 0.12), rgba(70, 98, 252, 0.4)) !important;
      }

      .audience-divider-line::after {
          top: 0 !important;
          left: -40%;
          right: auto !important;
          width: 40%;
          height: 100% !important;
          background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.55), transparent);
          animation: audienceBeamHorizontal 2.8s ease-in-out infinite;
      }

      .audience-divider-label {
          writing-mode: horizontal-tb !important;
          transform: none !important;
          font-size: 0.65rem;
          white-space: nowrap;
          flex-shrink: 0;
      }

      .sync-icon.audience-marker {
          width: 44px;
          height: 44px;
          flex-shrink: 0;
      }
  }

  @media (max-width: 991.98px) {
      .audience-wrapper {
          gap: 0.85rem;
      }

      .audience-box-inner {
          min-height: 100%;
      }

      .dev-box,
      .buyer-box {
          min-height: 0;
      }
  }

  /* ── COMPARISON (Premium SaaS) ── */
  #comparison.section-comparison {
      padding: clamp(2.75rem, 4vw, 3.75rem) 0;
  }

  #comparison .sn-label {
      margin-bottom: 0.65rem;
  }

  #comparison .comparison-grid {
      margin-top: 0.85rem;
  }

  @media (min-width: 992px) {
      #comparison .comparison-grid {
          margin-top: 1.1rem;
      }
  }

  .comparison-grid {
      position: relative;
  }

  .comp-card {
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .comp-card--traditional {
      background: linear-gradient(165deg, #121212 0%, #0a0a0a 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }

  .comp-card--traditional:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 68, 68, 0.22);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  }

  .comp-card--bhuminetra {
      background: linear-gradient(155deg, rgba(16, 24, 8, 0.98) 0%, rgba(6, 10, 4, 0.98) 100%);
      border: 1px solid rgba(99, 230, 0, 0.28);
      box-shadow:
          0 24px 60px rgba(0, 0, 0, 0.45),
          0 0 0 1px rgba(99, 230, 0, 0.06) inset,
          0 0 40px rgba(99, 230, 0, 0.06);
  }

  .comp-card--bhuminetra:hover {
      transform: translateY(-4px);
      border-color: rgba(99, 230, 0, 0.45);
      box-shadow:
          0 28px 70px rgba(0, 0, 0, 0.5),
          0 0 0 1px rgba(99, 230, 0, 0.1) inset,
          0 0 55px rgba(99, 230, 0, 0.12);
  }

  @media (min-width: 992px) {
      .comp-card--bhuminetra {
          transform: translateY(-3px);
      }

      .comp-card--bhuminetra:hover {
          transform: translateY(-6px);
      }
  }

  .comp-card-hero {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      padding: 0.85rem 1rem;
  }

  @media (max-width: 767.98px) {
      .comp-card-hero {
          display: grid;
          grid-template-columns: 40px 1fr;
          column-gap: 12px;
          row-gap: 8px;
          align-items: start;
          padding: 0.85rem 1rem;
      }

      .comp-card-hero--bhuminetra {
          padding-top: 1.35rem;
      }

      .comp-hero-icon {
          grid-column: 1;
          grid-row: 1;
          display: block;
          margin-bottom: 0;
          align-self: center;
      }

      .comp-hero-icon-item:not(:first-child) {
          display: none;
      }

      .comp-hero-icon-item:first-child {
          width: 40px;
          height: 40px;
          font-size: 1rem;
      }

      .comp-card-hero > div:not(.comp-hero-icon) {
          grid-column: 2;
          grid-row: 1 / span 2;
          min-width: 0;
      }

      .comp-card-title {
          margin: 0 0 0.35rem;
          font-size: 1.5rem;
          line-height: 1.2;
      }

      .comp-card-subtitle {
          margin: 0;
      }
  }

  @media (min-width: 768px) {
      .comp-card-hero {
          display: flex;
          flex-direction: row;
          align-items: center;
      }
  }

  @media (min-width: 768px) {
      .comp-hero-icon {
          display: grid;
      }

      .comp-hero-icon-item:not(:first-child) {
          display: inline-flex;
      }
  }

  @media (min-width: 992px) {
      .comp-card-hero {
          padding: 0.95rem 1.15rem;
      }
  }


  .comp-card-hero--traditional {
      background: linear-gradient(180deg, rgba(255, 68, 68, 0.04) 0%, transparent 100%);
  }

  .comp-card-hero--bhuminetra {
      background: linear-gradient(180deg, rgba(99, 230, 0, 0.08) 0%, transparent 100%);
      padding-top: 1.45rem;
  }

  .comp-card-body {
      display: flex;
      flex-direction: column;
      padding: 0.6rem 0.85rem 0.75rem;
      gap: 0.28rem;
  }

  @media (min-width: 992px) {
      .comp-card-body {
          padding: 0.65rem 0.95rem 0.85rem;
          gap: 0.32rem;
      }
  }

  .comp-hero-icon {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.32rem;
      flex-shrink: 0;
  }

  .comp-hero-icon-item {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.88rem;
  }

  .comp-hero-icon--traditional .comp-hero-icon-item {
      background: rgba(255, 68, 68, 0.08);
      border: 1px solid rgba(255, 68, 68, 0.16);
      color: rgba(255, 120, 120, 0.85);
  }

  .comp-hero-icon--bhuminetra .comp-hero-icon-item {
      background: rgba(99, 230, 0, 0.1);
      border: 1px solid rgba(99, 230, 0, 0.22);
      color: var(--lime);
      box-shadow: 0 0 18px rgba(99, 230, 0, 0.12);
  }

  .comp-card-title {
      font-family: var(--font-display);
      font-size: clamp(1.45rem, 3vw, 1.85rem);
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.1;
  }

  .comp-card-title--accent {
      color: var(--lime);
      text-shadow: 0 0 24px rgba(99, 230, 0, 0.18);
  }

  .comp-card-subtitle {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.72);
  }

  .comp-card-subtitle--accent {
      color: rgba(168, 212, 48, 0.88);
  }

  .comp-feature-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.48rem 0.65rem;
      border-radius: 10px;
      border: 1px solid transparent;
      transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  }

  .comp-feature-content {
      flex: 1 1 auto;
      min-width: 0;
      max-width: 100%;
      padding-right: 0.35rem;
  }

  .comp-feature-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 52px;
      font-size: 1.05rem;
  }

  .comp-feature-row--traditional:hover {
      background: rgba(255, 68, 68, 0.05);
      border-color: rgba(255, 68, 68, 0.14);
      box-shadow: 0 4px 16px rgba(255, 68, 68, 0.06);
  }

  .comp-feature-row--bhuminetra:hover {
      background: rgba(99, 230, 0, 0.06);
      border-color: rgba(99, 230, 0, 0.18);
      box-shadow: 0 4px 18px rgba(99, 230, 0, 0.08);
      transform: translateX(2px);
  }

  .comp-feature-icon-wrap--bad {
      background: rgba(255, 68, 68, 0.08);
      border: 1px solid rgba(255, 68, 68, 0.14);
      color: rgba(255, 120, 120, 0.9);
  }

  .comp-feature-icon-wrap--good {
      background: rgba(99, 230, 0, 0.1);
      border: 1px solid rgba(99, 230, 0, 0.2);
      color: var(--lime);
  }

  .comp-feature-title {
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--white);
      margin: 0;
      line-height: 1.25;
  }

  .comp-feature-desc {
      font-size: 0.76rem;
      line-height: 1.4;
      color: var(--text-secondary);
      font-weight: 300;
      margin: 0.1rem 0 0;
      max-width: 36ch;
      text-wrap: pretty;
  }

  .comp-indicator {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      flex: 0 0 34px;
      align-self: center;
  }

  .comp-indicator--bad {
      background: rgba(255, 68, 68, 0.12);
      color: var(--red);
      border: 1px solid rgba(255, 68, 68, 0.22);
  }

  .comp-indicator--good {
      background: rgba(99, 230, 0, 0.14);
      color: var(--lime);
      border: 1px solid rgba(99, 230, 0, 0.28);
      box-shadow: 0 0 12px rgba(99, 230, 0, 0.18);
  }

  @media (max-width: 575.98px) {
      .comp-feature-icon-wrap {
          width: 52px;
          height: 52px;
          flex-basis: 52px;
          font-size: 1rem;
      }

      .comp-indicator {
          width: 32px;
          height: 32px;
          flex-basis: 32px;
          font-size: 0.65rem;
      }

      .comp-feature-desc {
          max-width: none;
      }
  }

  .comp-badge {
      position: absolute;
      top: 0.65rem;
      right: 0.75rem;
      z-index: 2;
      background: var(--lime);
      color: var(--black);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1px;
      padding: 4px 12px;
      border-radius: 20px;
      box-shadow: 0 4px 14px rgba(99, 230, 0, 0.35);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(22px)
      }

      to {
          opacity: 1;
          transform: translateY(0)
      }
  }

  .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease
  }

  .reveal.in {
      opacity: 1;
      transform: translateY(0)
  }

  .reveal-d1 {
      transition-delay: .1s
  }

  .reveal-d2 {
      transition-delay: .2s
  }

  .reveal-d3 {
      transition-delay: .3s
  }

  /* ── RESPONSIVE FIXES ── */
  @media(max-width:767.98px) {
      .hero {
          min-height: auto;
          padding: 7rem 1rem 3rem
      }

      .hero-title {
          font-size: clamp(36px, 9vw, 56px) !important
      }

      .mockup-body {
          grid-template-columns: 1fr
      }

      .mock-sidebar {
          display: none
      }

      .gallery-img.tall img {
          height: 220px
      }

      .gallery-img img {
          height: 180px
      }

      .cta-band {
          padding: 4rem 1rem
      }

      .stat-cell {
          border-right: none;
          border-bottom: .5px solid var(--gray3)
      }
  }

  @media(max-width:575.98px) {
      .hero {
          padding: 6rem 1rem 2.5rem
      }

      .hero-title {
          font-size: clamp(30px, 8.5vw, 42px) !important
      }

      .gallery-img img {
          height: 160px
      }

      .gallery-img.tall img {
          height: 200px
      }
  }