
        :root {
            --black: #0A0A0A;
            --dark-metal: #1A1D20;
            --gunmetal: #2C3539;
            --steel: #6A7178;  /* Lightened from #4A5158 for better contrast */
            --aluminum: #B8C0C8;  /* Lightened from #A8B0B8 for better readability */
            --silver: #D8E0E8;  /* Lightened from #C8D0D8 */
            --orange: #FF6700;
            --orange-bright: #FF8833;
            --orange-dark: #CC5200;
            --white: #F8F9FA;
            --success: #00FF88;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }
        .dm-visual {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .main-display-wrapper {
            position: relative;
            width: 100%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            cursor: zoom-in;
            border: 1px solid var(--steel);
        }

        .main-display-wrapper img#dm-main-view {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }
        /* Lightbox */
        #dm-lightbox {
            display: none;
        }
        #dm-lightbox.open {
            display: flex !important;
        }

        .main-display-wrapper:hover .zoom-overlay {
            opacity: 1;
        }

        .lifestyle-section {
            padding: 120px 0;
            background: var(--dark-metal);
            border-top: 1px solid var(--steel);
        }

        .lifestyle-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 60px;
        }

        .lifestyle-item {
            position: relative;
            background: #000;
            cursor: zoom-in;
            overflow: hidden;
            border: 1px solid var(--steel);
            transition: border-color 0.3s ease;
        }

        .lifestyle-item:hover {
            border-color: var(--orange);
        }

        .lifestyle-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
            aspect-ratio: 4 / 3;
        }

        .lifestyle-item:hover img {
            transform: scale(1.03);
        }

        .lifestyle-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 10px 14px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--orange);
        }

        .lifestyle-item .config-photo-zoom {
            position: absolute;
            top: 10px;
            right: 10px;
            bottom: auto;
            opacity: 0;
            transition: opacity 0.2s;
            pointer-events: none;
        }

        .lifestyle-item:hover .config-photo-zoom {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .lifestyle-grid {
                grid-template-columns: 1fr;
            }
        }

        .zoom-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: var(--white);
            font-family: 'Barlow Condensed';
            font-size: 18px;
            text-transform: uppercase;
        }

        .dm-thumbs {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 8px;
            margin-top: 12px;
        }

        .dm-thumb-item {
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            opacity: 0.55;
            transition: opacity 0.2s;
            border: 1px solid transparent;
            padding: 4px;
            border-radius: 3px;
        }

        .dm-thumb-item:hover {
            opacity: 0.85;
        }

        .dm-thumb-item.active {
            opacity: 1;
            border-color: var(--orange);
        }

        .dm-thumb-item img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 2px;
            display: block;
        }
        .thumb-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--aluminum);
            text-align: center;
        }

        .dm-thumb-item.active .thumb-label {
            color: var(--orange);
        }

        /* Highlight the selected color dot */
        .color-dot:active {
            transform: scale(0.9);
        }

        .color-dot:hover {
            border-color: var(--orange) !important;
            box-shadow: 0 0 10px rgba(255, 103, 0, 0.3);
        }
        /* --- NEW TYPOGRAPHY SCALE --- */

        /* Smallest technical tags (the old 11px) */
        .text-micro {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Metadata and "under-labels" (the old 12px) */
        .text-detail {
            font-size: 14px;
            color: var(--steel);
            line-height: 1.4;
            letter-spacing: 0.5px;
        }

        /* Secondary emphasis (the old 13px) */
        .text-label-sm {
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .text-label-md {
            font-size: 20px;
            font-weight: 1000;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .item-manifest {
            font-size: 11px;
            color: var(--aluminum);
            margin: 4px 0 8px 0;
            line-height: 1.4;
            font-family: 'JetBrains Mono', monospace; /* Engineering feel */
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.8;
        }

        .cart-item.addon .item-name {
            font-size: 14px;
            color: var(--silver);
        }

        .item-remove {
            font-size: 10px;
            color: var(--orange);
            cursor: pointer;
            text-decoration: underline;
            text-transform: uppercase;
        }
        /* Standard Barlow Headings (The old 20px) */
        .heading-sm {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 24px; /* Bumping slightly for premium readability */
            text-transform: uppercase;
            color: var(--silver);
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        /* --- REUSABLE UTILITIES --- */
        .flex-column-end {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            line-height: 1.2;
        }

        .quality-gap-img {
            height: 120px;
            width: auto;
            margin-bottom: 15px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .weak-link-box {
            padding: 30px 20px;
            border: 2px solid #AA0000;
            background: rgba(170, 0, 0, 0.1);
            position: relative;
        }

        .weak-link-tag {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #AA0000;
            color: white;
            padding: 4px 12px;
        }
        .weak-link-container {
            padding: 30px 20px;
            border: 2px solid #AA0000;
            background: rgba(170, 0, 0, 0.1);
            position: relative;
        }

        .weak-link-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #AA0000;
            color: white;
            padding: 4px 12px;
        }

        .quote-box {
            background: var(--black);
            border-left: 4px solid var(--orange);
            padding: 30px 40px;
            margin-bottom: 30px;
        }

        /* Background Effects */
        .background-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.04;
            background-image: 
                linear-gradient(var(--steel) 1px, transparent 1px),
                linear-gradient(90deg, var(--steel) 1px, transparent 1px);
            background-size: 40px 40px;
        }
        
        .container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--steel);
        }
        
        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 24px;
            font-weight: 900;
            letter-spacing: 2px;
            color: var(--silver);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-badge {
            background: var(--orange);
            color: var(--black);
            padding: 2px 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .header-cta {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .price-badge {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            color: var(--aluminum);
            padding: 8px 15px;
            border: 1px solid var(--steel);
            background: var(--dark-metal);
        }
        
        .buy-button {
            padding: 12px 30px;
            background: var(--orange);
            color: var(--black);
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(255, 103, 0, 0.3);
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
        }
        
        .buy-button:hover {
            background: var(--orange-bright);
            box-shadow: 0 0 40px rgba(255, 103, 0, 0.5);
            transform: translateY(-2px);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            opacity: 0.6;
        }
        .badge-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: var(--aluminum);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            padding-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to bottom, transparent, var(--black));
            pointer-events: none;
            z-index: 1;
        }

        .hero-glow {
            position: absolute;
            top: 30%;
            right: 5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,103,0,0.07) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
        }
        
        .hero .container {
            width: 100%;
        }

        .hero-visual {
            float: right;
            width: 45%;
            margin: 0 0 30px 50px;
            position: relative;
            animation: slideInRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
        }
        
        .hero-content {
            animation: slideInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
            padding-left: 0;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .overline {
            font-size: 22px;
            color: var(--orange);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .overline::before {
            content: '';
            width: 40px;
            height: 2px;
            background: var(--orange);
        }
        
        .hero-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(48px, 8vw, 72px);
            font-weight: 900;
            letter-spacing: 2px;
            color: var(--silver);
            text-transform: uppercase;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: 24px;
            color: var(--aluminum);
            margin-bottom: 30px;
            line-height: 1.5;
        }
        
        .hero-tagline {
            font-size: 18px;
            color: var(--steel);
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 500px;
        }
        
        .hero-stats {
            display: flex;
            gap: 0;
            margin-bottom: 40px;
            border: 1px solid var(--steel);
            background: var(--dark-metal);
            overflow: hidden;
        }
        
        .stat {
            display: flex;
            flex-direction: column;
            padding: 18px 28px;
            flex: 1;
            border-right: 1px solid var(--steel);
            position: relative;
            transition: background 0.3s ease;
        }

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

        .stat:hover {
            background: rgba(255,103,0,0.05);
        }

        .stat::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .stat:hover::before {
            transform: scaleX(1);
        }
        
        .stat-value {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
            text-shadow: 0 0 20px rgba(255, 103, 0, 0.3);
        }
        
        .stat-label {
            font-size: 11px;
            color: var(--aluminum);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 4px;
        }
        
        .hero-ctas {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .primary-cta {
            padding: 18px 45px;
            background: var(--orange);
            color: var(--black);
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(255, 103, 0, 0.3);
            position: relative;
            overflow: hidden;
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
        }
        
        .primary-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }
        
        .primary-cta:hover::before {
            left: 100%;
        }
        
        .primary-cta:hover {
            background: var(--orange-bright);
            transform: translateY(-2px);
            box-shadow: 0 5px 40px rgba(255, 103, 0, 0.5);
        }
        
        .secondary-cta {
            padding: 18px 45px;
            background: var(--black);
            color: var(--silver);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
        }
        .secondary-cta::before {
            content: '';
            position: absolute;
            inset: -1px;
            background: var(--steel);
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
            z-index: -1;
            transition: background 0.3s ease;
        }

        .secondary-cta:hover {
            background: rgba(255, 103, 0, 0.08);
            color: var(--black);
        }

        .secondary-cta:hover::before {
            background: var(--silver);
        }
        
  
        
        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease-out;
        }
        /* --- HERO THUMBNAIL CAROUSEL --- */
        .hero-thumbnails {
            display: flex;
            gap: 12px;
            margin-top: 25px;
            justify-content: center;
            padding: 0 10px;
            position: relative;
            z-index: 5;
        }

        .hero-thumb {
            flex: 1;
            max-width: 90px;
            aspect-ratio: 1 / 1;
            cursor: pointer;
            opacity: 0.45;
            border: 1px solid var(--steel);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            background: #000;
            overflow: hidden;
            position: relative;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

        .hero-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: grayscale(20%);
            transition: filter 0.3s ease;
        }

        .hero-thumb:hover {
            opacity: 0.85;
            border-color: var(--aluminum);
            transform: translateY(-2px);
        }

        .hero-thumb.active {
            opacity: 1;
            border-color: var(--orange);
            box-shadow: 0 0 15px rgba(255, 103, 0, 0.3);
        }

        .hero-thumb.active img {
            filter: grayscale(0%);
        }
        
        .hero-img {
            width: 100%;
            height: auto;
            display: block;
            border: 1px solid rgba(255,103,0,0.3);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255,103,0,0.06);
            transition: opacity 0.2s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
        }

        .hero-img:hover {
            border-color: var(--orange);
            transform: scale(1.015) translateY(-4px);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255,103,0,0.12);
        }


        .hero-visual::before {
            content: '';
            position: absolute;
            inset: -1px;
            background: linear-gradient(135deg, rgba(255,103,0,0.15), transparent 60%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-badge-row {
            display: flex;
            gap: 12px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .hero-badge {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            letter-spacing: 1.5px;
            color: var(--aluminum);
            padding: 5px 10px;
            border: 1px solid var(--steel);
            background: rgba(255,255,255,0.02);
            text-transform: uppercase;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Scanline texture overlay */
        body::after {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0,0,0,0.015) 2px,
                rgba(0,0,0,0.015) 4px
            );
            pointer-events: none;
            z-index: 1;
        }

        /* Improved product placeholder */
        .product-placeholder {
            aspect-ratio: 1;
            background: linear-gradient(135deg, var(--dark-metal) 0%, var(--gunmetal) 100%);
            border: 1px solid var(--steel);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
        }
        
        .product-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 103, 0, 0.08), transparent 60%);
        }

        .product-placeholder::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.008) 10px,
                rgba(255,255,255,0.008) 11px
            );
        }
        
        .placeholder-icon {
            font-size: 60px;
            opacity: 0.2;
            position: relative;
            z-index: 1;
        }
        
        .placeholder-text {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            color: var(--steel);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }
        
        /* Problem Section */
        .problem-section {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--black) 0%, var(--dark-metal) 100%);
            border-top: 1px solid var(--steel);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-label {
            font-size: 18px;
            color: var(--orange);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(40px, 6vw, 64px);
            font-weight: 900;
            letter-spacing: 2px;
            color: var(--silver);
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            font-size: 20px;
            color: var(--aluminum);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 60px;
        }
        
        .comparison-card {
            background: var(--dark-metal);
            border: 2px solid var(--steel);
            padding: 50px 40px;
            position: relative;
        }
        
        .comparison-card.bad {
            border-color: #AA0000;
        }
        
        .comparison-card.good {
            border-color: var(--orange);
            background: linear-gradient(135deg, var(--dark-metal) 0%, rgba(255, 103, 0, 0.05) 100%);
        }
        
        .comparison-label {
            position: absolute;
            top: -15px;
            left: 40px;
            padding: 5px 20px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .comparison-card.bad .comparison-label {
            background: #AA0000;
            color: var(--white);
        }
        
        .comparison-card.good .comparison-label {
            background: var(--orange);
            color: var(--black);
        }
        
        .comparison-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .comparison-list {
            list-style: none;
        }
        
        .comparison-list li {
            font-size: 16px;
            color: var(--aluminum);
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .comparison-list li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #AA0000;
            font-weight: 700;
            font-size: 20px;
        }
        
        .comparison-card.good .comparison-list li::before {
            content: '✓';
            color: var(--orange);
        }
        
        /* Feature Section */
        .features-section {
            padding: 120px 0;
            background: var(--black);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .feature-card {
            background: var(--dark-metal);
            border: 1px solid var(--steel);
            padding: 40px 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--orange);
            box-shadow: 0 10px 40px rgba(255, 103, 0, 0.2);
        }
        
        .feature-number {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 14px;
            color: var(--orange);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }
        
        .feature-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--silver);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .feature-card p {
            color: var(--aluminum);
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* Diamond Matrix Highlight Section */
        .diamond-matrix-section {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--black) 0%, var(--dark-metal) 50%, var(--black) 100%);
            border-top: 1px solid var(--steel);
            border-bottom: 1px solid var(--steel);
        }
        
        .dm-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .dm-text h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 56px;
            font-weight: 900;
            color: var(--silver);
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .dm-text h2 span {
            color: var(--orange);
            text-shadow: 0 0 30px rgba(255, 103, 0, 0.5);
        }
        
        .dm-features {
            list-style: none;
            margin-top: 40px;
        }
        
        .dm-features li {
            font-size: 18px;
            color: var(--aluminum);
            margin-bottom: 25px;
            padding-left: 40px;
            position: relative;
            line-height: 1.6;
        }
        
        .dm-features li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: var(--orange);
            font-size: 24px;
            line-height: 1;
        }
        
        .dm-features li strong {
            color: var(--silver);
            font-weight: 700;
        }
        
        /* Tech Specs */
        .specs-section {
            padding: 120px 0;
            background: var(--black);
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 60px;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--black); }
        ::-webkit-scrollbar-thumb { background: var(--steel); }
        ::-webkit-scrollbar-thumb:hover { background: var(--orange); }

        /* Spec item hover */
        .spec-item {
            background: var(--dark-metal);
            border: 1px solid rgba(255,255,255,0.06);
            padding: 28px;
            border-left: 3px solid var(--orange);
            transition: all 0.3s ease;
        }

        .spec-item:hover {
            background: rgba(255,103,0,0.04);
            border-left-color: var(--orange-bright);
            transform: translateX(3px);
        }
        
        .spec-label {
            font-size: 11px;
            color: var(--steel);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .spec-value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 18px;
            color: var(--silver);
            font-weight: 700;
        }
        
        /* Configurations */
        .config-section {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--black) 0%, var(--dark-metal) 100%);
        }
        
        .config-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-top: 60px;
            border: 1px solid var(--steel);
        }
        
        .config-card {
            background: var(--dark-metal);
            border: none;
            border-right: 1px solid var(--steel);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .config-card:last-child {
            border-right: none;
        }
        
        .config-card.featured {
            border-color: transparent;
            transform: none;
            background: linear-gradient(170deg, #1f2327 0%, rgba(255,103,0,0.07) 100%);
            box-shadow: inset 0 0 0 2px var(--orange);
            z-index: 2;
        }
        
        .config-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--orange);
            color: var(--black);
            padding: 6px 18px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            z-index: 10;
            clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%);
        }
        
        .config-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255,103,0,0.15);
            z-index: 3;
        }
         .config-card.featured:hover {
            transform: translateY(-6px);
            box-shadow: inset 0 0 0 2px var(--orange), 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255,103,0,0.3);
        }
        
        .config-card.featured .config-photos {
            border-left: 2px solid var(--orange);
            border-right: 2px solid var(--orange);
        }
        
        .config-header {
            background: rgba(0,0,0,0.3);
            padding: 35px 30px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            position: relative;
        }
        
        .config-card.featured .config-header {
            background: rgba(255,103,0,0.06);
            border-bottom-color: rgba(255,103,0,0.2);
        }
        
        .config-name {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 28px;
            font-weight: 900;
            color: var(--silver);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .config-tagline {
            font-size: 13px;
            color: var(--steel);
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .config-price {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 52px;
            font-weight: 900;
            color: var(--orange);
            text-shadow: 0 0 30px rgba(255, 103, 0, 0.2);
            line-height: 1;
        }
        
        .config-body {
            padding: 30px;
        }
        
        .config-includes {
            margin-bottom: 25px;
        }
        
        .config-includes h4 {
            font-size: 11px;
            color: var(--steel);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            font-weight: 700;
        }
        
        .config-includes ul {
            list-style: none;
        }
        
        .config-includes li {
            font-size: 14px;
            color: var(--aluminum);
            margin-bottom: 9px;
            padding-left: 20px;
            position: relative;
            line-height: 1.5;
        }
        
        .config-includes li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--orange);
        }
        
        
        /* Story Section */
        .story-section {
            padding: 120px 0;
            background: var(--black);
            border-top: 1px solid var(--steel);
        }
        
        .story-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .story-content h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: var(--silver);
            margin-bottom: 40px;
            text-transform: uppercase;
        }
        
        .story-content p {
            font-size: 18px;
            color: var(--aluminum);
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .story-highlight {
            background: var(--dark-metal);
            border-left: 4px solid var(--orange);
            padding: 30px 40px;
            margin: 40px 0;
            text-align: left;
        }
        
        .story-highlight p {
            font-size: 20px;
            color: var(--silver);
            line-height: 1.7;
            font-style: italic;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 120px 0;
            background: var(--dark-metal);
        }
        
        .faq-grid {
            display: grid;
            gap: 0;
            max-width: 900px;
            margin: 60px auto 0;
            border: 1px solid rgba(255,255,255,0.06);
        }
        
        .faq-item {
            background: var(--black);
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            cursor: pointer;
            transition: background 0.2s ease;
            overflow: hidden;
        }

        .faq-item:last-child { border-bottom: none; }
        
        .faq-item:hover {
            background: rgba(255,103,0,0.03);
        }

        .faq-item.active {
            background: rgba(255,103,0,0.04);
        }
        
        .faq-question {
            padding: 22px 28px;
            font-size: 17px;
            font-weight: 600;
            color: var(--silver);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            line-height: 1.4;
        }

        .faq-item.active .faq-question {
            color: var(--white);
            border-bottom: 1px solid rgba(255,103,0,0.15);
        }
        
        .faq-answer {
            padding: 0 28px 22px 28px;
            color: var(--aluminum);
            line-height: 1.8;
            font-size: 15px;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .faq-icon {
            color: var(--orange);
            font-size: 22px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            line-height: 1;
            width: 22px;
            text-align: center;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        /* CTA Banner */
        .cta-banner {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--gunmetal), var(--dark-metal));
            border-top: 2px solid var(--orange);
            border-bottom: 2px solid var(--orange);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 103, 0, 0.1), transparent);
        }
        
        .cta-banner h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: var(--silver);
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .cta-banner p {
            font-size: 20px;
            color: var(--aluminum);
            margin-bottom: 40px;
        }
        
        .stock-warning {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 103, 0, 0.2);
            border: 1px solid var(--orange);
            padding: 12px 25px;
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--orange-bright);
            letter-spacing: 1px;
        }
        
        .stock-warning::before {
            content: '⚠';
            font-size: 20px;
        }
        
        /* Footer */
        footer {
            padding: 30px 0 30px;
            background: var(--black);
            border-top: 1px solid rgba(255,255,255,0.06);
            position: relative;
        }
        .footer-badges {
            display: flex;
            justify-content: center;
            gap: 60px;
            padding: 40px 0;
            border-bottom: 1px solid var(--steel);
            flex-wrap: wrap;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--orange), transparent);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 24px;
            font-weight: 900;
            color: var(--silver);
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .footer-brand p {
            color: var(--aluminum);
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 15px;
        }
        
        .footer-section h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .footer-section a {
            display: block;
            color: var(--steel);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.2s;
            font-size: 15px;
        }
        
        .footer-section a:hover {
            color: var(--orange);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.04);
            color: var(--steel);
            font-size: 13px;
            letter-spacing: 0.5px;
        }

        /* Color State Classes for the Selector Box */
        .color-selection-box {
            margin: 20px 0;
            padding: 15px;
            background: rgba(106, 113, 120, 0.05); /* Default steel */
            border: 1px solid var(--steel);
            transition: all 0.4s ease; /* Smooth transition between colors */
        }

        .color-selection-box.selected-black {
            background: rgba(0, 0, 0, 0.3);
            border-color: var(--steel);
        }

        .color-selection-box.selected-orange {
            background: rgba(255, 103, 0, 0.15);
            border-color: var(--orange);
        }

        .color-selection-box.selected-yellow {
            background: rgba(255, 255, 0, 0.1);
            border-color: #FFFF00;
        }

        .color-selection-box.selected-red {
            background: rgba(255, 0, 0, 0.1);
            border-color: #FF0000;
        }

        .color-selection-box.selected-blue {
            background: rgba(0, 100, 255, 0.15);
            border-color: #0070FF;
        }

        /* Status Pulse Animation */
        .status-dot {
            width: 6px;
            height: 6px;
            background-color: var(--success);
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 rgba(0, 255, 136, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
            }
            70% {
                box-shadow: 0 0 0 6px rgba(0, 255, 136, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
            }
        }
        

        /* --- OVERSPEC SLIDE-OUT CART --- */
        /* BASE MACHINED SHAPE (Shared Logic) */
        .overspec-btn {
            display: block;
            width: 100%;
            padding: 14px 24px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
            position: relative;
            overflow: visible;
        }

        .overspec-btn::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
            transition: left 0.5s ease;
            pointer-events: none;
        }

        .overspec-btn:hover::after {
            left: 100%;
        }

        /* PRIMARY - The "Adventure" & Checkout Button (Orange) */
        .btn-primary {
            background: var(--orange);
            color: var(--black);
            box-shadow: 0 0 20px rgba(255, 103, 0, 0.25);
        }
        .btn-primary:hover {
            background: var(--orange-bright);
            box-shadow: 0 4px 30px rgba(255, 103, 0, 0.5);
            transform: translateY(-2px);
        }

        /* SECONDARY - Foundation, Complete, and Standalone (Steel Gray) */
        .btn-secondary {
            background: var(--gunmetal);
            color: var(--silver);
            border: none;
        }
        .btn-secondary::before {
            content: '';
            position: absolute;
            inset: -1px;
            background: var(--steel);
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
            z-index: -1;
        }
        .btn-secondary:hover {
            background: var(--gunmetal);
            color: var(--white);
            transform: translateY(-2px);
        }
        .btn-secondary:hover::before {
            background: var(--aluminum);
        }

        .overspec-btn:active {
            transform: translateY(0) !important;
        }

        .cart-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.85); backdrop-filter: blur(4px);
            z-index: 999; opacity: 0; pointer-events: none;
            transition: opacity 0.35s ease;
        }
        .cart-overlay.active { opacity: 1; pointer-events: auto; touch-action: none; }

        .side-panel {
            position: fixed; top: 0; right: -480px; 
            width: 100%; max-width: 440px; height: 100vh; height: 100dvh;
            background: var(--dark-metal);
            border-left: 1px solid rgba(255,103,0,0.2);
            z-index: 1000; transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex; flex-direction: column;
            box-shadow: -20px 0 60px rgba(0,0,0,0.7), -1px 0 0 var(--steel);
        }
        .side-panel.active { right: 0; }

        .panel-header {
            padding: 22px 28px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            display: flex; justify-content: space-between; align-items: center;
            background: rgba(0,0,0,0.4);
        }
        .panel-header h3 {
            font-family: 'Barlow Condensed'; font-size: 22px; margin: 0;
            text-transform: uppercase; letter-spacing: 2px; color: var(--silver);
        }
        .close-btn {
            background: rgba(255,255,255,0.05); border: 1px solid var(--steel);
            color: var(--aluminum); font-size: 18px; cursor: pointer;
            transition: all 0.2s; width: 34px; height: 34px;
            display: flex; align-items: center; justify-content: center;
        }
        .close-btn:hover { background: rgba(255,103,0,0.1); border-color: var(--orange); color: var(--orange); }

        .panel-body { padding: 24px 28px; flex-grow: 1; overflow-y: auto; }

        .cart-item {
            display: flex; justify-content: space-between; align-items: flex-start;
            padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 4px;
        }
        .item-details { display: flex; flex-direction: column; gap: 4px; }
        .item-name { font-weight: 700; font-size: 17px; color: var(--white); }
        .item-meta { font-size: 12px; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; }
        .item-price { font-weight: 700; font-family: 'JetBrains Mono'; font-size: 16px; color: var(--silver); white-space: nowrap; padding-top: 2px; }
        .item-remove { font-size: 11px; color: #ff6666; cursor: pointer; text-decoration: underline; margin-top: 4px; display: inline-block; opacity: 0.7; transition: opacity 0.2s; }
        .item-remove:hover { opacity: 1; }

        .upsell-section { margin-top: 32px; }
        .upsell-section h4 {
            font-family: 'Barlow Condensed'; color: var(--aluminum); text-transform: uppercase;
            margin-bottom: 14px; letter-spacing: 2px; font-size: 13px;
            padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .upsell-card {
            background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
            padding: 14px 16px; display: flex; justify-content: space-between;
            align-items: center; margin-bottom: 8px;
            transition: border-color 0.2s, background 0.2s;
        }
        .upsell-card:hover { border-color: rgba(255,103,0,0.25); background: rgba(255,103,0,0.03); }
        .upsell-info { display: flex; flex-direction: column; gap: 2px; }
        .upsell-name { font-weight: 700; font-size: 14px; color: var(--silver); }
        .upsell-price { font-size: 12px; color: var(--aluminum); font-family: 'JetBrains Mono'; }
        .upsell-btn {
            background: transparent; border: 1px solid var(--orange); color: var(--orange);
            padding: 6px 16px; font-weight: 700; cursor: pointer; transition: all 0.2s;
            font-family: 'Rajdhani'; font-size: 13px; letter-spacing: 1px; white-space: nowrap;
        }
        .upsell-btn:hover { background: var(--orange); color: var(--black); }
        .upsell-btn.added { background: rgba(255,255,255,0.05); border-color: var(--steel); color: var(--steel); pointer-events: none;}

        .panel-footer { padding: 22px 28px 28px; background: rgba(0,0,0,0.5); border-top: 1px solid rgba(255,255,255,0.06); }
        .cart-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: 700; margin-bottom: 18px; }
        
        /* Config Card Photo Strip */
        .config-photos {
            background: #000;
            border-bottom: 1px solid var(--steel);
        }

        .config-photo-main {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: zoom-in;
            overflow: hidden;
        }

        .config-photo-main img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            transition: transform 0.3s ease;
        }

        .config-photo-main:hover img {
            transform: scale(1.03);
        }

        .config-photo-zoom {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0,0,0,0.6);
            color: var(--white);
            font-size: 14px;
            padding: 4px 8px;
            border: 1px solid var(--steel);
            opacity: 0;
            transition: opacity 0.2s;
            pointer-events: none;
        }

        .config-photo-main:hover .config-photo-zoom {
            opacity: 1;
        }

        .config-photo-thumb-row {
            display: flex;
            gap: 2px;
            padding: 6px;
            background: #000;
        }

        .config-photo-thumb {
            flex: 1;
            aspect-ratio: 4 / 3;
            cursor: pointer;
            opacity: 0.45;
            border: 1px solid transparent;
            transition: opacity 0.2s, border-color 0.2s;
            overflow: hidden;
            background: #000;
        }

        .config-photo-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .config-photo-thumb:hover {
            opacity: 0.75;
        }

        .config-photo-thumb.active {
            opacity: 1;
            border-color: var(--orange);
        }

        /* Side panel - full width on mobile */
        @media (max-width: 768px) {
            .side-panel {
                max-width: 100%;
                width: 100%;
                right: -100%;
            }
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-visual {
                width: 50%;
            }
            
            .dm-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .comparison-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .config-grid {
                grid-template-columns: 1fr;
                border: none;
                gap: 16px;
            }

            .config-card {
                border: 1px solid var(--steel);
            }

            .config-card.featured {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            /* Mobile Hero Carousel Tweaks */
            .hero-thumbnails {
                gap: 8px;
                margin-top: 15px;
                overflow-x: auto;
                padding-bottom: 5px;
                justify-content: flex-start; 
            }

            .hero-thumb {
                min-width: 65px; 
                max-width: 75px;
                border-width: 1px;
            }
            .hero-badge {
                font-size: 10px;
                letter-spacing: 0.5px;
                padding: 4px 8px;
            }

            /* Hide redundant sections now that they are at the top */
            .lifestyle-section {
                display: none !important;
            }
            
            .header-content {
                padding: 12px 20px;
            }

            .logo img:first-child {
                display: none;
            }
            
            .header-cta {
                gap: 10px;
            }
            
            .price-badge {
                display: none;
            }

            .flex-column-end {
                display: none;
            }

            /* Fix header buy button size */
            .buy-button {
                padding: 8px 16px;
                font-size: 13px;
                clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
            }

            .hero {
                padding-top: 80px;
                padding-bottom: 40px;
            }
            /* Swap fitment box and hero image on mobile */
            .hero .container {
                display: flex;
                flex-direction: column;
            }

            .hero-visual {
                float: none;
                width: 100%;
                margin: 20px 0 24px 0;
            }

            .hero-badge-row {
                gap: 6px;
            }

            .hero-badge {
                font-size: 10px;
                letter-spacing: 0.5px;
                padding: 4px 8px;
            }

            .hero-title {
                font-size: clamp(40px, 11vw, 60px);
            }

            /* Fix overline text wrapping */
            .overline {
                font-size: 16px;
                letter-spacing: 1px;
                white-space: normal;
                word-break: break-word;
            }

            .hero-subtitle {
                font-size: 20px;
            }

            .hero-tagline {
                font-size: 16px;
            }
            
            .hero-ctas {
                flex-direction: column;
                gap: 12px;
            }
            
            .primary-cta,
            .secondary-cta {
                width: 100%;
                text-align: center;
                padding: 14px 20px;
                font-size: 15px;
                letter-spacing: 1px;
                clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
                box-shadow: 0 0 30px rgba(255, 103, 0, 0.3);
                white-space: nowrap;
            }
            
            .hero-stats {
                flex-direction: row;
            }

            .stat {
                padding: 14px 16px;
            }

            .stat-value {
                font-size: 26px;
            }

            /* Sections */
            .problem-section,
            .features-section,
            .diamond-matrix-section,
            .specs-section,
            .config-section,
            .story-section,
            .faq-section {
                padding: 80px 0;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .section-title {
                font-size: clamp(32px, 9vw, 48px);
            }

            .section-subtitle {
                font-size: 17px;
            }
            .dm-text h2 {
                font-size: 32px;
                letter-spacing: 1px;
            }

            /* Problem section quality gap - stack on mobile */
            .problem-section [style*="grid-template-columns: 1fr auto 1fr auto 1fr"] {
                display: flex !important;
                flex-direction: column !important;
                gap: 20px !important;
            }
            
            /* Remove rotation from + and ≠ operators when stacked vertically */
            .problem-section [style*="font-size: 30px"] {
                transform: none !important;
                margin: 4px 0;
            }

            /* Fix weak link badge overlapping image */
            .weak-link-box {
                padding-top: 45px;
                margin-top: 20px;
            }

            .weak-link-tag {
                font-size: 10px;
                white-space: nowrap;
                padding: 3px 10px;
            }

            /* Comparison grid */
            .comparison-grid {
                gap: 20px;
            }

            .comparison-card {
                padding: 40px 24px;
            }

            /* Specs grid */
            .specs-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .spec-item {
                padding: 20px;
            }

            /* Features grid */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            /* Config cards */
            .config-grid {
                margin-top: 40px;
            }

            .config-header {
                padding: 28px 24px;
            }

            .config-body {
                padding: 24px;
            }

            .config-price {
                font-size: 42px;
            }

            /* Story */
            .story-highlight {
                padding: 24px;
            }

            /* FAQ */
            .faq-question {
                padding: 18px 22px;
                font-size: 16px;
            }

            .faq-answer {
                padding: 0 22px 18px;
                font-size: 14px;
            }

            /* CTA banner */
            .cta-banner {
                padding: 60px 0;
            }

            .cta-banner h2 {
                font-size: 36px;
            }

            .cta-banner .primary-cta {
                display: block;
                width: fit-content;
                margin: 0 auto;
                white-space: nowrap;
            }
           

            /* Footer */
            .footer-badges {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px 16px;
                padding: 24px 0;
                align-items: start;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            footer > .container > div:first-child {
                gap: 24px;
                justify-content: flex-start;
            }

            /* Quote boxes */
            .quote-box {
                padding: 22px 24px;
            }

            /* Hide low-value sections on mobile to reduce scroll length */
            .story-section {
                display: none;
            }

            .lifestyle-section {
                display: none;
            }

            /* Hide the "Your Gear Deserves A Match" prose block — redundant on mobile */
            .problem-section .container > div:nth-child(2) {
                display: none;
            }
        }
        
        /* Extra small mobile (iPhone SE) */
        @media (max-width: 375px) {
            .container {
                padding: 0 15px;
            }

            .hero-title {
                font-size: clamp(34px, 12vw, 44px);
            }

            .hero-stats {
                flex-wrap: wrap;
            }

            .stat {
                flex: 1 1 calc(33% - 1px);
                min-width: 80px;
            }
            
            .primary-cta,
            .secondary-cta {
                padding: 14px 20px;
                font-size: 15px;
            }

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

           
        }
