:root {
  --ink: #101827;
  --muted: #617087;
  --line: #e3e9f1;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --panel: #eef5fb;
  --blue: #2c49d8;
  --navy: #112b55;
  --teal: #0f9b9b;
  --amber: #f28c28;
  --shadow: 0 20px 50px rgba(22, 39, 68, 0.12);
  --small-shadow: 0 12px 30px rgba(22, 39, 68, 0.08);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

#app:focus {
  outline: none;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: auto;
  height: 42px;
  display: block;
  object-fit: contain;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #2d3b50;
  font-size: 15px;
}

.main-menu a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-menu a.is-active {
  color: var(--blue);
  border-color: var(--amber);
}

.language-switch,
.ghost-button,
.primary-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.language-switch,
.ghost-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
}

.primary-button {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(44, 73, 216, 0.24);
}

.ghost-button:hover,
.language-switch:hover {
  border-color: var(--blue);
}

.primary-button:hover {
  background: #223bb9;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(16, 24, 39, 0.88), rgba(16, 24, 39, 0.55), rgba(16, 24, 39, 0.2)),
    linear-gradient(135deg, #15213d 0%, #253c74 40%, #0f9b9b 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.42;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  padding: 84px 0 142px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a7f3ff;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero .ghost-button {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.report-device {
  width: min(560px, 100%);
  overflow: hidden;
  border: 16px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #e9f2fb;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.report-device-top {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  background: #112b55;
}

.report-device-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #89f0ff;
}

.report-device-body {
  position: relative;
  overflow: hidden;
  height: 360px;
}

.report-device-body::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 42%;
  height: 34%;
  border-radius: 12px 0 0 0;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.report-preview {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #fff;
}

.report-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 38px;
  z-index: 3;
  width: 180px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--blue);
  font-size: 22px;
}

.floating-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.stats-strip {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 40px));
  margin: -52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 22px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
}

.stat-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: #f1f6fb;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(36px, 4.8vw, 54px);
  line-height: 1.08;
}

.vip-grid,
.share-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vip-card,
.share-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
}

.vip-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.vip-card:hover,
.vip-card:focus {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.vip-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  margin-bottom: 22px;
}

.vip-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
}

.vip-card:nth-child(1) .vip-icon {
  background: var(--blue);
}

.vip-card:nth-child(2) .vip-icon {
  background: var(--teal);
}

.vip-card:nth-child(3) .vip-icon {
  background: var(--amber);
}

.han-icon {
  display: block;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.vip-card h3,
.share-card h3,
.testimonial-card h3 {
  margin: 0;
  font-size: 24px;
}

.vip-card h3 {
  min-height: 2.5em;
  overflow: hidden;
  display: -webkit-box;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vip-card p,
.share-card p,
.testimonial-card p,
.process-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-row span {
  border-radius: 99px;
  background: var(--panel);
  color: var(--navy);
  padding: 7px 10px;
  font-size: 13px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.report-type-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.report-type-grid .icon-tile {
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.report-type-grid .tile-icon {
  width: 52px;
  height: 52px;
}

.icon-tile {
  --tile-color: var(--blue);
  --tile-bg: #edf2ff;
  --tile-shadow: rgba(44, 73, 216, 0.14);
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.report-type-grid .icon-tile:hover {
  transform: translateY(-4px);
  border-color: var(--tile-color);
  background: #f8fbff;
  box-shadow: 0 14px 34px var(--tile-shadow);
}

.report-type-grid .icon-tile:hover .tile-icon {
  color: #fff;
  background: var(--tile-color);
}

.tile-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--tile-color);
  background: var(--tile-bg);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.icon-tile:nth-child(4n + 2) {
  --tile-color: var(--teal);
  --tile-bg: #e9fbf8;
  --tile-shadow: rgba(15, 155, 155, 0.14);
}

.icon-tile:nth-child(4n + 3) {
  --tile-color: var(--amber);
  --tile-bg: #fff4e8;
  --tile-shadow: rgba(242, 140, 40, 0.14);
}

.icon-tile:nth-child(4n) {
  --tile-color: #8b5cf6;
  --tile-bg: #f3edff;
  --tile-shadow: rgba(139, 92, 246, 0.16);
}

.icon-tile span {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 28px;
  align-items: center;
  text-align: center;
}

.broker-logo {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 18px 24px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(22, 39, 68, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.broker-logo:hover,
.broker-logo:focus {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(22, 39, 68, 0.16);
}

.broker-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.broker-logo:hover img,
.broker-logo:focus img {
  transform: scale(1.08);
}

.feature-band {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.feature-item {
  min-height: 146px;
  text-align: left;
  padding: 22px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 39, 68, 0.07);
}

.feature-card-top,
.seo-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  margin-bottom: 14px;
}

.feature-item .tile-icon,
.seo-card .tile-icon {
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, #2c49d8, #8b5cf6);
}

.feature-item:nth-child(2) .tile-icon,
.seo-card:nth-child(2) .tile-icon {
  background: linear-gradient(135deg, #0f9b9b, #30c7a0);
}

.feature-item:nth-child(3) .tile-icon,
.seo-card:nth-child(3) .tile-icon {
  background: linear-gradient(135deg, #f28c28, #ffb15a);
}

.feature-item:nth-child(4) .tile-icon,
.seo-card:nth-child(4) .tile-icon {
  background: linear-gradient(135deg, #20a56b, #37d482);
}

.feature-item:nth-child(5) .tile-icon {
  background: linear-gradient(135deg, #6070e8, #2c49d8);
}

.feature-item strong {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feature-item span {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.seo-card {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
}

.seo-card h3 {
  margin: 0;
  min-height: 2.5em;
  overflow: hidden;
  font-size: 22px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.seo-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.process-item {
  min-height: 286px;
  padding: 32px 22px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
}

.process-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.process-item:nth-child(2) .process-icon {
  color: var(--teal);
  background: #e5fbf7;
}

.process-item:nth-child(3) .process-icon {
  color: var(--amber);
  background: #fff1e1;
}

.process-item:nth-child(4) .process-icon {
  color: #8b5cf6;
  background: #f3edff;
}

.process-item h3 {
  margin: 0;
  font-size: 22px;
}

.share-card {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  appearance: none;
  text-align: left;
  border: 1px solid rgba(44, 73, 216, 0.18);
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: #fff;
  box-shadow: 0 18px 48px rgba(22, 39, 68, 0.08);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

a.share-card {
  text-decoration: none;
}

.share-card:hover {
  transform: translateY(-5px);
  border-color: rgba(44, 73, 216, 0.45);
  box-shadow: var(--shadow);
}

.share-top {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.share-top span {
  display: inline-flex;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  padding: 9px 13px;
  font-size: 15px;
  font-weight: 800;
}

.share-top svg {
  width: 34px;
  height: 34px;
}

.share-card:nth-child(2) .share-top {
  background: linear-gradient(135deg, #0c777c, var(--teal));
}

.share-card:nth-child(3) .share-top {
  background: linear-gradient(135deg, #aa5720, var(--amber));
}

.share-card h3,
.share-card p {
  padding: 0 28px;
}

.share-card h3 {
  margin-top: 28px;
  font-size: 24px;
  line-height: 1.25;
}

.share-card p {
  margin-bottom: 28px;
  font-size: 16px;
}

.share-card .share-type {
  margin: 12px 0 -2px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.home-report-card .share-report-header {
  min-height: 142px;
  padding: 26px 28px;
}

.home-report-card .report-card-broker {
  max-width: 190px;
  font-size: 22px;
}

.home-report-card .report-card-date-badge {
  padding: 7px 14px;
  font-size: 15px;
}

.home-report-card .share-report-body {
  min-height: 132px;
  padding: 28px 28px 0;
}

.home-report-card .report-card-title {
  min-height: 2.5em;
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 1.25;
}

.home-report-card .share-report-desc {
  display: -webkit-box;
  min-height: 3.4em;
  overflow: hidden;
  margin: 12px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-report-card .share-report-meta {
  margin-top: 24px;
  padding: 18px 28px;
  font-size: 15px;
}

.home-report-card .report-card-lang,
.home-report-card .report-card-pages {
  padding: 0;
}

.testimonial-card {
  position: relative;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  box-shadow: 0 14px 34px rgba(22, 39, 68, 0.06);
}

.testimonial-card::after {
  content: "“";
  position: absolute;
  right: 22px;
  top: 10px;
  color: rgba(16, 24, 39, 0.9);
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card blockquote {
  margin: 0;
  padding-right: 44px;
  color: #273850;
  line-height: 1.65;
  flex: 1;
}

.testimonial-card h3 {
  margin: 18px 0 0;
  color: var(--blue);
  font-size: 17px;
}

.testimonial-card p {
  margin-top: 3px;
  font-size: 14px;
}

.contact-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 24, 39, 0.86), rgba(16, 24, 39, 0.52), rgba(16, 24, 39, 0.16)),
    linear-gradient(135deg, #15213d 0%, #253c74 42%, #0f9b9b 100%);
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.26;
  pointer-events: none;
}

.contact-page-shell {
  position: relative;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 52px;
}

.contact-page-copy {
  max-width: 700px;
}

.contact-page-copy .eyebrow {
  margin-bottom: 14px;
  color: #9ee8ef;
}

.contact-band .eyebrow,
.contact-band p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-band h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
}

.contact-page-lead {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.contact-page-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(9, 18, 35, 0.18);
  backdrop-filter: blur(12px);
}

.contact-panel-title {
  margin: 22px 0 0;
  color: #9ee8ef;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-intro-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: left;
}

.contact-intro-item {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-intro-item h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.contact-profile-card {
  width: min(620px, 100%);
  margin: 30px 0 0;
  padding: 26px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(9, 18, 35, 0.16);
  text-align: left;
}

.contact-profile-tag {
  margin: 0;
  color: #9ee8ef;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-profile-copy {
  max-width: 100%;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.8;
}

.contact-method-grid {
  width: 100%;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-method-grid.contact-page-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-method,
.contact-link {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.contact-method {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(44, 73, 216, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  text-align: left;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 73, 216, 0.3);
  box-shadow: 0 16px 32px rgba(12, 33, 74, 0.12);
}

.contact-method-icon,
.contact-link-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
}

.contact-method-icon {
  color: #fff;
  background: linear-gradient(135deg, #2c49d8, #6070e8);
}

.contact-link-icon {
  color: #9ee8ef;
}

.contact-method span:last-child,
.contact-link span:last-child {
  overflow-wrap: anywhere;
  line-height: 1.45;
  white-space: pre-line;
}

.contact-page-panel .contact-method span:last-child {
  font-size: 16px;
}

.wechat-link {
  position: relative;
}

.wechat-qr {
  position: absolute;
  right: 12px;
  bottom: calc(100% + 12px);
  z-index: 5;
  width: 108px;
  height: 108px;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: scale(0.82) translateY(8px);
  transform-origin: bottom right;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.wechat-qr img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.wechat-link:hover .wechat-qr,
.wechat-link:focus-within .wechat-qr,
.wechat-link:focus .wechat-qr {
  opacity: 1;
  transform: scale(1.35) translateY(0);
}

.contact-page-grid .wechat-link .wechat-qr {
  left: 50%;
  right: auto;
  transform: translateX(-50%) scale(1.12) translateY(8px);
  transform-origin: bottom center;
}

.contact-page-grid .wechat-link:hover .wechat-qr,
.contact-page-grid .wechat-link:focus-within .wechat-qr,
.contact-page-grid .wechat-link:focus .wechat-qr {
  opacity: 1;
  transform: translateX(-50%) scale(1.35) translateY(0);
}

.site-footer {
  color: #fff;
  background: linear-gradient(135deg, #101827 0%, #112b55 58%, #0f6f76 100%);
}

.footer-body {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 48px;
  align-items: center;
}

.footer-heading h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.footer-kicker {
  margin: 34px 0 12px;
  color: #9ee8ef;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-contact {
  display: grid;
  grid-template-columns: 333px 252px;
  gap: 14px;
}

.footer-contact .contact-card {
  position: relative;
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.94);
  text-align: left;
  line-height: 1.4;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.footer-contact .contact-card:hover,
.footer-contact .contact-card:focus {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.16);
}

.footer-contact .contact-link-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.footer-contact .contact-link-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.footer-contact .contact-card:nth-child(3) .contact-link-icon,
.footer-contact .contact-card:nth-child(4) .contact-link-icon {
  color: #59e18f;
}

.contact-card-text {
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.footer-contact .wechat-link .wechat-qr {
  left: 50%;
  right: auto;
  bottom: calc(100% + 12px);
  width: 104px;
  height: 104px;
  opacity: 0;
  transform: translateX(-50%) scale(0.86) translateY(8px);
  transform-origin: bottom center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.footer-contact .wechat-link:hover .wechat-qr,
.footer-contact .wechat-link:focus-within .wechat-qr,
.footer-contact .wechat-link:focus .wechat-qr {
  opacity: 1;
  transform: translateX(-50%) scale(1.16) translateY(0);
}

.footer-note {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - 1180px) / 2 - 118px));
  bottom: 96px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(44, 73, 216, 0.28);
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 38px rgba(44, 73, 216, 0.26);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.back-to-top:hover {
  background: #223bb9;
}

.back-to-top.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.copy-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 60;
  padding: 12px 18px;
  border-radius: 6px;
  background: rgba(44, 73, 216, 0.86);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(44, 73, 216, 0.26);
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translate(-50%, -100%) translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -100%);
}

svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ─── Reports Page ─────────────────────────────────────────── */

.reports-broker-bar {
  padding: 32px 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.broker-bar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.broker-bar-item {
  position: relative;
  flex: 1 1 calc((100% - 84px) / 8);
  min-width: 100px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.broker-bar-item:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(44, 73, 216, 0.1);
}

.broker-bar-item.is-active {
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(44, 73, 216, 0.14);
}

.broker-bar-item img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
}

.broker-bar-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 99px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(44, 73, 216, 0.12);
}

.broker-bar-item.is-active .broker-bar-count {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 2px 6px rgba(44, 73, 216, 0.3);
}

.broker-bar-all {
  border-color: var(--line);
}

.broker-bar-all-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
}

.broker-bar-all-label svg {
  width: 18px;
  height: 18px;
}

.reports-body {
  padding: 40px 0 80px;
}

.reports-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

/* Sidebar */
.reports-sidebar {
  position: sticky;
  top: 90px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
}

.reports-sidebar-title {
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--navy);
}

.reports-filter-group {
  margin-bottom: 22px;
}

.reports-filter-group h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reports-filter-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.reports-filter-group li {
  margin: 0;
}

.reports-filter-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.reports-filter-btn:hover {
  background: var(--soft);
}

.reports-filter-btn.is-active {
  background: #edf2ff;
  color: var(--blue);
  font-weight: 700;
}

.filter-count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  background: var(--panel);
  padding: 2px 8px;
  border-radius: 99px;
}

.reports-filter-btn.is-active .filter-count {
  background: rgba(44, 73, 216, 0.12);
  color: var(--blue);
}

.reports-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}

.reports-reset-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.reports-reset-btn svg {
  width: 16px;
  height: 16px;
}

/* Main content */
.reports-main-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.reports-main-title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  color: var(--ink);
}

.reports-result-count {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.reports-active-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding: 4px 10px 4px 12px;
  border-radius: 99px;
  background: #edf2ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.reports-active-filter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(44, 73, 216, 0.16);
  color: var(--blue);
  cursor: pointer;
}

.reports-active-filter button svg {
  width: 12px;
  height: 12px;
}

/* Card grid */
.report-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.report-list-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

a.report-list-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.report-list-card .report-card-title {
  color: var(--ink);
  transition: color 0.15s ease;
}

a.report-list-card:hover .report-card-title {
  color: var(--blue);
}

.report-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 73, 216, 0.3);
  box-shadow: var(--shadow);
}

/* Colored header by report type */
.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 80px;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.report-type-industry-report .report-card-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.report-type-market-report .report-card-header {
  background: linear-gradient(135deg, #0c777c, var(--teal));
}

.report-type-company-report .report-card-header {
  background: linear-gradient(135deg, #aa5720, var(--amber));
}

.report-type-economic-report .report-card-header {
  background: linear-gradient(135deg, #5b21b6, #8b5cf6);
}

.report-type-fixed-income-report .report-card-header {
  background: linear-gradient(135deg, #065f46, #10b981);
}

.report-card-logo {
  display: block;
  width: auto;
  max-width: 100px;
  max-height: 28px;
  object-fit: contain;
}

.report-card-broker {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}

.report-card-date-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

/* Card body */
.report-card-body {
  flex: 1;
  padding: 18px 20px 0;
}

.report-card-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
  min-height: 2.7em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Card meta */
.report-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.report-card-type {
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.report-type-market-report .report-card-type {
  color: var(--teal);
}

.report-type-company-report .report-card-type {
  color: var(--amber);
}

.report-type-economic-report .report-card-type {
  color: #8b5cf6;
}

.report-type-fixed-income-report .report-card-type {
  color: #10b981;
}

.report-card-lang {
  margin-left: auto;
}

.report-card-lang,
.report-card-pages {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.report-card-lang svg,
.report-card-pages svg {
  width: 15px;
  height: 15px;
  opacity: 0.6;
}

/* Pagination */
.reports-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.page-btn {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.page-btn:hover:not(.is-disabled):not(.is-active) {
  border-color: var(--blue);
  color: var(--blue);
}

.page-btn.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.page-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 38px;
  color: var(--muted);
  font-size: 16px;
}

/* Empty state */
.reports-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 0;
  }

  .hero-copy {
    padding-bottom: 36px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .floating-note {
    right: calc((100% - min(560px, 100%)) / 2 + 18px);
    bottom: 18px;
    width: 154px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
  }

  .report-device-body::after {
    display: none;
  }

  .stats-strip,
  .vip-grid,
  .share-grid,
  .testimonial-grid,
  .icon-grid,
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-type-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-wall {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-method-grid.contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .contact-profile-card {
    width: 100%;
    padding: 22px 24px;
  }

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

  /* Reports page responsive */
  .reports-layout {
    grid-template-columns: 1fr;
  }

  .reports-sidebar {
    position: static;
  }

  .report-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .broker-bar-item {
    min-height: 64px;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 64px;
  }

  .brand-mark span:last-child {
    max-width: 180px;
    line-height: 1.2;
  }

  .menu-toggle {
    display: block;
  }

  .main-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-menu.is-open {
    display: flex;
  }

  .main-menu a,
  .language-switch {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding: 58px 0 20px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
  }

  .vip-grid,
  .share-grid,
  .testimonial-grid,
  .seo-grid,
  .contact-method-grid,
  .feature-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-method-grid.contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-panel {
    padding: 18px;
  }

  .contact-profile-card {
    margin-top: 22px;
    padding: 20px 18px;
  }

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

  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .feature-band {
    padding: 0;
  }

  .report-preview {
    min-height: 260px;
  }

  .report-device {
    border-width: 10px;
  }

  .report-device-top {
    height: 48px;
  }

  .report-device-body {
    height: 300px;
  }

  .footer-body {
    padding-top: 58px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-heading h2 {
    font-size: 32px;
  }

  .footer-contact .wechat-link .wechat-qr {
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) scale(0.86) translateY(8px);
    transform-origin: center;
  }

  .footer-contact .wechat-link:hover .wechat-qr,
  .footer-contact .wechat-link:focus-within .wechat-qr,
  .footer-contact .wechat-link:focus .wechat-qr {
    opacity: 1;
    transform: translateX(-50%) scale(1.08) translateY(0);
  }

  /* Reports page responsive */
  .report-card-grid {
    grid-template-columns: 1fr;
  }

  .reports-body {
    padding: 24px 0 60px;
  }

  .broker-bar-all {
    flex: 1 1 100%;
  }

  .broker-bar-item {
    min-height: 56px;
    flex: 1 1 calc((100% - 36px) / 4);
    min-width: 80px;
  }

  .broker-bar-item img {
    max-height: 24px;
  }

  .broker-bar-count {
    font-size: 11px;
    min-width: 20px;
    height: 20px;
  }

  .reports-sidebar {
    padding: 18px;
  }

  .page-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .icon-tile {
    gap: 10px;
    padding: 14px;
  }

  .icon-tile span {
    font-size: 17px;
  }

  .tile-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 360px) {
  .stats-strip,
  .icon-grid,
  .logo-wall {
    grid-template-columns: 1fr;
  }
}
