  *,
  *::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;
      --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(--white);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden
  }

  /* ── 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(--gray8);
      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(--gray7) !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(--gray5);
      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(--gray5);
      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: #bbb;
      font-weight: 500
  }

  .pmeta {
      font-size: 10px;
      color: var(--gray5);
      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(--gray6);
      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(--gray7);
      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(--gray5);
      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(--gray6);
      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(--gray4);
      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(--gray6);
      line-height: 1.7;
      font-weight: 300
  }

  /* 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(--gray6);
      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)
  }

  /* ── MODERN STEPS (Redesigned) ── */
  .steps-grid {
      position: relative;
      z-index: 1;
  }

  .step-card {
      background: var(--black);
      border: 1px solid var(--gray3);
      border-radius: 8px;
      padding: 2.5rem 2rem;
      position: relative;
      height: 100%;
      transition: all 0.3s ease;
      overflow: hidden;
  }

  .step-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gray3);
      transition: background 0.3s ease;
  }

  .step-card:hover {
      background: var(--gray1);
      transform: translateY(-5px);
      border-color: var(--gray4);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .step-card:hover::before {
      background: var(--lime);
  }

  .step-n-modern {
      font-family: var(--font-display);
      font-size: clamp(48px, 6vw, 64px);
      color: transparent;
      -webkit-text-stroke: 1px var(--gray4);
      line-height: 1;
      margin-bottom: 1.5rem;
      transition: all 0.3s ease;
      display: inline-block;
  }

  .step-card:hover .step-n-modern {
      color: var(--lime);
      -webkit-text-stroke: 1px transparent;
      text-shadow: 0 0 20px rgba(99, 230, 0, 0.4);
  }

  .step-title-modern {
      font-family: var(--font-display);
      font-size: 24px;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 0.8rem;
  }

  .step-desc-modern {
      font-size: 14px;
      color: var(--gray6);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 1.5rem;
  }

  .step-tag-modern {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--lime);
      background: rgba(99, 230, 0, 0.05);
      border: .5px solid rgba(200, 245, 63, .2);
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 1px;
      transition: all 0.3s ease;
  }

  .step-card:hover .step-tag-modern {
      background: rgba(99, 230, 0, 0.15);
  }

  @media (min-width: 768px) {
      .step-connector {
          position: absolute;
          top: 30%;
          right: -24px;
          width: 48px;
          height: 1px;
          background: var(--gray3);
          z-index: 2;
          transition: all 0.3s ease;
      }

      .step-card:hover .step-connector {
          background: var(--lime);
          box-shadow: 0 0 10px rgba(99, 230, 0, 0.5);
      }
  }

  /* ── 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
  }

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

  .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(--gray5);
      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(--gray4);
      letter-spacing: 1px
  }

  /* ── AUDIENCE REDESIGN ── */
  .audience-section {
      position: relative;
      overflow: hidden;
  }

  .audience-bg-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(circle, rgba(99, 230, 0, 0.05) 0%, rgba(70, 98, 252, 0.05) 50%, transparent 70%);
      pointer-events: none;
      z-index: 0;
  }

  .audience-wrapper {
      display: flex;
      flex-direction: column;
      background: rgba(12, 12, 12, 0.6);
      backdrop-filter: blur(20px);
      border: 1px solid var(--gray3);
      border-radius: 20px;
      position: relative;
      z-index: 1;
      overflow: hidden;
      max-width: 1000px;
      margin: 0 auto;
  }

  @media (min-width: 992px) {
      .audience-wrapper {
          flex-direction: row;
      }
  }

  .audience-box {
      flex: 1;
      padding: 4rem 3rem;
      position: relative;
      transition: all 0.4s ease;
  }

  .dev-box {
      background: linear-gradient(to bottom right, rgba(99, 230, 0, 0.02), transparent);
  }

  .buyer-box {
      background: linear-gradient(to bottom left, rgba(70, 98, 252, 0.02), transparent);
  }

  .audience-box:hover {
      background: rgba(20, 20, 20, 0.8);
  }

  .audience-icon-large {
      width: 72px;
      height: 72px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dev-icon {
      background: rgba(99, 230, 0, 0.1);
      color: var(--lime);
      box-shadow: 0 10px 30px rgba(99, 230, 0, 0.15);
  }

  .buyer-icon {
      background: rgba(70, 98, 252, 0.1);
      color: var(--amber);
      box-shadow: 0 10px 30px rgba(70, 98, 252, 0.15);
  }

  .audience-title {
      font-family: var(--font-display);
      font-size: 32px;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 1.5rem;
  }

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

  .audience-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      color: var(--gray7);
      transition: color 0.3s ease;
  }

  .audience-box:hover .audience-features li {
      color: var(--white);
  }

  .check {
      font-size: 12px;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
  }

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

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

  .audience-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 2rem 0;
  }

  @media (min-width: 992px) {
      .audience-divider {
          width: 2px;
          padding: 0;
          background: linear-gradient(to bottom, transparent, var(--gray3), transparent);
      }
  }

  .sync-icon {
      width: 48px;
      height: 48px;
      background: var(--black);
      border: 1px solid var(--gray3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      z-index: 2;
  }

  @media (min-width: 992px) {
      .sync-icon {
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
      }
  }

  /* ── COMPARISON ── */
  .comparison-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      position: relative;
  }

  @media (min-width: 768px) {
      .comparison-container {
          grid-template-columns: 1fr 1fr;
          gap: 0;
          align-items: center;
      }
  }

  .comp-col {
      padding: 3rem 2.5rem;
      border-radius: 12px;
      position: relative;
      transition: all 0.3s ease;
  }

  .comp-traditional {
      background: var(--black);
      border: 1px solid var(--gray3);
      color: var(--gray6);
  }

  @media (min-width: 768px) {
      .comp-traditional {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0;
          padding-right: 4rem;
      }
  }

  .comp-skynova {
      background: linear-gradient(145deg, #0d1200 0%, #060a00 100%);
      border: 1px solid rgba(99, 230, 0, 0.3);
      box-shadow: 0 20px 40px rgba(99, 230, 0, 0.05), inset 0 0 20px rgba(99, 230, 0, 0.02);
      z-index: 2;
  }

  @media (min-width: 768px) {
      .comp-skynova {
          transform: scale(1.05);
          border-radius: 12px;
      }
  }

  .comp-skynova:hover {
      box-shadow: 0 20px 50px rgba(99, 230, 0, 0.1), inset 0 0 30px rgba(99, 230, 0, 0.05);
      transform: scale(1.05) translateY(-5px);
  }

  .comp-traditional:hover {
      background: var(--gray1);
  }

  .comp-header {
      font-family: var(--font-display);
      font-size: clamp(24px, 4vw, 32px);
      letter-spacing: 2px;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--gray3);
  }

  .comp-traditional .comp-header {
      color: var(--gray5);
  }

  .comp-skynova .comp-header {
      color: var(--lime);
      border-bottom-color: rgba(99, 230, 0, 0.2);
  }

  .comp-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .comp-list li {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: clamp(14px, 2vw, 16px);
      margin-bottom: 1.2rem;
      font-weight: 300;
  }

  .comp-traditional .comp-list li {
      color: var(--gray6);
  }

  .comp-skynova .comp-list li {
      color: var(--white);
  }

  .comp-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      font-size: 12px;
      flex-shrink: 0;
  }

  .comp-icon.bad {
      background: rgba(255, 68, 68, 0.1);
      color: var(--red);
  }

  .comp-icon.good {
      background: rgba(99, 230, 0, 0.15);
      color: var(--lime);
      box-shadow: 0 0 10px rgba(99, 230, 0, 0.2);
  }

  .comp-badge {
      position: absolute;
      top: -12px;
      right: 2rem;
      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 10px rgba(99, 230, 0, 0.3);
  }

  /* ── 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
      }
  }