:root {
  --purple: #5b2c91;
  --purple-mid: #8e62cc;
  --purple-soft: #f3eef9;
  --navy: #1c1233;
  --sky: #3d9be9;
  --sky-dark: #2b7fc7;
  --ink: #1a1528;
  --muted: #5e5670;
  --line: #e4dced;
  --paper: #fbfafc;
  --white: #fff;
  --max: 1140px;
  --header-h: 84px;
  --serif: "Noto Serif TC", "Noto Serif SC", serif;
  --sans: "Noto Sans TC", "Noto Sans SC", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h, 68px) + 8px); }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(100% - 2.4rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 250, 252, 0.94);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2.4rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  line-height: 1.15;
}

.brand-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.brand-sub {
  display: block;
  margin: 0;
  padding-left: 3.05rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
}

.nav a,
.nav-dropdown > button,
.nav-dropdown > .nav-dd-trigger {
  border: 0;
  background: none;
  padding: 0.5rem 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

/* Edge: dropdown trigger stays `inline` while sibling links are blockified flex items */
.nav > a,
.nav > .nav-dropdown {
  display: flex;
  align-items: flex-start;
}
.nav > a,
.nav-dropdown > button,
.nav-dropdown > .nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
}

.nav a:hover,
.nav a.is-active,
.nav-dropdown > button:hover,
.nav-dropdown > button.is-active,
.nav-dropdown > .nav-dd-trigger:hover,
.nav-dropdown > .nav-dd-trigger.is-active {
  color: var(--purple);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
  display: grid;
}

.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 320px;
  max-width: min(420px, 92vw);
  padding: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(28, 18, 51, 0.1);
  z-index: 60;
}

.dropdown-panel a {
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.dropdown-panel a.is-active { background: var(--purple-soft); color: var(--purple); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--white);
}

.lang-switch button {
  border: 0;
  background: none;
  min-width: 2.1rem;
  height: 2rem;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
}

.lang-switch button.is-active {
  background: var(--purple);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}

.btn-sky {
  background: var(--sky);
  color: #fff;
}
.btn-sky:hover { background: var(--sky-dark); }

.btn-purple {
  background: var(--purple);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

.btn-line {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-nav { display: none; }

/* Home */
.home-hero {
  background:
    radial-gradient(900px 380px at 90% 10%, rgba(61,155,233,.18), transparent 55%),
    linear-gradient(165deg, #3a1d66 0%, #5b2c91 42%, #2a1848 100%);
  color: #fff;
  padding: 3.6rem 0 3.4rem;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.home-hero img,
.sol-art img,
.page-art img,
.fx-hero img,
.x1-main img,
.tr-hero img {
  width: 100%;
  height: auto;
}

.home-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  line-height: 1.22;
  margin: 0 0 1rem;
  max-width: 12em;
}

.home-hero .lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.sol-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
  padding: 4.2rem 0;
  border-bottom: 1px solid var(--line);
}

.sol-block.reverse { grid-template-columns: 0.95fr 1.05fr; }
.sol-block.reverse .sol-copy { order: 2; }
.sol-block.reverse .sol-art { order: 1; }

.kicker {
  color: var(--sky-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sol-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0.4rem 0 0.7rem;
}

.sol-copy p { margin: 0 0 1rem; color: var(--muted); }

.sol-copy ul {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.sol-copy li {
  padding: 0.28rem 0 0.28rem 1rem;
  position: relative;
  color: var(--ink);
}

.sol-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--sky);
}

.link-more {
  color: var(--purple);
  font-weight: 700;
  font-size: 0.92rem;
}

.sol-art img,
.page-art img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  background: var(--purple);
}

.art {
  min-height: 260px;
  background: var(--purple);
  position: relative;
  overflow: hidden;
}

.art::after {
  content: "";
  position: absolute;
  inset: auto 12% 18% 12%;
  height: 44%;
  background: rgba(255,255,255,.08);
}

.art-mso {
  background:
    linear-gradient(180deg, transparent 46%, rgba(28,18,51,.35) 46%),
    linear-gradient(90deg, #4a2478 0 18%, #6d3aa8 18% 22%, #4a2478 22% 100%);
}
.art-mso::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 28%;
  height: 18%;
  background: #3d9be9;
  opacity: 0.85;
}

.art-fx {
  background:
    radial-gradient(circle at 20% 80%, rgba(61,155,233,.45), transparent 40%),
    linear-gradient(115deg, #24143f, #5b2c91 55%, #3d9be9);
}
.art-fx::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48%;
  height: 2px;
  background: #fff;
  opacity: 0.5;
}

.art-aml {
  background:
    repeating-linear-gradient(-12deg, #5b2c91 0 18px, #6740a0 18px 20px);
}
.art-aml::before {
  content: "";
  position: absolute;
  left: 14%;
  top: 18%;
  width: 54%;
  height: 64%;
  background: rgba(255,255,255,.12);
  box-shadow: 16px 16px 0 rgba(61,155,233,.35);
}

.art-trust {
  background:
    linear-gradient(#2e1854, #2e1854) 50% 20% / 42% 8px no-repeat,
    linear-gradient(#3d9be9, #3d9be9) 50% 78% / 28% 8px no-repeat,
    radial-gradient(ellipse at 50% 58%, #8e62cc, #3a1d66);
}

.art-tcsp {
  background:
    repeating-linear-gradient(90deg, #eee6f6 0 12%, #5b2c91 12% 13%),
    #5b2c91;
}
.art-tcsp::before {
  content: "";
  position: absolute;
  right: 16%;
  top: 20%;
  width: 22%;
  height: 58%;
  background: #3d9be9;
}

.news {
  padding: 4rem 0 3.2rem;
}

.news h2 {
  font-family: var(--serif);
  margin: 0 0 1.4rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.news-item {
  padding: 1.15rem 1.1rem;
  background: #fff;
  border-top: 3px solid var(--purple);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.news-item::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 0.7rem;
  background: var(--purple);
  box-shadow: 10px 10px 0 var(--sky);
}

.news-item time {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.news-item h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
}

.band-cta {
  background: var(--navy);
  color: #fff;
  padding: 2.4rem 0;
}

.band-cta .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.band-cta h2 {
  font-family: var(--serif);
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
}

.band-cta p { margin: 0; color: rgba(255,255,255,.72); }

/* Product pages shared crumbs */
.crumb {
  padding: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Fortune X: store counter layout */
.x-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.x-hero-copy {
  padding: 3rem 8vw 3rem 0;
}
.x-hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0.3rem 0 0.8rem;
  line-height: 1.25;
}
.x-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--purple);
  color: #fff;
}
.x-strip div {
  padding: 1.3rem 1.1rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.x-strip strong { display: block; font-family: var(--serif); font-size: 1.05rem; }
.x-body { padding: 3.2rem 0 4rem; }
.x-body h2 { font-family: var(--serif); margin: 0 0 1rem; }
.x-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}
.x-note {
  background: var(--purple-soft);
  padding: 1.4rem;
  border-left: 4px solid var(--sky);
}

/* Fortune FX: corridor / flow */
.fx-page { background: #140c24; color: #efeaf8; }
.fx-page .site-header { background: #140c24; border-color: #2a1c44; }
.fx-page .brand-text span,
.fx-page .nav a,
.fx-page .nav-dropdown > button,
.fx-page .nav-dropdown > .nav-dd-trigger { color: #c9bddc; }
.fx-page .crumb { color: #9a8bb0; }
.fx-hero {
  padding: 2rem 0 3rem;
}
.fx-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin: 0.2rem 0 0.8rem;
  max-width: 10em;
}
.fx-page .brand-text strong { color: #fff; }
.fx-page .lang-switch { border-color: #3a2a58; background: #1b1230; }
.fx-page .lang-switch button { color: #c9bddc; }

.fx-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 2rem 0 3rem;
  padding: 0;
}
.fx-flow li {
  list-style: none;
  padding: 1.1rem 0.8rem;
  border-top: 1px solid #3d9be9;
  font-size: 0.92rem;
}
.fx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #2a1c44;
  margin-bottom: 3rem;
}
.fx-grid article {
  background: #1b1230;
  padding: 1.5rem 1.3rem;
}
.fx-grid h3 { margin: 0 0 0.5rem; color: #8ec8f4; font-size: 1.05rem; }
.fx-grid p { margin: 0; color: #c9bddc; }

/* Fortune X1: dossier */
.x1-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 70vh;
}
.x1-rail {
  background: var(--purple);
  color: #fff;
  padding: 2rem 1.2rem;
}
.x1-rail h1 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 0.4rem 0 1rem;
}
.x1-main { padding: 2rem 6vw 4rem; }
.x1-main h2 { font-family: var(--serif); font-size: 1.35rem; }
.check {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}
.check b { color: var(--purple); }

/* Trust OS: ledger */
.tr-hero {
  padding: 3.4rem 0 2rem;
  border-bottom: 1px solid var(--ink);
}
.tr-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0;
  letter-spacing: -0.02em;
}
.tr-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0 3rem;
}
.tr-table th,
.tr-table td {
  text-align: left;
  padding: 0.9rem 0.4rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.tr-table th { color: var(--muted); font-weight: 500; font-size: 0.82rem; }
.tr-life {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 3rem;
}
.tr-life div {
  padding: 1.2rem 1rem 1.2rem 0;
  border-top: 2px solid var(--purple);
}

/* TCSP: form board */
.tc-board {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 0;
  min-height: 560px;
}
.tc-forms {
  background: #efe8f6;
  padding: 3rem 6vw;
}
.tc-forms h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0.3rem 0 0.8rem;
}
.form-card {
  background: #fff;
  padding: 1rem 1.1rem;
  margin: 0.7rem 0;
  box-shadow: 0 1px 0 rgba(28,18,51,.08);
}
.form-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.tc-side {
  background: var(--navy);
  color: #fff;
  padding: 2.4rem 1.6rem;
}
.tc-side h2 { font-family: var(--serif); margin-top: 0; }
.cal-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

/* About */
.ab-hero {
  padding: 3.2rem 0 1.5rem;
}
.ab-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin: 0.2rem 0 0.6rem;
  line-height: 1.25;
}
/* FinTech emphasis on「科技」/ Technology */
.ab-hero h1 .ft-word {
  position: relative;
  display: inline-block;
  font-family: "Plus Jakarta Sans", "Noto Sans TC", "Noto Sans SC", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0 0.08em;
  background: linear-gradient(110deg, #2a1e43 0%, #5b2c91 32%, #8e62cc 58%, #3d9be9 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ft-sheen 5.5s ease-in-out infinite;
}
.ab-hero h1 .ft-word::before {
  content: "";
  position: absolute;
  left: 0.05em;
  right: 0.05em;
  bottom: 0.08em;
  height: 0.28em;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(91, 44, 145, 0.18), rgba(61, 155, 233, 0.28), rgba(142, 98, 204, 0.16));
  z-index: -1;
}
.ab-hero h1 .ft-word::after {
  content: "";
  position: absolute;
  left: 0.12em;
  right: 0.12em;
  bottom: 0.02em;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #8e62cc 20%, #3d9be9 80%, transparent);
  opacity: 0.85;
}
@keyframes ft-sheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .ab-hero h1 .ft-word { animation: none; background-position: 40% 50%; }
}
.ab-jump {
  display: flex;
  gap: 1.2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.ab-jump a { color: var(--sky-dark); font-weight: 600; }
.ab-chap { padding: 3rem 0; }
.ab-chap h2 { font-family: var(--serif); }
.ab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.ab-card {
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
}
.ab-partner-lead {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  color: var(--muted, #6b7280);
  line-height: 1.7;
}
.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.partner-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  width: min(100%, 34rem);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid #dbe7f3;
  background: linear-gradient(135deg, #f3f8fc 0%, #f7f8fb 100%);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.partner-card:hover {
  transform: translateY(-2px);
  border-color: #3d9be9;
  box-shadow: 0 10px 28px rgba(61, 155, 233, 0.16);
}
.partner-card:hover .partner-meta strong {
  color: #3d9be9;
}
.partner-logo {
  flex: 0 0 auto;
  width: 148px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e8eef5;
  padding: 0.35rem 0.5rem;
}
.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partner-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.partner-meta strong {
  font-size: 1rem;
  color: #1f2937;
}
.partner-meta span {
  font-size: 0.86rem;
  color: #6b7280;
  line-height: 1.55;
}

.about-partners {
  margin: 1.35rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}
.about-partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}
.about-partners-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8e62cc;
  text-transform: uppercase;
}
.partner-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  border-radius: 12px;
  border: 1px solid #dbe7f3;
  background: linear-gradient(135deg, #f3f8fc 0%, #fff 100%);
  text-decoration: none;
  color: #374151;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.partner-logo-link:hover {
  transform: translateY(-2px);
  border-color: #3d9be9;
  box-shadow: 0 8px 22px rgba(61, 155, 233, 0.16);
  color: #3d9be9;
}
.partner-logo-link img {
  width: 108px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 0.2rem 0.35rem;
  border: 1px solid #eef2f6;
}

/* Contact */
.ct-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 540px;
  margin: 1.5rem 0 4rem;
}
.ct-aside {
  background: var(--purple);
  color: #fff;
  padding: 2.2rem 1.6rem;
}
.ct-aside h1 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0 0 1rem;
}
.ct-form {
  background: #fff;
  padding: 2.2rem 1.6rem;
  border: 1px solid var(--line);
  border-left: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--line);
  padding: 0.65rem 0.7rem;
}
.form-field textarea { min-height: 110px; }

/* Footer — no extra logo */
.site-footer {
  background: #161022;
  color: #cfc6dc;
  padding: 1.8rem 0 1.2rem;
  font-size: 0.9rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-addr { color: #9b90b0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  max-width: 28rem;
  justify-content: flex-end;
}
.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid #2d2440;
  color: #8a8199;
}

@media (max-width: 960px) {
  body { font-size: 17px; }
  .nav { display: none; }
  .menu-toggle { display: inline-block; }
  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 0.25rem 1.3rem 2rem;
    overflow: auto;
    z-index: 99;
    text-align: right;
  }
  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .mobile-nav a {
    display: block;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    text-align: right;
  }
  .mobile-nav-label {
    margin-top: 0.6rem;
    color: var(--purple);
    font-weight: 700;
    font-size: 0.8rem;
    text-align: right;
  }
  .mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 3rem;
    height: 3rem;
    margin: 1.5rem 0 1rem;
    padding: 0;
    border: 1.5px solid #5b2c91;
    border-radius: 50%;
    background: #fff;
    color: #5b2c91;
    cursor: pointer;
  }
  .mobile-nav-close:hover,
  .mobile-nav-close:active {
    background: #5b2c91;
    color: #fff;
  }
  .home-hero-grid,
  .sol-block,
  .sol-block.reverse,
  .news-grid,
  .x-hero,
  .x-strip,
  .x-cols,
  .fx-flow,
  .fx-grid,
  .x1-wrap,
  .tr-life,
  .tc-board,
  .ab-grid,
  .ct-shell,
  .form-grid,
  .band-cta .container,
  .footer-row {
    grid-template-columns: 1fr;
    display: grid;
  }
  .sol-block.reverse .sol-copy,
  .sol-block.reverse .sol-art { order: unset; }
  .header-actions .btn-sky { display: none; }
  .x-hero-copy { padding: 2rem 0; }
  .fx-flow { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ===== Live homepage (localhost:3000 mirror) ===== */
.page-home {
  --sans: "Plus Jakarta Sans", "Noto Sans TC", "Noto Sans SC", sans-serif;
  background: #fff;
}

.site-header-spa {
  position: fixed;
  inset: 0 0 auto 0;
  min-height: 68px;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
  z-index: 100;
}

/* SPA header is shorter; keep mobile drawer flush under it */
body:has(.site-header-spa) {
  --header-h: 68px;
}

/* Subpages with SPA header need top offset (homepage hero already accounts for fixed bar) */
body:not(.page-home):has(.site-header-spa) {
  padding-top: 68px;
}

.header-inner-spa {
  width: min(100% - 2rem, 1280px);
  min-height: 60px;
}

.site-header-spa .brand-logo-img {
  height: 32px;
  max-width: 180px;
}

.site-header-spa .brand-sub {
  padding-left: 2.25rem;
  font-size: 0.68rem;
}

.site-header-spa .header-inner-spa {
  align-items: center;
}

.site-header-spa .nav a,
.site-header-spa .nav-dropdown > button,
.site-header-spa .nav-dropdown > .nav-dd-trigger {
  color: #111827;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-header-spa .nav a:hover,
.site-header-spa .nav a.is-active,
.site-header-spa .nav-dropdown > button:hover,
.site-header-spa .nav-dropdown > button.is-active,
.site-header-spa .nav-dropdown > .nav-dd-trigger:hover,
.site-header-spa .nav-dropdown > .nav-dd-trigger.is-active {
  color: #8e62cc;
}

.lang-pipe {
  border: 0;
  background: transparent;
  gap: 0.15rem;
  align-items: center;
  color: #6b7280;
  font-size: 0.88rem;
}

.lang-pipe button {
  min-width: auto;
  height: auto;
  padding: 0.15rem 0.25rem;
  font-weight: 500;
}

.lang-pipe button.is-active {
  background: transparent;
  color: #8e62cc;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #5b2c91;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.live-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a0a0f;
  color: #fff;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.live-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: .88;
  transform-origin: 72% 58%;
  animation: heroBgDrift 36s ease-in-out infinite alternate;
  will-change: transform;
}

.live-hero-earth {
  /* Align with background map globe (right / mid-lower = red frame) */
  position: absolute;
  left: auto;
  right: -2%;
  top: 26%;
  bottom: auto;
  translate: none;
  width: min(56vw, 740px);
  height: min(56vw, 740px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 0 28px rgba(140, 90, 210, 0.18));
}

.live-hero-globe {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes heroBgDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1.6%, 1.2%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .live-hero-bg {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .live-hero-earth {
    right: -4%;
    top: 30%;
    width: min(60vw, 640px);
    height: min(60vw, 640px);
  }
}

@media (max-width: 860px) {
  .live-hero-earth {
    left: auto;
    right: -14%;
    top: auto;
    bottom: -4%;
    width: min(88vw, 440px);
    height: min(88vw, 440px);
    opacity: 0.88;
  }
}

.live-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,15,.92) 0%, rgba(40,20,70,.55) 42%, rgba(50,22,90,.28) 62%, rgba(60,25,100,.18) 100%);
  pointer-events: none;
}

.live-hero-copy {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, 38rem);
  max-width: 38rem;
  margin: 0;
  margin-left: clamp(2.75rem, 14vw, 10rem);
  margin-right: auto;
  padding-right: 1rem;
}

.live-hero h1 {
  margin: 0 0 1.2rem;
  font-family: "Plus Jakarta Sans", var(--sans);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.live-hero h1 .hero-line2 {
  color: #c4a6ef;
}

.live-hero .lead {
  margin: 0 0 1.8rem;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 34rem;
}

.btn-hero {
  background: linear-gradient(135deg, #8e62cc, #a57ee3);
  color: #fff;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  box-shadow: 0 0 0 rgba(163,127,223,0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(163,127,223,.5);
}

.live-features {
  padding: 5.5rem 0;
}

/* Anchor sections: tight under sticky header */
.live-about {
  padding-top: 1.5rem;
  padding-bottom: 3.25rem;
}

.live-products,
.live-media,
.live-contact {
  padding-top: 0.85rem;
  padding-bottom: 2.75rem;
}

/* 僅隱藏媒體焦點，不影響解決方案 */
.live-media[hidden] {
  display: none !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #f3eef9;
  color: #5b2c91;
  font-size: 0.82rem;
  font-weight: 700;
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-copy h2,
.about-copy h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: #1a1528;
  letter-spacing: -0.02em;
}

.about-copy > p {
  margin: 0 0 1.6rem;
  color: #5e5670;
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 36rem;
}

.about-checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.about-checks li {
  position: relative;
  padding-left: 2.2rem;
  color: #374151;
  font-weight: 600;
  line-height: 1.45;
}

.about-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: #efe6f8;
  box-shadow: inset 0 0 0 1px rgba(91,44,145,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B2C91' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.85rem;
}

.about-more {
  margin-top: 1.35rem;
  margin-bottom: 0.25rem;
  display: inline-flex;
  position: relative;
  z-index: 1;
}

.about-visual {
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(28,18,51,.14);
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.live-sec-head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.live-sec-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.live-underline {
  width: 4rem;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: #8e62cc;
}

.live-sec-head p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: #6b7280;
  font-size: 1.05rem;
}

.feat-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.feat-item {
  text-align: center;
  padding: 1.2rem 0.6rem;
  min-height: 12rem;
}

.feat-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 1rem;
  color: #8e62cc;
  transition: opacity .4s, transform .4s, height .4s, margin .4s;
}

.feat-icon svg { width: 100%; height: 100%; }

.feat-item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  transition: color .35s;
}

.feat-item p {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.55;
  transition: max-height .45s ease, opacity .35s ease, margin .35s ease;
}

.feat-item:hover h3 { color: #8e62cc; }
.feat-item:hover .feat-icon {
  opacity: 0;
  transform: scale(.75);
  height: 0;
  margin: 0 auto;
}
.feat-item:hover p {
  max-height: 8rem;
  opacity: 1;
  margin-top: 0.75rem;
}

.live-products { background: #f9fafb; }

.sol-panel {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 0.72fr;
  min-height: 650px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(17,24,39,.08);
}

.sol-left {
  background: #f4f4fa;
  padding: 3.2rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sol-kicker {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.sol-play {
  width: 0;
  height: 0;
  margin-top: 0.45rem;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #8e62cc;
}

.sol-kicker h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: .18em;
  font-weight: 700;
}

.sol-kicker p {
  margin: 0.25rem 0 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.sol-hex {
  width: 5.5rem;
  height: 5.5rem;
  margin-bottom: 1.2rem;
}

.sol-feature h3 {
  margin: 0 0 0.9rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
}

.sol-feature > p {
  margin: 0 0 1rem;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
}

.sol-feature ul {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.sol-feature li {
  position: relative;
  padding-left: 1rem;
  color: #374151;
  font-size: 0.9rem;
}

.sol-feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8e62cc;
}

.sol-mid {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 320px;
}

.sol-mid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  display: block;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.sol-mid img.is-visible {
  opacity: 1;
  z-index: 1;
}

.sol-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sol-tabs button {
  flex: 1;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  text-align: left;
  padding: 1.2rem 1.4rem 1.2rem 1.6rem;
  cursor: pointer;
  color: #6b7280;
  font-weight: 600;
  line-height: 1.35;
  position: relative;
}

.sol-tabs button:last-child {
  border-bottom: 0;
}

.sol-tabs button.is-active {
  background: #7b4FBA;
  color: #fff;
  border-bottom-color: #7b4FBA;
}

.sol-tabs button span {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  opacity: .85;
}

.sol-tabs button.is-active::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #7b4FBA transparent transparent;
  pointer-events: none;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.media-card {
  position: relative;
  height: 16rem;
  border-radius: 0.85rem;
  overflow: hidden;
  color: #fff;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.72));
}

.media-card-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.2rem 1.25rem;
}

.media-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.media-card span {
  font-size: 0.85rem;
  opacity: .9;
}

.media-card:hover img { transform: scale(1.06); }

.live-contact {
  position: relative;
  overflow: hidden;
}

.live-contact::before,
.live-contact::after {
  content: "";
  position: absolute;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: rgba(142,98,204,.08);
  filter: blur(40px);
  pointer-events: none;
}

.live-contact::before { top: -20%; right: -10%; }
.live-contact::after { bottom: -25%; left: -10%; }

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2.5rem;
  align-items: stretch;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.04);
}

.contact-visual {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 28rem;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.65rem;
  padding: 0.75rem 0.9rem;
  background: #fff;
  color: #111827;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(142,98,204,.35);
  border-color: #8e62cc;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #dc2626;
  background: #fff8f8;
}

.contact-form input.is-invalid:focus,
.contact-form select.is-invalid:focus,
.contact-form textarea.is-invalid:focus {
  outline-color: rgba(220, 38, 38, 0.35);
  border-color: #dc2626;
}

.contact-form .form-status {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.45;
  min-height: 1.35em;
}

.contact-form .form-status.is-pending {
  color: #5b2c91;
}

.contact-form .form-status.is-success {
  color: #1a7f4b;
}

.contact-form .form-status.is-error {
  color: #c0392b;
}

.contact-form .field-error {
  display: block;
  min-height: 1.05em;
  margin-top: -0.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #dc2626;
  line-height: 1.35;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  justify-self: start;
  min-width: 9rem;
  border-radius: 0.65rem;
  margin-top: 0.35rem;
}

.site-footer-spa {
  background: #081528;
  color: #9ca3af;
  padding: 3.5rem 0 1.5rem;
}

.footer-spa-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.6fr;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.site-footer-spa h4 {
  margin: 0 0 1.2rem;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.footer-list a:hover { color: #8e62cc; }

.footer-contact .footer-addr-one-line {
  white-space: nowrap;
}

/* English address is long — allow wrap on all sizes */
html[lang="en"] .footer-contact .footer-addr-one-line {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  line-height: 1.55;
}

.float-stack {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.float-btn {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  cursor: pointer;
}

.float-top { background: #fff; color: #374151; }
.float-top[hidden] { display: none !important; }

.float-expand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0;
  overflow: hidden;
  background: #0bccfc;
  color: #fff;
  transition: width .28s ease, padding .28s ease, box-shadow .28s ease;
}

.float-expand svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-left: 0.9rem;
}

.float-expand span {
  display: inline-block;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 700;
  overflow: hidden;
  transition: max-width .28s ease, opacity .2s ease, margin .28s ease;
}

.float-expand:hover,
.float-expand:focus-visible {
  width: 12.8rem;
  padding-right: 1.05rem;
  box-shadow: 0 10px 24px rgba(11,204,252,.35);
}

.float-expand:hover span,
.float-expand:focus-visible span {
  max-width: 10rem;
  margin-left: 0.55rem;
  opacity: 1;
}

/* News list / article */
.news-main {
  padding: 2.2rem 0 4rem;
}

.news-head h1 {
  margin: 0.4rem 0 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1528;
}

.news-desc {
  margin: 0 0 1.2rem;
  color: #5e5670;
  max-width: 42rem;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  align-items: center;
  margin: 0 0 1.5rem;
  padding: 0.85rem 0 1rem;
  border-bottom: 1px solid #e8e2f0;
}

.news-filter {
  color: #4b5563;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

.news-filter:hover {
  color: #5b2c91;
}

.news-filter.is-active {
  color: #5b2c91;
  border-bottom-color: #5b2c91;
}

.news-status {
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  background: #f3eef9;
  color: #5b2c91;
  margin-bottom: 1.2rem;
}

.news-status.is-error {
  background: #fef2f2;
  color: #b91c1c;
}

.news-list {
  display: grid;
  gap: 0.9rem;
}

.news-card {
  display: block;
  padding: 1.15rem 1.25rem;
  border: 1px solid #e8e2f0;
  border-radius: 0.9rem;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.news-card:hover {
  border-color: #8e62cc;
  box-shadow: 0 8px 24px rgba(28,18,51,.06);
}

.news-card time {
  display: inline-block;
  font-size: 0.82rem;
  color: #6b7280;
  margin-right: 0.6rem;
}

.news-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5b2c91;
  background: #f3eef9;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}

.news-card h2 {
  margin: 0.55rem 0 0.4rem;
  font-size: 1.12rem;
  line-height: 1.4;
  color: #1a1528;
}

.news-card p {
  margin: 0;
  color: #5e5670;
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
}

.news-page-num {
  color: #6b7280;
  font-size: 0.9rem;
}

.news-article-head {
  margin-bottom: 1.4rem;
}

.news-meta {
  margin: 0 0 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.news-article-head h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.35;
}

.news-article-body {
  color: #374151;
  line-height: 1.8;
  font-size: 1.02rem;
}

.news-article-body svg,
.news-article-body .e-font-icon-svg,
.news-article-body .elementor-icon-list-icon,
.news-article-body .elementor-widget-post-info,
.news-article-body .elementor-post-info,
.news-article-body .elementor-icon-list-items {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.news-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.6rem;
  margin: 1rem 0;
}

.news-article-body p {
  margin: 0 0 1rem;
}

.news-source {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e8e2f0;
  font-size: 0.9rem;
  color: #6b7280;
  word-break: break-all;
}

.news-source a {
  color: #5b2c91;
}

@media (max-width: 1100px) {
  .feat-row { grid-template-columns: repeat(3, 1fr); }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .about-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .about-more {
    margin-top: 1.5rem;
    min-height: 2.85rem;
    padding-inline: 1.35rem;
  }
  .about-visual { order: 2; }
  .sol-panel { grid-template-columns: 1fr; }
  .sol-tabs { flex-direction: row; flex-wrap: wrap; }
  .sol-tabs button { flex: 1 1 40%; min-height: 4.5rem; }
  .sol-tabs button.is-active::before { display: none; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .footer-spa-grid { grid-template-columns: 1fr; }
  .footer-contact .footer-addr-one-line {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    line-height: 1.55;
  }
}

@media (max-width: 960px) {
  .header-phone { display: none; }
  .contact-card,
  .form-two { grid-template-columns: 1fr; }
  .contact-visual { display: none; }
  .feat-row { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .live-hero { min-height: 85vh; }
  .header-inner,
  .header-inner-spa {
    gap: 0.45rem;
    min-width: 0;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }
  .brand-lockup {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .brand-logo-img {
    max-width: 100%;
  }
  .brand-sub {
    font-size: 0.62rem;
    padding-left: 2.4rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .site-header-spa .brand-sub { padding-left: 2rem; }
  html[lang="en"] .brand-sub { font-size: 0.56rem; letter-spacing: 0; }
  .lang-pipe { flex-shrink: 0; }
  .menu-toggle {
    display: inline-block;
    flex-shrink: 0;
  }
}

/* copy-linebreaks */
.lead,
[data-sol-desc],
.sol-hero p,
.ab-chap > p,
.about-copy p,
.ab-partner-lead,
.ab-card p,
.feat-card p,
.partner-meta span {
  white-space: pre-line;
}
