:root {
    --bg: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
    --surface: rgba(255, 255, 255, 0.8);
    --surface-solid: #ffffff;
    --line: rgba(0, 0, 0, 0.06);
    --line-soft: rgba(0, 0, 0, 0.04);
    --text: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #86868b;
    --primary: #0071e3;
    --primary-hover: #0077ed;
    --accent: #06c;
    --success: #30d158;
    --max: 1200px;
    --radius-xl: 18px;
    --radius-lg: 14px;
    --radius-md: 10px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    --blur: blur(20px);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: #f5f7fa;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.47059;
}

.site-bg {
    display: none;
}

.container {
    width: min(var(--max), 100%);
    margin: 0 auto;
    padding: 0 max(20px, 4vw);
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 3vw, 24px);
}

.nav-cluster {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.brand {
    text-decoration: none;
    color: var(--text);
    font-size: clamp(16px, 2vw, 17px);
    font-weight: 600;
    letter-spacing: -0.003em;
    transition: opacity 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50vw;
}

.brand:hover {
    opacity: 0.6;
}

.menu {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0, 0, 0, 0.03);
    padding: 3px;
    border-radius: 10px;
}

.menu a {
    text-decoration: none;
    color: var(--text-secondary);
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
}

.menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.6);
}

.menu a.active {
    color: var(--text);
    background: #ffffff;
    font-weight: 500;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.06);
}

.menu a.active::after {
    display: none;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    height: 32px;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.menu-toggle:active {
    transform: scale(0.96);
}

.lang-select-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 980px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 12px;
    height: 28px;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.lang-select-wrap:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lang-select {
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: -0.01em;
    padding-right: 6px;
    cursor: pointer;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(82, 132, 220, 0.2);
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5671b0;
}

.badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--primary), var(--accent));
}

.page-main {
    padding: clamp(48px, 8vw, 80px) 0 clamp(80px, 12vw, 120px);
}

.hero {
    position: relative;
    padding: clamp(40px, 8vw, 80px) 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
}

.hero-visual {
    position: relative;
    min-height: clamp(280px, 40vw, 400px);
    border-radius: 28px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 113, 227, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(48, 209, 88, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(48, 209, 88, 0.03) 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 
        inset 0 0 0 1px rgba(0, 0, 0, 0.06),
        inset 0 0 80px rgba(0, 113, 227, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 20px 60px rgba(0, 113, 227, 0.12);
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 113, 227, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 113, 227, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    pointer-events: none;
}

.hero-brand-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-brand-cn {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #0071e3 0%, #30d158 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    animation: brandPulse 4s ease-in-out infinite;
}

.hero-brand-en {
    font-size: clamp(10px, 1.5vw, 14px);
    font-weight: 600;
    letter-spacing: 0.3em;
    color: rgba(0, 113, 227, 0.6);
    text-transform: uppercase;
}

@keyframes brandPulse {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.2px);
    animation: float 6s ease-in-out infinite;
}

.orb.one {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(39, 208, 255, 0.7), rgba(39, 208, 255, 0.1));
    top: 24px;
    right: 22px;
}

.orb.two {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 84, 151, 0.58), rgba(255, 84, 151, 0.08));
    left: 26px;
    bottom: 34px;
    animation-delay: 0.8s;
}

.orb.three {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle at 30% 30%, rgba(69, 121, 255, 0.62), rgba(69, 121, 255, 0.1));
    right: 90px;
    bottom: 48px;
    animation-delay: 1.2s;
}

.hero-chip {
    position: relative;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #d0e1ff;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 28px rgba(64, 110, 199, 0.15);
    font-size: 0.85rem;
    color: #39558a;
    letter-spacing: 0.04em;
}

.kicker {
    margin: 0 0 16px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

h1 {
    margin: 0 0 clamp(16px, 3vw, 24px);
    font-size: clamp(32px, 5.5vw, 64px);
    line-height: 1.0625;
    letter-spacing: -0.009em;
    font-weight: 700;
    color: var(--text);
    background: linear-gradient(180deg, #1d1d1f 0%, #35353a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    margin: 0;
    color: var(--text-secondary);
    max-width: 600px;
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 1.381;
    letter-spacing: 0.011em;
    font-weight: 400;
}

.hero-actions {
    margin-top: clamp(20px, 4vw, 32px);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dual-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(16px, 3vw, 24px);
}

.panel {
    border-radius: 18px;
    padding: clamp(28px, 4vw, 36px);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    position: relative;
}

.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.panel:hover {
    border-color: rgba(0, 113, 227, 0.2);
    box-shadow: 
        0 8px 24px rgba(0, 113, 227, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.06);
    transform: translateY(-8px) scale(1.02);
}

.panel:hover::before {
    opacity: 1;
}

.panel h3 {
    margin: 0 0 clamp(12px, 2vw, 16px);
    font-size: clamp(21px, 2.8vw, 24px);
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.19048;
    color: var(--text);
}

.panel p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: -0.003em;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(24px, 4vw, 32px);
}

.two-column h3 {
    margin: 0 0 clamp(8px, 2vw, 12px);
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    color: var(--text);
}

.two-column p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: -0.003em;
}

.highlight-panel {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: clamp(28px, 4vw, 36px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.highlight-panel:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.highlight-panel h3 {
    margin: 0 0 clamp(8px, 2vw, 12px);
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    color: var(--text);
}

.highlight-panel p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: -0.003em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 980px;
    padding: 0 clamp(22px, 3vw, 28px);
    height: clamp(44px, 6vw, 48px);
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 400;
    letter-spacing: -0.022em;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    cursor: pointer;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.2);
}

.btn.primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
    transform: translateY(-2px);
}

.btn.ghost {
    color: var(--primary);
    border: 1.5px solid rgba(0, 113, 227, 0.3);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn.ghost:hover {
    border-color: var(--primary);
    background: rgba(0, 113, 227, 0.08);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.15);
    transform: translateY(-2px);
}

.ticker {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ticker span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    font-size: 0.8rem;
    color: #4e6a9f;
    border-radius: 999px;
    border: 1px solid #d7e5ff;
    background: rgba(255, 255, 255, 0.88);
}

.grid-cards {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.section-head {
    text-align: center;
    margin: 0 auto clamp(40px, 6vw, 64px);
    max-width: 800px;
}

.section-head .kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(0, 113, 227, 0.08);
    border-radius: 980px;
    font-size: 11px;
}

.section-head h2 {
    margin: 0 0 clamp(16px, 2vw, 20px);
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.07143;
    letter-spacing: -0.005em;
    font-weight: 700;
    color: var(--text);
    background: linear-gradient(180deg, #1d1d1f 0%, #35353a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-head .lead {
    margin: 0 auto;
    max-width: 640px;
}

.card {
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid #dbe9ff;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.9));
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #c5dcff;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 1.07rem;
}

.card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.74;
}

.section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.section-gap {
    margin-top: clamp(48px, 8vw, 80px);
}

.section h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 1.25vw + 1rem, 2.1rem);
}

.section p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.82;
}

.info-list {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.info-item {
    border-radius: var(--radius-md);
    border: 1px solid #dfebff;
    background: rgba(255, 255, 255, 0.86);
    padding: 17px;
}

.info-item h3 {
    margin: 0 0 6px;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    color: #365fa6;
}

.info-item p,
.info-item a {
    margin: 0;
    color: var(--text);
    text-decoration: none;
    line-height: 1.8;
    word-break: break-word;
}

.footer {
    padding: 48px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-tertiary);
    font-size: 14px;
}

.footer-inner p {
    margin: 0;
}

.footer-inner a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.footer-inner a:hover {
    opacity: 0.7;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.section {
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) both;
}

.section:nth-child(2) {
    animation-delay: 0.1s;
}

.section:nth-child(3) {
    animation-delay: 0.2s;
}

.panel,
.highlight-panel {
    animation: fadeInUp 0.6s cubic-bezier(0.28, 0.11, 0.32, 1) both;
}

.panel:nth-child(1) { animation-delay: 0.1s; }
.panel:nth-child(2) { animation-delay: 0.2s; }
.panel:nth-child(3) { animation-delay: 0.3s; }

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease-out, height 0.5s ease-out;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn.primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 980px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

@media (min-width: 961px) and (max-width: 1280px) {
    .hero-split {
        gap: 60px;
    }

    .panel-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    }
}

@media (max-width: 960px) {
    .container {
        padding: 0 max(16px, 4vw);
    }

    .header {
        position: relative;
    }

    .header-inner {
        height: 56px;
        position: relative;
    }

    .brand {
        font-size: 16px;
        max-width: 50vw;
    }

    .hero-brand-cn {
        font-size: clamp(24px, 8vw, 36px);
    }

    .hero-brand-en {
        font-size: clamp(8px, 2vw, 12px);
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-visual {
        min-height: 240px;
        order: -1;
    }

    h1 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .section-head {
        text-align: left;
    }

    .section-head h2 {
        font-size: clamp(22px, 5vw, 28px);
    }

    .panel:hover {
        transform: none;
    }

    .highlight-panel:hover {
        transform: none;
    }

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

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

    .hero-meta {
        gap: 12px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-cluster {
        gap: 8px;
    }

    .menu {
        position: fixed;
        right: 0;
        top: 56px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        padding: 16px 20px 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        z-index: 90;
        gap: 4px;
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 400;
        background: transparent;
    }

    .menu a:hover {
        background: rgba(0, 113, 227, 0.06);
    }

    .menu a.active {
        background: rgba(0, 113, 227, 0.1);
        color: var(--primary);
        font-weight: 500;
        box-shadow: none;
    }

    .menu a.active::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        height: 44px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .panel:hover,
    .highlight-panel:hover {
        transform: none;
        box-shadow: none;
    }

    .btn:hover {
        box-shadow: none;
    }

    .menu a:hover {
        background: transparent;
    }
}
