        :root {
            --navy: #0a1628;
            --navy-2: #0f2036;
            --lime: #b6ff3c;
            --on-lime: #0a1628;
            --ink: #f4f6f9;
            --muted: #8b93a3;
            --border: rgba(255,255,255,0.12);
            --card: #131c2b;
            --bg: #0a0f1a;
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Nunito Sans', system-ui, sans-serif;
            background: var(--bg);
            color: var(--ink);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

        h1, h2, h3 {
            font-family: 'Jost', 'Rubik', sans-serif;
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.01em;
        }
        h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
        h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
        p { margin-bottom: 1.5rem; color: var(--muted); }

        section { padding: 100px 0; }
        .section-eyebrow {
            display: flex; align-items: center; gap: 8px;
            font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
            color: var(--navy); margin-bottom: 12px;
        }
        .section-eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
        .section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
        .section-header p { margin: 0; max-width: 420px; }

        /* Buttons */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            padding: 14px 28px; border: none; border-radius: 999px;
            font-size: 0.98rem; font-weight: 700; text-decoration: none; cursor: pointer;
            font-family: 'Geist', 'Rubik', sans-serif;
            position: relative; overflow: hidden;
        }
        .btn:active { transform: scale(0.95); transition: transform 0.09s ease; }
        .btn-primary { background: var(--lime); color: var(--on-lime); }
        .btn-outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
        .on-light .btn-outline { color: var(--ink); border-color: var(--border); }
        .btn-text-wrap { overflow: hidden; position: relative; display: inline-block; height: 1.2em; }
        .btn-text-stack { display: flex; flex-direction: column; transition: transform 0.4s cubic-bezier(.2,.8,.2,1); }
        .btn:hover .btn-text-stack, .nav-cta:hover .btn-text-stack { transform: translateY(-1.2em); }
        .btn-text-stack span { height: 1.2em; line-height: 1.2em; white-space: nowrap; }
        .ripple { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple-out 0.6s ease-out; background: rgba(0,0,0,0.15); pointer-events: none; }
        .on-dark .ripple { background: rgba(255,255,255,0.25); }
        @keyframes ripple-out { to { transform: scale(2.5); opacity: 0; } }

        /* Nav: small floating pill over the hero */
        nav {
            position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
            z-index: 50;
            background: rgba(10,15,26,0.7);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 999px;
            padding: 8px 8px 8px 20px;
            max-width: calc(100vw - 32px);
        }
        .nav-inner { display: flex; justify-content: center; align-items: center; gap: 28px; }
        .logo { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 1.05rem; color: white; text-decoration: none; letter-spacing: 0.02em; }
        .nav-links { display: flex; gap: 22px; align-items: center; }
        .nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.88rem; font-weight: 500; }
        .nav-links a:hover { color: white; }
        .nav-icons { display: flex; gap: 4px; align-items: center; }
        .icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; border: none; background: transparent; color: white; cursor: pointer; font-size: 0.9rem; }
        .icon-btn:hover { background: rgba(255,255,255,0.1); }
        .cart-count { position: absolute; top: -2px; right: -2px; background: var(--lime); color: var(--on-lime); font-size: 0.6rem; font-weight: 800; width: 15px; height: 15px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .nav-search { max-width: 0; overflow: hidden; transition: max-width 0.35s cubic-bezier(.2,.8,.2,1); }
        .nav-search.open { max-width: 200px; }
        .nav-search input { width: 100%; padding: 6px 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; font-size: 0.85rem; outline: none; font-family: inherit; background: rgba(255,255,255,0.08); color: white; }
        .nav-search input::placeholder { color: rgba(255,255,255,0.5); }

        #menu-toggle { display: none; }

        .mobile-menu { display: none; position: fixed; top: 76px; left: 16px; right: 16px; z-index: 55; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
        .mobile-menu.open { display: flex; }
        .mobile-menu a { padding: 14px 24px; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--border); font-weight: 600; }

        .cart-panel { display: none; position: fixed; top: 76px; right: 16px; width: 320px; max-width: calc(100vw - 32px); background: var(--card); border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.35); padding: 20px; z-index: 55; }
        .cart-panel.open { display: block; }
        .cart-panel h4 { margin-bottom: 12px; }
        .cart-line { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
        .cart-line button { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.8rem; }
        .cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
        .cart-empty { color: var(--muted); font-size: 0.9rem; }
        .nav-cta {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--lime); color: var(--on-lime);
            padding: 9px 20px; border-radius: 999px; text-decoration: none;
            font-weight: 700; font-size: 0.85rem; font-family: 'Geist', 'Rubik', sans-serif;
            position: relative; overflow: hidden;
        }
        .nav-cta:active { transform: scale(0.95); transition: transform 0.09s ease; }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            #menu-toggle { display: inline-flex; }
        }

        /* Hero: full-bleed photo, bold headline top-left, giant wordmark bleeding off the bottom */
        .hero {
            background: var(--navy);
            color: white;
            position: relative;
            height: 100vh;
            min-height: 560px;
            margin-bottom: 5vw;
        }
        .hero-photo { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
        .hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.05) 30%, rgba(10,22,40,0.05) 60%, rgba(10,22,40,0.65) 100%); }
        .hero-photo img, .hero-photo video { width: 100%; height: 100%; object-fit: cover; }
        .hero-headline {
            position: absolute; top: 110px; left: 40px; z-index: 3; max-width: 420px;
            font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; text-transform: uppercase; line-height: 1.05;
            color: white;
        }
        .hero-callout { position: absolute; top: 280px; left: 40px; z-index: 3; max-width: 320px; }
        .hero-callout .tag { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--lime); margin-bottom: 6px; }
        .hero-callout p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
        .hero-bigtext {
            position: absolute; left: 0; right: 0; bottom: -3.5vw; z-index: 4;
            font-family: 'Archivo Black', 'Rubik', sans-serif;
            font-size: clamp(4.5rem, 15vw, 12rem); font-weight: 400; letter-spacing: -0.01em;
            color: var(--lime); white-space: nowrap; text-align: center; pointer-events: none;
            line-height: 1; transform: rotate(-2.5deg);
        }
        .hero-badge { position: absolute; right: 40px; top: 110px; z-index: 3; background: rgba(10,22,40,0.85); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
        .avatar-stack { display: flex; }
        .avatar-stack span { width: 28px; height: 28px; border-radius: 50%; background: var(--lime); border: 2px solid var(--navy); margin-left: -8px; }
        .avatar-stack span:first-child { margin-left: 0; }
        .hero-badge .count { font-weight: 800; font-size: 0.95rem; color: white; }
        .hero-badge .label { font-size: 0.75rem; color: rgba(255,255,255,0.65); }

        /* Product row */
        .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
        .product-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: transform 0.4s cubic-bezier(.2,.8,.2,1); position: relative; }
        .product-card:hover { transform: translateY(-4px); }
        .product-card .rating { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 0.78rem; color: var(--navy); background: rgba(255,255,255,0.9); padding: 4px 10px; border-radius: 999px; display: flex; align-items: center; gap: 4px; }
        .product-card .rating .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
        .product-card .thumb { height: 220px; background: #eef0f2; display: flex; align-items: center; justify-content: center; padding: 16px; }
        .product-card .thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
        .product-card .info { padding: 20px; }
        .product-card .info h3 { cursor: pointer; }
        .product-card .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
        .product-card .price { font-weight: 700; color: var(--muted); font-size: 0.95rem; }
        .quick-add {
            display: inline-flex; align-items: center; justify-content: center;
            width: 36px; height: 36px; border-radius: 50%; border: none;
            background: var(--lime); color: var(--on-lime); font-size: 1.1rem; font-weight: 700;
            cursor: pointer; position: relative; overflow: hidden; flex-shrink: 0;
        }
        .quick-add:active { transform: scale(0.9); transition: transform 0.09s ease; }

        /* Product modal */
        .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(5,8,14,0.75); backdrop-filter: blur(4px); z-index: 200; align-items: center; justify-content: center; padding: 20px; }
        .modal-overlay.open { display: flex; }
        .product-modal { background: var(--card); border: 1px solid var(--border); border-radius: 24px; max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; }
        .product-modal .modal-img { height: 100%; min-height: 280px; background: #eef0f2; display: flex; align-items: center; justify-content: center; padding: 24px; }
        .product-modal .modal-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
        .product-modal .modal-body { padding: 32px; position: relative; }
        .modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.4rem; color: var(--muted); cursor: pointer; }
        .modal-body .price { font-size: 1.3rem; font-weight: 700; color: var(--lime); margin: 8px 0 20px; }
        .option-group { margin-bottom: 20px; }
        .option-group label { display: block; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 10px; }
        .swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
        .size-swatch { padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; font-size: 0.85rem; font-family: inherit; }
        .size-swatch.selected { background: var(--lime); color: var(--on-lime); border-color: var(--lime); }
        .color-swatch { width: 32px; height: 32px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; padding: 0; }
        .color-swatch.selected { border-color: var(--lime); }
        .modal-body input[type="date"] {
            width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 10px;
            background: var(--bg); color: var(--ink); font-family: inherit; font-size: 0.9rem;
        }
        .modal-add-btn { width: 100%; justify-content: center; margin-top: 8px; }

        /* Engineered for section: text + 2 images */
        .engineered-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: center; }
        .engineered-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .engineered-imgs img { width: 100%; height: 260px; object-fit: cover; border-radius: 20px; }
        .engineered-imgs .tall { height: 340px; }

        /* Dark collage section */
        .collage-section { background: var(--navy); color: white; border-radius: 32px; padding: 80px 0; }
        .collage-section .section-eyebrow { color: rgba(255,255,255,0.7); justify-content: center; }
        .collage-section .section-eyebrow::before { background: var(--lime); }
        .collage-section h2 { color: white; text-align: center; max-width: 720px; margin: 0 auto 48px; }
        .collage-row { display: flex; justify-content: center; gap: 16px; margin-bottom: 32px; }
        .collage-row img { width: 260px; height: 340px; object-fit: cover; border-radius: 16px; }
        .collage-row img:nth-child(2) { transform: translateY(-16px); }
        .collage-nav { display: flex; justify-content: center; gap: 12px; }
        .collage-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: transparent; color: white; cursor: pointer; }
        .collage-nav button.active { background: var(--lime); color: var(--on-lime); border-color: var(--lime); }

        /* Testimonial */
        .testimonial { text-align: center; max-width: 640px; margin: 0 auto; }
        .testimonial img { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px; display: block; object-fit: cover; }
        .testimonial p { font-size: 1.15rem; color: var(--ink); }
        .testimonial .author { font-weight: 700; margin-top: 8px; }
        .testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
        .testimonial-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--border); }
        .testimonial-dots span.active { background: var(--lime); width: 20px; border-radius: 4px; }

        /* Full-bleed action photo */
        .action-strip { height: 440px; border-radius: 24px; overflow: hidden; }
        .action-strip img { width: 100%; height: 100%; object-fit: cover; }

        /* Swell forecast */
        .forecast-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
        .forecast-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; text-align: center; }
        .forecast-card .day { color: var(--muted); font-size: 0.8rem; margin-bottom: 6px; }
        .forecast-card .height { font-family: 'Rubik', sans-serif; font-size: 1.6rem; font-weight: 800; }
        .forecast-card .period { color: var(--lime); font-size: 0.82rem; font-weight: 600; }

        /* Newsletter CTA */
        .cta-section { background: var(--lime); border-radius: 24px; padding: 60px; text-align: center; color: var(--on-lime); }
        .cta-section h2 { color: var(--on-lime); }
        .cta-section p { color: rgba(10,22,40,0.75); max-width: 560px; margin: 0 auto 28px; }
        .swell-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
        .swell-form input { flex: 1; min-width: 200px; padding: 14px 20px; border: none; border-radius: 999px; font-size: 1rem; outline: none; }
        .swell-form button { background: var(--navy); color: white; border: none; padding: 14px 28px; border-radius: 999px; font-weight: 700; cursor: pointer; font-family: 'Geist', 'Rubik', sans-serif; position: relative; overflow: hidden; }
        .swell-form button:active { transform: scale(0.95); transition: transform 0.09s ease; }

        /* Footer */
        footer { background: var(--navy); color: #94a3b8; padding: 60px 0 32px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
        footer h4 { color: white; margin-bottom: 20px; font-size: 1rem; font-family: 'Rubik', sans-serif; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; }
        .footer-links a:hover { color: white; }
        .footer-bottom { border-top: 1px solid #1e2d42; margin-top: 40px; padding-top: 24px; text-align: center; font-size: 0.8rem; color: #647489; }

        .fade-up { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
        .fade-up.visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 900px) {
            .engineered-grid { grid-template-columns: 1fr; }
            .collage-row { flex-direction: column; align-items: center; }
            .collage-row img { width: 100%; max-width: 320px; height: 280px; }
            .collage-row img:nth-child(2) { transform: none; }
        }
        @media (max-width: 768px) {
            .hero { min-height: 560px; }
            .hero-headline { left: 20px; right: 20px; max-width: none; font-size: 1.5rem; top: 90px; }
            .hero-callout { display: none; }
            .hero-badge { display: none; }
            .hero-bigtext { font-size: 2.4rem; bottom: -1.8vw; }
            section { padding: 72px 0; }
            .cta-section { padding: 40px 20px; }
        }

/* Moriah Labs badge */
.moriah-badge {
    position: fixed; bottom: 24px; left: 24px; z-index: 4000;
    display: inline-flex; align-items: center; height: 46px; border-radius: 999px;
    background: #0a0a0a; color: #fff; text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.28);
    overflow: hidden; white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: box-shadow 0.3s ease;
}
.moriah-badge-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em;
}
    .moriah-badge-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.moriah-badge-text {
    max-width: 0; opacity: 0; overflow: hidden;
    font-size: 0.82rem; font-weight: 600;
    transition: max-width 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.25s ease;
}
.moriah-badge:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.moriah-badge:hover .moriah-badge-text { max-width: 220px; opacity: 1; padding-right: 20px; }
@media (max-width: 640px) {
    .moriah-badge { bottom: 16px; left: 16px; }
    .moriah-badge:hover .moriah-badge-text { max-width: 180px; }
}

/* ===== TRUST SYSTEM ===== */
.trust-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; margin: 0 auto 56px; max-width: 900px; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-stat { text-align: center; }
.trust-stat-num { font-family: 'Rubik', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--lime); }
.trust-stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.testimonial-stars { color: var(--lime); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote { color: var(--ink); font-size: 0.92rem; margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar-initials { width: 42px; height: 42px; border-radius: 50%; background: var(--lime); color: var(--on-lime); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.88rem; }
.testimonial-role { font-size: 0.76rem; color: var(--muted); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } .trust-stats { gap: 26px; } }

/* GLOBAL: never default browser formatting on any element */
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
