:root {
  --ink: #eef6ff;
  --muted: #a9b9c8;
  --panel: rgba(9, 21, 34, 0.78);
  --panel-solid: #0f1d2c;
  --line: rgba(180, 210, 235, 0.18);
  --blue: #35a7ff;
  --teal: #38e6c5;
  --gold: #d7b46a;
  --paper: #f4f7f9;
  --text: #15202b;
  --soft: #5d6b78;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  font-family: Inter, "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 13, 23, 0.74);
  backdrop-filter: blur(18px);
  color: var(--ink);
}

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

.brand-logo {
  display: block;
  width: auto;
  height: clamp(24px, 2.4vw, 34px);
  filter: drop-shadow(0 8px 18px rgba(56, 230, 197, 0.15));
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: #dbe9f5;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  color: var(--teal);
  opacity: 1;
}

.language-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 230, 197, 0.36);
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  background: #06111d;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("hong-kong-skyline.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(0.92) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 10, 18, 0.94) 0%, rgba(5, 15, 27, 0.82) 42%, rgba(5, 15, 27, 0.28) 100%),
    linear-gradient(0deg, rgba(2, 10, 18, 0.98) 0%, rgba(2, 10, 18, 0.06) 46%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 122px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4.2vw, 4.25rem);
  line-height: 1.08;
  font-weight: 800;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: #c8d8e6;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--teal);
  color: #06111d;
  box-shadow: 0 16px 34px rgba(56, 230, 197, 0.22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.market-panel {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.market-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 230, 197, 0.38);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.panel-head,
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.panel-head {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-head b {
  color: var(--gold);
}

.metric-row:last-child {
  border-bottom: 0;
}

.metric-row span {
  color: var(--muted);
  line-height: 1.4;
}

.metric-row strong {
  color: var(--ink);
  font-size: clamp(1.3rem, 3vw, 2rem);
  white-space: nowrap;
}

.section {
  padding: clamp(70px, 10vw, 120px) clamp(20px, 4vw, 48px);
}

.section > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
}

.about-section {
  background:
    linear-gradient(135deg, rgba(56, 230, 197, 0.07), rgba(53, 167, 255, 0) 34%),
    #f5f7f9;
}

.about-section .section-kicker {
  margin-bottom: 22px;
}

.about-section .split-layout {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
}

.section h2 {
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: 1.02;
}

.about-section h2 {
  max-width: 620px;
  font-size: clamp(2.35rem, 3.2vw, 3.65rem);
  line-height: 1.08;
}

.about-section .body-copy {
  position: relative;
  padding: clamp(26px, 3.6vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 22px 60px rgba(33, 56, 76, 0.11);
  backdrop-filter: blur(18px);
}

.about-section .body-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 26px 0 0 26px;
  background: linear-gradient(180deg, var(--teal), var(--blue));
}

.body-copy p {
  margin: 0 0 22px;
  color: var(--soft);
  font-size: 1.06rem;
  line-height: 1.82;
}

.about-section .body-copy p {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.78;
}

.about-section .body-copy p:last-child {
  margin-bottom: 0;
  padding-top: 22px;
  border-top: 1px solid #dce6ee;
}

.strategy-section,
.contact-section {
  background: #071321;
  color: var(--ink);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 840px;
}

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

.strategy-grid article {
  min-height: 170px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.strategy-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 230, 197, 0.48);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
}

.strategy-grid article:hover .industry-icon {
  color: var(--teal);
  border-color: rgba(56, 230, 197, 0.54);
  background: rgba(56, 230, 197, 0.16);
}

.industry-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(56, 230, 197, 0.26);
  background: rgba(56, 230, 197, 0.11);
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.strategy-grid h3 {
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.3;
}

.global-section {
  background: #f5f7f9;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
}

.insight-card {
  min-width: 0;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(33, 56, 76, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(53, 167, 255, 0.36);
  box-shadow: 0 24px 60px rgba(33, 56, 76, 0.16);
}

.insight-label {
  display: block;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-card strong {
  display: block;
  margin: 18px 0 12px;
  color: #071321;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  white-space: nowrap;
  max-width: 100%;
  transform-origin: left center;
}

.insight-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 29, 44, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 230, 197, 0.38);
  background: rgba(20, 39, 58, 0.82);
}

.contact-grid h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.2rem;
}

.contact-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid a {
  color: var(--teal);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 26px 20px;
  background: #030a12;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

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

  .about-section .split-layout {
    grid-template-columns: 1fr;
  }

  .about-section h2 {
    max-width: 760px;
    font-size: clamp(2.15rem, 6vw, 3.25rem);
  }

  .market-panel {
    max-width: 560px;
  }

  .strategy-grid,
  .insight-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@supports (container-type: inline-size) {
  .insight-card {
    container-type: inline-size;
  }

  .insight-card strong {
    font-size: clamp(1.75rem, 18cqw, 2.95rem);
  }
}

@media (max-width: 1320px) {
  .insight-card strong {
    font-size: clamp(1.65rem, 3.7vw, 2.55rem);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .brand-logo {
    height: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(4, 13, 23, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .language-link {
    margin-top: 12px;
    padding: 12px 14px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    width: min(100% - 32px, var(--max));
    padding: 112px 0 46px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.25rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .about-section h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-section .body-copy {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .button {
    width: 100%;
  }

  .market-panel {
    width: 100%;
  }

  .panel-head,
  .metric-row {
    padding: 15px 16px;
  }

  .strategy-grid,
  .insight-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .strategy-section .section-heading {
    text-align: center;
    margin-bottom: 28px;
  }

  .strategy-section .section-heading h2 {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    line-height: 1.18;
  }

  .strategy-grid {
    gap: 12px;
  }

  .strategy-grid article {
    min-height: 92px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 18px;
    padding: 18px;
    border-radius: 20px;
  }

  .industry-icon {
    width: 58px;
    height: 58px;
    padding: 14px;
    border-radius: 18px;
    flex: 0 0 auto;
  }

  .strategy-grid h3 {
    margin: 0;
    font-size: clamp(1.05rem, 4.5vw, 1.42rem);
    line-height: 1.35;
  }

  .contact-grid article {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .strategy-grid article {
    gap: 14px;
    padding: 16px;
  }

  .industry-icon {
    width: 52px;
    height: 52px;
    padding: 13px;
  }

  .strategy-grid h3 {
    font-size: 1.05rem;
  }
}
