﻿:root {
    --royal-blue: #1e3a8a;
    --royal-blue-light: #3b82f6;
    --electric-blue: #00bfff;
    --bg-main: #0a0e1a;
    --bg-sec: #0f172a;
    --bg-card: #1e293b;
    --border-color: #334155;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-desc: #64748b;
    --logo-filter: invert(1) brightness(2);
    --logo-blend: screen;
    --glow-color: rgba(30, 58, 138, 0.5);
    --blue-bg: rgba(30, 58, 138, 0.15);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition-smooth: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-fast: 0.3s ease;
    --font-main: -apple-system, BlinkMacSystemFont, "SF Pro SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

[data-theme="light"] {
    --bg-main: #f1f5f9;
    --bg-sec: #ffffff;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-desc: #64748b;
    --logo-filter: none;
    --logo-blend: multiply;
    --glow-color: rgba(30, 58, 138, 0.18);
    --blue-bg: rgba(30, 58, 138, 0.06);
    --card-shadow: 0 10px 40px rgba(30, 58, 138, 0.08);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-main);
}

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text-main);
    background: var(--bg-main);
    font-family: var(--font-main);
    line-height: 1.8;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    transition: background 0.5s ease, color 0.5s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 80% 18%, var(--blue-bg) 0%, transparent 36%),
        radial-gradient(circle at 12% 84%, var(--blue-bg) 0%, transparent 32%);
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 3000;
    transform: translateY(-140%);
    padding: 10px 14px;
    color: #fff;
    background: var(--royal-blue);
    border-radius: 4px;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

.nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 56px;
    background: transparent;
    transition: all 0.4s ease;
}

.nav.scrolled {
    padding: 10px 56px;
    background: var(--bg-sec);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
}

.nav-logo {
    position: relative;
    z-index: 2002;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-image {
    width: 118px;
    height: 72px;
    object-fit: contain;
    filter: var(--logo-filter);
    mix-blend-mode: var(--logo-blend);
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.nav-logo:hover .nav-logo-image {
    transform: scale(1.03);
    opacity: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--royal-blue-light);
    transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--royal-blue-light);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.theme-toggle {
    position: relative;
    z-index: 2002;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--text-main);
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.theme-toggle:hover {
    color: var(--royal-blue-light);
    border-color: var(--royal-blue);
    transform: scale(1.08);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.moon-icon,
[data-theme="light"] .sun-icon {
    display: none;
}

[data-theme="light"] .moon-icon {
    display: block;
}

.hamburger-btn {
    position: relative;
    z-index: 2003;
    display: none;
    width: 34px;
    height: 26px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.hamburger-btn span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: 0.3s ease;
}

.hamburger-btn span:nth-child(1) { top: 2px; }
.hamburger-btn span:nth-child(2) { top: 12px; }
.hamburger-btn span:nth-child(3) { top: 22px; }
.hamburger-btn.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 132px 48px 68px;
    overflow: hidden;
    background: var(--bg-sec);
}

.hero-bg-image {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 0;
    width: min(64vw, 920px);
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.84;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, rgba(0, 0, 0, 0.42) 48%, #000 70%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, rgba(0, 0, 0, 0.42) 48%, #000 70%);
}

.hero-bg-mobile-image {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, var(--bg-sec) 0%, rgba(15, 23, 42, 0.95) 46%, rgba(15, 23, 42, 0.66) 63%, rgba(15, 23, 42, 0.16) 86%, rgba(15, 23, 42, 0.04) 100%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.14), transparent 42%);
}

[data-theme="light"] .hero::before {
    background:
        linear-gradient(90deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.96) 50%, rgba(241, 245, 249, 0.72) 66%, rgba(241, 245, 249, 0.2) 88%, rgba(241, 245, 249, 0.08) 100%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.24), transparent 46%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 34%;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, var(--bg-main));
    opacity: 0.74;
}

.snail-shell-lines {
    position: absolute;
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.hero-shell {
    top: -70px;
    left: -120px;
}

.section-shell {
    right: -150px;
    bottom: -120px;
    transform: rotate(180deg);
}

.snail-shell-lines::before,
.snail-shell-lines::after,
.snail-shell-lines .inner-circle {
    content: "";
    position: absolute;
    border-color: var(--royal-blue);
    border-style: solid;
    border-radius: 50%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.snail-shell-lines::before {
    inset: 0;
    border-width: 3px;
    opacity: 0.16;
}

.snail-shell-lines::after {
    inset: 40px;
    border-width: 2px;
    opacity: 0.11;
}

.snail-shell-lines .inner-circle {
    inset: 82px;
    border-width: 2px;
    opacity: 0.08;
}

.blue-block {
    position: absolute;
    pointer-events: none;
    background: var(--royal-blue);
    opacity: 0.08;
}

.blue-block-1 {
    top: 11%;
    right: -100px;
    width: 300px;
    height: 300px;
    transform: rotate(15deg);
}

.blue-block-2 {
    bottom: 18%;
    left: -60px;
    width: 200px;
    height: 200px;
    transform: rotate(-10deg);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    width: 100%;
    max-width: 1300px;
}

.hero-text {
    max-width: 680px;
}

.brush-text {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
    color: var(--royal-blue-light);
    font-size: 1.85rem;
    font-weight: 900;
}

.brush-text::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-blue), transparent);
    opacity: 0.7;
}

.hero-kicker {
    margin-bottom: 24px;
    color: var(--royal-blue-light);
    font-size: 0.9rem;
    font-weight: 700;
}

.domain-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0 0 18px;
    padding: 6px 12px 6px 34px;
    overflow: hidden;
    color: var(--royal-blue-light);
    background: rgba(30, 58, 138, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 4px;
    font-size: 0.86rem;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.12);
}

.domain-pill::before {
    content: "";
    position: absolute;
    left: 12px;
    width: 10px;
    height: 10px;
    background: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--electric-blue);
    animation: dotPulse 2s ease-in-out infinite;
}

.domain-pill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: translateX(-110%);
    animation: domainSheen 4.2s ease-in-out infinite;
}

.hero-quote {
    max-width: 620px;
    margin-bottom: 16px;
    padding-left: 18px;
    color: var(--text-main);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    border-left: 4px solid var(--royal-blue);
}

.hero-title {
    max-width: 760px;
    margin-bottom: 24px;
    color: var(--text-main);
    font-size: 3.6rem;
    font-weight: 850;
    line-height: 1.15;
}

.hero-title .accent {
    color: var(--royal-blue-light);
    background: linear-gradient(90deg, var(--royal-blue-light), var(--electric-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-line,
.title-separator {
    display: inline;
}

.hero-desc {
    max-width: 640px;
    margin-bottom: 26px;
    color: var(--text-desc);
    font-size: 1rem;
    line-height: 1.95;
}

.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 28px;
}

.hero-stat dt {
    color: var(--text-main);
    font-size: 2.55rem;
    font-weight: 850;
    line-height: 1;
}

.hero-stat dt span {
    color: var(--royal-blue-light);
}

.hero-stat dd {
    margin-top: 7px;
    color: var(--text-desc);
    font-size: 0.76rem;
    font-weight: 700;
}

.hero-btns,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 18px;
    color: var(--text-main);
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-primary {
    color: #fff;
    background: var(--royal-blue);
}

.btn-primary:hover {
    background: var(--royal-blue-light);
    box-shadow: 0 0 30px var(--glow-color);
    transform: translateY(-3px);
}

.btn-outline {
    color: var(--text-main);
    background: transparent;
    border-color: var(--border-color);
}

.btn-outline:hover {
    color: var(--royal-blue-light);
    border-color: var(--royal-blue);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 380px;
}

.domain-network {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: min(560px, 96vw);
    transform: translate(-50%, -50%) rotate(-8deg);
    opacity: 0.72;
    pointer-events: none;
}

.domain-mesh path,
.contact-web-lines path {
    fill: none;
    stroke: url(#domainGradient);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 18 16;
    animation: domainMeshFlow 8s linear infinite;
}

.domain-nodes circle {
    fill: var(--electric-blue);
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.75));
    animation: nodePulse 2.6s ease-in-out infinite;
}

.domain-nodes circle:nth-child(2),
.domain-nodes circle:nth-child(5) {
    animation-delay: 0.5s;
}

.domain-nodes circle:nth-child(3) {
    animation-delay: 1s;
}

.domain-text-main,
.domain-text-sub {
    fill: var(--royal-blue-light);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

.domain-text-main {
    font-size: 54px;
    font-weight: 800;
    opacity: 0.18;
}

.domain-text-sub {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.32;
}

.snail-motion-mark {
    position: relative;
    z-index: 1;
    width: min(460px, 88vw);
    overflow: visible;
}

.snail-motion-mark path,
.snail-motion-mark rect,
.snail-motion-mark circle {
    vector-effect: non-scaling-stroke;
}

.kinetic-grid path {
    fill: none;
    stroke: rgba(59, 130, 246, 0.22);
    stroke-width: 1.4;
    stroke-dasharray: 10 14;
    animation: dashFlow 7s linear infinite;
}

.speed-strokes path {
    fill: none;
    stroke: url(#snailGradient);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 34 22;
    animation: speedDash 1.8s linear infinite;
}

.snail-core path {
    fill: none;
    stroke: url(#snailGradient);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shell-ring-1 {
    stroke-width: 12;
    stroke-dasharray: 1120;
    animation: shellDraw 5.6s ease-in-out infinite;
}

.shell-ring-2 {
    stroke-width: 4;
    stroke-dasharray: 1240;
    opacity: 0.55;
    animation: shellDraw 6.4s ease-in-out infinite reverse;
}

.snail-body {
    stroke-width: 12;
    stroke-dasharray: 360;
    animation: shellDraw 5.2s ease-in-out infinite;
}

.snail-feelers {
    stroke-width: 5;
    stroke-dasharray: 160;
    animation: feelerScan 3.2s ease-in-out infinite;
}

.signal-dots circle {
    fill: var(--electric-blue);
    opacity: 0.88;
    animation: dotPulse 2.4s ease-in-out infinite;
}

.signal-dots circle:nth-child(2) {
    animation-delay: 0.4s;
}

.signal-dots circle:nth-child(3) {
    animation-delay: 0.8s;
}

.tech-blocks rect {
    fill: rgba(30, 58, 138, 0.16);
    stroke: rgba(59, 130, 246, 0.42);
    stroke-width: 2;
    animation: blockDrift 4.8s ease-in-out infinite;
}

.tech-blocks rect:nth-child(2) {
    animation-delay: 0.8s;
}

.tech-blocks rect:nth-child(3) {
    animation-delay: 1.4s;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.36);
    border-radius: 50%;
    opacity: 0.28;
}

.hero-orbit-1 {
    width: 420px;
    height: 420px;
}

.hero-orbit-2 {
    width: 510px;
    height: 510px;
    transform: rotate(18deg);
}

@keyframes energyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 38px var(--royal-blue-light)); }
}

@keyframes dashFlow {
    to { stroke-dashoffset: -96; }
}

@keyframes speedDash {
    to { stroke-dashoffset: -112; }
}

@keyframes shellDraw {
    0%, 100% { stroke-dashoffset: 0; transform: scale(1); }
    50% { stroke-dashoffset: 250; transform: scale(1.025); }
}

@keyframes feelerScan {
    0%, 100% { stroke-dashoffset: 0; opacity: 0.55; }
    50% { stroke-dashoffset: 90; opacity: 1; }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50% { transform: scale(1.55); opacity: 1; }
}

@keyframes blockDrift {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(12px, -10px); opacity: 0.95; }
}

@keyframes sectionLines {
    0%, 100% { transform: translateX(0); opacity: 0.12; }
    50% { transform: translateX(-28px); opacity: 0.26; }
}

@keyframes cardScan {
    0%, 100% { left: -42%; opacity: 0; }
    18%, 60% { opacity: 0.8; }
    100% { left: 100%; }
}

@keyframes blockGridFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-16px, 12px) rotate(6deg); }
}

@keyframes domainMeshFlow {
    to { stroke-dashoffset: -136; }
}

@keyframes nodePulse {
    0%, 100% { transform: scale(0.9); opacity: 0.42; }
    50% { transform: scale(1.45); opacity: 1; }
}

@keyframes domainSheen {
    0%, 58%, 100% { transform: translateX(-110%); }
    78% { transform: translateX(110%); }
}

.section,
.partner-section {
    position: relative;
    padding: 74px 48px;
    overflow: hidden;
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    transition: background 0.5s ease;
}

.section::after,
.partner-section::after,
.elite-section::after,
.contact-section::after {
    content: "";
    position: absolute;
    top: 26px;
    right: -40px;
    z-index: 0;
    width: 320px;
    height: 140px;
    pointer-events: none;
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg width='320' height='140' viewBox='0 0 320 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%233b82f6' stroke-width='2'%3E%3Cpath d='M0 20h110l22 22h188'/%3E%3Cpath d='M36 70h84l18 18h146'/%3E%3Cpath d='M0 118h160l22-22h138'/%3E%3Ccircle cx='118' cy='20' r='5' fill='%233b82f6'/%3E%3Ccircle cx='138' cy='88' r='5' fill='%2300bfff'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    animation: sectionLines 6s ease-in-out infinite;
}

.section-alt,
.partner-section {
    background: var(--bg-sec);
}

.section-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.section-inner::before {
    content: "";
    position: absolute;
    top: -18px;
    right: 2%;
    z-index: -1;
    width: 92px;
    height: 92px;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(59, 130, 246, 0.18) 50%, transparent 50%),
        linear-gradient(rgba(0, 191, 255, 0.12) 50%, transparent 50%);
    background-size: 18px 18px;
    border: 1px solid rgba(59, 130, 246, 0.18);
    opacity: 0.55;
    animation: blockGridFloat 6.5s ease-in-out infinite;
}

.section-label {
    margin-bottom: 16px;
    color: var(--royal-blue-light);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 20px;
    color: var(--text-main);
    font-size: 2.6rem;
    font-weight: 850;
    line-height: 1.2;
}

.section-desc {
    max-width: 760px;
    margin-bottom: 32px;
    color: var(--text-desc);
    font-size: 0.98rem;
    line-height: 1.9;
}

.snail-bg-section::before {
    content: "";
    position: absolute;
    right: 6%;
    bottom: 4%;
    width: 250px;
    height: 250px;
    pointer-events: none;
    opacity: 0.08;
    background-image: url("../images/logo-transparent.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: var(--logo-filter);
}

.ai-section {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(10, 14, 26, 0.92), rgba(30, 58, 138, 0.68)),
        linear-gradient(90deg, rgba(0, 191, 255, 0.08), transparent 44%);
}

[data-theme="light"] .ai-section {
    background:
        linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(219, 234, 254, 0.72)),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1), transparent 44%);
}

.ai-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(90deg, rgba(0, 191, 255, 0.16) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 191, 255, 0.12) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.ai-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
    gap: 24px 44px;
    align-items: center;
}

.ai-copy,
.ai-visual {
    position: relative;
    z-index: 1;
}

.ai-copy .section-desc {
    max-width: 680px;
}

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

.ai-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.ai-feature-grid article {
    position: relative;
    min-height: 210px;
    padding: 22px 18px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
}

[data-theme="light"] .ai-feature-grid article {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(30, 58, 138, 0.14);
}

.ai-feature-grid article::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(0, 191, 255, 0.28);
    border-radius: 50%;
}

.ai-feature-grid span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--electric-blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.ai-feature-grid h3 {
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 1.08rem;
    line-height: 1.35;
}

.ai-feature-grid p {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.72;
}

.ai-mascot-frame {
    position: relative;
    padding: 12px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
        rgba(15, 23, 42, 0.52);
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

[data-theme="light"] .ai-mascot-frame {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(219, 234, 254, 0.44)),
        rgba(255, 255, 255, 0.54);
    box-shadow: 0 22px 60px rgba(30, 58, 138, 0.12);
}

.ai-mascot-frame::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 6px;
}

.ai-mascot-frame picture,
.ai-mascot-frame img {
    display: block;
}

.ai-mascot-frame img {
    width: 100%;
    aspect-ratio: 1774 / 887;
    height: auto;
    object-fit: cover;
    object-position: center right;
    border-radius: 6px;
}

.ai-status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.ai-status-grid span {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 12px;
    color: var(--text-main);
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
}

[data-theme="light"] .ai-status-grid span {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(30, 58, 138, 0.16);
}

.tech-suite-section {
    overflow: hidden;
}

.tech-suite-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tech-suite-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.tech-suite-card:hover {
    border-color: var(--royal-blue-light);
    box-shadow: 0 18px 48px var(--glow-color);
    transform: translateY(-5px);
}

.tech-suite-content {
    padding: 22px;
}

.tech-suite-content span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--electric-blue);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tech-suite-content h3 {
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 1.2rem;
    line-height: 1.35;
}

.tech-suite-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.78;
}

.product-mockup {
    position: relative;
    min-height: 290px;
    padding: 16px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(10, 14, 26, 0.96), rgba(30, 58, 138, 0.62)),
        linear-gradient(90deg, rgba(0, 191, 255, 0.08), transparent);
    border-bottom: 1px solid var(--border-color);
}

.product-mockup::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(0, 191, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 34px 34px;
}

.product-mockup-training {
    background:
        linear-gradient(135deg, rgba(10, 14, 26, 0.96), rgba(30, 58, 138, 0.68)),
        radial-gradient(circle at 78% 24%, rgba(0, 191, 255, 0.18), transparent 38%);
}

.product-mockup-ops {
    background:
        linear-gradient(135deg, rgba(5, 10, 24, 0.98), rgba(15, 23, 42, 0.9)),
        radial-gradient(circle at 44% 58%, rgba(0, 191, 255, 0.2), transparent 34%);
}

.product-mockup-enterprise {
    background:
        linear-gradient(135deg, rgba(241, 245, 249, 0.98), rgba(219, 234, 254, 0.86)),
        radial-gradient(circle at 82% 20%, rgba(59, 130, 246, 0.14), transparent 36%);
}

.mockup-topbar,
.mockup-grid,
.mockup-panel {
    position: relative;
    z-index: 1;
}

.mockup-topbar {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    color: #e0f2fe;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.35;
}

.product-mockup-enterprise .mockup-topbar {
    color: #0f172a;
}

.mockup-topbar strong {
    color: #7dd3fc;
    white-space: nowrap;
}

.product-mockup-enterprise .mockup-topbar strong {
    color: var(--royal-blue);
}

.mockup-grid {
    display: grid;
    gap: 10px;
}

.mockup-grid-training,
.mockup-grid-ops,
.mockup-grid-enterprise {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mockup-panel {
    min-height: 98px;
    padding: 12px;
    overflow: hidden;
    color: #e0f2fe;
    background: rgba(15, 23, 42, 0.56);
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 8px;
}

.product-mockup-enterprise .mockup-panel {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(30, 58, 138, 0.14);
}

.mockup-panel span,
.mockup-panel p {
    display: block;
}

.mockup-panel span {
    margin-bottom: 8px;
    color: #93c5fd;
    font-size: 0.68rem;
    font-weight: 850;
}

.product-mockup-enterprise .mockup-panel span {
    color: var(--royal-blue);
}

.mockup-panel strong {
    display: block;
    margin-bottom: 4px;
    color: #f8fafc;
    font-size: 1.68rem;
    line-height: 1;
}

.product-mockup-enterprise .mockup-panel strong {
    color: #0f172a;
}

.mockup-panel p {
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.7rem;
    line-height: 1.45;
}

.product-mockup-enterprise .mockup-panel p {
    color: #64748b;
}

.mockup-panel-main {
    background:
        radial-gradient(circle at 72% 44%, rgba(0, 191, 255, 0.22), transparent 42%),
        rgba(15, 23, 42, 0.62);
}

.line-chart {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 6px;
    height: 52px;
    margin-top: 10px;
}

.line-chart i,
.bar-chart i {
    display: block;
    border-radius: 999px 999px 2px 2px;
    background: linear-gradient(180deg, var(--electric-blue), var(--royal-blue-light));
}

.line-chart i:nth-child(1) { height: 35%; }
.line-chart i:nth-child(2) { height: 48%; }
.line-chart i:nth-child(3) { height: 62%; }
.line-chart i:nth-child(4) { height: 56%; }
.line-chart i:nth-child(5) { height: 76%; }
.line-chart i:nth-child(6) { height: 64%; }

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 8px;
}

.heatmap-grid i {
    display: block;
    aspect-ratio: 1;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.28);
}

.heatmap-grid i:nth-child(3),
.heatmap-grid i:nth-child(5) {
    background: rgba(245, 158, 11, 0.76);
}

.heatmap-grid i:nth-child(7) {
    background: rgba(0, 191, 255, 0.72);
}

.bar-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 58px;
    margin-top: 10px;
}

.bar-chart i {
    width: 100%;
    height: var(--h);
    min-height: 14px;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 18px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
    position: relative;
    overflow: hidden;
    padding: 26px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -42%;
    z-index: 1;
    width: 42%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--royal-blue-light), transparent);
    opacity: 0.8;
    animation: cardScan 3.8s ease-in-out infinite;
}

.card::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 150px;
    height: 150px;
    pointer-events: none;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,50 C60,40 75,45 75,55 C75,65 60,75 50,75 C35,75 25,60 25,45' fill='none' stroke='%233b82f6' stroke-width='1.5' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: var(--transition-smooth);
}

.card:hover {
    border-color: var(--royal-blue);
    box-shadow: 0 16px 42px var(--glow-color);
    transform: translateY(-5px);
}

.card:hover::after {
    opacity: 0.2;
    transform: scale(1.1);
}

.card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 1.18rem;
    line-height: 1.42;
}

.card p {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.value-icon,
.solution-icon {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 8px;
    box-shadow: 0 0 22px var(--glow-color);
}

.value-icon svg,
.solution-icon svg,
.location-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-visual-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
    align-items: stretch;
    margin: 34px 0 24px;
    padding: 18px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(30, 58, 138, 0.32)),
        var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

[data-theme="light"] .solution-visual-panel {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(219, 234, 254, 0.58)),
        var(--bg-card);
}

.solution-visual-copy {
    position: relative;
    z-index: 1;
    padding: 20px 10px 20px 18px;
}

.solution-visual-copy > span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--electric-blue);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.solution-visual-copy h3 {
    max-width: 560px;
    margin-bottom: 14px;
    color: var(--text-main);
    font-size: 1.65rem;
    line-height: 1.38;
}

.solution-visual-copy p {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.9;
}

.solution-points {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    list-style: none;
}

.solution-points li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 7px;
}

[data-theme="light"] .solution-points li {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(30, 58, 138, 0.14);
}

.solution-points strong {
    color: var(--royal-blue-light);
    font-size: 0.86rem;
    font-weight: 900;
}

.solution-points span {
    color: var(--text-desc);
    font-size: 0.86rem;
    line-height: 1.55;
}

.solution-image-frame {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

.solution-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 46%, rgba(10, 14, 26, 0.62)),
        linear-gradient(90deg, rgba(10, 14, 26, 0.18), transparent 38%);
}

.solution-image-frame picture,
.solution-image-frame img {
    display: block;
}

.solution-image-frame picture {
    width: 100%;
    height: 100%;
}

.solution-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solution-image-frame figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    padding: 8px 12px;
    color: #fff;
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 850;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-heading-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 52px;
}

.vertical-text {
    color: transparent;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.05;
    writing-mode: vertical-rl;
    -webkit-text-stroke: 1px var(--royal-blue-light);
}

.project-card {
    padding: 0;
}

.project-card::after {
    display: none;
}

.project-image {
    position: relative;
    min-height: 190px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.1), rgba(10, 14, 26, 0.65));
}

.project-image-brand {
    background-image: url("../images/brand-statement.jpg");
}

.project-image-values {
    background-image: url("../images/brand-values.png");
}

.project-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 8px 12px;
    color: #fff;
    background: var(--royal-blue);
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 800;
}

.project-content {
    padding: 22px;
}

.project-content h3 {
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 1.32rem;
}

.project-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.project-stats div {
    padding: 14px 10px;
    text-align: center;
    background: rgba(30, 58, 138, 0.12);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.project-stats strong,
.project-stats span {
    display: block;
}

.project-stats strong {
    color: var(--royal-blue-light);
    font-size: 1.05rem;
    line-height: 1.2;
}

.project-stats span {
    margin-top: 6px;
    color: var(--text-desc);
    font-size: 0.74rem;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.location-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.location-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--royal-blue-light);
    background: rgba(30, 58, 138, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.26);
    border-radius: 8px;
}

.location-card span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 10px;
    color: #fff;
    background: var(--royal-blue);
    border-radius: 4px;
    font-size: 0.76rem;
    font-weight: 850;
}

.location-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: auto;
    color: var(--royal-blue-light);
    font-size: 0.86rem;
}

.store-gallery {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 8px;
    margin: 14px 0 10px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.store-thumb {
    position: relative;
    min-width: 0;
    aspect-ratio: 4 / 3;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(14, 165, 233, 0.08)),
        var(--bg-sec);
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.store-thumb::before,
.store-thumb::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.store-thumb::before {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.32)),
        linear-gradient(135deg, rgba(59, 130, 246, 0.18), transparent 48%);
    opacity: 0.78;
    transition: opacity 0.25s ease;
}

.store-thumb::after {
    z-index: 2;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 5px;
}

.store-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.store-thumb:hover,
.store-thumb:focus-visible {
    border-color: rgba(96, 165, 250, 0.72);
    box-shadow: 0 14px 32px rgba(30, 58, 138, 0.2);
    transform: translateY(-1px);
}

.store-thumb:hover::before,
.store-thumb:focus-visible::before {
    opacity: 0.34;
}

.store-thumb:hover img {
    transform: scale(1.08);
    opacity: 1;
    filter: saturate(1.08) contrast(1.04);
}

.store-thumb span {
    position: absolute;
    z-index: 3;
    right: 5px;
    bottom: 5px;
    display: inline-flex;
    min-width: 30px;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(10, 14, 26, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
    backdrop-filter: blur(8px);
}

.gallery-open {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 34px;
    margin: 0 0 12px;
    color: var(--royal-blue-light);
    cursor: pointer;
    background: rgba(30, 58, 138, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 800;
}

.gallery-open:hover {
    color: #fff;
    background: var(--royal-blue);
    border-color: var(--royal-blue-light);
}

.partner-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.partner-item {
    margin: 0;
    text-align: center;
}

.partner-logo {
    display: grid;
    place-items: center;
    height: 112px;
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.partner-logo:hover {
    border-color: var(--royal-blue);
    transform: translateY(-4px);
}

.partner-logo img {
    width: 100%;
    height: 82px;
    object-fit: contain;
    filter: saturate(0.9) brightness(1.06);
}

.partner-item figcaption {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.equipment-panel {
    display: grid;
    grid-template-columns: minmax(250px, 0.42fr) 1fr;
    gap: 28px;
    align-items: center;
    margin-top: 36px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.equipment-panel h3 {
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 1.45rem;
}

.equipment-panel p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.equipment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.equipment-row span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    color: var(--text-main);
    background: var(--bg-sec);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.84rem;
    font-weight: 750;
}

.equipment-row .highlight {
    color: #fff;
    background: var(--royal-blue);
    border-color: var(--royal-blue);
}

.elite-section {
    position: relative;
    padding: 82px 48px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(30, 58, 138, 0.94), rgba(15, 23, 42, 0.96)),
        url("../images/brand-values.png") center / cover;
}

.elite-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.35;
}

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

.elite-content .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.elite-content h2 {
    margin-bottom: 18px;
    font-size: 4.2rem;
    line-height: 1;
}

.elite-quote {
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.25rem;
    font-style: italic;
}

.elite-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.elite-features article {
    min-height: 136px;
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.elite-features h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.elite-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.elite-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.elite-features p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.contact-section {
    padding-bottom: 68px;
}

.contact-network-bg {
    position: absolute;
    inset: 8% 2% auto auto;
    z-index: 0;
    width: min(760px, 92vw);
    opacity: 0.22;
    pointer-events: none;
}

.contact-web-lines path {
    stroke: var(--royal-blue-light);
    stroke-width: 2;
}

.contact-network-bg text {
    fill: var(--royal-blue-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 52px;
    font-weight: 850;
    opacity: 0.34;
}

.contact-network-bg text + text {
    font-size: 18px;
    opacity: 0.24;
}

.contact-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.footer {
    padding: 44px 48px 26px;
    color: var(--text-desc);
    text-align: center;
    background: var(--bg-sec);
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    width: 100px;
    height: 58px;
    margin: 0 auto 18px;
    object-fit: contain;
    filter: var(--logo-filter);
    mix-blend-mode: var(--logo-blend);
    opacity: 0.76;
}

.footer-brand {
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 1.35rem;
    font-weight: 800;
}

.footer-en {
    margin-bottom: 20px;
    color: var(--royal-blue-light);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.footer p {
    margin-bottom: 8px;
    font-size: 0.86rem;
}

.footer a {
    color: var(--royal-blue-light);
    text-decoration: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: grid;
    place-items: center;
    padding: 72px 72px 56px;
    background:
        radial-gradient(circle at 78% 18%, rgba(59, 130, 246, 0.18), transparent 34%),
        rgba(3, 7, 18, 0.88);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.28s ease, visibility 0s linear 0s;
}

.gallery-lightbox.active.closing {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-topbar {
    position: absolute;
    top: 22px;
    right: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #f8fafc;
}

.lightbox-title {
    font-size: 1rem;
    font-weight: 850;
}

.lightbox-counter {
    margin-top: 2px;
    color: rgba(248, 250, 252, 0.62);
    font-size: 0.82rem;
}

.lightbox-close,
.lightbox-nav {
    display: grid;
    place-items: center;
    color: #fff;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-close {
    width: 44px;
    height: 44px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 22px;
}

.lightbox-next {
    right: 22px;
}

.lightbox-close svg,
.lightbox-nav svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lightbox-stage {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
}

.lightbox-stage img {
    max-width: min(100%, 1180px);
    max-height: calc(100vh - 160px);
    object-fit: contain;
    cursor: zoom-out;
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
    transform: scale(1);
    transition: transform 0.22s ease, opacity 0.22s ease;
    user-select: none;
}

.gallery-lightbox.active:not(.closing) .lightbox-stage img {
    animation: lightboxZoomIn 0.24s ease both;
}

.gallery-lightbox.active.closing .lightbox-stage img {
    opacity: 0;
    transform: scale(0.82);
}

@keyframes lightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-stage figcaption,
.lightbox-hint {
    color: rgba(248, 250, 252, 0.64);
    font-size: 0.82rem;
}

.lightbox-stage figcaption {
    margin-top: 12px;
    text-align: center;
}

.lightbox-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.icp-record {
    margin-top: 12px;
}

.icp-record a {
    color: var(--text-desc);
    font-size: 0.82rem;
}

.icp-record a:hover {
    color: var(--royal-blue-light);
}

.copyright {
    margin-top: 10px;
    opacity: 0.56;
}

.scroll-hint {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    box-shadow: var(--card-shadow);
    transform: translateX(-50%);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.scroll-hint.hidden {
    opacity: 0;
    transform: translate(-50%, 16px);
    pointer-events: none;
}

.scroll-hint span {
    font-size: 0.78rem;
    font-weight: 700;
}

.scroll-hint-arrow {
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--royal-blue-light);
    border-bottom: 2px solid var(--royal-blue-light);
    transform: rotate(45deg);
    animation: arrowMove 1.2s infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateY(-2px) rotate(45deg); }
    50% { transform: translateY(4px) rotate(45deg); }
}

.speed-lines {
    position: absolute;
    width: 80px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--royal-blue-light), transparent);
    opacity: 0;
    animation: speedLine 3s linear infinite;
}

@keyframes speedLine {
    0% { transform: translateX(-120px); opacity: 0; }
    20%, 70% { opacity: 0.35; }
    100% { transform: translateX(120px); opacity: 0; }
}

@media (max-width: 1180px) {
    .tech-suite-grid,
    .grid-4,
    .network-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .equipment-panel,
    .ai-inner,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .ai-visual {
        max-width: 760px;
    }
}

@media (max-width: 1024px) {
    .nav {
        padding: 15px 30px;
    }

    .nav.scrolled {
        padding: 10px 30px;
    }

    .nav-logo-image {
        width: 92px;
        height: 58px;
    }

    .nav-right {
        gap: 16px;
    }

    .hamburger-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        z-index: 2000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        padding: 104px 28px 34px;
        overflow-y: auto;
        overscroll-behavior: contain;
        background:
            linear-gradient(135deg, rgba(10, 14, 26, 0.74), rgba(15, 23, 42, 0.58)),
            radial-gradient(circle at 85% 18%, rgba(59, 130, 246, 0.18), transparent 36%);
        backdrop-filter: blur(14px) saturate(1.18);
        -webkit-backdrop-filter: blur(14px) saturate(1.18);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-30px);
        pointer-events: none;
        transition:
            opacity 0.4s var(--transition-smooth),
            transform 0.4s var(--transition-smooth),
            visibility 0s linear 0.4s;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        transition:
            opacity 0.4s var(--transition-smooth),
            transform 0.4s var(--transition-smooth),
            visibility 0s linear 0s;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 10px 18px;
        color: #f8fafc;
        background: rgba(15, 23, 42, 0.54);
        border: 1px solid rgba(148, 163, 184, 0.24);
        border-radius: 8px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
        font-size: 1.25rem;
        font-weight: 850;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-links a::after {
        display: none;
    }

    [data-theme="light"] .nav-links {
        background:
            linear-gradient(135deg, rgba(241, 245, 249, 0.78), rgba(255, 255, 255, 0.56)),
            radial-gradient(circle at 84% 18%, rgba(59, 130, 246, 0.16), transparent 36%);
    }

    [data-theme="light"] .nav-links a {
        color: #0f172a;
        background: rgba(255, 255, 255, 0.56);
        border-color: rgba(30, 58, 138, 0.18);
        box-shadow: 0 12px 30px rgba(30, 58, 138, 0.08);
    }

    .hero {
        padding: 126px 30px 72px;
    }

    .hero-bg-image {
        inset: 0;
        width: 100%;
        object-position: 64% center;
        opacity: 0.3;
        -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.22));
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.22));
    }

    .hero::before {
        background:
            linear-gradient(180deg, var(--bg-sec) 0%, rgba(15, 23, 42, 0.78) 46%, rgba(15, 23, 42, 0.42) 100%),
            linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.3));
    }

    [data-theme="light"] .hero::before {
        background:
            linear-gradient(180deg, rgba(248, 250, 252, 0.94) 0%, rgba(248, 250, 252, 0.78) 48%, rgba(248, 250, 252, 0.44) 100%),
            linear-gradient(90deg, rgba(248, 250, 252, 0.86), rgba(248, 250, 252, 0.34));
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

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

    .domain-network {
        width: min(500px, 100vw);
        opacity: 0.58;
    }

    .hero-quote,
    .hero-desc {
        max-width: none;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .elite-content h2 {
        font-size: 3.2rem;
    }

    .hero-quote {
        display: inline-block;
        text-align: left;
    }

    .hero-stats-row,
    .hero-btns,
    .contact-actions {
        justify-content: center;
    }

    .grid-2,
    .grid-3,
    .tech-suite-grid,
    .ai-feature-grid,
    .partner-row,
    .elite-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-visual-panel {
        grid-template-columns: 1fr;
    }

    .solution-image-frame {
        min-height: 320px;
    }

    .ai-visual {
        grid-column: auto;
        grid-row: auto;
    }

    .section-heading-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        font-size: 2.2rem;
    }

    .contact-network-bg {
        inset: 10% auto auto 50%;
        width: 720px;
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 112px 22px 64px;
        overflow: hidden;
        background:
            radial-gradient(circle at 50% 9%, rgba(59, 130, 246, 0.12), transparent 36%),
            var(--bg-sec);
    }

    .hero-inner,
    .hero-text {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-bg-image {
        display: none;
    }

    .hero-bg-mobile-image {
        display: block;
        opacity: 0.62;
        filter: saturate(1.12) contrast(1.04);
        transform: translateY(-28px) scale(1.02);
        transform-origin: center top;
        -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.92) 34%, rgba(0, 0, 0, 0.58) 68%, rgba(0, 0, 0, 0.2) 100%);
        mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.92) 34%, rgba(0, 0, 0, 0.58) 68%, rgba(0, 0, 0, 0.2) 100%);
    }

    .hero::before {
        background:
            radial-gradient(ellipse at 50% 22%, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.58) 48%, rgba(15, 23, 42, 0.9) 82%),
            linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.62) 52%, rgba(15, 23, 42, 0.96) 100%);
    }

    [data-theme="light"] .hero::before {
        background:
            radial-gradient(ellipse at 50% 22%, rgba(248, 250, 252, 0.34) 0%, rgba(248, 250, 252, 0.66) 42%, rgba(248, 250, 252, 0.92) 76%),
            linear-gradient(180deg, rgba(248, 250, 252, 0.08) 0%, rgba(248, 250, 252, 0.66) 48%, rgba(248, 250, 252, 0.98) 100%);
    }

    .nav-links {
        gap: 10px;
        padding: 92px 20px 28px;
    }

    .nav-links a {
        min-height: 48px;
        font-size: 1.08rem;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(1.88rem, 8.1vw, 2.04rem);
        line-height: 1.18;
        letter-spacing: -0.04em;
    }

    .hero-title-line {
        display: block;
    }

    .title-separator {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .elite-content h2 {
        font-size: 2.5rem;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.85;
    }

    .hero-stats-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: min(100%, 320px);
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 24px;
    }

    .hero-stat {
        min-width: 0;
        text-align: center;
    }

    .domain-pill {
        margin-bottom: 14px;
    }

    .domain-network {
        width: 430px;
        opacity: 0.42;
    }

    .hero-stat dt {
        font-size: 1.62rem;
    }

    .hero-stat dd {
        font-size: 0.68rem;
    }

    .hero-btns,
    .contact-actions {
        flex-direction: column;
    }

    .hero-btns {
        width: min(100%, 346px);
        margin-right: auto;
        margin-left: auto;
    }

    .btn {
        width: 100%;
    }

    .scroll-hint {
        display: none;
    }

    .solution-visual-panel {
        gap: 14px;
        margin: 26px 0 22px;
        padding: 12px;
    }

    .ai-section {
        padding-top: 80px;
    }

    .ai-inner {
        gap: 22px;
    }

    .ai-mascot-frame {
        padding: 9px;
        border-radius: 10px;
    }

    .ai-mascot-frame::before {
        inset: 9px;
        border-radius: 8px;
    }

    .ai-status-grid {
        gap: 8px;
        margin-top: 10px;
    }

    .ai-status-grid span {
        min-height: 40px;
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .ai-feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 0;
    }

    .ai-feature-grid article {
        min-height: auto;
        padding: 20px 18px;
    }

    .solution-visual-copy {
        padding: 12px 8px 8px;
    }

    .solution-visual-copy h3 {
        font-size: 1.32rem;
    }

    .solution-points li {
        grid-template-columns: 48px 1fr;
        padding: 9px 10px;
    }

    .solution-image-frame {
        min-height: 230px;
    }

    .solution-image-frame figcaption {
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        white-space: normal;
    }

    .section,
    .partner-section,
    .elite-section {
        padding: 72px 22px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .tech-suite-grid,
    .ai-feature-grid,
    .network-grid,
    .partner-row,
    .elite-features {
        grid-template-columns: 1fr;
    }

    .ai-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .ai-inner {
        gap: 28px;
    }

    .ai-feature-grid article {
        min-height: auto;
    }

    .product-mockup {
        min-height: 250px;
        padding: 14px;
    }

    .mockup-panel {
        min-height: 88px;
    }

    .ai-status-grid {
        grid-template-columns: 1fr;
    }

    .store-gallery {
        gap: 6px;
    }

    .gallery-lightbox {
        padding: 64px 14px 54px;
    }

    .lightbox-topbar {
        top: 14px;
        right: 14px;
        left: 14px;
    }

    .lightbox-stage img {
        max-height: calc(100vh - 150px);
        border-radius: 6px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 18px;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .lightbox-prev {
        left: 18px;
    }

    .lightbox-next {
        right: 18px;
    }

    .lightbox-hint {
        display: none;
    }

    .card {
        padding: 28px 22px;
    }

    .project-card {
        padding: 0;
    }

    .project-stats {
        grid-template-columns: 1fr;
    }

    .partner-logo {
        height: 110px;
    }

    .equipment-panel {
        padding: 24px;
    }

    .footer {
        padding: 48px 22px 28px;
    }

    .contact-network-bg {
        width: 540px;
        opacity: 0.16;
    }

}

.wechat-share-prerender {
    position: absolute;
    top: 0;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0.01;
    pointer-events: none;
}

.share-page {
    min-height: 100vh;
    color: var(--text-main);
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent 34%),
        linear-gradient(180deg, var(--bg-main), var(--bg-sec));
}

.share-article {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 26px 18px 44px;
}

.share-hero-card,
.share-section {
    position: relative;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.share-hero-card {
    margin-bottom: 18px;
}

.share-logo {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.share-logo img {
    display: block;
    width: 58px;
    height: auto;
}

.share-cover {
    display: block;
    width: 100%;
    height: auto;
    background: #07111f;
}

.share-hero-content {
    padding: 22px 22px 24px;
}

.share-hero-content span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--royal-blue-light);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.share-hero-content h1 {
    margin: 0 0 10px;
    font-size: clamp(2.1rem, 8vw, 3.25rem);
    line-height: 1;
}

.share-hero-content p,
.share-section p {
    margin: 0;
    color: var(--text-desc);
    line-height: 1.8;
}

.share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.share-actions a,
.share-primary {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #fff;
    text-decoration: none;
    background: var(--royal-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 850;
}

.share-actions a + a {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-color);
}

.share-section {
    margin-top: 14px;
    padding: 22px;
}

.share-section h2 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

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

.share-points article {
    padding: 14px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 6px;
}

.share-points strong,
.share-points span {
    display: block;
}

.share-points strong {
    margin-bottom: 6px;
    color: var(--royal-blue-light);
    font-size: 0.98rem;
}

.share-points span {
    color: var(--text-desc);
    font-size: 0.84rem;
    line-height: 1.6;
}

.share-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.share-photo-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 6px;
}

.share-contact p + p {
    margin-top: 6px;
}

.share-primary {
    width: 100%;
    margin-top: 18px;
}

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

@media (max-width: 640px) {
    .share-article {
        padding: 12px 10px 28px;
    }

    .share-hero-content,
    .share-section {
        padding: 18px;
    }

    .share-logo {
        width: 60px;
        height: 60px;
    }

    .share-logo img {
        width: 48px;
    }

    .share-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .share-points {
        grid-template-columns: 1fr;
    }
}

@media (max-height: 560px) and (max-width: 1024px) {
    .nav-links {
        gap: 8px;
        padding-top: 78px;
    }

    .nav-links a {
        min-height: 42px;
        font-size: 1rem;
    }
}

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