/* === Design Tokens === */
:root {
    --bg: #faf9f7;
    --bg-alt: #f3f1ee;
    --surface: #ffffff;
    --border: #e8e5e0;
    --border-hover: #d4d0ca;
    --text: #1a1a19;
    --text-2: #5c5b58;
    --text-3: #8a8985;
    --accent: #d97757;
    --accent-hover: #c4623f;
    --accent-light: rgba(217, 119, 87, 0.08);
    --font: "Inter", -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
    --font-serif: "Noto Serif SC", "Songti SC", serif;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
    --nav-h: 64px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* === Layout === */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); position: relative; }
.section-alt::before { content: ""; position: absolute; top: -40px; left: 0; right: 0; height: 40px; background: var(--bg-alt); clip-path: polygon(0 100%, 100% 100%, 100% 0, 75% 60%, 50% 20%, 25% 70%, 0 40%); }
.section-alt + .section { position: relative; }
.section-alt + .section::before { content: ""; position: absolute; top: -40px; left: 0; right: 0; height: 40px; background: var(--bg); clip-path: polygon(0 100%, 100% 100%, 100% 0, 75% 60%, 50% 20%, 25% 70%, 0 40%); }
.section-title { font-family: var(--font-serif); font-size: clamp(28px, 5vw, 40px); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-desc { color: var(--text-2); font-size: 17px; max-width: 560px; margin-bottom: 48px; }

/* === Nav === */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100; background: rgba(250, 249, 247, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { height: 26px; }
.nav-title-wrap { display: flex; flex-direction: column; }
.nav-title { font-weight: 700; font-size: 16px; }
.nav-sub { font-size: 10px; font-weight: 400; color: var(--text-3); letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 8px 12px; border-radius: var(--radius); font-size: 14px; color: var(--text-2); transition: background 0.2s, color 0.2s; }
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.nav-primary { color: #fff; background: var(--accent); font-weight: 600; }
.nav-links a.nav-primary:hover { color: #fff; background: var(--accent-hover); }
.nav-links a.nav-site { color: var(--accent); background: var(--accent-light); font-weight: 600; }
.nav-links a.nav-site:hover { color: #fff; background: var(--accent); }
.nav-toggle { display: none; width: 24px; height: 18px; position: relative; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--text); position: absolute; left: 0; transition: 0.3s; }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 8px; }
.nav-toggle span:nth-child(3) { top: 16px; }
.nav-progress { position: absolute; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--accent), #f4a261); width: 0%; transition: none; }
.nav-links a.nav-active:not(.nav-primary) { color: var(--accent); background: var(--accent-light); }

/* === Hero === */
.hero { padding: 160px 0 100px; text-align: center; position: relative; overflow: hidden; }
.hero-eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 600; margin-bottom: 20px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(36px, 7vw, 56px); font-weight: 700; line-height: 1.15; letter-spacing: -1px; margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--accent); }
.hero-desc { color: var(--text-2); font-size: 18px; max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; padding: 12px 24px; border-radius: var(--radius); font-size: 15px; font-weight: 500; transition: all 0.2s; position: relative; overflow: hidden; }
.btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%); transform: translateX(-100%); transition: none; }
.btn:hover::after { transform: translateX(100%); transition: transform 0.6s ease; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 2px 8px rgba(217,119,87,0.2); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 4px 16px rgba(217,119,87,0.3); transform: translateY(-1px); }
.btn-secondary { border: 1px solid var(--border); color: var(--text); }
.btn-secondary:hover { border-color: var(--border-hover); background: var(--surface); transform: translateY(-1px); }

/* === Features Grid === */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; position: relative; overflow: hidden; transform-style: preserve-3d; }
.feature-card::after { content: ""; position: absolute; width: 200px; height: 200px; left: var(--mouse-x, 50%); top: var(--mouse-y, 50%); background: radial-gradient(circle, rgba(217,119,87,0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; opacity: 0; transition: opacity 0.3s; transform: translate(-50%, -50%); }
.feature-card:hover::after { opacity: 1; }
.feature-card:hover { border-color: var(--accent); box-shadow: 0 20px 40px rgba(217,119,87,0.1); transform: translateY(-3px); }
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; transition: color 0.3s; }
.feature-card:hover h3 { color: var(--accent); }
.feature-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: rgba(255,255,255,0.8); backdrop-filter: blur(8px); display: flex; flex-direction: column; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s; position: relative; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); z-index: 2; border-color: var(--accent); }
.pricing-card-featured { border-color: var(--accent); position: relative; grid-column: 1 / -1; box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(217,119,87,0.1); }
.pricing-card-featured::before { content: "推荐"; position: absolute; top: -12px; left: 24px; background: var(--accent); color: #fff; font-size: 12px; padding: 4px 12px; border-radius: 4px; font-weight: 500; z-index: 1; animation: badge-glow 2s ease-in-out infinite; }
@keyframes badge-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(217,119,87,0.4), 0 0 12px rgba(217,119,87,0.2); } 50% { box-shadow: 0 0 0 6px rgba(217,119,87,0), 0 0 20px rgba(217,119,87,0.4); } }
.pricing-header h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pricing-sub { font-size: 13px; color: var(--accent); font-weight: 500; }
.pricing-price { font-size: 36px; font-weight: 800; margin: 20px 0 16px; letter-spacing: -1px; }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--text-3); }
.pricing-desc { font-size: 14px; color: var(--text-2); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.pricing-list { margin-bottom: 24px; }
.pricing-list li { font-size: 14px; color: var(--text-2); padding: 6px 0; padding-left: 16px; position: relative; }
.pricing-list li::before { content: ""; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); border: 1.5px solid var(--accent); }
.pricing-list li.list-highlight { color: var(--text); font-weight: 600; }
.pricing-list li.list-highlight::before { background: var(--accent); }
.pricing-card-featured .pricing-list { column-count: unset; }
.pricing-duration { font-size: 13px; color: var(--text-3); margin-top: auto; }

/* === Results Marquee === */
.results-tabs { display: flex; gap: 10px; margin-bottom: 24px; padding: 6px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); display: inline-flex; }
.results-tab { padding: 10px 20px; border-radius: var(--radius); color: var(--text-2); font-size: 14px; font-weight: 600; transition: background 0.2s, color 0.2s; }
.results-tab:hover { color: var(--text); background: var(--bg-alt); }
.results-tab.active { color: #fff; background: var(--accent); }
.results-panel { display: none; }
.results-panel.active { display: block; }
.marquee-wrap { position: relative; overflow: hidden; padding: 0 0 20px; perspective: 1000px; }
.marquee-wrap::before, .marquee-wrap::after { content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-alt), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-alt), transparent); }
.marquee-track { display: flex; gap: 20px; will-change: transform; }
.marquee-track img { height: 360px; width: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); object-fit: contain; flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, filter 0.4s; }
.marquee-track img:hover { transform: scale(1.08) translateZ(20px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); z-index: 3; position: relative; }
.marquee-track img:not(:hover) { filter: blur(0px); transition: filter 0.4s 0.1s; }
.marquee-track:has(img:hover) img:not(:hover) { filter: blur(1.5px); opacity: 0.7; }

@media (max-width: 768px) {
    .marquee-track img { height: 240px; }
}
@media (max-width: 480px) {
    .marquee-track img { height: 180px; }
}

/* === Deploy Details === */
.deploy-details { margin-top: 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.deploy-summary { padding: 16px 20px; font-size: 15px; font-weight: 600; cursor: pointer; background: var(--bg-alt); transition: background 0.2s; list-style: none; display: flex; align-items: center; gap: 8px; }
.deploy-summary::-webkit-details-marker { display: none; }
.deploy-summary::before { content: "▶"; font-size: 11px; color: var(--accent); transition: transform 0.3s; }
.deploy-details[open] .deploy-summary::before { transform: rotate(90deg); }
.deploy-summary:hover { background: var(--border); }
.deploy-content { padding: 20px; font-size: 14px; color: var(--text-2); line-height: 1.8; }
.deploy-content p { margin-bottom: 12px; }
.deploy-content ul { margin: 12px 0; padding-left: 20px; }
.deploy-content li { margin-bottom: 6px; }
.deploy-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.deploy-table th, .deploy-table td { padding: 10px 12px; border: 1px solid var(--border); text-align: left; }
.deploy-table th { background: var(--bg-alt); font-weight: 600; color: var(--text); }
.deploy-table td { color: var(--text-2); }

/* === Versions === */
.version-merge-banner { max-width: 860px; margin: 0 auto 32px; padding: 16px 20px; border: 1px solid var(--accent); border-left: 4px solid var(--accent); border-radius: var(--radius); background: var(--accent-light); }
.version-merge-banner p { font-size: 14px; color: var(--text-2); line-height: 1.8; }
.version-merge-banner strong { color: var(--text); }
.versions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
.version-insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: -20px 0 32px; }
.version-insight { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); transition: border-color 0.3s, transform 0.3s; }
.version-insight:hover { border-color: var(--accent); transform: translateY(-2px); }
.version-insight span { display: block; margin-bottom: 8px; color: var(--accent); font-size: 13px; font-weight: 700; }
.version-insight p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.version-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s; }
.version-card:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(0,0,0,0.1); z-index: 2; }
.version-card-featured { border-color: var(--accent); }
.version-header { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.version-header h3 { font-size: 20px; font-weight: 700; }
.version-badge { font-size: 12px; padding: 3px 10px; border-radius: 4px; background: var(--bg-alt); color: var(--text-2); font-weight: 500; }
.badge-accent { background: var(--accent-light); color: var(--accent); }
.version-desc { font-size: 15px; color: var(--text-2); margin-bottom: 20px; }
.version-list { margin-bottom: 24px; }
.version-list li { font-size: 14px; color: var(--text-2); padding: 5px 0 5px 16px; position: relative; }
.version-list li::before { content: ""; position: absolute; left: 0; top: 12px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* === Tech Grid === */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tech-item { padding: 24px; border-radius: var(--radius); }
.tech-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.tech-item p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* === Tools === */
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tool-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.tool-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.tool-desc { font-size: 14px; color: var(--accent); margin-bottom: 16px; }
.tool-list { margin-bottom: 24px; }
.tool-list li { font-size: 14px; color: var(--text-2); padding: 4px 0 4px 16px; position: relative; }
.tool-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--border-hover); }

/* === Notice === */
.notice-tabs { display: flex; gap: 10px; margin-bottom: 24px; padding: 6px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.notice-tab { flex: 1; min-height: 44px; padding: 10px 14px; border-radius: var(--radius); color: var(--text-2); font-size: 14px; font-weight: 600; transition: background 0.2s, color 0.2s; }
.notice-tab:hover { color: var(--text); background: var(--bg-alt); }
.notice-tab.active { color: #fff; background: var(--accent); }
.notice-panels { min-height: 420px; }
.notice-panel[hidden] { display: none; }
.notice-panel-head { margin-bottom: 20px; }
.notice-panel-head span { display: inline-block; margin-bottom: 6px; color: var(--accent); font-size: 13px; font-weight: 700; }
.notice-panel-head h3 { font-size: 24px; font-weight: 700; }
.notice-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.notice-guide-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.notice-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s; }
.notice-card:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(0,0,0,0.1); z-index: 2; }
.notice-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.notice-card p, .notice-card li { font-size: 14px; color: var(--text-2); line-height: 1.8; }
.notice-card ul { padding-left: 16px; }
.notice-highlight { background: var(--accent-light); border-color: var(--accent); }
.notice-highlight p { color: var(--text); }
.notice-warning { background: rgba(220, 38, 38, 0.06); border: 2px solid #dc2626; }
.notice-warning h4 { color: #dc2626; font-size: 17px; }
.notice-warning p { color: var(--text); }
.notice-quote { font-size: 14px; color: var(--text-3); font-style: italic; margin-top: 16px; border-left: 2px solid var(--accent); padding-left: 12px; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.contact-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.contact-card-featured { grid-column: 1 / -1; display: flex; align-items: center; gap: 24px; overflow: hidden; }
.contact-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: var(--text-2); }
.contact-qr { width: 120px; height: 120px; border-radius: var(--radius); margin-left: auto; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s; }
.contact-qr:hover { transform: scale(1.15); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.contact-value { cursor: pointer; transition: color 0.2s, transform 0.2s; position: relative; }
.contact-value:hover { color: var(--accent); }
.copy-success { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); font-size: 12px; color: var(--accent); white-space: nowrap; animation: copy-fly 1s ease-out forwards; pointer-events: none; }
@keyframes copy-fly { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(-20px); } }
.community { margin-top: 32px; }
.community h3 { font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.community-links { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.community-link { font-size: 14px; padding: 8px 16px; border: 1px solid var(--border); border-radius: var(--radius); color: var(--text-2); transition: border-color 0.2s; }
a.community-link:hover { border-color: var(--accent); color: var(--accent); }
.qq-title { font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.qq-groups { display: flex; flex-wrap: wrap; gap: 8px; }
.qq-groups span { font-size: 13px; padding: 5px 12px; background: var(--bg-alt); border-radius: 4px; color: var(--text-2); cursor: pointer; transition: all 0.2s; }
.qq-groups span:hover { background: var(--accent-light); color: var(--accent); }

/* === Footer === */
.footer { padding: 32px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
.footer-logo { height: 20px; }
.footer-tutorials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-links a.footer-site { padding: 7px 12px; border-radius: var(--radius); color: var(--accent); background: var(--accent-light); font-weight: 600; transition: background 0.2s, color 0.2s; }
.footer-links a.footer-site:hover { color: #fff; background: var(--accent); }
.footer-icp { font-size: 12px; color: var(--text-3); }

/* === Scroll Reveal === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === Section Title Animation === */
.section-title { position: relative; }
.section-title::after { content: ""; position: absolute; bottom: -8px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.section-title.in-view::after { width: 48px; }

/* === Custom Cursor === */
.cursor-dot { position: fixed; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 9999; transition: transform 0.1s ease; mix-blend-mode: difference; }
.cursor-ring { position: fixed; width: 32px; height: 32px; border: 1.5px solid var(--accent); border-radius: 50%; pointer-events: none; z-index: 9998; transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s; opacity: 0.5; }
.cursor-ring.hover { width: 48px; height: 48px; opacity: 0.3; }

/* === Page Loader === */
.page-loader { position: fixed; inset: 0; background: var(--bg); z-index: 10000; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s, visibility 0.6s; }
.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === Responsive === */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card-featured { grid-column: auto; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px 24px; gap: 16px; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero { padding: 120px 0 60px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .versions-grid { grid-template-columns: 1fr; }
    .version-insights { grid-template-columns: 1fr; margin-top: -24px; }
    .tools-grid { grid-template-columns: 1fr; }
    .notice-tabs { flex-direction: column; }
    .notice-grid { grid-template-columns: 1fr; }
    .notice-guide-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .contact-grid { grid-template-columns: 1fr; }
    .community-links { flex-direction: column; }
    .footer-inner { flex-direction: column; text-align: center; }
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    .page-loader { display: none; }
}
