:root {
    --accent: #1F6EB3;
    --accent-hover: #0E3A63;
    --accent-light: #62A9D8;
    --accent-pale: #EEF6FC;
    --accent-gradient: linear-gradient(135deg, #1F6EB3 0%, #0E3A63 100%);
    --text-primary: #0D0D0D;
    --text-secondary: #71717A;
    --background: #FFFFFF;
    --white: #FFFFFF;
    --border: #E5E5E2;
    --border-strong: #18181B;
    --font-display: 'Fraunces', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
    --shadow-soft: 0 10px 35px rgba(0, 0, 0, 0.06);
    --shadow-cubist: 4px 4px 0 var(--border-strong);
    --duration-fast: 160ms;
    --duration-mid: 320ms;
    --radius-soft: 10px;
    --radius-sharp: 3px;
}

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

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

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

/* Nav */
nav {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: var(--background);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    height: 32px;
    width: auto;
}

.btn {
    background: var(--accent);
    color: white;
    border: 2px solid var(--border-strong);
    padding: 12px 24px;
    border-radius: var(--radius-sharp);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
    font-family: inherit;
    box-shadow: 3px 3px 0 rgba(24, 24, 27, 0.25);
    position: relative;
}

.btn:hover {
    box-shadow: 4px 4px 0 rgba(24, 24, 27, 0.3);
    transform: translate(-1px, -1px);
}

.btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 rgba(24, 24, 27, 0.2);
}

/* Softer hover for form buttons */
.email-form .btn.motion-lift:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(31, 110, 179, 0.25);
}

.email-form .btn.motion-press:active {
    transform: translateY(0) scale(0.99);
}

/* Motion utilities */
.motion-lift {
    transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-mid) var(--ease-out), border-color var(--duration-mid) var(--ease-out);
    will-change: transform;
}

.motion-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.motion-press:active {
    transform: translateY(-1px) scale(0.99);
}

.reveal-on-scroll {
    --reveal-translate: 16px;
    --parallax-offset: 0px;
    opacity: 0;
    transform: translate3d(0, calc(var(--reveal-translate) + var(--parallax-offset)), 0);
    transition: opacity var(--duration-mid) var(--ease-out), transform 420ms var(--ease-soft);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    --reveal-translate: 0px;
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 140ms; }
.reveal-delay-3 { transition-delay: 200ms; }

.parallax {
    will-change: transform;
    --parallax-offset: 0px;
}

.parallax:not(.reveal-on-scroll) {
    transform: translate3d(0, var(--parallax-offset), 0);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero */
.hero {
    padding: 100px 0 140px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-content h1 .accent-text {
    color: var(--accent);
}

.hero-content .subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.email-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.email-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-soft);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.email-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-pale);
}

.helper-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.helper-text strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-laptop-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.hero-laptop-image {
    width: 180px;
    height: 135px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F4F4F5;
}

.hero-laptop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-laptop-content {
    flex: 1;
    min-width: 0;
}

.hero-laptop-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.hero-laptop-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.hero-laptop-info .purchase-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-laptop-meta {
    display: flex;
    gap: 8px;
}

.meta-tag {
    background: #F4F4F5;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-receipt {
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    margin-top: -8px;
    margin-left: 40px;
}

.hero-receipt-image {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F4F4F5;
}

.hero-receipt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-receipt-info {
    flex: 1;
    min-width: 0;
}

.hero-receipt-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-receipt-info span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hero-receipt-check {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-receipt-check svg {
    width: 14px;
    height: 14px;
    color: white;
}

.hero-connector {
    position: absolute;
    left: 28px;
    top: calc(100% - 60px);
    width: 2px;
    height: 40px;
    background: var(--accent);
    opacity: 0.3;
    z-index: 1;
}

.hero-qr {
    background: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 2;
    margin-top: 8px;
    margin-left: 40px;
    max-width: calc(100% - 40px);
}

.hero-qr-code {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.hero-qr-code svg {
    width: 100%;
    height: 100%;
}

.hero-qr-info {
    flex: 1;
    min-width: 0;
}

.hero-qr-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-qr-info span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hero-qr-action {
    width: 32px;
    height: 32px;
    background: var(--accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-qr-action svg {
    width: 18px;
    height: 18px;
    color: white;
}

/* Trackable Items Scroll Section */
.trackable-items-section {
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.trackable-items-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.trackable-items-heading {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    font-style: italic;
    color: var(--accent);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.trackable-items-container::before,
.trackable-items-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.trackable-items-container::before {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}

.trackable-items-container::after {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

.trackable-items-scroll {
    display: flex;
    gap: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
}

.trackable-items-scroll-wrapper {
    display: flex;
    gap: 0;
    align-items: center;
    animation: scroll-items 156s linear infinite;
    will-change: transform;
}

.trackable-items-scroll:hover .trackable-items-scroll-wrapper {
    animation-play-state: paused;
}

@keyframes scroll-items {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trackable-items-scroll::-webkit-scrollbar {
    display: none;
}

.trackable-item {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
    flex-grow: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    position: relative;
}

.trackable-item:not(:last-child)::after {
    content: '•';
    color: var(--accent);
    opacity: 0.4;
    margin-left: 8px;
    font-size: 0.5rem;
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
}

.trackable-item:hover {
    opacity: 1;
}

/* Bento Grid USP Section */
.usp-section {
    padding: 80px 0 100px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 20px;
}

.bento-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Card 1: Warranty - Large, spans rows 1-2 left side */
.bento-card-1 {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

/* Card 2: Stat card - short, top right */
.bento-card-2 {
    grid-column: 8 / -1;
    grid-row: 1;
    background: linear-gradient(135deg, #F5F5F4 0%, #FFFFFF 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 28px;
    position: relative;
    min-height: 140px;
}

/* Card 3: Offboarding - taller, row 2 right */
.bento-card-3 {
    grid-column: 8 / -1;
    grid-row: 2;
}

/* Card 4: Drop & Done - row 3 left (wider) */
.bento-card-4 {
    grid-column: 1 / 9;
    grid-row: 3;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    overflow: hidden;
    position: relative;
    min-height: 260px;
}

.bento-card-4 .drop-zone {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 190px;
    height: 190px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-card-4 .drop-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed var(--accent);
}

.bento-card-4 .drop-ring-1 {
    width: 250px;
    height: 250px;
    background: rgba(98, 169, 216, 0.15);
    opacity: 0.6;
}

.bento-card-4 .drop-ring-2 {
    width: 190px;
    height: 190px;
    background: rgba(98, 169, 216, 0.25);
    opacity: 0.7;
}

.bento-card-4 .drop-ring-3 {
    width: 140px;
    height: 140px;
    background: rgba(31, 110, 179, 0.3);
    opacity: 0.8;
}

.bento-card-4 .drop-zone:hover .drop-ring,
.bento-card-4 .drop-zone.is-active .drop-ring {
    box-shadow: 0 0 0 6px rgba(31, 110, 179, 0.08);
    opacity: 1;
}

.bento-card-4 .drop-doc {
    position: absolute;
    top: -24px;
    left: 35px;
    width: 56px;
    height: 68px;
    background: #FFFFFF;
    color: #1F2937;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(-8px);
    will-change: transform, opacity;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border: 1px solid rgba(0,0,0,0.08);
}

.bento-card-4 .drop-doc.animate {
    animation: drop-doc-move 1700ms var(--ease-soft) forwards;
    transform-origin: center;
}

.bento-card-4 .drop-doc::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, transparent 50%, #E5E7EB 50%);
    border-top-right-radius: 8px;
}

.bento-card-4 .drop-details {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    height: 160px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    width: 100%;
    padding-right: 12px; /* prevent text from touching edge without resizing card */
    box-sizing: border-box;
    max-width: 720px;
}

.bento-card-4 .drop-detail-row {
    min-height: 36px;
    border-radius: 12px;
    padding: 10px 16px;
    background: rgba(31, 110, 179, 0.08);
    color: var(--text-primary);
    font-weight: 600;
    opacity: 0;
    transform: translateY(-6px);
    position: relative;
    left: 0;
    right: 0;
    will-change: transform, opacity;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    width: 100%;
    max-width: 720px;
}

.bento-card-4 .drop-detail-row.show {
    animation: detail-row 1600ms var(--ease-soft) forwards;
}

.bento-card-4 .drop-zone.glow .drop-ring {
    animation: ring-glow 900ms var(--ease-soft);
}

@keyframes drop-doc-move {
    0% {
        opacity: 0;
        transform: translate(-10px, -30px) scale(1);
    }
    60% {
        opacity: 1;
        transform: translate(70px, 55px) scale(0.97);
    }
    100% {
        opacity: 0;
        transform: translate(70px, 55px) scale(0.9);
    }
}

@keyframes detail-row {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }
    40% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ring-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 110, 179, 0.22);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 0 10px rgba(31, 110, 179, 0.08);
        opacity: 1;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(31, 110, 179, 0.0);
        opacity: 1;
    }
}

.bento-card-4 .drop-icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-card-4 .drop-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.bento-card-4 .bento-card-text {
    margin-left: 240px;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    width: calc(100% - 240px);
    max-width: 760px;
}

.bento-card-4 .drop-helper {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.bento-card-4 .drop-last {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(31, 110, 179, 0.08);
    color: var(--accent-hover);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--duration-mid) var(--ease-out), transform var(--duration-mid) var(--ease-out);
}

.bento-card-4 .drop-last.show {
    opacity: 1;
    transform: translateY(0);
}

/* Card 5: QR Labels - row 3 right (narrower) */
.bento-card-5 {
    grid-column: 9 / -1;
    grid-row: 3;
    background: rgba(98, 169, 216, 0.45);
    display: flex;
    flex-direction: column;
}

.bento-card-5 .qr-demo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
}

.bento-card-5 .qr-sample {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border);
    background: white;
    flex-shrink: 0;
}

.bento-card-5 .qr-sample svg {
    width: 100%;
    height: 100%;
}

.bento-card-5 .qr-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bento-card-5 .qr-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
}

.bento-card-5 .qr-action-btn svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* Card 6: Insurance - full width row 4 */
.bento-card-6 {
    grid-column: 1 / -1;
    grid-row: 4;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.bento-card h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.bento-card-1 h2 {
    font-size: 2rem;
}

.bento-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.bento-card-1 p {
    font-size: 1.1rem;
}

.bento-card .screenshot-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    margin: 0 -32px -32px -32px;
}

.bento-card-3 .screenshot-wrapper {
    margin-top: auto;
}

.bento-card-2 .stat-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 0.85;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.bento-card-2 .stat-label {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    max-width: 140px;
}

.bento-card-2 .stat-source {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 0.65rem;
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.7;
    text-align: right;
    line-height: 1.3;
}
/* Keep screenshot styles but adjust */
.bento-screenshot {
    background: #F9FAFB;
    border-radius: 12px 12px 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
    overflow: hidden;
}

.bento-card-5 .bento-screenshot {
    border-radius: 12px;
    border-bottom: 1px solid var(--border);
}

.usp-screenshot {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.usp-screenshot:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.screenshot-header {
    background: #F5F5F4;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.screenshot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.screenshot-content {
    padding: 24px;
}

/* Screenshot 1: Asset detail with receipt */
.asset-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.asset-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.asset-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asset-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.asset-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.asset-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.asset-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.meta-item {
    background: var(--background);
    padding: 12px;
    border-radius: 8px;
}

.meta-item label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-item span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 2px;
}

.receipt-attachment {
    border: 2px dashed #FDE047;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FEFCE8;
}

.receipt-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.receipt-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.receipt-info {
    flex: 1;
}

.receipt-info strong {
    display: block;
    font-size: 0.9rem;
}

.receipt-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.receipt-download {
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* Screenshot 2: Offboarding checklist */
.offboarding {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offboarding-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.offboarding-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.progress-badge {
    background: #FEF3C7;
    color: #D97706;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--background);
    border-radius: 10px;
}

.checklist-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--duration-mid) var(--ease-out), border-color var(--duration-mid) var(--ease-out);
}

.checklist-checkbox.checked {
    background: var(--accent);
    border-color: var(--accent);
}

.checklist-checkbox.checked svg {
    width: 14px;
    height: 14px;
    color: white;
}

.checklist-item.checked span {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.checklist-item span {
    font-size: 0.95rem;
}

/* Screenshot 3: Asset list with value */
.asset-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.asset-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.asset-list-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.total-value {
    text-align: right;
}

.total-value label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.total-value strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.asset-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--background);
    border-radius: 10px;
}

.asset-row-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.asset-row-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.asset-row-info {
    flex: 1;
}

.asset-row-info strong {
    display: block;
    font-size: 0.9rem;
}

.asset-row-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.asset-row-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    text-align: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.how-it-works .description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}

.workflow-demo {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.workflow-step {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.workflow-step:hover .step-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.workflow-step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.workflow-step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.step-arrow {
    display: flex;
    align-items: center;
    color: var(--border);
}

.step-arrow svg {
    width: 24px;
    height: 24px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--accent-pale);
    position: relative;
    margin-top: 60px;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.cta-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.cta-content {
    text-align: left;
    max-width: 500px;
}

.cta-content .email-form {
    justify-content: flex-start;
}

.cta-jay-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-jay {
    width: 220px;
    height: auto;
    transform: scaleX(-1);
    filter: drop-shadow(0 12px 32px rgba(31, 110, 179, 0.15));
    animation: jay-hover 4s ease-in-out infinite;
}

@keyframes jay-hover {
    0%, 100% {
        transform: scaleX(-1) translateY(0);
    }
    50% {
        transform: scaleX(-1) translateY(-12px);
    }
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.final-cta .description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.final-cta .email-form {
    max-width: 480px;
    margin: 0 auto 12px;
}

.final-cta .helper-text {
    text-align: center;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer-email {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-email:hover {
    color: var(--accent);
}

/* Success message */
.success-message {
    display: none;
    padding: 16px 24px;
    background: var(--accent-pale);
    border: 1px solid var(--accent);
    border-radius: 10px;
    color: var(--accent-hover);
    font-weight: 500;
    margin-top: 12px;
}

.success-message.show {
    display: block;
}

/* Responsive - Tablet/Small Desktop */
@media (max-width: 1400px) and (min-width: 1025px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 60px 0 100px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-content .subhead {
        font-size: 1.1rem;
    }

    .hero-visual {
        max-width: 380px;
    }

    .hero-laptop-card {
        padding: 24px;
        gap: 16px;
    }

    .hero-laptop-image {
        width: 140px;
        height: 105px;
    }

    .hero-laptop-info h3 {
        font-size: 1.2rem;
    }

    .hero-receipt {
        padding: 12px 16px;
        margin-left: 24px;
    }

    .hero-qr {
        padding: 10px 14px;
        margin-left: 24px;
    }

    .usp-section {
        padding: 60px 0 80px;
    }

    .bento-grid {
        gap: 16px;
    }

    .bento-card {
        padding: 24px;
    }

    .bento-card h2 {
        font-size: 1.5rem;
    }

    .bento-card p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .bento-card-1 h2 {
        font-size: 1.65rem;
    }

    .bento-card-2 .stat-number {
        font-size: 4rem;
    }

    .bento-card-4 .bento-card-text {
        margin-left: 200px;
    }

    .bento-card-4 .drop-zone {
        width: 160px;
        height: 160px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .how-it-works h2 {
        font-size: 2rem;
    }

    .final-cta {
        padding: 70px 0;
    }

    .final-cta h2 {
        font-size: 2.25rem;
    }

    .cta-jay {
        width: 180px;
    }
}

/* Responsive - Mobile */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    /* Nav fixes */
    .nav-inner {
        gap: 12px;
    }

    .btn-nav {
        padding: 6px 14px;
        font-size: 0.7rem;
        white-space: nowrap;
        flex: 0 0 auto;
        width: auto !important;
        max-width: fit-content;
    }

    /* Hide receipt and QR on mobile */
    .hero-receipt,
    .hero-qr,
    .hero-connector {
        display: none;
    }

    /* More breathing room for hero content */
    .hero {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero-content .email-form,
    .hero-content .success-message {
        margin-left: 0;
        margin-right: 0;
    }

    /* Add padding to illustrations */
    .hero-illustration {
        padding: 0 12px;
    }

    .hero-visual {
        max-width: 100%;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-image {
        height: 26px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 0 50px;
        text-align: center;
        gap: 32px;
    }

    .hero-content h1 {
        font-size: 1.85rem;
        line-height: 1.15;
    }

    .hero-content .subhead {
        font-size: 0.95rem;
    }

    .hero-illustration {
        height: auto;
        order: -1;
        margin-bottom: 0;
    }

    .hero-visual {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Compact hero card for mobile */
    .hero-laptop-card {
        flex-direction: row;
        padding: 14px;
        gap: 14px;
        align-items: center;
    }

    .hero-laptop-image {
        width: 90px;
        height: 68px;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .hero-laptop-content {
        text-align: left;
        flex: 1;
        min-width: 0;
    }

    .hero-laptop-info h3 {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .hero-laptop-info p {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .hero-laptop-info .purchase-date {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .hero-laptop-meta {
        flex-wrap: wrap;
        gap: 6px;
    }

    .meta-tag {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .hero-receipt {
        margin-left: 0;
        margin-top: 10px;
        padding: 12px 14px;
    }

    .hero-receipt-image {
        width: 36px;
        height: 36px;
    }

    .hero-receipt-info strong {
        font-size: 0.8rem;
    }

    .hero-receipt-info span {
        font-size: 0.7rem;
    }

    .hero-receipt-check {
        width: 24px;
        height: 24px;
    }

    .hero-receipt-check svg {
        width: 12px;
        height: 12px;
    }

    .hero-qr {
        margin-left: 0;
        margin-top: 8px;
        max-width: 100%;
        padding: 10px 14px;
    }

    .hero-qr-code {
        width: 40px;
        height: 40px;
    }

    .hero-qr-info strong {
        font-size: 0.8rem;
    }

    .hero-qr-info span {
        font-size: 0.7rem;
    }

    .hero-qr-action {
        width: 28px;
        height: 28px;
    }

    .hero-qr-action svg {
        width: 14px;
        height: 14px;
    }

    .trackable-items-section {
        padding: 16px 0;
    }

    .trackable-items-scroll {
        padding: 0;
        gap: 6px;
    }

    .trackable-item {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .email-form {
        flex-direction: column;
        gap: 12px;
    }

    .email-input {
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .usp-section {
        padding: 40px 12px 60px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card {
        padding: 24px;
    }

    .bento-card-1,
    .bento-card-2,
    .bento-card-3,
    .bento-card-4,
    .bento-card-5,
    .bento-card-6 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card-4 {
        flex-direction: column;
        min-height: auto;
        padding-top: 24px;
        text-align: center;
    }

    .bento-card-4 .drop-zone {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: auto;
        height: auto;
        margin: 0 auto 20px;
    }

    /* Hide the rings and animated elements on mobile */
    .bento-card-4 .drop-ring,
    .bento-card-4 .drop-doc,
    .bento-card-4 .drop-details,
    .bento-card-4 .drop-last {
        display: none;
    }

    .bento-card-4 .drop-icon {
        position: relative;
        width: 64px;
        height: 64px;
    }

    .bento-card-4 .drop-icon svg {
        width: 28px;
        height: 28px;
    }

    .bento-card-4 .bento-card-text {
        margin-left: 0;
        width: 100%;
    }

    .bento-card-4 .drop-helper {
        margin-top: 8px;
    }

    .bento-card-5,
    .bento-card-6 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bento-card h2 {
        font-size: 1.4rem;
    }

    .bento-card p {
        font-size: 0.95rem;
    }

    /* Fix receipt attachment clipping */
    .receipt-attachment {
        flex-wrap: wrap;
        gap: 10px;
    }

    .receipt-info {
        flex: 1 1 auto;
        min-width: 0;
    }

    .receipt-info strong {
        font-size: 0.8rem;
        word-break: break-word;
    }

    .receipt-download {
        flex-shrink: 0;
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .bento-card-2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        min-height: auto;
        padding: 24px;
    }

    .bento-card-2 .stat-number {
        font-size: 3.5rem;
    }

    .bento-card-2 .stat-label {
        font-size: 1.1rem;
        max-width: none;
    }

    .bento-card-2 .stat-source {
        position: static;
        margin-top: 16px;
        font-size: 0.65rem;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .workflow-demo {
        padding: 24px;
    }

    .workflow-steps {
        flex-direction: column;
        gap: 32px;
    }

    .step-arrow {
        display: none;
    }

    .how-it-works h2,
    .final-cta h2 {
        font-size: 1.75rem;
    }

    .how-it-works .description {
        font-size: 1rem;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta .email-form {
        flex-direction: column;
    }

    .cta-layout {
        flex-direction: column;
        gap: 30px;
    }

    .cta-content {
        text-align: center;
        order: 1;
        max-width: 100%;
    }

    .cta-content .email-form {
        justify-content: center;
    }

    .cta-jay-wrapper {
        order: 0;
    }

    .cta-jay {
        width: 120px;
    }

    footer {
        padding: 30px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
    }
}

