:root {
    /* Apple-like color palette */
    --bg-color: #fbfbfd;
    --surface-color: #ffffff;
    --surface-secondary: #f5f5f7;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --accent-color: #FF7A00; /* FL Studio Orange */
    --accent-hover: #E06A00;
    --border-color: rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", STHeiti, "Microsoft Yahei", Tahoma, Simsun, sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --nav-height: 60px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding { padding: 120px 0; }
@media (max-width: 768px) { .section-padding { padding: 80px 0; } }

.text-center { text-align: center; }

/* Typography System */
.h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.lead {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
}

.nav-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
    padding: 0 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.nav-logo {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo i { color: var(--accent-color); }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.8;
}
.nav-link:hover { opacity: 1; }

.mobile-menu-btn { display: none; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--text-primary);
    color: #fff;
}
.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent-color);
    color: #fff;
}
.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 14px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
    background-color: var(--surface-secondary);
    color: var(--text-primary);
}
.btn-secondary:hover { background-color: #e5e5ea; }

.btn-nav-download {
    background-color: var(--text-primary);
    color: #fff;
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 999px;
}
.btn-nav-download:hover { background-color: #000; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 30%, rgba(255,122,0,0.05) 0%, rgba(255,255,255,0) 60%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 24px;
}

.hero-title {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title span {
    background: linear-gradient(135deg, var(--text-primary) 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-meta {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Intro Section */
.intro-section {
    background-color: #fff;
}
.intro-statement {
    max-width: 900px;
    margin: 0 auto;
}
.intro-statement p {
    font-size: clamp(22px, 3.2vw, 36px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin-bottom: 48px;
}

/* Apple-style subtle underline highlight for key terms */
.keyword-highlight {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0 2px;
}
.keyword-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.keyword-highlight.is-in-view::after {
    transform: scaleX(1);
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-list li i { color: var(--accent-color); }

/* Bento Features Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 24px;
    margin-top: 64px;
}

.bento-card {
    background-color: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: var(--shadow-lg);
}

.bento-card .icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--surface-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.bento-card.accent .icon-wrapper {
    background: rgba(255, 122, 0, 0.1);
    color: var(--accent-color);
}

.bento-card h3 {

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

.col-span-2 { grid-column: span 2; }
.row-span-2 { grid-row: span 2; }

/* Download Section (Data-Driven) */
.download-section {
    background-color: var(--surface-secondary);
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px auto;
    max-width: var(--max-width);
}

.download-card {
    background-color: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    text-align: left;
    transition: all 0.3s ease;
    width: 100%;
}

.download-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.download-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0; /* 防止子内容撑破外层容器 */
}

.download-card-header h4 { 
    font-size: 24px; 
    font-weight: 600; 
    margin-bottom: 8px; 
    color: var(--text-primary);
}

.download-card-header p { 
    color: var(--text-secondary); 
    font-size: 15px; 
    margin-bottom: 0; 
}

.download-card-meta {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--surface-secondary);
    padding: 24px;
    border-radius: var(--radius-md);
}

.meta-row { 
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: flex-start;
}

.meta-label { 
    color: var(--text-secondary); 
    font-weight: 500; 
    white-space: nowrap; 
}

.meta-value { 
    color: var(--text-primary);
    text-align: left; 
    word-break: break-all;
    line-height: 1.5;
    font-weight: 500;
}

.btn-copy {
    background: var(--surface-color); 
    border: 1px solid var(--border-color); 
    border-radius: 6px;
    padding: 6px 12px; 
    font-size: 12px; 
    color: var(--text-primary); 
    cursor: pointer;
    transition: all 0.2s; 
    display: inline-flex; 
    align-items: center; 
    gap: 4px;
    margin-top: 8px;
    font-weight: 500;
}

.btn-copy:hover { 
    background: var(--border-color); 
}

.download-card-actions {
    display: flex; 
    flex-direction: column;
    gap: 16px; 
    width: 240px;
    flex-shrink: 0;
}

.download-card-actions .btn { 
    width: 100%; 
    padding: 14px 20px; 
    font-size: 15px; 
}

.download-warning {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 24px;
}

/* GitHub Section */
.github-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 48px 0;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

/* Community Section */
.community-section {
    background-color: var(--surface-color);
}

.community-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 960px;
    margin: 48px auto 0;
    overflow: hidden;
    background-color: var(--surface-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.community-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-width: 0;
    padding: 28px;
}

.community-item + .community-item {
    border-left: 1px solid var(--border-color);
}

.community-details {
    min-width: 0;
}

.community-name {
    display: block;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.community-id {
    display: block;
    overflow-wrap: anywhere;
    color: var(--text-primary);
    font-size: 19px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.community-copy {
    min-width: 72px;
    min-height: 44px;
    flex-shrink: 0;
    justify-content: center;
    margin-top: 0;
    padding: 10px 14px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 64px auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-item:first-child { border-top: 1px solid var(--border-color); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
}
.faq-question:hover { color: var(--accent-color); }
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

/* Donate Section */
.donate-section {
    text-align: center;
    padding: 80px 0;
}
.donate-trigger {
    color: var(--text-secondary);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.donate-trigger:hover { color: var(--accent-color); }

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}
.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    color: var(--text-secondary);
    padding: 8px;
}
.qr-codes {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}
.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}
.qr-img {
    width: 140px;
    height: 140px;
    background: var(--surface-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    object-fit: contain;
}
.qr-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
}

/* Footer */
.footer {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.modal-close::before {
    content: "×";
    font-size: 26px;
    line-height: 1;
}
.icons-ready .modal-close::before { display: none; }
.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
}
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
    text-align: center;
    color: #a1a1a6;
    font-size: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Mobile Menu */
.mobile-nav-overlay {
    position: fixed;
    top: var(--nav-height);
    left: 0; width: 100%; height: calc(100vh - var(--nav-height));
    background: #fff;
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Media Queries (Mobile Optimization) */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .col-span-2 { grid-column: span 1; }
    .bento-grid .large-card { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links, .nav-download { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Hero Mobile */
    .hero-title { font-size: clamp(32px, 9vw, 42px); padding: 0 16px; }
    .hero-subtitle { font-size: 16px; padding: 0 16px; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 100%; padding: 0 24px; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-meta { flex-wrap: wrap; }
    
    /* Intro Mobile */
    .intro-statement p { font-size: 22px; text-align: left; padding: 0 12px; }
    .feature-list { flex-direction: column; align-items: flex-start; padding-left: 24px; gap: 16px; }

    /* Bento Mobile */
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; margin-top: 40px; }
    .bento-grid .large-card { grid-column: span 1; }
    .bento-card { padding: 24px; }
    
    /* Download Mobile */
    .download-list { gap: 24px; margin-top: 24px; }
    .download-card { flex-direction: column; align-items: stretch; padding: 24px; gap: 32px; }
    .download-card-actions { width: 100%; flex-direction: column; }
    .download-card-meta { padding: 16px; }
    .meta-row { grid-template-columns: 64px 1fr; gap: 12px; }
    .download-warning { align-items: flex-start; text-align: left; }
    
    /* GitHub & FAQ Mobile */
    .github-stats { flex-direction: column; gap: 32px; }
    .faq-question { padding: 20px 0; font-size: 16px; }

    /* Community Mobile */
    .community-panel {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }
    .community-item { padding: 20px; }
    .community-item + .community-item {
        border-top: 1px solid var(--border-color);
        border-left: 0;
    }
    
    /* Modal Mobile */
    .modal-content { padding: 32px 20px; }
    .qr-codes { flex-direction: column; align-items: center; gap: 24px; }
    
    /* Footer Mobile */
    .footer-content { align-items: flex-start; padding: 0 24px; }
    .footer-links { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-bottom { text-align: left; padding: 24px; align-items: flex-start; }
}


/* Animation Utilities */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal-up, .hero-title, .hero-subtitle, .hero-actions, .hero-meta, .keyword-highlight::after {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Engineering and accessibility safeguards */
html {
    scroll-behavior: smooth;
}

body.scroll-locked {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(255, 122, 0, 0.45);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.icon-no-shrink { flex-shrink: 0; }
.intro-title { margin-bottom: 40px; }
.bento-copy-fill { margin-bottom: auto; }
.translation-count {
    margin-top: 24px;
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 500;
}
.section-lead { margin-top: 16px; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.faq-section { background-color: var(--surface-secondary); }
.btn-github { background-color: #24292e; }
.donate-title { margin-bottom: 8px; }
.donate-copy {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}
.modal-title { margin-bottom: 16px; }
.modal-copy {
    color: var(--text-secondary);
    font-size: 14px;
}
.footer-disclaimer {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}
.meta-value-sha {
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    font-size: 13px;
    opacity: 0.8;
}
.sha-value-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}
.download-unavailable {
    width: 100%;
    cursor: not-allowed;
    opacity: 0.5;
}
.copy-state-success,
.copy-icon-success { display: none; }
.btn-copy.is-copied {
    color: var(--accent-color);
    border-color: var(--accent-color);
}
.btn-copy.is-copied .copy-state-default,
.btn-copy.is-copied .copy-icon-default { display: none; }
.btn-copy.is-copied .copy-state-success,
.btn-copy.is-copied .copy-icon-success { display: inline; }
.faq-answer p { padding-top: 8px; }

.mobile-menu-btn {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}
.mobile-menu-btn::before {
    content: "☰";
    font-size: 24px;
    line-height: 1;
}
.icons-ready .mobile-menu-btn::before { display: none; }
.menu-icon-close { display: none; }
.mobile-menu-btn[aria-expanded="true"] .menu-icon-open { display: none; }
.mobile-menu-btn[aria-expanded="true"] .menu-icon-close { display: block; }

.modal-close {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.qr-img[hidden],
.qr-fallback[hidden] { display: none; }

html:not(.js) .hero-title,
html:not(.js) .hero-subtitle,
html:not(.js) .hero-actions,
html:not(.js) .hero-meta,
html:not(.js) .reveal-up,
html.animations-unavailable .hero-title,
html.animations-unavailable .hero-subtitle,
html.animations-unavailable .hero-actions,
html.animations-unavailable .hero-meta,
html.animations-unavailable .reveal-up {
    opacity: 1;
    transform: none;
}

@supports (min-height: 100dvh) {
    .hero { min-height: 100dvh; }
    .mobile-nav-overlay { height: calc(100dvh - var(--nav-height)); }
}

@media (max-width: 768px) {
    .nav-wrapper.scrolled {
        backdrop-filter: saturate(160%) blur(14px);
        -webkit-backdrop-filter: saturate(160%) blur(14px);
    }
    .modal-overlay {
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    .mobile-menu-btn { display: inline-flex; }
}

@media (hover: none) {
    .bento-card:hover,
    .download-card:hover,
    .btn-primary:hover,
    .btn-accent:hover { transform: none; }
}
