:root {
  --bg: #f5f8fc;
  --bg-card: #ffffff;
  --text: #1a2c3d;
  --text-muted: #4a5f72;
  --primary: #00529b;
  --primary-dark: #003d73;
  --accent: #ff7a33;
  --accent-gold: #ffc93d;
  --accent-soft: #e8f2fa;
  --tint-soft: #ddeaf7;
  --border: rgba(0, 82, 155, 0.16);
  --shadow: 0 12px 40px rgba(0, 50, 100, 0.08);
  --radius: 18px;
  --font-cn: "Noto Sans SC", system-ui, sans-serif;
  --font-en: "Outfit", var(--font-cn);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-cn);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 248, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(260px, 52vw);
  object-fit: contain;
}

@media (max-width: 480px) {
  .logo-img {
    height: 38px;
    max-width: min(220px, 58vw);
  }
}

.nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a {
  color: var(--text);
  text-decoration: none;
}

.nav a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.nav a.is-active {
  color: var(--primary);
  font-weight: 600;
}

.subnav {
  background: linear-gradient(180deg, #e8f2fa 0%, #f2f7fc 100%);
  border-bottom: 1px solid rgba(0, 82, 155, 0.14);
  box-shadow: 0 4px 14px rgba(0, 50, 100, 0.07);
}

.subnav-wrap {
  padding: 0.85rem 0 1rem;
}

.subnav-label {
  margin: 0 0 0.55rem;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.subnav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.65rem;
}

.subnav-inner a {
  box-sizing: border-box;
  max-width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.45;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  border: 1px solid rgba(0, 82, 155, 0.18);
  box-shadow: 0 2px 6px rgba(0, 50, 100, 0.06);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.subnav-inner a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 82, 155, 0.28);
  text-decoration: none;
}

@media (max-width: 768px) {
  .subnav-wrap {
    padding: 0.7rem 0 0.85rem;
  }

  .subnav-inner {
    gap: 0.45rem 0.5rem;
  }

  .subnav-inner a {
    font-size: 0.82rem;
    padding: 0.42rem 0.75rem;
  }
}

.page-hero {
  padding: 3rem 0 2.25rem;
  background: linear-gradient(180deg, #e8f2fa 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero--compact {
  padding: 2.25rem 0 1.75rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #062542;
}

.page-hero .section-label {
  text-align: left;
  margin-bottom: 0.4rem;
}

.page-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 40rem;
}

.page-next {
  margin-top: 2.5rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.75;
}

.page-next-sep {
  opacity: 0.45;
  font-weight: 400;
}

.page-next--light a {
  color: rgba(255, 255, 255, 0.95);
}

.page-next--light a:hover {
  color: #fff;
}

.product-anchor {
  scroll-margin-top: 108px;
}

.cta--page {
  margin-top: 0;
}

.cta-company {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.98;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 1.5rem 1.25rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
    display: none;
  }

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

  .site-header {
    position: relative;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(80vh, 660px);
  display: flex;
  align-items: center;
  padding: 4rem 0 3.25rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 12% 18%, rgba(255, 201, 61, 0.22), transparent 52%),
    radial-gradient(ellipse 100% 80% at 18% 25%, rgba(0, 120, 200, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 60% at 88% 28%, rgba(255, 122, 51, 0.14), transparent 45%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(221, 234, 247, 0.95), transparent 55%),
    linear-gradient(180deg, #e8f2fa 0%, var(--bg) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300529b' fill-opacity='0.055'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.75;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.hero-company {
  margin: 0 0 1.25rem;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
  max-width: 42rem;
  line-height: 1.45;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #062542;
}

.hero-lead {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-tags span {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
  box-shadow: 0 2px 8px rgba(0, 50, 100, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent));
  color: #1a1408;
  box-shadow: 0 8px 24px rgba(255, 140, 60, 0.35);
}

.btn-primary:hover {
  color: #1a1408;
  box-shadow: 0 10px 28px rgba(255, 140, 60, 0.42);
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}

.btn-light:hover {
  color: var(--primary-dark);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #062542;
}

.section-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* About page visual（左侧栏正文下方） */
.about-grid-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.about-figure {
  margin: 0;
  max-width: 100%;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-card);
}

.about-figure--left {
  align-self: flex-start;
  max-width: min(520px, 100%);
}

.about-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 82, 155, 0.12);
}

.hi-icon {
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.5;
}

.highlight-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.highlight-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Products */
.products {
  background: linear-gradient(180deg, var(--bg) 0%, #e8f0f8 50%, var(--bg) 100%);
}

.product-block {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 2rem;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.product-block.alt {
  background: linear-gradient(135deg, #ffffff 0%, #f0f6fc 100%);
}

.product-block--figure-top .product-figure {
  grid-column: 1 / -1;
  margin: 0 0 0.25rem;
}

.product-block .product-figure--span-row {
  grid-column: 1 / -1;
  margin: 1.25rem 0 0;
}

.product-body .product-figure--in-body {
  margin: 1.25rem 0 1rem;
}

.product-figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 4px 20px rgba(0, 50, 100, 0.06);
}

.product-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .product-block {
    grid-template-columns: 1fr;
  }
}

/* 独立产品页：单栏排版 */
.product-block--stacked {
  grid-template-columns: 1fr;
}

.subnav-inner a.is-active {
  background: linear-gradient(135deg, #00529b 0%, #003d73 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 82, 155, 0.35);
}

.subnav-inner a.is-active:hover {
  background: linear-gradient(135deg, #003d73 0%, #002a52 100%);
  color: #fff;
  border-color: transparent;
}

/* 产品介绍总览页 */
.products-page-hero {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(145deg, #e8f2fa 0%, #f5f8fc 45%, #eef6ff 100%);
  border-bottom: 1px solid var(--border);
}

.products-page-hero-text .section-label {
  text-align: left;
}

.products-page-hero-text h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  color: #062542;
}

.products-page-hero-text .page-lead {
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.products-page-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.products-page-tags li {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0, 50, 100, 0.05);
}

.products-index-section {
  padding-top: 3rem;
}

.products-index-heading {
  margin: 0 0 1.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #062542;
  letter-spacing: 0.04em;
  text-align: center;
}

.product-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 1100px) {
  .product-index-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-index-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 50, 100, 0.07);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.product-index-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 82, 155, 0.28);
  box-shadow: 0 16px 40px rgba(0, 50, 100, 0.12);
  text-decoration: none;
  color: inherit;
}

.product-index-card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8f2fa 0%, #ddeaf7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.5rem;
}

.product-index-card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 40, 80, 0.06) 100%);
  pointer-events: none;
}

.product-index-card-thumb img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

.product-index-card:hover .product-index-card-thumb img {
  transform: scale(1.03);
}

.product-index-card-body {
  position: relative;
  padding: 1.2rem 1.35rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-index-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #062542;
  line-height: 1.35;
}

.product-index-card p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.product-index-more {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-index-more::after {
  content: "→";
  transition: transform 0.2s ease;
}

.product-index-card:hover .product-index-more::after {
  transform: translateX(4px);
}

.product-meta {
  padding-top: 0.25rem;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--tint-soft);
  color: var(--primary-dark);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.product-meta h2,
.product-meta h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-sub {
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.product-body p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.75;
}

.product-body p strong {
  font-weight: 700;
  color: var(--primary-dark);
}

.product-badges {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8f2fa 0%, #ddeaf7 100%);
  border: 1px solid rgba(0, 82, 155, 0.2);
  color: var(--primary-dark);
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
}

.product-body p.product-badges {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--primary-dark);
}

.feature-chips {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.feature-chips li {
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  background: var(--tint-soft);
  font-size: 0.8rem;
  color: var(--text);
}

.product-roles {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
}

.product-roles strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.product-role-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 960px) {
  .product-role-gallery {
    grid-template-columns: 1fr;
  }
}

.role-figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f8fafc;
  box-shadow: 0 4px 16px rgba(0, 50, 100, 0.06);
}

.role-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.role-figure figcaption {
  padding: 0.65rem 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--accent-soft);
  border-top: 1px solid var(--border);
}

.flow-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.7;
}

.flow-list li {
  margin-bottom: 0.65rem;
}

.flow-list li strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.supervision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .supervision-grid {
    grid-template-columns: 1fr;
  }
}

.sg-card {
  padding: 1.15rem;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 82, 155, 0.1);
}

.sg-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.sg-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
}

/* Industries */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.industry-card {
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 600;
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 50, 100, 0.06);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.industry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 82, 155, 0.35);
}

.coop-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.industries-figure {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 82, 155, 0.18);
  background: #fff;
  box-shadow: 0 4px 28px rgba(0, 50, 100, 0.07);
  isolation: isolate;
}

.industries-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  /* 减轻圆角裁切 + 合成层导致的边缘发糊（Chrome / Edge） */
  transform: translateZ(0);
  backface-visibility: hidden;
}

@supports (image-rendering: high-quality) {
  .industries-figure img {
    image-rendering: high-quality;
  }
}

.industries-figure--partners {
  margin-bottom: 2rem;
}

/* CTA */
.cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #00529b 0%, #003d73 48%, #002a52 100%);
  color: #fff;
}

.cta-inner {
  text-align: center;
}

.cta h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.cta-inner > p {
  margin: 0 0 0.35rem;
  opacity: 0.95;
}

.cta-tagline {
  font-size: 0.95rem;
  opacity: 0.88;
  margin-bottom: 0.5rem !important;
}

.cta-hint {
  margin: 1.25rem auto 0;
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  padding: 1.5rem 0;
  background: #e8f0f8;
  color: var(--text);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

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

.footer-note {
  color: var(--text-muted);
  flex: 1;
  text-align: right;
}

.footer-icp {
  color: var(--text-muted);
  white-space: nowrap;
  font-size: 0.875rem;
  flex: 1;
  text-align: right;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    flex: none;
    width: 100%;
    text-align: right;
  }

  .footer-icp {
    margin-top: 0.25rem;
    width: 100%;
    flex: none;
    text-align: center;
  }
}
