
/* Design Tokens */
:root {
  --color-bg: #F8F9FB;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F1F3F7;
  --color-border: #DDE1EA;
  --color-text-primary: #0F1420;
  --color-text-secondary: #4A5068;
  --color-text-muted: #8A90A2;
  --color-accent: #2D5BE3;
  --color-accent-hover: #1E44C7;
  --color-accent-light: #EEF2FD;
  --color-accent-mid: #6B8FF0;
  --color-positive: #1A8A5A;
  --color-negative: #C03030;
  --color-neutral-dark: #1C2237;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-data: 'JetBrains Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 4px rgba(15,20,32,0.06);
  --shadow-md: 0 4px 16px rgba(15,20,32,0.10);
  --shadow-lg: 0 12px 40px rgba(15,20,32,0.13);

  --transition: 0.22s ease;
  --max-width: 1180px;
  --header-height: 70px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
main { flex: 1; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-text-primary);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--color-text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--color-surface-alt); }
.section--dark { background: var(--color-neutral-dark); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.70); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-header { margin-bottom: 48px; }
.section-header p { font-size: 1.05rem; max-width: 580px; }
.section-header.text-center p { margin-left: auto; margin-right: auto; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,91,227,0.3); }
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn-outline:hover { background: var(--color-accent); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.10); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.20); color: #fff; }
.btn i { font-size: 1.1rem; }
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 1.4rem;
}
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { font-size: 0.93rem; }
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(248,249,251,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 24px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-img {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-accent);
  overflow: hidden;
}
.logo-img img { width: 100%; height: 100%; object-fit: contain; }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.04em;
}
.logo-wordmark span { color: var(--color-accent); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all var(--transition);
}
.site-nav a:hover, .site-nav a.active { color: var(--color-accent); background: var(--color-accent-light); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
  cursor: pointer; z-index: 1100;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--color-surface);
  z-index: 999;
  flex-direction: column;
  padding: calc(var(--header-height) + 24px) 32px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text-primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: -0.02em;
}
.mobile-nav a:hover { color: var(--color-accent); }
.mobile-nav .mobile-cta { margin-top: 32px; }
.hero {
  padding: calc(var(--header-height) + 60px) 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #EEF2FD 0%, #F8F9FB 55%, #F1F3F7 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,91,227,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-text .section-label { margin-bottom: 18px; }
.hero-text h1 { margin-bottom: 22px; }
.hero-text p { font-size: 1.08rem; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.stat-item { }
.stat-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: var(--color-text-muted); font-weight: 500; }
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge i { font-size: 1.3rem; color: var(--color-accent); }
.hero-badge-text .label { font-size: 0.75rem; color: var(--color-text-muted); font-weight: 500; }
.hero-badge-text .value { font-family: var(--font-data); font-size: 0.9rem; font-weight: 700; color: var(--color-text-primary); }
.ticker-bar {
  background: var(--color-neutral-dark);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 48px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.ticker-symbol { font-family: var(--font-data); font-size: 0.82rem; font-weight: 700; color: #fff; }
.ticker-value { font-family: var(--font-data); font-size: 0.82rem; color: rgba(255,255,255,0.70); }
.ticker-change { font-family: var(--font-data); font-size: 0.78rem; font-weight: 600; }
.ticker-change.up { color: #4ADE80; }
.ticker-change.down { color: #F87171; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.market-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.market-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.market-card-header h4 { font-family: var(--font-data); font-size: 0.85rem; color: var(--color-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.market-card-icon { color: var(--color-accent); font-size: 1.1rem; }
.market-card-value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--color-text-primary); letter-spacing: -0.03em; margin-bottom: 6px; }
.market-card-change { font-family: var(--font-data); font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.market-card-change.up { color: var(--color-positive); }
.market-card-change.down { color: var(--color-negative); }
.sparkline { margin-top: 14px; height: 44px; }
.sparkline svg { width: 100%; height: 100%; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th {
  font-family: var(--font-data); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 10px 16px; text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.data-table td { padding: 13px 16px; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--color-surface-alt); }
.tbl-name { font-weight: 600; color: var(--color-text-primary); }
.tbl-ticker { font-family: var(--font-data); font-size: 0.8rem; color: var(--color-text-muted); display: block; }
.tbl-value { font-family: var(--font-data); font-weight: 700; }
.tbl-change { font-family: var(--font-data); font-size: 0.85rem; font-weight: 600; }
.tbl-change.up { color: var(--color-positive); }
.tbl-change.down { color: var(--color-negative); }
.table-wrap { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: grid; grid-template-columns: 120px 1fr 70px; align-items: center; gap: 12px; }
.bar-label { font-size: 0.85rem; font-weight: 500; color: var(--color-text-secondary); text-align: right; }
.bar-track { height: 8px; background: var(--color-surface-alt); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: var(--color-accent); }
.bar-fill.negative { background: var(--color-negative); }
.bar-value { font-family: var(--font-data); font-size: 0.82rem; font-weight: 700; text-align: right; }
.bar-value.up { color: var(--color-positive); }
.bar-value.down { color: var(--color-negative); }
.feature-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
.feature-item:last-child { margin-bottom: 0; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent); font-size: 1.2rem;
}
.feature-text h4 { font-size: 1rem; margin-bottom: 6px; }
.feature-text p { font-size: 0.9rem; margin: 0; }
.team-card {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--color-accent-light);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--color-accent); font-weight: 600; margin-bottom: 10px; display: block; }
.team-card p { font-size: 0.85rem; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-text-primary); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.93rem;
  color: var(--color-text-primary);
  background: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(45,91,227,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 6px; }
.form-success {
  display: none;
  background: #EDF7F2;
  border: 1px solid #A7D7BC;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--color-positive);
  font-size: 0.92rem; font-weight: 600;
  margin-top: 16px;
  align-items: center; gap: 10px;
}
.form-success.visible { display: flex; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--color-border);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent); font-size: 1.1rem;
}
.ci-text .ci-label { font-size: 0.8rem; color: var(--color-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 2px; }
.ci-text .ci-value { font-size: 0.95rem; font-weight: 600; color: var(--color-text-primary); }
.sector-bar-grid { display: grid; gap: 16px; }
.sector-bar-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.sector-bar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.sector-name { font-weight: 600; font-size: 0.9rem; color: var(--color-text-primary); }
.sector-pct { font-family: var(--font-data); font-size: 0.88rem; font-weight: 700; }
.sector-pct.up { color: var(--color-positive); }
.sector-pct.down { color: var(--color-negative); }
.sector-track { height: 6px; background: var(--color-surface-alt); border-radius: 3px; }
.sector-fill { height: 100%; border-radius: 3px; }
.sector-fill.up { background: var(--color-positive); }
.sector-fill.down { background: var(--color-negative); }
.volume-grid { display: flex; align-items: flex-end; gap: 6px; height: 120px; }
.volume-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.volume-bar {
  width: 100%; border-radius: 4px 4px 0 0;
  background: var(--color-accent);
  opacity: 0.75;
  transition: opacity var(--transition);
}
.volume-bar:hover { opacity: 1; }
.volume-label { font-family: var(--font-data); font-size: 0.68rem; color: var(--color-text-muted); white-space: nowrap; }
.policy-content { max-width: 780px; margin: 0 auto; }
.policy-content h2 { font-size: 1.35rem; margin: 36px 0 12px; color: var(--color-text-primary); }
.policy-content h3 { font-size: 1.05rem; margin: 24px 0 8px; color: var(--color-text-primary); }
.policy-content p { font-size: 0.95rem; }
.policy-content ul { list-style: disc; padding-left: 22px; color: var(--color-text-secondary); font-size: 0.95rem; margin-bottom: 1rem; }
.policy-content ul li { margin-bottom: 6px; }
.policy-hero { background: var(--color-neutral-dark); color: #fff; padding: calc(var(--header-height) + 48px) 0 52px; }
.policy-hero h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.policy-hero .date { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 10px; }
.site-footer { background: var(--color-neutral-dark); color: rgba(255,255,255,0.65); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { }
.footer-brand .logo-wordmark { color: #fff; font-size: 1.3rem; }
.footer-brand p { font-size: 0.88rem; margin-top: 14px; line-height: 1.7; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.65); padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 20px; line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  background: var(--color-neutral-dark);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  transform: translateY(calc(100% + 40px));
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { display: none; }
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin: 0; }
.cookie-text a { color: var(--color-accent-mid); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 5px; display: block; }
.btn-cookie-accept { background: var(--color-accent); color: #fff; padding: 10px 22px; border-radius: var(--radius-md); font-size: 0.88rem; font-weight: 600; border: none; transition: background var(--transition); }
.btn-cookie-accept:hover { background: var(--color-accent-hover); }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,0.55); padding: 10px 16px; border-radius: var(--radius-md); font-size: 0.88rem; border: none; transition: color var(--transition); }
.btn-cookie-decline:hover { color: #fff; }
.breadcrumb { font-size: 0.82rem; color: var(--color-text-muted); }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { margin: 0 6px; opacity: 0.5; }
.page-hero {
  background: var(--color-neutral-dark);
  padding: calc(var(--header-height) + 52px) 0 58px;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin-top: 14px; }
.page-hero .breadcrumb { margin-bottom: 18px; color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a:hover { color: #fff; }
.tabs { border-bottom: 1px solid var(--color-border); margin-bottom: 32px; display: flex; gap: 4px; overflow-x: auto; }
.tab-btn {
  background: none; border: none; border-bottom: 2.5px solid transparent;
  padding: 12px 20px; font-size: 0.9rem; font-weight: 600;
  color: var(--color-text-muted); cursor: pointer;
  white-space: nowrap; transition: all var(--transition);
  margin-bottom: -1px;
}
.tab-btn.active { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.tab-btn:hover { color: var(--color-text-primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.insight-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.insight-card-label { font-family: var(--font-data); font-size: 0.75rem; color: var(--color-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }
.insight-card-tag { font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 30px; }
.tag-high { background: rgba(26,138,90,0.12); color: var(--color-positive); }
.tag-low { background: rgba(192,48,48,0.12); color: var(--color-negative); }
.tag-mid { background: var(--color-accent-light); color: var(--color-accent); }
.insight-big-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--color-text-primary); line-height: 1; margin-bottom: 6px; }
.insight-subtext { font-size: 0.82rem; color: var(--color-text-muted); }
.info-box {
  background: var(--color-accent-light);
  border: 1px solid rgba(45,91,227,0.2);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--color-accent-hover);
  display: flex; gap: 12px; align-items: flex-start;
  margin: 24px 0;
}
.info-box i { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.divider { border: none; border-top: 1px solid var(--color-border); margin: 0; }
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insight-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 768px) {
  :root { --max-width: 100%; }
  .section { padding: 52px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .site-nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 90px 1fr 60px; }
  .insight-grid { grid-template-columns: 1fr; }
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding-bottom: 52px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-value { font-size: 1.3rem; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fade-up 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-8 { gap: 8px !important; }
.w-full { width: 100%; }
.font-data { font-family: var(--font-data); }
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-positive { color: var(--color-positive); }
.text-negative { color: var(--color-negative); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
