:root {
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-glow: rgba(124, 58, 237, 0.5);
    --accent-gradient: linear-gradient(135deg, #7c3aed, #2563eb);
    --accent-solid: #7c3aed;
    --border-radius: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Background Glowing Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.22;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #7c3aed;
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #2563eb;
    bottom: -50px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Typography */
h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(5, 5, 5, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary-small) {
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--accent-solid);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    background: var(--text-primary);
    color: var(--bg-dark);
}

.btn-primary-small:hover {
    background: var(--accent-solid);
    color: var(--text-primary);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero p {
    margin: 0 0 2.5rem;
    font-size: 1.25rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    color: #a78bfa;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.floating-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: floatingMockup 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes floatingMockup {
    0% { transform: translateY(0px) rotateX(5deg) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateX(0deg) rotateY(0deg); }
    100% { transform: translateY(0px) rotateX(5deg) rotateY(-5deg); }
}

/* Generic Section Styles */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(37, 99, 235, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.bento-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-card p {
    font-size: 1rem;
}

/* Demo Section */
.demo-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.demo-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    outline: none;
    transition: var(--transition-smooth);
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
}

.demo-input:focus {
    border-color: var(--accent-solid);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.demo-result {
    min-height: 80px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.demo-result .placeholder {
    color: var(--text-secondary);
    font-style: italic;
    width: 100%;
    text-align: center;
}

.tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tag-task {
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.tag-location {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.tag-transition {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Timeline / How it works */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 13px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-solid);
    box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Showcase Section */
.showcase {
    overflow: hidden;
}

.showcase-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-btn:hover {
    background: rgba(124, 58, 237, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
}

.scroll-btn svg {
    width: 24px;
    height: 24px;
}

.scroll-left {
    left: 2rem;
}

.scroll-right {
    right: 2rem;
}

.showcase-gallery {
    width: 100%;
    overflow-x: auto;
    padding: 2rem 5vw 4rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.showcase-gallery::-webkit-scrollbar {
    display: none;
}

.showcase-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    padding: 0 2rem;
}

.showcase-img {
    height: 600px;
    width: auto;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    scroll-snap-align: center;
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
    .showcase-img {
        height: 400px;
    }
}

/* Featured Section */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.featured-video {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.025);
    transition: var(--transition-smooth);
}

.featured-video:hover,
.featured-video:focus-visible {
    outline: none;
    border-color: rgba(239, 68, 68, 0.45);
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.featured-video-large {
    grid-column: span 2;
    grid-row: span 2;
}

.featured-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.32);
}

.featured-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.featured-video:hover .featured-thumb img,
.featured-video:focus-visible .featured-thumb img {
    transform: scale(1.04);
}

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.92);
    color: #fff;
    font-size: 1rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.featured-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem;
}

.featured-copy strong {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.25;
}

.featured-video-large .featured-copy {
    padding: 1.25rem;
}

.featured-video-large .featured-copy strong {
    font-size: 1.35rem;
}

.featured-copy span:last-child {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

.featured-kicker {
    color: #fca5a5;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--accent-solid);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    font-size: 1rem;
}

/* Download Section */
.download-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.download-container p {
    margin-bottom: 2.5rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .hero {
        padding-top: 8rem;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        align-items: center;
    }

    .cta-group {
        justify-content: center;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-dot {
        left: 8px;
    }
    
    .timeline-item {
        padding-left: 45px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* 2026 refresh: product-specific structure */
.mobile-download {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--bg-dark);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero {
    min-height: 96vh;
}

.hero h1 {
    max-width: 680px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d4d4d8;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-icon {
    font-size: 0.85rem;
    line-height: 1;
}

.trigger-grid,
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.trigger-card,
.use-case,
.example-panel {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}

.trigger-card {
    min-height: 260px;
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
}

.trigger-card::after,
.use-case::after,
.example-panel::after {
    content: '';
    position: absolute;
    inset: auto 1rem 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.45), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trigger-card:hover,
.use-case:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.trigger-card:hover::after,
.use-case:hover::after,
.example-panel:hover::after {
    opacity: 1;
}

.card-kicker,
.case-label,
.download-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.24);
    color: #6ee7b7;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trigger-card .card-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.12);
    color: #c4b5fd;
    font-size: 1.45rem;
}

.trigger-card h3,
.use-case h3,
.example-panel h3 {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.trigger-card p,
.use-case p,
.example-panel p {
    font-size: 0.98rem;
}

.smart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1rem;
    align-items: stretch;
}

.smart-layout .demo-container {
    max-width: none;
    margin: 0;
}

.example-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.example-chip {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.22);
    color: var(--text-primary);
    padding: 0.8rem 0.9rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.example-chip:hover,
.example-chip:focus-visible {
    outline: none;
    border-color: rgba(52, 211, 153, 0.45);
    background: rgba(52, 211, 153, 0.1);
}

.tag-device {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.tag-time {
    background: rgba(236, 72, 153, 0.15);
    color: #f9a8d4;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.tag-activity {
    background: rgba(52, 211, 153, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.tag-travel {
    background: rgba(14, 165, 233, 0.15);
    color: #7dd3fc;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.use-case {
    min-height: 230px;
}

.showcase-frame {
    margin: 0;
    scroll-snap-align: center;
}

.showcase-frame figcaption {
    color: #d4d4d8;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.showcase-frame .showcase-img {
    scroll-snap-align: none;
}

.download-kicker {
    margin-bottom: 1.25rem;
}

@media (max-width: 980px) {
    .trigger-grid,
    .use-case-grid,
    .smart-layout {
        grid-template-columns: 1fr 1fr;
    }

    .smart-layout .demo-container {
        grid-column: 1 / -1;
    }

    .example-panel {
        grid-column: 1 / -1;
    }

    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-download {
        display: inline-flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-proof {
        justify-content: center;
    }

    .trigger-grid,
    .use-case-grid,
    .smart-layout {
        grid-template-columns: 1fr;
    }

    .trigger-card,
    .use-case,
    .example-panel {
        padding: 1.25rem;
    }

    .trigger-card {
        min-height: auto;
    }

    .demo-container {
        padding: 1.25rem;
    }

    .scroll-left {
        left: 0.5rem;
    }

    .scroll-right {
        right: 0.5rem;
    }

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

    .featured-video-large {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .download-btn {
        width: 100%;
        min-height: 48px;
        white-space: normal;
        text-align: center;
    }

    .hero-proof span {
        min-width: calc(50% - 0.35rem);
        justify-content: center;
    }
}
