/* =============================================
   Wesley投资 - 主样式表 (v3.0)
   Inspired by Rouge On Blue — minimal, elegant, airy
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS变量 — 更轻盈的色调 */
:root {
    --primary: #1a1a2e;
    --primary-dark: #0d0d1a;
    --primary-light: #3a3a5c;
    --accent: #c9a84c;
    --accent-light: #e0c060;
    --accent-dark: #a8882e;
    --text-primary: #1a1a2e;
    --text-secondary: #555577;
    --text-light: #9999b0;
    --bg-main: #ffffff;
    --bg-light: #f7f7f9;
    --bg-dark: #1a1a2e;
    --bg-card: #ffffff;
    --border: #e8e8ee;
    --border-light: #f0f0f5;
    --success: #dc2626;
    --danger: #059669;
    --warning: #d97706;
    --info: #2563eb;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.03);
    --shadow: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.06);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --nav-height: 68px;
    --transition: 0.35s ease;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

/* 重置 & 基础 */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.8;
    background: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

::selection {
    background: rgba(201, 168, 76, 0.25);
    color: var(--primary);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

/* =============================================
   入场动画系统
   ============================================= */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.anim-fade-up.delay-1 { transition-delay: 0.08s; }
.anim-fade-up.delay-2 { transition-delay: 0.16s; }
.anim-fade-up.delay-3 { transition-delay: 0.24s; }
.anim-fade-up.delay-4 { transition-delay: 0.32s; }
.anim-fade-up.delay-5 { transition-delay: 0.40s; }
.anim-fade-up.delay-6 { transition-delay: 0.48s; }

/* =============================================
   导航栏 — 极简
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

/* 首页透明导航 — 与视频融合 */
.navbar--home {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
}

.navbar--home .nav-logo {
    color: #fff;
}

.navbar--home .nav-link {
    color: rgba(255,255,255,0.7);
}

.navbar--home .nav-link:hover,
.navbar--home .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.navbar--home.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.navbar--home.scrolled .nav-logo {
    color: var(--primary);
}

.navbar--home.scrolled .nav-link {
    color: var(--text-secondary);
}

.navbar--home.scrolled .nav-link:hover,
.navbar--home.scrolled .nav-link.active {
    color: var(--primary);
    background: var(--bg-light);
}

.navbar--home .nav-toggle {
    color: #fff;
}

.navbar--home.scrolled .nav-toggle {
    color: var(--primary);
}

/* 移动端菜单 */
.navbar--home .nav-menu.active {
    background: rgba(255,255,255,0.98);
}

.navbar--home .nav-menu.active .nav-link {
    color: var(--text-secondary);
}

.navbar--home .nav-menu.active .nav-link:hover,
.navbar--home .nav-menu.active .nav-link.active {
    color: var(--primary);
    background: var(--bg-light);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.nav-logo i {
    font-size: 1.2rem;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 500;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-light);
}

.nav-toggle {
    display: none;
    font-size: 1.4rem;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--bg-light);
}

/* =============================================
   Hero — 视频全屏背景
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

/* 全屏背景视频 */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* 底部渐变遮罩 — 只挡底部，保留视频中间通透 */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.15) 35%,
        rgba(0, 0, 0, 0) 55%
    );
    z-index: 1;
    pointer-events: none;
}

/* 内容 — 底部居中 */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 32px 80px;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

.hero-badge i {
    color: var(--accent);
    font-size: 0.7rem;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1.0;
    margin-bottom: 24px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.6rem);
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.4;
}

.hero-quote {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: rgba(255,255,255,0.55);
    font-style: italic;
    margin-bottom: 44px;
    letter-spacing: 0.2px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-quote i {
    color: var(--accent);
    opacity: 0.5;
    margin-right: 4px;
    font-size: 0.7rem;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 滚动提示 */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.scroll-indicator .scroll-line {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* =============================================
   通用板块样式 — 全屏大气
   ============================================= */
.section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section.bg-light {
    background: var(--bg-light);
}

/* 各板块独立背景主题 */
/* 关于我们 — 温暖深色 */
#about.section::before {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 26, 46, 0.03) 0%, transparent 50%);
}

/* 投资哲学 — 深邃智慧 */
#philosophy.section::before {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(26, 26, 46, 0.04) 0%, transparent 50%);
}

/* 个股数据 — 冷静分析 */
#stocks.section::before {
    background:
        radial-gradient(ellipse at 80% 30%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(26, 26, 46, 0.03) 0%, transparent 50%);
}

/* 宏观数据 — 全球视野 */
#macro.section::before {
    background:
        radial-gradient(ellipse at 50% 20%, rgba(13, 148, 136, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
}

/* 投资方法论 — 严谨学术 */
#methodology.section::before {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(26, 26, 46, 0.03) 0%, transparent 50%);
}

/* 业绩 — 成就稳重 */
#report.section::before {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(220, 38, 38, 0.02) 0%, transparent 50%);
}

/* 板块标题在深色背景上 */
#about .section-header h2,
#philosophy .section-header h2,
#stocks .section-header h2,
#macro .section-header h2,
#methodology .section-header h2,
#report .section-header h2 {
    color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-header h2 i {
    color: var(--accent);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subsection {
    margin-top: 56px;
}

.section-subsection h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-weight: 700;
}

/* =============================================
   快速入口 — 滚动滑动轮播
   ============================================= */
.quick-links {
    position: relative;
    background: linear-gradient(135deg, #f7f7f9 0%, #f0f0f5 100%);
    overflow: visible;
}

.carousel-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.quick-links-grid {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 轮播轨道 */
.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* 整个 slide 可点击 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

/* 极浅遮罩 */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.02) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.slide-link:hover .slide-overlay {
    opacity: 0;
}

/* 文字 — 右下角 */
.slide-text {
    position: absolute;
    bottom: 64px;
    right: 64px;
    z-index: 2;
    text-align: right;
    pointer-events: none;
}

.slide-text h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.slide-text p {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* 悬停时底部装饰线 */
.slide-text::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent);
    margin-top: 12px;
    margin-left: auto;
    transition: width 0.4s ease;
    border-radius: 1px;
}

.slide-link:hover .slide-text::after {
    width: 60px;
}

/* 滑动进度条 */
.carousel-progress {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.carousel-progress-bar {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: var(--border);
    transition: background 0.4s ease, width 0.4s ease;
}

.carousel-progress-bar.active {
    background: var(--accent);
    width: 48px;
}

/* 滚动提示 */
.carousel-hint {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    opacity: 0.5;
    animation: hintPulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(3px); }
}

.carousel-hint i {
    font-size: 0.75rem;
}

/* =============================================
   按钮 — 简洁
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border);
}

/* Hero 内的按钮适配深色视频背景 */
.hero-content .btn-secondary {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.3);
}

.hero-content .btn-secondary:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 6px 18px;
    font-size: 0.8rem;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-light);
}

/* =============================================
   关于我们
   ============================================= */
.about-content {
    max-width: 960px;
    margin: 0 auto;
}

.about-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.about-intro {
    margin-bottom: 60px;
}

.intro-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
}

.intro-card:hover {
    box-shadow: var(--shadow-hover);
}

.intro-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.intro-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.intro-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .intro-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }
}

.mission-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.mission-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 18px;
}

.mission-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-team {
    margin-bottom: 60px;
}

.about-team h3 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 32px 20px 28px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 2rem;
    color: var(--text-light);
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    display: block;
}

.team-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-title {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.about-contact h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary);
}

.contact-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* =============================================
   个股板块
   ============================================= */
.stock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.stock-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.stock-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stock-header {
    padding: 24px 24px 0;
}

.stock-rating {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.rating-buy { background: rgba(220, 38, 38, 0.08); color: var(--success); }
.rating-hold { background: rgba(217, 119, 6, 0.08); color: var(--warning); }
.rating-sell { background: rgba(5, 150, 105, 0.08); color: var(--danger); }
.rating-watch { background: rgba(37, 99, 235, 0.08); color: var(--info); }

.stock-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stock-code {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 2px;
}

.stock-body {
    padding: 14px 24px;
    flex: 1;
}

.stock-industry {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.stock-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 700;
}

.price-change {
    font-size: 0.82rem;
    font-weight: 600;
}

.price-change.up { color: var(--success); }
.price-change.down { color: var(--danger); }

.stock-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.metric {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.82rem;
}

.metric-label {
    color: var(--text-light);
}

.stock-desc {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stock-footer {
    padding: 14px 24px;
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--border);
}

/* =============================================
   宏观数据板块
   ============================================= */
.macro-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.macro-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.macro-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.macro-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    background: var(--bg-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.macro-card:hover .macro-card-icon {
    background: var(--primary);
    color: #fff;
}

.macro-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.macro-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.macro-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.macro-card:hover .macro-card-arrow {
    gap: 8px;
    color: var(--primary);
}

.macro-note {
    margin-top: 32px;
    padding: 14px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    color: var(--text-light);
    text-align: center;
}

.macro-note i {
    color: var(--accent);
}

/* 数据表格 */
.table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
}

.data-table th {
    background: var(--bg-light);
    padding: 12px 18px;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
    font-size: 0.82rem;
}

.data-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: var(--bg-light);
}

.tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 600;
}

.tag-buy {
    background: rgba(220, 38, 38, 0.08);
    color: var(--success);
}

.tag-sell {
    background: rgba(5, 150, 105, 0.08);
    color: var(--danger);
}

/* 宏观数据表格 */
.macro-table {
    margin-bottom: 0;
}

.macro-table .data-table th {
    white-space: nowrap;
    font-size: 0.8rem;
}

.macro-table .data-table td {
    font-size: 0.84rem;
    text-align: right;
}

.macro-table .data-table td:first-child {
    text-align: center;
    font-weight: 600;
}

.macro-table .data-table td.down {
    color: var(--danger);
    font-weight: 600;
}

.macro-table .data-table td.up {
    color: var(--success);
    font-weight: 600;
}

.macro-table .highlight-row td {
    background: var(--bg-light);
    font-weight: 600;
}

/* =============================================
   投资哲学板块
   ============================================= */
.principles-details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.principles-details[open] {
    box-shadow: var(--shadow-hover);
}

.principles-details summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--bg-main);
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    transition: var(--transition);
}

.principles-details summary:hover {
    background: var(--bg-light);
}

.principles-details summary::-webkit-details-marker {
    display: none;
}

.principles-details summary i {
    color: var(--accent);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.principles-details[open] summary i {
    transform: rotate(90deg);
}

.principles-details[open] summary {
    border-bottom-color: var(--border);
}

.principles-details .principles-list {
    border: none;
    margin: 0;
}

.principles-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.principle-item:hover {
    border-color: var(--accent);
}

.principle-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
}

.principle-content {
    flex: 1;
    min-width: 0;
    padding-top: 6px;
}

.principle-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.principle-quote {
    display: block;
    font-style: italic;
    color: var(--accent-dark);
    padding: 6px 0 4px 14px;
    border-left: 2px solid var(--accent);
    margin: 4px 0;
    font-size: 0.86rem;
}

/* 价值先驱网格 */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.master-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.master-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.master-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.master-card:hover .master-icon {
    background: var(--primary);
    color: #fff;
}

.master-icon-img {
    padding: 0;
    overflow: hidden;
}
.master-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.master-card:hover .master-icon-img img {
    transform: scale(1.1);
}

.master-name {
    font-size: 0.84rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.3;
}

.master-arrow {
    font-size: 0.72rem;
    color: var(--text-light);
    opacity: 0;
    transition: var(--transition);
}

.master-card:hover .master-arrow {
    opacity: 1;
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .masters-grid {
        grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
        gap: 12px;
    }
    .master-card {
        padding: 18px 12px 16px;
    }
}

/* 步骤卡片（定量/定性分析） */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-content > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}

.step-detail {
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.step-detail h4 {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-detail ul {
    padding-left: 18px;
}

.step-detail li {
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    list-style: disc;
}

.step-detail li strong {
    color: var(--text-primary);
}

/* =============================================
   思维导图
   ============================================= */
.mindmap-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 16px 0;
}

.mindmap-svg {
    width: 100%;
    height: auto;
}

/* =============================================
   方法论入口卡片
   ============================================= */
.method-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.method-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.method-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: var(--transition);
}

.method-card:hover .method-card-icon {
    transform: scale(1.05);
}

.method-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.method-card p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.method-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.method-card:hover .method-card-arrow {
    gap: 8px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .method-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .method-card {
        padding: 24px 20px;
    }
}

/* =============================================
   年报板块
   ============================================= */
.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.report-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.report-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--bg-light);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.report-stats {
    width: 100%;
}

.report-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.report-stat:last-of-type {
    border-bottom: none;
}

.report-stat.ref .report-stat-label {
    font-size: 0.76rem;
    color: var(--text-light);
}
.report-stat.ref .report-stat-value {
    font-size: 0.92rem;
}
.report-stat.ref {
    border-bottom: 1px dashed var(--border);
    padding: 6px 0;
}
.report-stat-value.down {
    color: var(--danger);
}
.report-stat.highlight {
    background: var(--bg-light);
    margin: 0 -10px;
    padding: 12px 10px;
    border-radius: var(--radius-sm);
    border-bottom: none;
}

.report-stat-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.report-stat-label {
    font-size: 0.84rem;
    color: var(--text-secondary);
}

.report-stat-value {
    font-size: 1.05rem;
    font-weight: 700;
}

.report-stat-value.up {
    color: var(--success);
}

/* =============================================
   财务板块
   ============================================= */
.finance-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.summary-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.summary-icon.green { background: rgba(220, 38, 38, 0.08); color: var(--success); }
.summary-icon.blue { background: rgba(37, 99, 235, 0.08); color: var(--info); }
.summary-icon.purple { background: rgba(124, 58, 237, 0.08); color: #7c3aed; }
.summary-icon.orange { background: rgba(217, 119, 6, 0.08); color: var(--warning); }
.summary-icon.teal { background: rgba(13, 148, 136, 0.08); color: #0d9488; }
.summary-icon.red { background: rgba(5, 150, 105, 0.08); color: var(--danger); }

.summary-info { min-width: 0; }

.summary-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.summary-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.summary-period {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
}

/* 资产配置 */
.allocation-container {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 36px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    flex-wrap: wrap;
    justify-content: center;
}

.donut-container {
    width: 200px;
    height: 200px;
}

.donut {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #2563eb 0deg 180deg,
        #059669 180deg 270deg,
        #d97706 270deg 324deg,
        #7c3aed 324deg 360deg
    );
}

.donut-hole {
    position: absolute;
    inset: 30%;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.allocation-legend {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-label {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

/* =============================================
   页脚 — 轻盈
   ============================================= */
.footer {
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 60px 0 0;
    position: relative;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.footer-brand h3 i {
    color: var(--accent);
}

.footer-brand > p {
    font-size: 0.82rem;
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.84rem;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-newsletter h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-size: 0.84rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.subscribe-form {
    display: flex;
    gap: 0;
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.subscribe-form input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.84rem;
    outline: none;
}

.subscribe-form input::placeholder {
    color: var(--text-light);
}

.subscribe-form button {
    padding: 10px 20px;
    border: none;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.subscribe-form button:hover {
    background: var(--primary-light);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.footer-bottom .disclaimer {
    font-size: 0.7rem;
}

/* =============================================
   回到顶部按钮
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(26, 26, 46, 0.15);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(26, 26, 46, 0.2);
}

/* =============================================
   微信二维码弹窗
   ============================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    text-align: center;
    max-width: 300px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.35s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(16px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.4rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}

.modal-content img {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    border: 1px solid var(--border);
}

.modal-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* =============================================
   实时数据标记
   ============================================= */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.06);
    padding: 2px 10px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 6px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.live-badge i {
    font-size: 0.55rem;
}

.year-badge {
    display: inline-block;
    font-weight: 700;
    color: #dc2626;
}

.live-row {
    background: rgba(220, 38, 38, 0.02) !important;
}

.live-row:hover {
    background: rgba(220, 38, 38, 0.04) !important;
}

.live-row td {
    border-top: 2px solid #dc2626 !important;
}

#idx-price {
    font-weight: 700;
}

#idx-price small {
    font-weight: 400;
    margin-left: 4px;
}

.update-tip {
    text-align: right;
    font-size: 0.76rem;
    color: var(--text-light);
    margin-top: 6px;
}

.update-tip i {
    margin-right: 4px;
    font-size: 0.65rem;
    color: #22c55e;
}

/* =============================================
   响应式设计
   ============================================= */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .macro-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 12px 16px 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        gap: 2px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 10px 16px;
        border-radius: var(--radius-sm);
    }

    /* 快速入口 */
    .quick-links {
        padding: 0;
    }

    .carousel-slide {
        padding: 0;
    }

    .slide-text {
        bottom: 40px;
        right: 28px;
    }

    .slide-text h3 {
        font-size: 1.4rem;
    }

    .slide-text p {
        font-size: 0.85rem;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .allocation-container {
        flex-direction: column;
        gap: 28px;
        padding: 24px;
    }

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

    .step-card {
        flex-direction: column;
        gap: 14px;
        padding: 24px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

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

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

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

    .about-mission {
        grid-template-columns: 1fr;
    }

    .stock-footer {
        flex-direction: column;
    }

    .scroll-indicator {
        display: none;
    }
}

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

    .finance-summary {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 64px 0;
    }
}
