/* ========== 基础重置与变量 ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
      border: none;
    vertical-align: top;
}
html {
  /* scroll-behavior: smooth; */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    Inter,
    "Noto Sans SC",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.5;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 1200px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

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

/* ========== CSS 变量 ========== */
:root {
  --color-tech-bright: #0052ff;
  --color-tech-light: #4d9bff;
  --color-tech-blue: #001f5c;
  --color-tech-dark: #000b1e;
  --color-tech-pale: #b3d1ff;
  --color-tech-surface: #e6f0ff;
  --color-tech-gray: #f5f9ff;
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

.bg-dark{
  background: var(--color-tech-surface);
}

/* ========== 通用工具类 ========== */
.text-gradient {
  background: linear-gradient(135deg, #4d9bff 0%, #0052ff 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  margin-left: 5px;
}

.section-container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--color-tech-surface);
  color: var(--color-tech-bright);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-tag-outline {
  background: transparent;
  border: 1px solid rgba(0, 82, 255, 0.3);
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-tech-dark);
  line-height: 1.25;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-gray-600);
  max-width: 672px;
  margin: 16px auto 0;
}

/* ========== 按钮组件 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--color-tech-bright);
  color: var(--color-white);
  cursor: pointer;
  padding: 0 14px;
}

.btn-primary:hover {
  background: var(--color-tech-light);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: var(--color-tech-surface);
  color: var(--color-tech-bright);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
}

.btn-secondary:hover {
  background: rgba(230, 240, 255, 0.8);
}

/* ========== 导航栏 ========== */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
  display: none;
}

.site-navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid #ededed;
  display: block;
}

.navbar-inner {
  min-width: 1200px;
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  margin: 0 auto;
  padding: 0 16px;
}

.navbar-brand {
  height: 30px;
  display: flex;
  align-items: center;
}
.navbar-brand img{
  height: 100%;
}
.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.site-navbar.scrolled .brand-icon {
  background: rgba(0, 82, 255, 0.1);
}

.brand-icon i {
  font-size: 16px;
  color: var(--color-white);
  transition: color 0.3s;
}

.site-navbar.scrolled .brand-icon i {
  color: var(--color-tech-bright);
}

.brand-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  transition: color 0.3s;
}

.site-navbar.scrolled .brand-text {
  color: var(--color-tech-dark);
}

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

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--color-white);
}

.site-navbar.scrolled .navbar-links a {
  color: var(--color-gray-600);
}

.site-navbar.scrolled .navbar-links a:hover {
  color: var(--color-tech-bright);
}

.navbar-cta {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.navbar-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-navbar.scrolled .navbar-cta {
  background: var(--color-tech-bright);
  border-color: transparent;
}

.site-navbar.scrolled .navbar-cta:hover {
  background: var(--color-tech-light);
}

.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 20px;
  transition: color 0.3s;
}

.site-navbar.scrolled .navbar-toggle {
  color: var(--color-tech-dark);
}

.navbar-mobile {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-lg);
}

.navbar-mobile.open {
  display: block;
}

.navbar-mobile-links {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.navbar-mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
  transition: all 0.2s;
}

.navbar-mobile-link:hover {
  background: var(--color-tech-surface);
  color: var(--color-tech-bright);
}

.navbar-mobile-cta {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  background: var(--color-tech-bright);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

/* ========== Hero 区域 ========== */
.hero-section {
  position: relative;
  height: 800px;
  background: url(img/banner.jpg) no-repeat;
  background-position: top center;
}

.hero-content {
  position: absolute;
  z-index: 10;
  width: 1080px;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-content .lead{
  padding: 16px 70px 23px 39px;
  width: 1000px;
  position: relative;
  background: linear-gradient(180deg,#001d55,#000c23);
  color: #ffffff;
  font-size: 20px;
  border-radius: 17px;
}
.hero-content .lead h3{
  font-weight: normal;
}
.hero-content .lead h3 p{
  color: #99b6e4;
  display: inline-block;
}
.hero-content .lead>p{
  font-size: 14px;
  color: #7584a0;
  margin-top: 10px;
  margin-bottom: 24px;
}
.hero-content .lead .lead-icon{
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background:var(--color-tech-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: absolute;
  right:-20px;
  top: -20px;
}
.hero-content .lead .btnbox{
  display: flex;
  justify-content: center;
  gap: 40px;
}
.btn-primary{
  min-width: 176px;
  height: 44px;
  border-radius: 44px;
  background: var(--color-tech-bright);
  text-align: center;
  line-height: 44px;
  font-size: 16px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.btn-primary i{
  display: inline-block;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(77, 155, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-tech-pale);
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-tech-pale);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 672px;
  margin: 0 auto 40px;
  line-height: 1.625;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-preview {
  max-width: 448px;
  margin: 0 auto;
}

.whitepaper-card {
  position: relative;
  background: linear-gradient(135deg, #001f5c 0%, #000b1e 100%);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid rgba(77, 155, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 82, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.whitepaper-card-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-tech-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.whitepaper-card-label {
  color: var(--color-tech-pale);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}

.whitepaper-card-title {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.whitepaper-card-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.625;
  margin-bottom: 16px;
}

.whitepaper-card-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
  animation: bounce 1s infinite;
}

/* ========== 数据区域 ========== */
.stats-section {
  position: relative;
  padding: 64px 0;
  background: var(--color-white);
  overflow: hidden;
}

.stats-bg-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.stats-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--color-tech-surface);
  opacity: 0.5;
  filter: blur(64px);
}

.stats-glow-top {
  top: 0;
  right: 0;
  transform: translateY(-50%) translateX(25%);
}

.stats-glow-bottom {
  bottom: 0;
  left: 0;
  transform: translateY(50%) translateX(-25%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.stats-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--color-tech-gray);
  border: 1px solid rgba(230, 240, 255, 0.6);
  text-align: center;
  transition: all 0.3s;
}

.stats-card:hover {
  border-color: rgba(77, 155, 255, 0.3);
}

.stats-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stats-value {
  font-size: 48px;
}

.stats-suffix {
  font-size: 24px;
  color: var(--color-tech-bright);
}

.stats-label {
  font-size: 14px;
  color: var(--color-gray-600);
  font-weight: 500;
}

.stats-card-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-tech-bright);
  border-radius: var(--radius-full);
  transition: width 0.3s;
}

.stats-card:hover .stats-card-accent {
  width: 50%;
}
.stats-card i{
  font-size: 12px;
  font-style: normal;
  position: absolute;
  bottom: -23px;
  right: 0;
  color: #6b7280;
}
.insight-card {
  margin-top: 40px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(230, 240, 255, 0.5);
  border: 1px solid var(--color-tech-surface);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.insight-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(0, 82, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-tech-bright);
  font-size: 20px;
  flex-shrink: 0;
}

.insight-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-tech-dark);
  margin-bottom: 8px;
}

.insight-text {
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.625;
}
.insight-tags{
   display: flex;
   font-size: 16px;
   gap:10px;
   margin-top: 13px;
   font-weight: bold;
}
.insight-tag{
  padding: 8px 80px;
  background: rgba(0, 82, 255, 0.1);
  color: var(--color-tech-bright);
  border-radius: 10px;
}
.insight-remark{
  font-size: 14px;
  font-style: normal;
  color: #6b7280;
  padding: 0 10px;
  margin-top: 8px;
}
.insight-remark span{
  color: var(--color-tech-bright);
}
.stats-section .freeform {
  width: 100%;
  height: 250px;
  background:#f2f7ff url(img/free_bg.png) no-repeat;
  background-position: left;
  background-size: auto 100%;
  margin-top: 30px;
  /* padding-top: 136px; */
  border-radius: 22px;
  overflow: hidden;
}
.stats-section .freeform .content{
  display: grid;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  grid-template-columns: 1.6fr 8fr;
  gap: 30px;
}
.stats-section .freeform .left,
.stats-section .freeform form{
  display: flex;
  align-items: center;
}
.stats-section .freeform .left{
  flex-shrink: 0;
}

.stats-section .freeform .mint {
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  color: #ffffff;
}

.stats-section .freeform .mint span{
  color: #ffe3c2;
}

.stats-section .freeform .right {
  height: 118px;
  background-color: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(104, 114, 146, 0.11);
  border-radius: 5px;
  position: relative;
  padding-left: 26px;
  padding-top: 26px;
}

.stats-section .freeform .right::before {
  content: "";
  border: 14px solid #ffffff;
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -28px;
}

.stats-section .freeform .item {
  width: 181px;
  height: 41px;
  background-color: #eeeeee;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 16px;
}

.stats-section .freeform .item input {
  width: 100%;
  background-color: #eeeeee;
  height: 100%;
  font-size: 14px;
  color: #333333;
  padding-left: 10px;
}
.stats-section .freeform .item.yzm{
  display: flex;
  align-items: stretch;
}
.stats-section .freeform .item.yzm span {
  width: 70px;
  height: 41px;
  background-color: #14317d;
  border-radius: 4px;
  flex-shrink: 0;
  font-family: 'AlibabaPuHuiTiRegular';
  font-size: 12px;
  color: #fffefe;
  letter-spacing: -1px;
  cursor: pointer;
  line-height: 41px;
  text-align: center;
}

.stats-section .freeform .submit {
  width: 82px;
  height: 41px;
  background-color: #14317d;
  border-radius: 4px;
  font-family: 'AlibabaPuHuiTiRegular';
  font-size: 14px;
  color: #fffefe;
  letter-spacing: -1px;
  cursor: pointer;
}

.stats-section .freeform .right p {
  font-family: 'AlibabaPuHuiTiRegular';
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0px;
  color: #b3b3b3;
  text-align: left;
  padding-left: 0;
  margin-top: 15px;
}

.stats-section .freeform .right img {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}

/* ---------- card-grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.chart-card {
  position: relative;
  padding: 13px 13px 23px;
  border-radius: var(--radius-xl);
  background: #f5f9ff;
  border: 1px solid rgba(230, 240, 255, 0.6);
  transition: all 0.3s;
  overflow: hidden;
}

.chart-card:hover {
  border-color: rgba(0, 82, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.chart-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-tech-dark);
  margin-bottom: 8px;
  margin-top: 16px;
}

.chart-card p {
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.625;
}

.chart-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--color-tech-surface) 0%,
    #dbeafe 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-tech-bright);
  font-size: 14px;
  text-align: center;
  padding-bottom: 44px;
  line-height: 14px;
  cursor: pointer;
}
.chart-img:hover::after{
  content: "";
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
  width: 87px;
  height: 86px;
  background: url(img/scale.png) no-repeat;
  background-size: 100%;

}
.chart-img > .info {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #e6f0ff;
  padding: 10px 0;
  height: 54px;
}
.chart-img > .info p {
  font-size: 12px;
  color: #a3a3a3;
  line-height: 12px;
  margin-top: 8px;
}
.chart-img img {
  width: 100%;
}

/* ========== 趋势区域 ========== */
.trends-section {
  position: relative;
  padding: 64px 0;
  /* background: linear-gradient(180deg, #e6f0ff 0%, #f5f9ff 100%); */
  overflow: hidden;
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trend-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1px solid rgba(230, 240, 255, 0.6);
  transition: all 0.3s;
  overflow: hidden;
}
.trend-card .btn-primary{
  position: absolute;
  bottom: 24px;
  right: 24px;
}
.trend-card:hover {
  border-color: rgba(0, 82, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.trend-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-tech-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-tech-bright);
  font-size: 24px;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.trend-card:hover .trend-icon {
  background: rgba(0, 82, 255, 0.1);
}

.trend-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-tech-dark);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.trend-card:hover .trend-title {
  color: var(--color-tech-bright);
}

.trend-desc {
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.625;
  margin-bottom: 16px;
}

.trend-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trend-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-gray-500);
}

.highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-tech-bright);
  flex-shrink: 0;
}

/* ========== 人才区域 ========== */
.talent-section {
  position: relative;
  padding: 64px 0;
  /* background: var(--color-white); */
  overflow: hidden;
}

.talent-bg-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.talent-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: var(--color-tech-surface);
  opacity: 0.3;
  filter: blur(64px);
}

/* ---------- grid-2cols & highlight-card ---------- */
.grid-2cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.highlight-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(230, 240, 255, 0.8) 0%,
    #f5f9ff 100%
  );
  border: 1px solid var(--color-tech-surface);
  transition: all 0.3s;
  overflow: hidden;
}

.highlight-card:hover {
  border-color: rgba(77, 155, 255, 0.3);
}

.card-content {
  padding: 24px;
}

.highlight-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-tech-dark);
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(0, 82, 255, 0.1);
  color: var(--color-tech-bright);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

.highlight-num {
  font-weight: 600;
}

.suggestion {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: #cee1ff;
  border: 1px solid #cee1ff;
  margin-bottom: 16px;
}

.suggestion p {
  font-size: 14px;
  color: #1e1e1e;
  line-height: 1.625;
}

.suggestion b {
  color: #1e1e1e;
  font-weight: 600;
}
.track-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.track-table thead {
  background: #f8fafc;
}

.track-table th {
  background: #f8fafc;
  color: #374151;
  font-weight: 600;
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

.track-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
  color: #4b5563;
}

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

.track-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.track-table tbody tr:nth-child(odd) {
  background-color: #f8fafc;
}

.track-table tbody tr:hover td {
  background-color: #f1f5f9;
}


.desc-text {
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.625;
  margin-bottom: 20px;
}

.core-model {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(230, 240, 255, 0.8);
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.core-item {
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--color-tech-gray);
}

.core-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  background: var(--color-tech-bright);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  margin-right: 4px;
}

.core-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-tech-dark);
}

.core-desc {
  font-size: 12px;
  color: var(--color-gray-600);
  margin-top: 4px;
  padding-left: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--color-gray-700);
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-tech-bright);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 82, 255, 0.2);
  color: var(--color-tech-bright);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: var(--color-tech-surface);
  border-color: rgba(0, 82, 255, 0.4);
}

.tags-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.skill-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-tech-surface);
  color: var(--color-gray-700);
  font-size: 12px;
  font-weight: 500;
}

.divider-light {
  height: 1px;
  background: var(--color-tech-surface);
  margin: 16px 0;
}

.dimensions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.dimension-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(230, 240, 255, 0.8) 0%,
    #f5f9ff 100%
  );
  border: 1px solid var(--color-tech-surface);
  transition: all 0.3s;
  overflow: hidden;
}

.dimension-card:hover {
  border-color: rgba(77, 155, 255, 0.3);
}

.dimension-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 82, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-tech-bright);
  font-size: 28px;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.dimension-card:hover .dimension-icon {
  background: rgba(0, 82, 255, 0.2);
}

.dimension-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-tech-dark);
  margin-bottom: 12px;
}

.dimension-desc {
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.625;
}

.advice-panel {
  background: var(--color-tech-dark);
  border-radius: var(--radius-xl);
  padding: 24px;
  overflow: hidden;
  position: relative;
}
.advice-panel .btn-primary{
  position: absolute;
  top: 24px;
  right: 24px;
}
.advice-header {
  text-align: center;
  margin-bottom: 32px;
}

.advice-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  text-align: left;
}

.advice-subheading {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advice-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.advice-card:hover {
  border-color: rgba(77, 155, 255, 0.3);
}

.advice-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(0, 82, 255, 0.2);
  color: var(--color-tech-pale);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.advice-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.advice-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.625;
}

/* ========== 下载区域 ========== */
.download-section {
  position: relative;
  padding: 64px 0;
  /* background: linear-gradient(180deg, #e6f0ff 0%, #f5f9ff 100%); */
}
.download-section .section-container {
  display: grid;
  grid-template-columns: 4fr 5.7fr;
  gap: 70px;
}

.form-section {
  width: 100%;
  /* max-width: 800px; */
  margin: 0 auto;
  padding: 29px 43px;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1px solid var(--color-tech-surface);
  box-shadow: 0 20px 60px rgba(0, 31, 92, 0.08);
  position: relative;
  overflow: hidden;
}
.form-section .row-2{
  margin-bottom: 15px;
}
.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-tech-bright) 0%,
    var(--color-tech-light) 100%
  );
}

.form-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-tech-dark);
  text-align: center;
  margin-bottom: 12px;
}

.form-desc {
  font-size: 15px;
  color: var(--color-gray-600);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 22px;
  padding: 0 20px;
}

#whitepaperForm {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-700);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-gray-200);
  font-size: 14px;
  color: var(--color-gray-700);
  background: var(--color-white);
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:hover,
.form-group select:hover {
  border-color: var(--color-gray-300);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-tech-bright);
  box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.1);
}

.form-group input::placeholder {
  color: var(--color-gray-400);
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    135deg,
    var(--color-tech-bright) 0%,
    var(--color-tech-light) 100%
  );
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  text-align: center;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 82, 255, 0.4);
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-footnote {
  font-size: 12px;
  color: var(--color-gray-500);
  text-align: center;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--color-tech-surface);
}

/* ========== 动画关键帧 ========== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(-50%) translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-animate {
  opacity: 0;
}

.hero-animate.visible {
  animation: fadeIn 0.8s ease-out forwards;
}

.stat-animate {
  opacity: 0;
}

.stat-animate.visible {
  animation: slideUp 0.6s ease-out forwards;
}

.trend-animate {
  opacity: 0;
}

.trend-animate.visible {
  animation: slideUp 0.6s ease-out forwards;
}

.talent-animate {
  opacity: 0;
}

.talent-animate.visible {
  animation: slideUp 0.6s ease-out forwards;
}

.download-animate {
  opacity: 0;
}

.download-animate.visible {
  animation: slideUp 0.6s ease-out forwards;
}

.btn-loading i {
  display: inline-block;
  animation: spin 1s linear infinite;
}

/* ========== Findings 区域 ========== */
.findings-section {
  position: relative;
  padding: 64px 0;
  background: var(--color-white);
  overflow: hidden;
}

.findings-section .section-title,
.findings-section .section-subtitle {
  text-align: center;
}

.findings-section .section-title {
  margin-bottom: 8px;
}

.findings-section .section-subtitle {
  margin-bottom: 48px;
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.finding-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--color-tech-gray);
  border: 1px solid rgba(230, 240, 255, 0.6);
  transition: all 0.3s;
  overflow: hidden;
}

.finding-card:hover {
  border-color: rgba(0, 82, 255, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.finding-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-tech-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  transition: background 0.3s;
  color: var(--color-tech-light);
}

/* .finding-icon::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-tech-bright);
  opacity: 0.15;
} */

.finding-card:hover .finding-icon {
  background: rgba(0, 82, 255, 0.1);
}

.finding-card:hover .finding-icon::after {
  opacity: 0.25;
}

.finding-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-tech-dark);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.finding-card:hover h3 {
  color: var(--color-tech-bright);
}

.finding-card p {
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.625;
}

/* ========== Advantages 区域 ========== */
.advantages-section {
  position: relative;
  padding: 64px 0;
  /* background: linear-gradient(180deg, #f5f9ff 0%, #e6f0ff 100%); */
  overflow: hidden;
}

.advantages-section .section-title,
.advantages-section .section-subtitle {
  text-align: center;
}

.advantages-section .section-title {
  margin-bottom: 8px;
}

.advantages-section .section-subtitle {
  margin-bottom: 48px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-top: 4px solid var(--color-tech-bright);
  transition: all 0.3s;
  overflow: hidden;
}

.adv-card:hover {
  border-color: rgba(0, 82, 255, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.adv-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-tech-bright);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.adv-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-tech-dark);
  margin-bottom: 8px;
}

.adv-sub {
  font-size: 14px;
  color: var(--color-tech-bright);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-tech-surface);
}

.adv-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.adv-card li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.5;
}

.adv-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-tech-bright);
}

.advantages-section .btnbox{
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

/* ========== FAQ 区域 ========== */
.faq-section {
  position: relative;
  padding: 64px 0;
  background: var(--color-white);
  overflow: hidden;
}

.faq-section .section-title,
.faq-section .section-subtitle {
  text-align: center;
}

.faq-section .section-title {
  margin-bottom: 8px;
}

.faq-section .section-subtitle {
  margin-bottom: 48px;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category-title {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--color-tech-surface);
  color: var(--color-tech-bright);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(0, 82, 255, 0.2);
}

.faq-item.open {
  border-color: rgba(0, 82, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-tech-dark);
  transition: background 0.2s;
  user-select: none;
}

.faq-q:hover {
  background: var(--color-tech-gray);
}

.q-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-tech-surface);
  color: var(--color-tech-bright);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.arrow {
  margin-left: auto;
  font-size: 12px;
  color: var(--color-gray-400);
  transition: transform 0.3s;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 2000px;
  padding: 0 24px 24px;
}

.faq-a > p {
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.625;
  margin-bottom: 16px;
}
.faq-a > p:nth-child(1){
  margin-top: 10px;
}

.highlight-box {
  padding: 16px 20px;
  /* border-radius: var(--radius-md); */
  background: var(--color-tech-gray);
  /* border: 1px solid var(--color-tech-surface); */
  margin-bottom: 16px;
  border-left: 3px solid var(--color-tech-bright);
}

.highlight-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-tech-dark);
  margin-bottom: 8px;
}

.highlight-box p,
.highlight-box ul {
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.625;
}

.highlight-box ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlight-box li {
  position: relative;
  padding-left: 16px;
}

.highlight-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-tech-bright);
}

.source-note {
  font-size: 12px;
  color: var(--color-gray-400);
  margin-top: 16px;
}

.source-note a {
  color: var(--color-tech-bright);
  text-decoration: underline;
  margin-left: 20px;
}

.source-note a:hover {
  color: var(--color-tech-light);
}

/* ========== 新增动画类 ========== */
.finding-animate {
  opacity: 0;
}

.finding-animate.visible {
  animation: slideUp 0.6s ease-out forwards;
}

.adv-animate {
  opacity: 0;
}

.adv-animate.visible {
  animation: slideUp 0.6s ease-out forwards;
}

.faq-animate {
  opacity: 0;
}

.faq-animate.visible {
  animation: slideUp 0.6s ease-out forwards;
}

/* ========== BookIntr 白皮书介绍区域 ========== */
.bookintr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.wp-metrics {
  position: absolute;
  width: 100%;
  height: 100%;
}

.wp-metric {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
  padding: 13px 9px;
  border-radius: 9px;
  background: rgb(245 249 255 / 90%);
  border: 1px solid rgba(230, 240, 255, 0.8);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 100px;
}
.wp-metric:nth-child(2n) {
  left: auto;
  right: 0;
}

.wp-metric:nth-child(1) {
  top: 13%;
}
.wp-metric:nth-child(2) {
  top: 23%;
}
.wp-metric:nth-child(3) {
  top: 57%;
}
.wp-metric:nth-child(4) {
  top: 59%;
}
.wp-metric:hover {
  border-color: rgba(0, 82, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.wp-metric-num {
  font-size: 27px;
  font-weight: 800;
  color: var(--color-tech-bright);
  line-height: 1.2;
  text-align: right;
}

.wp-metric-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-tech-dark);
  margin-bottom: 6px;
  line-height: 14px;
}

.wp-metric-info p {
  font-size: 12px;
  color: var(--color-gray-500);
  line-height: 1.5;
  line-height: 12px;
}
/* ========== 图片弹窗模态框 ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  height: 60%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.modal-content p{
  font-size: 12px;
  color: #c1c1c1;
  text-align: right;
  padding: 5px 15px;
}

.modal-image {
  display: block;
  /* max-width: 100%; */
  height: calc(100% - 20px);
  background: var(--color-white);
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s ease;
  z-index: 1001;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}
.download-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.download-modal-overlay.show {
  opacity: 1;
  visibility: visible;
  z-index: 1001;
}

.download-modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-xl);
}

.download-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.download-modal-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-tech-dark);
  margin-bottom: 8px;
}

.download-modal-subtitle {
  font-size: 16px;
  color: var(--color-gray-600);
}

.download-link-container {
  background: var(--color-tech-gray);
  border: 1px solid var(--color-tech-surface);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
}

.download-link {
  display: block;
  color: var(--color-tech-bright);
  font-size: 13px;
  font-weight: 500;
  word-break: break-all;
  text-decoration: none;
  transition: color 0.2s ease;
}

.download-link:hover {
  color: var(--color-tech-light);
  text-decoration: underline;
}

.download-modal-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.download-modal-close {
  background: var(--color-tech-bright);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.download-modal-close:hover {
  background: var(--color-tech-light);
}
