@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Noto+Sans+SC:wght@300;500;900&display=swap");

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  background: #0a0f1e;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-mark {
  font-family: serif;
  font-weight: 900;
  font-size: 64px;
  color: #c5a059;
  margin-bottom: 24px;
  animation: preloaderPulse 2s ease-in-out infinite;
  transform: rotate(-10deg);
  display: block;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}

.preloader-bar::after {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #c5a059;
  animation: preloaderProgress 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.5; transform: rotate(-10deg) scale(0.95); }
  50% { opacity: 1; transform: rotate(-10deg) scale(1.05); }
}

@keyframes preloaderProgress {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

:root {
  --bg-deep: #0a0f1e;
  --bg-card: rgba(255, 255, 255, 0.03);
  --accent-gold: #c5a059;
  --accent-gold-bright: #e3a760;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-border: rgba(255, 255, 255, 0.08);
  --max-width: 1280px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes meshGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-bg-fx {
  background-size: 200% 200%;
  animation: meshGradient 15s ease infinite;
}

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

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

[hidden] {
  display: none !important;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- High-End Layout --- */
.shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .shell { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 32px; }
}

/* --- Glassmorphism Components --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .glass-card { padding: 24px; border-radius: 16px; }
}

/* --- Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 960px) {
  .header-inner { height: auto; padding: 12px 0; flex-direction: column; gap: 10px; }
  .site-header .main-nav { margin-top: 5px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
  .site-header .main-nav a { margin-left: 0 !important; font-size: 13px; }
}

@media (max-width: 480px) {
  /* Hide non-essential anchor links to keep mobile header clean */
  .site-header .main-nav a:not(.nav-cta):not([href="#hero"]) {
    display: none;
  }
  .header-inner { padding: 10px 0; }
  .brand strong { font-size: 16px; }
  .site-header .nav-cta {
    width: 100%;
    margin-top: 8px;
    height: 44px;
    font-size: 14px;
  }
}

/* --- Case Cards --- */
.case-card {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.case-media img {
  width: 100%;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .case-card {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .case-media { order: -1; }
}

/* --- Table Responsiveness --- */
.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 20px;
}

table {
  min-width: 600px;
}

@media (max-width: 640px) {
  .calc-box { padding: 20px; }
  .income-result strong { font-size: 32px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
  order: 1;
}

.brand-mark {
  font-family: serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--accent-gold);
  transform: rotate(-10deg);
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
}

.brand small {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 40px;
  text-transform: uppercase;
  transition: var(--transition);
}

.main-nav a:hover, .main-nav a.active {
  color: var(--accent-gold);
}

.site-header .main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  order: 2;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 90px;
}

.hero-bg-fx {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15), transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.1), transparent 40%);
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 15, 30, 0.8), transparent, rgba(10, 15, 30, 0.9));
  z-index: 1;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  width: 64px;
  height: 64px;
}

.btn-play:hover {
  color: var(--accent-gold);
}

.play-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  transition: var(--transition);
}

.btn-play:hover .play-icon {
  border-color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.1);
  transform: scale(1.1);
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 4px;
}

/* --- Video Modal --- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  padding: 40px;
}

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

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 100px rgba(197, 160, 89, 0.2);
}

.modal-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent-gold);
  color: #000;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .video-modal { padding: 10px; }
  .modal-close { top: 10px; right: 10px; }
}

.hero-copy {
  max-width: 800px;
}

.hero-eyebrow {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -2px;
}

.hero h1 span {
  background: linear-gradient(to right, var(--accent-gold), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .lead {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 64px;
  padding: 0 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

.nav-cta {
  animation: pulse-gold 2s infinite;
}

.btn.primary {
  background: var(--accent-gold);
  color: #000;
}

.btn.primary:hover {
  background: var(--accent-gold-bright);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}

.btn.ghost {
  border: 1px solid var(--glass-border);
  color: var(--text-main);
}

.btn-split {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 64px;
  padding: 10px 30px !important;
  line-height: 1.15 !important;
  min-width: 320px;
  text-align: center;
  gap: 4px;
}

.btn.btn-split .btn-label {
  display: block;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  color: var(--text-main);
}

.btn.btn-split .btn-data {
  display: block;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  letter-spacing: 0;
  color: var(--accent-gold);
  opacity: 0.86;
}

@media (max-width: 480px) {
  .btn-split {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 10px 14px !important;
  }
  .btn.btn-split .btn-label { font-size: 15px !important; }
  .btn.btn-split .btn-data { font-size: 10.5px !important; }
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
}

/* --- Localization Controls & Market Modules --- */
.language-switcher {
  display: inline-flex;
  align-items: center;
  margin-left: 24px;
  vertical-align: middle;
  flex: 0 0 auto;
  position: relative;
}

.language-switcher select {
  appearance: none;
  min-width: 128px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 7px 30px 7px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.language-switcher::after {
  content: "";
  position: absolute;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
  transform: translateY(-2px) rotate(45deg);
  pointer-events: none;
}

.language-switcher select:hover,
.language-switcher select:focus {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.language-switcher select option {
  color: #101c2d;
  background: #fff;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  order: 3;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  color: var(--text-main);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.market-hero-note {
  margin-top: 22px;
  padding: 12px 18px;
  border-left: 4px solid var(--accent-gold);
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.1);
  color: var(--text-main);
  font-size: 14px;
}

.market-banner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: -34px 0 40px;
  padding: 24px;
  border: 1px solid var(--accent-gold);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(197,160,89,0.18) 0%, rgba(16,28,45,0.75) 100%);
}

.market-banner-card h4 {
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.market-banner-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.market-growth-feed {
  margin-bottom: 30px;
  padding: 15px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.05);
  font-size: 13px;
}

.market-growth-title {
  margin-bottom: 10px;
}

.market-growth-title strong {
  color: var(--accent-gold);
}

.market-growth-title small {
  color: var(--text-muted);
  margin-left: 10px;
}

@keyframes market-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.market-growth-text {
  display: inline-block;
  white-space: nowrap;
  animation: market-scroll-left 25s linear infinite;
  color: var(--text-muted);
}

.market-growth-feed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,28,45,1) 0%, transparent 5%, transparent 95%, rgba(16,28,45,1) 100%);
  pointer-events: none;
}

.is-localized,
.is-localized * {
  overflow-wrap: anywhere;
  word-break: normal;
}

.is-localized .hero h1,
.is-localized .section-header h2,
.is-localized h2,
.is-localized h3 {
  letter-spacing: 0;
  hyphens: auto;
}

.is-localized .hero h1 {
  font-size: clamp(32px, 5.2vw, 64px);
  max-width: 980px;
}

.is-localized .hero-eyebrow {
  letter-spacing: 2px;
}

.is-localized .btn {
  height: auto;
  min-height: 56px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  padding-block: 12px;
}

.is-localized .glass-card,
.is-localized .pillar-item,
.is-localized .case-content,
.is-localized .flow-card,
.is-localized .calc-box,
.is-localized .input-field,
.is-localized .input-group {
  min-width: 0;
}

.is-localized table {
  table-layout: fixed;
  width: 100%;
}

.is-localized th,
.is-localized td {
  overflow-wrap: anywhere;
  word-break: normal;
}

.is-localized .income-result strong {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
}

body.is-localized .site-header .header-inner {
  display: flex;
  height: auto;
  min-height: 90px;
  padding: 10px 0;
  gap: 18px;
  align-items: center;
}

body.is-localized .site-header .brand {
  flex: 0 0 auto;
}

body.is-localized .site-header .header-tools {
  flex: 0 0 auto;
  margin-left: 0;
}

body.is-localized .site-header .main-nav {
  width: auto;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  min-width: 0;
}

body.is-localized .site-header .main-nav a {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  line-height: 1.25;
  font-size: 11.5px;
  letter-spacing: 0.55px;
  max-width: 132px;
  min-height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.is-localized .site-header .main-nav a.btn.primary.nav-cta {
  max-width: none;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  border: 0;
  background: var(--accent-gold);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

body.is-localized .site-header .main-nav a.btn.primary.nav-cta:hover {
  background: var(--accent-gold-bright);
  color: #000;
}

body.is-localized .hero {
  padding-top: 90px;
}

@media (max-width: 1180px) {
  .site-header .header-inner {
    display: flex;
    height: auto;
    min-height: 90px;
    padding: 10px 0;
    gap: 18px;
    align-items: center;
  }

  .site-header .brand {
    flex: 0 0 auto;
  }

  .site-header .header-tools {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .site-header .main-nav {
    width: auto;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    min-width: 0;
  }

  .site-header .main-nav a {
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.25;
    font-size: 11.5px;
    letter-spacing: 0.55px;
    max-width: 132px;
    min-height: 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-header .main-nav a.btn.primary.nav-cta {
    max-width: none;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    border: 0;
    background: var(--accent-gold);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
}

/* --- Strategic Sections --- */
.section {
  padding: 120px 0;
}

#lab {
  display: none;
}

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

.section-header h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Pillars Grid --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-item h3 {
  font-size: 24px;
  margin: 24px 0 16px;
  color: var(--accent-gold);
}

.pillar-item p {
  color: var(--text-muted);
  font-size: 15px;
}

/* --- Industry Reports --- */
.reports-section {
  border-top: 1px solid var(--glass-border);
  background:
    radial-gradient(circle at 18% 20%, rgba(197, 160, 89, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.reports-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 44px;
}

.reports-head h2 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.15;
}

.reports-head p:not(.hero-eyebrow) {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 17px;
}

.reports-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.report-feature {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  border-radius: 16px;
}

.report-feature-media {
  height: 100%;
  min-height: 340px;
  overflow: hidden;
  border-radius: 12px;
}

.report-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.report-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-meta span {
  border: 1px solid rgba(197, 160, 89, 0.42);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(197, 160, 89, 0.1);
}

.report-feature h3 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.25;
}

.report-feature p,
.report-brief p {
  color: var(--text-muted);
}

.report-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--accent-gold);
  font-weight: 800;
  text-decoration: none;
}

.report-link::after {
  content: ">";
  margin-left: 8px;
}

.report-briefs {
  display: grid;
  gap: 14px;
}

.report-brief {
  padding: 24px;
  border-radius: 12px;
}

.report-brief span {
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.report-brief h3 {
  margin: 10px 0 8px;
  font-size: 19px;
}

.report-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass-border);
}

.report-strip article {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.report-strip time {
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.report-strip h3 {
  margin: 14px 0;
  font-size: 17px;
  line-height: 1.35;
}

.report-strip h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.report-strip h3 a:hover {
  color: var(--accent-gold);
}

.report-strip span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.locale-report {
  display: none;
}

.locale-report-zh {
  display: block;
}

body.lang-en .locale-report,
body.lang-ja .locale-report,
body.lang-ko .locale-report {
  display: none;
}

body.lang-en .locale-report-en,
body.lang-ja .locale-report-ja,
body.lang-ko .locale-report-ko {
  display: block;
}

body.lang-en .locale-report-zh,
body.lang-ja .locale-report-zh,
body.lang-ko .locale-report-zh {
  display: none;
}

/* --- ROI Visualizer --- */
.roi-visualizer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.calc-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
}

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.input-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  height: 50px;
  padding: 0 20px;
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
}

.income-result {
  margin-top: 40px;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.income-result strong {
  font-size: 48px;
  color: var(--accent-gold);
  display: block;
  margin-top: 10px;
}

/* --- Footer --- */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
  margin-top: 100px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 52px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .reports-layout,
  .report-feature,
  .report-strip {
    grid-template-columns: 1fr;
  }
  .roi-visualizer { grid-template-columns: 1fr; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-copy { margin: 0 auto; }
}

/* --- Mobile Stabilization --- */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    height: auto;
    min-height: 0;
    padding: 14px 0 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  body.is-localized .site-header .header-inner {
    display: flex;
    height: auto;
    min-height: 0;
    padding: 14px 0 12px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .brand {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    order: 1;
  }

  .header-tools {
    margin-left: auto;
    flex: 0 0 auto;
    order: 2;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header .main-nav {
    width: 100%;
    margin-top: 0;
    display: none;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 0 4px;
    overflow: visible;
  }

  body.is-localized .site-header .main-nav {
    display: none;
    grid-area: auto;
  }

  .site-header .main-nav a,
  .site-header .main-nav a:not(.nav-cta):not([href="#hero"]) {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: none;
    min-height: 42px;
    margin-left: 0 !important;
    white-space: normal;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 9px 12px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
  }

  .nav-open .site-header .main-nav {
    display: flex;
  }

  body.is-localized.nav-open .site-header .main-nav {
    display: flex;
  }

  .site-header .nav-cta {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 42px;
    margin-top: 0;
    padding: 0 16px;
    font-size: 12px;
    animation: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 64px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: 0;
  }

  .hero .lead {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-cta {
    display: grid;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

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

  .section-header h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.2;
  }

  .reports-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reports-head h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .reports-head .btn {
    width: 100%;
  }

  .report-feature-media {
    min-height: 240px;
  }

  .report-feature h3 {
    font-size: 24px;
  }

  .report-strip article {
    min-height: 128px;
  }

  .glass-card {
    padding: 22px;
  }

  .table-container {
    border-radius: 16px;
  }

  table {
    min-width: 680px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .site-footer .main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 0;
  }

  .site-footer .main-nav a {
    margin-left: 0;
    white-space: normal;
  }

  .market-banner {
    grid-template-columns: 1fr;
    margin-top: -12px;
    padding: 20px;
  }

  .market-growth-feed {
    padding: 12px;
    font-size: 11px;
  }

  .market-growth-title small {
    display: block;
    margin: 4px 0 0;
  }
}

@media (max-width: 420px) {
  .shell {
    padding: 0 16px;
  }

  .header-inner {
    gap: 8px;
  }

  .header-tools {
    gap: 8px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    font-size: 28px;
  }

  .language-switcher select {
    min-width: 92px;
    max-width: 104px;
    padding: 7px 26px 7px 9px;
    font-size: 11px;
  }

  .hero {
    padding-top: 56px;
  }
}
