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

        :root {
            --coral: #F2A09A;
            --coral-light: #FDF5F4;
            --coral-dark: #E88B84;
            --teal: #4CB5AE;
            --teal-dark: #3A9A94;
            --teal-light: #E8F6F5;
            --navy: #1A2B3C;
            --text-dark: #2D3748;
            --text-gray: #5A6B7D;
            --text-light: #8899AA;
            --white: #FFFFFF;
            --bg-cream: #FFFAF9;
            --border: #E8ECF1;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'DM Serif Display', Georgia, serif;
            font-weight: 400;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================
           HERO
        ============================================ */
        .hw-hero {
            padding: 140px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: var(--bg-cream);
        }

        .hw-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(76, 181, 174, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hw-hero::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(242, 160, 154, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hw-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .hw-hero .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--teal-light);
            color: var(--teal-dark);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards 0.1s;
        }

        .hw-hero h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            line-height: 1.15;
            color: var(--navy);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards 0.2s;
        }

        .hw-hero p {
            font-size: clamp(1rem, 2.5vw, 1.15rem);
            color: var(--text-gray);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards 0.35s;
        }

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

        /* ============================================
           PRODUCT SHOWCASE
        ============================================ */
        .product-section {
            padding: 80px 20px;
            background: var(--white);
        }

        .product-card {
            max-width: 960px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 24px;
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
        }

        .product-visual {
            background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .product-visual::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(76, 181, 174, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .laptop-illustration {
            position: relative;
            z-index: 1;
            max-width: 420px;
            margin: 0 auto;
        }

        /* CSS-only MacBook illustration */
        .laptop-body {
            background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
            border-radius: 12px 12px 0 0;
            padding: 12px 12px 0;
            position: relative;
        }

        .laptop-screen {
            background: linear-gradient(135deg, #1a2b3c 0%, #0f1922 40%, #1a2b3c 100%);
            border-radius: 4px 4px 0 0;
            aspect-ratio: 16 / 10;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .laptop-screen::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(76, 181, 174, 0.15) 50%, transparent 60%);
        }

        .screen-content {
            text-align: center;
            color: white;
            z-index: 1;
        }

        .screen-content .screen-logo {
            font-family: 'DM Serif Display', serif;
            font-size: 1.4rem;
            color: #4CB5AE;
            margin-bottom: 4px;
        }

        .screen-content .screen-sub {
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .laptop-camera {
            width: 6px;
            height: 6px;
            background: #3a3a3a;
            border-radius: 50%;
            margin: 0 auto 8px;
            box-shadow: inset 0 0 2px rgba(0,0,0,0.5);
        }

        .laptop-base {
            background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 100%);
            height: 10px;
            border-radius: 0 0 2px 2px;
            margin: 0 -20px;
            position: relative;
        }

        .laptop-base::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #b8b8b8;
            border-radius: 0 0 4px 4px;
        }

        .laptop-shadow {
            height: 20px;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.12) 0%, transparent 70%);
            margin: 0 -40px;
        }

        .product-info {
            padding: 48px 40px;
        }

        .product-name-row {
            display: flex;
            align-items: baseline;
            gap: 16px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }

        .product-info h2 {
            font-size: 1.8rem;
            color: var(--navy);
        }

        .product-chip {
            display: inline-block;
            background: var(--navy);
            color: white;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .product-info .product-tagline {
            color: var(--text-gray);
            font-size: 1.05rem;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .spec-item {
            text-align: center;
            padding: 20px 12px;
            background: var(--bg-cream);
            border-radius: 12px;
        }

        .spec-value {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .spec-value.teal { color: var(--teal); }

        .spec-label {
            font-size: 0.78rem;
            color: var(--text-light);
            font-weight: 500;
        }

        @media (max-width: 600px) {
            .spec-grid { grid-template-columns: repeat(2, 1fr); }
            .product-info { padding: 32px 24px; }
            .product-visual { padding: 40px 24px; }
        }

        /* ============================================
           REASONS SECTION
        ============================================ */
        .reasons-section {
            padding: 80px 20px 100px;
            background: var(--bg-cream);
        }

        .reasons-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 56px;
        }

        .reasons-header h2 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            color: var(--navy);
            margin-bottom: 16px;
        }

        .reasons-header p {
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .reasons-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .reason-card {
            background: var(--white);
            border-radius: 20px;
            padding: 36px 32px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .reason-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--teal), var(--teal-dark));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .reason-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .reason-card:hover::before {
            opacity: 1;
        }

        .reason-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .reason-icon.encryption { background: linear-gradient(135deg, #e8f6f5, #d0eeec); color: #2d8a82; }
        .reason-icon.passkey { background: linear-gradient(135deg, #eef0ff, #dde1ff); color: #4f5bd5; }
        .reason-icon.wipe { background: linear-gradient(135deg, #fef3e8, #fde4c8); color: #c87d2f; }
        .reason-icon.webcam { background: linear-gradient(135deg, #f0e8f6, #e2d0ee); color: #8a2d82; }
        .reason-icon.value { background: linear-gradient(135deg, #e8f6ef, #d0eede); color: #2d8a5a; }
        .reason-icon.portable { background: linear-gradient(135deg, #fdf5f4, #fbe8e6); color: #c45a52; }

        .reason-card h3 {
            font-size: 1.15rem;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .reason-card p {
            color: var(--text-gray);
            font-size: 0.92rem;
            line-height: 1.7;
        }

        .reason-card .hipaa-tag {
            display: inline-block;
            margin-top: 14px;
            background: var(--teal-light);
            color: var(--teal-dark);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

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

        /* ============================================
           CTA SECTION
        ============================================ */
        .hw-cta {
            padding: 80px 20px;
            background: var(--white);
        }

        .hw-cta-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            background: var(--navy);
            border-radius: 24px;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        .hw-cta-inner::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(76, 181, 174, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hw-cta-inner::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(242, 160, 154, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hw-cta-content {
            position: relative;
            z-index: 1;
        }

        .hw-cta h2 {
            font-size: clamp(1.5rem, 4vw, 2rem);
            color: var(--white);
            margin-bottom: 16px;
        }

        .hw-cta p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 520px;
            margin: 0 auto 32px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-teal {
            display: inline-block;
            background: var(--teal);
            color: white;
            padding: 14px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 14px rgba(76, 181, 174, 0.3);
        }

        .btn-teal:hover {
            background: var(--teal-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 181, 174, 0.4);
        }

        .btn-outline {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 14px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border: 2px solid rgba(255, 255, 255, 0.25);
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.05);
        }

        /* ============================================
           SCROLL REVEAL
        ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

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