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

      :root {
        --bg: #060608;
        --bg2: #0a0a0e;
        --cyan: #00cfff;
        --cyan-dim: rgba(0, 207, 255, 0.12);
        --cyan-faint: rgba(0, 207, 255, 0.05);
        --gold: #f5c842;
        --gold-dim: rgba(245, 200, 66, 0.15);
        --text: #d0dde8;
        --text-dim: rgba(200, 215, 228, 0.5);
        --grid: rgba(0, 180, 255, 0.04);
        --accent: #00cfff;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background: var(--bg);
        color: var(--text);
        font-family: "Share Tech Mono", monospace;
        overflow-x: hidden;
        cursor: none;
      }

      /* ── CURSOR ── */
      #cursor {
        position: fixed;
        width: 6px;
        height: 6px;
        background: var(--cyan);
        border-radius: 0px;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 8px var(--cyan);
      }
      #cursor-ring {
        position: fixed;
        width: 19px;
        height: 19px;
        border: 1px solid rgba(0, 207, 255, 0.6);
        border-radius: 0px;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: all 0.1s ease;
      }

      /* ── GRID ── */
      .grid-bg {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background-image:
          linear-gradient(var(--grid) 1px, transparent 1px),
          linear-gradient(90deg, var(--grid) 1px, transparent 1px);
        background-size: 80px 80px;
      }
      .scanlines {
        position: fixed;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(0, 0, 0, 0.04) 2px,
          rgba(0, 0, 0, 0.04) 4px
        );
      }
      .vignette {
        position: fixed;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: radial-gradient(
          ellipse at center,
          transparent 35%,
          rgba(0, 0, 0, 0.75) 100%
        );
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 50px;
        height: 64px;
        background: rgba(6, 6, 8, 0.92);
        border-bottom: 1px solid rgba(0, 207, 255, 0.1);
        backdrop-filter: blur(16px);
      }
      .nav-logo {
        font-family: "Orbitron", monospace;
        font-size: 1.5rem;
        letter-spacing: 5px;
        color: var(--cyan);
        text-shadow: 0 0 20px rgba(0, 207, 255, 0.5);
        text-decoration: none;
      }
      .nav-right {
        display: flex;
        gap: 16px;
        align-items: center;
      }
      .nav-back {
        font-size: 0.62rem;
        letter-spacing: 3px;
        color: #e1dcdc;
        text-decoration: none;
        border: 1px solid rgba(0, 207, 255, 0.18);
        padding: 7px 18px;
        transition: all 0.25s;
      }
      .nav-back:hover {
        color: var(--cyan);
        border-color: var(--cyan);
        background: var(--cyan-faint);
      }
      .btn-brochure {
        font-size: 0.62rem;
        letter-spacing: 3px;
        color: var(--bg);
        text-decoration: none;
        background: var(--cyan);
        padding: 8px 20px;
        transition: all 0.25s;
        font-family: "Share Tech Mono", monospace;
      }
      .btn-brochure:hover {
        background: #00e8ff;
        box-shadow: 0 0 25px rgba(0, 207, 255, 0.4);
      }

      /* ── CORNER MARKS ── */
      .corner {
        position: fixed;
        width: 28px;
        height: 28px;
        z-index: 500;
        pointer-events: none;
        opacity: 0.4;
      }
      .corner::before,
      .corner::after {
        content: "";
        position: absolute;
        background: var(--cyan);
      }
      .corner::before {
        width: 100%;
        height: 1px;
        top: 50%;
      }
      .corner::after {
        height: 100%;
        width: 1px;
        left: 50%;
      }
      .corner.tl {
        top: 10px;
        left: 10px;
      }
      .corner.tr {
        top: 10px;
        right: 10px;
      }
      .corner.bl {
        bottom: 10px;
        left: 10px;
      }
      .corner.br {
        bottom: 10px;
        right: 10px;
      }

      /* ── ALL SECTIONS ── */
      section {
        position: relative;
        z-index: 10;
      }

      /* ── HERO ── */
      #hero {
        min-height: 100vh;
        padding-top: 0px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding-left: 80px;
        padding-right: 0;
        overflow: hidden;
        gap: 0;
      }

      .hero-left {
        position: relative;
        z-index: 2;
        padding-right: 40px;
      }

      .hero-badge {
        display: inline-block;
        border: 1px solid rgba(245, 200, 66, 0.4);
        padding: 5px 14px;
        font-size: 0.28rem;
        letter-spacing: 4px;
        color: var(--gold);
        margin-bottom: 28px;
        opacity: 0;
        animation: fadeUp 0.8s ease 0.2s forwards;
      }
      .hero-eyebrow {
        font-size: 0.9rem;
        letter-spacing: 5px;
        color:rgb(42 215 255 / 83%);;
        margin-bottom: 16px;
        opacity: 0;
        animation: fadeUp 0.8s ease 0.35s forwards;
      }
      .hero-title {
        font-family: "Orbitron", monospace;
        font-size: clamp(2.5rem, 7vw, 7rem);
        line-height: 0.92;
        letter-spacing: 2px;
        color: #fff;
        text-shadow: 0 0 60px rgba(0, 207, 255, 0.25);
        opacity: 0;
        animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
        margin-bottom: 20px;
      }
      .hero-title span {
        color: var(--cyan);
      }

      .hero-tagline {
        font-family: "Exo 2", sans-serif;
        font-size: clamp(0.85rem, 1.5vw, 1.1rem);
        font-weight: 300;
        color: #e1dcdc;
        letter-spacing: 2px;
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 420px;
        opacity: 0;
        animation: fadeUp 0.8s ease 0.7s forwards;
      }

      .hero-cta {
        display: flex;
        gap: 14px;
        align-items: center;
        flex-wrap: wrap;
        max-width: 420px;
        opacity: 0;
        animation: fadeUp 0.8s ease 0.9s forwards;
      }
      .btn-primary {
        display: inline-block;
        /* padding: 12px 30px; */
        background: var(--cyan);
        color: var(--bg);
        font-family: "Share Tech Mono", monospace;
        /* font-size: 0.68rem; */
        /* letter-spacing: 3px; */
        padding: 13px 10px;
        letter-spacing: 2px;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.3s;
      }
      .btn-primary:hover {
        background: #00e8ff;
        box-shadow: 0 0 30px rgba(0, 207, 255, 0.4);
      }

      .hero-stat-row {
        display: flex;
        gap: 40px;
        margin-top: 50px;
        opacity: 0;
        animation: fadeUp 0.8s ease 1.1s forwards;
      }
      .hero-stat-num {
        font-family: "Orbitron", monospace;
        font-size: 2.2rem;
        letter-spacing: 2px;
        color: var(--cyan);
        text-shadow: 0 0 20px rgba(0, 207, 255, 0.4);
        line-height: 1;
      }
      .hero-stat-label {
        font-size: 0.55rem;
        letter-spacing: 3px;
        color: #e1dcdc;
        margin-top: 4px;
      }

      /* Hero product image — right side */
      .hero-right {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
      }
      .hero-product-img {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }
      .hero-product-img img {
        /* width: 110%; */
        /* height: 100vh; */
        max-width: min(560px, 88%);
        max-height: 72vh;
        width: auto;
        height: auto;
        margin-right: 40px;
        padding: 18px;
        border: 1px solid rgba(0, 207, 255, 0.12);
        background: rgba(0, 207, 255, 0.015);
        object-fit: contain;
        object-position: center;
        mix-blend-mode: lighten;
        filter: brightness(0.95) contrast(1.05);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
        opacity: 0;
        transform: translateX(30px);
        animation: slideIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
      }

      /* subtle glow behind product */
      .hero-glow {
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 0px;
        background: radial-gradient(
          circle,
          rgba(0, 207, 255, 0.06) 0%,
          transparent 70%
        );
        pointer-events: none;
      }

      @keyframes heroReveal {
        from {
          opacity: 0;
          transform: translateY(50px);
          filter: blur(6px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
          filter: blur(0);
        }
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes slideIn {
        from {
          opacity: 0;
          transform: translateX(40px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      /* ── TAGLINE STRIP ── */
      #strip {
        border-top: 1px solid rgba(0, 207, 255, 0.1);
        border-bottom: 1px solid rgba(0, 207, 255, 0.1);
        padding: 28px 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 207, 255, 0.025);
      }
      .strip-text {
        font-family: "Orbitron", monospace;
        font-size: clamp(1rem, 2vw, 1.4rem);
        letter-spacing: 5px;
        color: var(--cyan);
        text-align: center;
        opacity: 0.8;
      }
      .strip-text span {
        color: var(--gold);
      }

      /* ── ABOUT SECTION ── */
      #about {
        padding: 130px 80px;
      }
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
      }
      /* @media (max-width: 900px) {
        .about-grid {
          grid-template-columns: 1fr;
        }
      } */

      @media (max-width: 900px) {
        .hero-product-img {
          justify-content: center;
          padding: 20px;
        }

        .hero-product-img img {
          margin-right: 0;
          max-width: 92%;
          max-height: 52vh;
        }

        .about-img-wrap,
        .range-img-wrap,
        .showcase-img img {
          max-width: 100%;
          margin-top: 59px;
        }

        .about-img-wrap img {
          max-height: 320px;
        }

        .range-img-wrap img {
          max-height: 340px;
        }

        .showcase-img img {
          max-height: 280px;
        }
      }
      .about-label {
        font-size: 0.7rem;
        letter-spacing: 5px;
        color: rgb(42 215 255 / 83%);
        margin-bottom: 12px;
      }
      .about-title {
        font-family: "Orbitron", monospace;
        font-size: clamp(2rem, 4vw, 3.5rem);
        letter-spacing: 4px;
        color: #fff;
        margin-bottom: 28px;
        line-height: 1;
      }
      .about-title span {
        color: var(--cyan);
      }
      .about-body {
        font-family: "Exo 2", sans-serif;
        font-size: 0.95rem;
        font-weight: 300;
        line-height: 2;
        color: #e1dcdc;
      }

     .about-img-wrap {
        position: relative;
        max-width: 560px;
        margin: 0 auto;
        padding: 18px;
        border: 1px solid rgba(0, 207, 255, 0.12);
        background: rgba(0, 207, 255, 0.015);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
      }

      .about-img-wrap img {
        width: 100%;
        max-height: 420px;
        display: block;
        object-fit: contain;
        mix-blend-mode: lighten;
        filter: brightness(0.92);
      }

      /* cyan corner accents */
      .about-img-wrap::before,
      .about-img-wrap::after {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        pointer-events: none;
        z-index: 2;
      }

      .about-img-wrap::before {
        top: 8px;
        left: 8px;
        border-top: 2px solid var(--cyan);
        border-left: 2px solid var(--cyan);
      }

      .about-img-wrap::after {
        right: 8px;
        bottom: 8px;
        border-right: 2px solid var(--cyan);
        border-bottom: 2px solid var(--cyan);
      }   
      /* ── SPECS ── */
      #specs {
        padding: 100px 80px;
        background: rgba(0, 207, 255, 0.018);
        border-top: 1px solid rgba(0, 207, 255, 0.08);
        border-bottom: 1px solid rgba(0, 207, 255, 0.08);
      }
      .specs-inner {
        max-width: 1300px;
        margin: 0 auto;
      }
      .specs-header {
        display: flex;
        align-items: baseline;
        gap: 20px;
        margin-bottom: 70px;
      }
      .specs-title {
        font-family: "Orbitron", monospace;
        font-size: clamp(2.5rem, 5vw, 4rem);
        letter-spacing: 5px;
        color: #fff;
      }
      .specs-title span {
        color: var(--cyan);
      }
      .specs-sub {
        font-size: 0.8rem;
        letter-spacing: 4px;
        color: #e1dcdc;
      }

      .specs-list {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }
      @media (max-width: 800px) {
        .specs-list {
          grid-template-columns: 1fr;
        }
      }

      .specs-list li {
        padding: 28px 30px;
        border: 1px solid rgba(0, 207, 255, 0.08);
        position: relative;
        transition: background 0.3s;
      }
      .specs-list li:hover {
        background: rgba(0, 207, 255, 0.04);
      }
      .specs-list li::before {
        content: "▸";
        color: var(--cyan);
        margin-right: 10px;
        font-size: 1.4rem;
      }
      .specs-list li {
        font-family: "Exo 2", sans-serif;
        font-size: 0.85rem;
        font-weight: 300;
        line-height: 1.8;
        color: #fff;
      }
      .specs-list li strong {
        color: var(--cyan)     ;
        font-weight: 600;
      }

      /* ── 50KM SHOWCASE ── */
      #range {
        padding: 32px 85px;
        position: relative;
        overflow: hidden;
      }
      .range-inner {
        max-width: 1300px;
        margin: 0 auto;
      }

      .range-img-wrap {
        position: relative;
        max-width: 1020px;
        max-height: 466px;
        margin: 30px auto 60px auto;
        padding: 18px;
        border: 1px solid rgba(0, 207, 255, 0.12);
        background: rgba(0, 207, 255, 0.015);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
      }

      .range-img-wrap img {
        width: 100%;
        /* max-height: 500px; */
        max-height: 428px;

        display: block;
        object-fit: contain;
        mix-blend-mode: lighten;
      }

      .range-img-wrap::before,
      .range-img-wrap::after {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        pointer-events: none;
        z-index: 2;
      }

      .range-img-wrap::before {
        top: 8px;
        left: 8px;
        border-top: 2px solid var(--gold);
        border-left: 2px solid var(--gold);
      }

      .range-img-wrap::after {
        right: 8px;
        bottom: 8px;
        border-right: 2px solid var(--gold);
        border-bottom: 2px solid var(--gold);
      }

      .range-cta {
        font-family: "Orbitron", monospace;
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        letter-spacing: 5px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 16px;
      }
      .range-cta span {
        color: var(--cyan);
      }
      .range-sub {
        font-family: "Exo 2", sans-serif;
        font-size: 0.85rem;
        font-weight: 300;
        color: #e1dcdc;
        letter-spacing: 2px;
      }

      /* ── USE CASES ── */
      #usecases {
        padding: 80px 80px;
      }
      .uc-inner {
        max-width: 1300px;
        margin: 0 auto;
      }

      .uc-label {
        font-size: 1rem;
        letter-spacing: 5px;
        color: rgb(42 215 255 / 83%);
        margin-bottom: 12px;
      }
      .uc-title {
        font-family: "Orbitron", monospace;
        font-size: clamp(2rem, 4vw, 3.5rem);
        letter-spacing: 4px;
        color: #fff;
        margin-bottom: 16px;
      }
      .uc-title span {
        color: var(--cyan);
      }
      .uc-intro {
        font-family: "Exo 2", sans-serif;
        font-size: 0.85rem;
        font-weight: 300;
        color: #e1dcdc;
        letter-spacing: 2px;
        margin-bottom: 70px;
      }

      .uc-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
      }
      @media (max-width: 900px) {
        .uc-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 500px) {
        .uc-grid {
          grid-template-columns: 1fr;
        }
      }

      .uc-card {
        position: relative;
        height: 340px;
        overflow: hidden;
        cursor: none;
      }
      .uc-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.45) grayscale(0.3);
        transition: all 0.5s ease;
      }
      .uc-card:hover img {
        filter: brightness(0.6) grayscale(0);
        transform: scale(1.05);
      }
      .uc-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.9) 0%,
          rgba(0, 0, 0, 0.2) 50%,
          transparent 100%
        );
        pointer-events: none;
      }
      .uc-card-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 28px 24px;
      }
      .uc-card-num {
        font-size: 0.5rem;
        letter-spacing: 4px;
        color: var(--cyan);
        margin-bottom: 8px;
        display: block;
      }
      .uc-card-name {
        font-family: "Orbitron", monospace;
        font-size: 1.6rem;
        letter-spacing: 4px;
        color: #fff;
      }
      .uc-card-desc {
        font-family: "Exo 2", sans-serif;
        font-size: 0.7rem;
        font-weight: 300;
        color: #e1dcdc;
        margin-top: 6px;
        line-height: 1.5;
      }
      /* top-left accent */
      .uc-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        border-top: 1px solid rgba(0, 207, 255, 0.5);
        border-left: 1px solid rgba(0, 207, 255, 0.5);
        z-index: 2;
        transition: all 0.3s;
      }
      .uc-card:hover::before {
        width: 30px;
        height: 30px;
        border-color: var(--cyan);
      }

      /* uc placeholder backgrounds */
      .uc-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        position: absolute;
        inset: 0;
      }
      .uc-bg-mining {
        background: linear-gradient(135deg, #1a0f00 0%, #2d1800 100%);
      }
      .uc-bg-defence {
        background: linear-gradient(135deg, #0a0f0a 0%, #0d1a10 100%);
      }
      .uc-bg-surv {
        background: linear-gradient(135deg, #050a14 0%, #071020 100%);
      }
      .uc-bg-patrol {
        background: linear-gradient(135deg, #0f0f0f 0%, #1a1005 100%);
      }
      .uc-icon {
        width: 96px;
        height: 96px;
        opacity: 0.16;
        color: rgba(255, 255, 255, 0.9);
        stroke: currentColor;
        stroke-width: 1.8;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        filter: drop-shadow(0 0 10px rgba(83, 216, 255, 0.08));
      }

      /* ── REVEAL ── */
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── FOOTER ── */
      footer {
        position: relative;
        z-index: 10;
        border-top: 1px solid rgba(0, 207, 255, 0.08);
        padding: 28px 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.58rem;
        letter-spacing: 2px;
        color: rgba(0, 207, 255, 0.2);
      }

      /* divider */
      .divider {
        border: none;
        border-top: 1px solid rgba(0, 207, 255, 0.06);
        position: relative;
        z-index: 10;
      }

      /* ── INLINE PRODUCT SHOWCASE (alternating) ── */
      #showcase {
        padding: 60px 0;
      }
      .showcase-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 520px;
        border-top: 1px solid rgba(0, 207, 255, 0.06);
      }
      .showcase-row:last-child {
        border-bottom: 1px solid rgba(0, 207, 255, 0.06);
      }
      @media (max-width: 800px) {
        .showcase-row {
          grid-template-columns: 1fr;
        }
      }

        .showcase-img {
          position: relative;
          overflow: hidden;
          background: transparent;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 22px;
        }

        .showcase-img::before,
        .showcase-img::after {
          content: "";
          position: absolute;
          width: 24px;
          height: 24px;
          pointer-events: none;
          z-index: 2;
        }

        .showcase-img::before {
          top: 10px;
          left: 10px;
          border-top: 2px solid var(--cyan);
          border-left: 2px solid var(--cyan);
        }

        .showcase-img::after {
          right: 10px;
          bottom: 10px;
          border-right: 2px solid var(--cyan);
          border-bottom: 2px solid var(--cyan);
        }

        .showcase-img img {
          width: 100%;
          max-width: 520px;
          max-height: 360px;
          height: auto;
          object-fit: contain;
          mix-blend-mode: lighten;
          filter: brightness(0.92);
          border: 1px solid rgba(0, 207, 255, 0.12);
          background: rgba(0, 207, 255, 0.015);
          padding: 18px;
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
          transition: transform 0.6s ease;
        }

        .showcase-row:hover .showcase-img img {
          transform: scale(1.02);
        }

      .showcase-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 70px;
        background: rgba(0, 207, 255, 0.015);
      }
      .showcase-row.reverse .showcase-img {
        order: 2;
      }
      .showcase-row.reverse .showcase-text {
        order: 1;
      }

      .showcase-num {
        font-size: 1rem;
        letter-spacing: 5px;
        color: rgba(0, 207, 255, 0.4);
        margin-bottom: 16px;
      }
      .showcase-name {
        font-family: "Orbitron", monospace;
        font-size: clamp(2rem, 3.5vw, 3rem);
        letter-spacing: 4px;
        color: #fff;
        margin-bottom: 20px;
        line-height: 1;
      }
      .showcase-desc {
        font-family: "Exo 2", sans-serif;
        font-size: 0.88rem;
        font-weight: 300;
        line-height: 1.9;
        color: #e1dcdc;
      }

      @media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    cursor: auto;
  }

  #cursor,
  #cursor-ring,
  .corner,
  .scanlines,
  .vignette {
    display: none !important;
  }

  nav {
    padding: 0 16px;
    height: 56px;
  }

  .nav-logo {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-back,
  .btn-brochure {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    padding: 7px 10px;
  }

  #hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 88px 18px 32px;
    gap: 20px;
  }

  .hero-left {
    padding-right: 0;
    order: 1;
  }

  .hero-right {
    order: 2;
    height: auto;
    min-height: unset;
    display: block;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
    line-height: 0.95;
    margin-bottom: 14px;
  }

  .hero-tagline {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-bottom: 22px;
  }

  .hero-cta {
    max-width: 100%;
    gap: 10px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
    padding: 12px 14px;
    letter-spacing: 1px;
  }

  .hero-stat-row {
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
  }

  .hero-stat {
    min-width: calc(50% - 8px);
  }

  .hero-stat-num {
    font-size: 1.6rem;
  }

  .hero-stat-label {
    font-size: 0.5rem;
    letter-spacing: 1.6px;
  }

  .hero-product-img {
    justify-content: center;
    height: auto;
    padding: 0;
  }

  .hero-product-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-right: 0;
    padding: 10px;
  }

  #strip {
    padding: 16px 18px;
  }

  .strip-text {
    font-size: 0.72rem;
    letter-spacing: 2px;
    line-height: 1.6;
  }

  #about,
  #specs,
  #range,
  #usecases {
    padding-left: 18px;
    padding-right: 18px;
  }

  #about {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .about-copy {
    display: contents;
  }

  .about-label {
    order: 1;
  }

  .about-title {
    order: 2;
    font-size: clamp(1.6rem, 9vw, 2.5rem);
    letter-spacing: 2px;
    line-height: 1.15;
    margin-bottom: 0;
  }

  .about-img-wrap {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 10px;
  }

  .about-img-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .about-body {
    order: 4;
    font-size: 0.95rem;
    line-height: 1.75;
  }


  #specs {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .specs-header {
    display: block;
    margin-bottom: 28px;
  }

  .specs-title {
    font-size: clamp(1.7rem, 9vw, 2.7rem);
    letter-spacing: 2px;
  }

  .specs-sub {
    display: block;
    margin-top: 8px;
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .specs-list {
    grid-template-columns: 1fr;
  }

  .specs-list li {
    padding: 18px 16px;
    font-size: 0.88rem;
    line-height: 1.7;
  }

  #range {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .range-cta {
    font-size: clamp(1.15rem, 7vw, 2rem);
    letter-spacing: 2px;
    line-height: 1.4;
  }

  .range-sub {
    font-size: 0.8rem;
    letter-spacing: 1px;
    line-height: 1.5;
  }

  .range-img-wrap {
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin: 18px 0 24px 0;
    padding: 10px;
  }

  .range-img-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  #usecases {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .uc-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .uc-title {
    font-size: clamp(1.7rem, 9vw, 2.6rem);
    letter-spacing: 2px;
  }

  .uc-intro {
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .uc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .uc-card {
    height: 260px;
  }

  footer {
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.52rem;
    line-height: 1.6;
  }
}