:root {
  --blue-900: #12304a;
  --blue-700: #155ea8;
  --blue-500: #2d7fc3;
  --orange-500: #f28c28;
  --teal-600: #0f8b8d;
  --gold-500: #b88922;
  --ink: #1d2733;
  --muted: #617083;
  --line: #d8e2ec;
  --paper: #ffffff;
  --mist: #f7fafc;
  --warm: #fff8ef;
  --shadow: 0 18px 50px rgba(18, 48, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  background: var(--paper);
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 40px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 226, 236, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}

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

.brand-mark strong {
  font-size: 1.08rem;
}

.brand-mark small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.96rem;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--blue-700);
  border-color: var(--orange-500);
}

.site-nav a[aria-current="page"] {
  font-weight: 800;
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
}

.nav-action {
  color: #fff;
  background: var(--orange-500);
}

.hero-section {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  color: #fff;
  background: var(--blue-900);
}

#heroCanvas,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 48, 74, 0.96) 0%, rgba(18, 48, 74, 0.76) 46%, rgba(18, 48, 74, 0.3) 100%),
    linear-gradient(180deg, rgba(18, 48, 74, 0.12) 0%, rgba(18, 48, 74, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  padding: 110px 0 96px;
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.tag {
  margin: 0 0 12px;
  color: var(--orange-500);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1.45rem;
  font-weight: 700;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

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

.button-primary {
  color: #fff;
  background: var(--orange-500);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--blue-900);
  background: #fff;
}

.button-outline {
  color: var(--blue-900);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.hero-proof {
  position: absolute;
  right: 40px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
}

.hero-proof span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.section {
  padding: 86px 40px;
}

.section:nth-of-type(even) {
  background: var(--mist);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.section-heading.narrow {
  width: min(820px, 100%);
  text-align: center;
}

.section-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--blue-900);
  font-size: 2.6rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.narrow p {
  margin-right: auto;
  margin-left: auto;
}

.business-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
  transition: grid-template-columns 260ms ease;
}

.business-stage:has(.business-panel:nth-child(2).is-active) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.26fr) minmax(0, 1fr);
}

.business-stage:has(.business-panel:nth-child(3).is-active) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.26fr);
}

.business-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 560px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-900);
  border-radius: 8px;
  outline: none;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, background-color 220ms ease;
}

.business-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.62;
  background:
    radial-gradient(circle at 72% 18%, rgba(242, 140, 40, 0.34), transparent 26%),
    linear-gradient(145deg, rgba(45, 127, 195, 0.64), transparent 62%);
}

.business-panel:nth-child(2)::before {
  background:
    radial-gradient(circle at 70% 18%, rgba(184, 137, 34, 0.34), transparent 26%),
    linear-gradient(145deg, rgba(15, 139, 141, 0.56), transparent 62%);
}

.business-panel:nth-child(3)::before {
  background:
    radial-gradient(circle at 70% 18%, rgba(242, 140, 40, 0.32), transparent 26%),
    linear-gradient(145deg, rgba(21, 94, 168, 0.56), transparent 62%);
}

.business-panel > * {
  position: relative;
  z-index: 1;
}

.business-panel:hover,
.business-panel:focus-visible,
.business-panel.is-active {
  transform: translateY(-4px);
}

.panel-number {
  color: rgba(255, 255, 255, 0.48);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.business-panel h3 {
  margin: 44px 0 14px;
  font-size: clamp(1.65rem, 2.25vw, 2rem);
  line-height: 1.2;
}

.panel-copy,
.business-panel li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.business-panel ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 20px 0 22px;
}

.panel-entity {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.panel-entity span,
.panel-entity strong {
  display: block;
}

.panel-entity span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.panel-entity strong {
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 8px 14px;
  margin-top: 16px;
  color: #fff;
  font-weight: 800;
  background: rgba(242, 140, 40, 0.92);
  border-radius: 8px;
}

.quality-grid,
.recommendation-grid,
.entity-grid,
.content-lanes {
  display: grid;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.quality-grid {
  grid-template-columns: repeat(4, 1fr);
}

.quality-item,
.recommendation-card,
.entity-card,
.content-lanes article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 48, 74, 0.06);
}

.quality-item {
  padding: 24px;
}

.quality-item span {
  color: var(--orange-500);
  font-weight: 800;
}

.quality-item h3,
.recommendation-card h3,
.entity-card h3,
.content-lanes h3 {
  margin: 10px 0 8px;
  color: var(--blue-900);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.recommendation-card h3.product-title-long {
  font-size: 1.18rem;
  line-height: 1.32;
}

.quality-item p,
.recommendation-card p,
.entity-card p,
.content-lanes p {
  margin: 0;
  color: var(--muted);
}

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

.recommendation-card {
  overflow: hidden;
}

.recommendation-visual {
  height: 180px;
  background-color: var(--blue-900);
}

.recommendation-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-mountain,
.visual-coast,
.visual-city {
  position: relative;
  overflow: hidden;
}

.visual-mountain::before,
.visual-coast::before,
.visual-city::before {
  position: absolute;
  inset: 0;
  content: "";
  background-size: cover;
}

.visual-mountain::before {
  background:
    linear-gradient(145deg, rgba(18, 48, 74, 0.2), rgba(18, 48, 74, 0.88)),
    conic-gradient(from 160deg at 50% 80%, #f8f0dc, #2d7fc3, #12304a, #b88922, #f8f0dc);
}

.visual-coast::before {
  background:
    linear-gradient(145deg, rgba(18, 48, 74, 0.18), rgba(18, 48, 74, 0.86)),
    conic-gradient(from 60deg at 30% 70%, #fff8ef, #0f8b8d, #155ea8, #f28c28, #fff8ef);
}

.visual-city::before {
  background:
    linear-gradient(145deg, rgba(18, 48, 74, 0.24), rgba(18, 48, 74, 0.9)),
    conic-gradient(from 220deg at 50% 60%, #f7fafc, #b88922, #155ea8, #12304a, #f7fafc);
}

.recommendation-body {
  padding: 24px;
}

.recommendation-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 0;
}

.recommendation-card dt {
  color: var(--muted);
  font-size: 0.86rem;
}

.recommendation-card dd {
  margin: 0;
  color: var(--blue-900);
  font-weight: 800;
}

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

.entity-card {
  overflow: hidden;
}

.license-frame {
  display: grid;
  place-items: center;
  width: 100%;
  height: 224px;
  padding: 10px;
  margin: 0;
  background: linear-gradient(180deg, #eef4f8 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.license-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.entity-card div {
  padding: 24px;
}

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

.content-lanes article {
  padding: 28px;
}

.contact-section {
  background: var(--blue-900);
  scroll-margin-top: 144px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  width: min(1120px, 100%);
  padding: 44px;
  margin: 0 auto;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(45, 127, 195, 0.2), rgba(242, 140, 40, 0.12)),
    #12304a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-panel h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.2;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.contact-grid a {
  min-height: 120px;
  padding: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-grid span,
.contact-grid strong {
  display: block;
}

.contact-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid strong {
  margin-top: 18px;
  font-size: 1.18rem;
}

.contact-qr {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.contact-qr img {
  width: 82px;
  height: 82px;
  padding: 6px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 40px;
  color: rgba(255, 255, 255, 0.78);
  background: #0b2237;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
}

.detail-hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  color: #fff;
  background: var(--blue-900);
}

.detail-hero .hero-content {
  padding-top: 118px;
  animation: heroEnter 780ms ease both;
}

.detail-hero .hero-content[data-reveal] {
  opacity: 1;
  transform: none;
}

.detail-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.detail-hero .hero-subtitle {
  max-width: 860px;
  font-size: clamp(1.12rem, 2vw, 1.65rem);
}

.hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-top: 34px;
}

.hero-labels span,
.anchor-rail a {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.anchor-rail {
  position: sticky;
  top: 72px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  overflow-x: auto;
  background: rgba(18, 48, 74, 0.95);
  scrollbar-width: none;
}

.anchor-rail::-webkit-scrollbar {
  display: none;
}

.anchor-rail a {
  flex: 0 0 auto;
  min-height: 36px;
  color: #fff;
  font-size: 0.92rem;
}

.detail-section {
  padding: 92px 40px;
  scroll-margin-top: 144px;
}

.detail-section.alt {
  background: var(--mist);
}

.detail-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.detail-lead {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.detail-lead h2,
.cinema-block h2,
.section-title {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.flow-title {
  font-size: 3.7rem;
  white-space: nowrap;
}

.detail-lead p,
.cinema-block p,
.feature-tile p,
.flow-step p,
.proof-panel p,
.audience-item p,
.qr-stage p {
  color: var(--muted);
}

.number-stack {
  display: grid;
  gap: 14px;
}

.number-stack div {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.number-stack strong {
  display: block;
  color: var(--orange-500);
  font-size: 1.8rem;
  line-height: 1;
}

.number-stack span {
  display: block;
  margin-top: 6px;
  color: var(--blue-900);
  font-weight: 800;
}

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

.feature-tile,
.flow-step,
.proof-panel,
.audience-item,
.qr-stage {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 48, 74, 0.07);
}

.feature-tile {
  min-height: 230px;
  padding: 26px;
}

.feature-tile span,
.flow-step span,
.audience-item span {
  color: var(--orange-500);
  font-weight: 900;
}

.feature-tile h3,
.flow-step h3,
.proof-panel h3,
.audience-item h3,
.qr-stage h3 {
  margin: 16px 0 8px;
  color: var(--blue-900);
  font-size: 1.35rem;
  line-height: 1.25;
}

.cinema-block {
  position: relative;
  overflow: hidden;
  padding: 58px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(45, 127, 195, 0.28), rgba(242, 140, 40, 0.16)),
    var(--blue-900);
  border-radius: 8px;
}

.cinema-block h2,
.cinema-block p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.cinema-block p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.cinema-block::after {
  position: absolute;
  right: -8%;
  bottom: -34%;
  width: 58%;
  height: 76%;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 55%),
    conic-gradient(from 220deg, rgba(242, 140, 40, 0.34), rgba(45, 127, 195, 0.34), rgba(15, 139, 141, 0.22), rgba(242, 140, 40, 0.34));
  transform: skewX(-18deg);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.flow-step {
  padding: 22px;
}

.proof-split,
.qr-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.proof-split {
  align-items: start;
}

.proof-panel {
  padding: 30px;
}

.entity-section {
  padding-top: 58px;
  padding-bottom: 58px;
  background: #fff;
}

.entity-showcase {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(18, 48, 74, 0.08);
}

.entity-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 28px 18px;
  color: var(--blue-900);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border-bottom: 1px solid var(--line);
}

.entity-showcase-head .section-title {
  max-width: 760px;
  color: var(--blue-900);
  font-size: 2.15rem;
}

.entity-showcase-head p:not(.section-kicker) {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.entity-showcase-head > span {
  padding: 8px 12px;
  color: #af6719;
  font-size: 0.92rem;
  font-weight: 800;
  background: var(--warm);
  border: 1px solid #f0c990;
  border-radius: 8px;
}

.entity-showcase-body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  background: #fff;
}

.entity-info-panel {
  position: static;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: none;
}

.entity-info-panel h3 {
  margin: 10px 0 10px;
  color: var(--blue-900);
  font-size: 1.75rem;
  line-height: 1.2;
}

.entity-summary {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.entity-summary div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.entity-summary dt,
.entity-summary dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.entity-summary dt {
  color: var(--muted);
  font-weight: 700;
}

.entity-summary dd {
  color: var(--blue-900);
  font-weight: 800;
}

.entity-name {
  white-space: nowrap;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  height: 100%;
}

.proof-image {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  padding: 12px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

figure.proof-image {
  justify-self: stretch;
  margin-block: 0;
  margin-inline: 0;
}

.proof-image img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 6px;
}

.proof-gallery .proof-image {
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  justify-items: stretch;
  align-self: stretch;
  min-height: 0;
}

.proof-zoom {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 6px;
  cursor: zoom-in;
  background: #f7fafc;
  border: 1px solid rgba(216, 226, 236, 0.8);
  border-radius: 6px;
}

.proof-gallery .proof-image img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}

.proof-gallery .qr-proof-image {
  align-items: center;
  justify-items: center;
}

.qr-proof-image .proof-zoom {
  width: min(170px, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 10px;
  background: #fff;
}

.proof-gallery .qr-proof-image img {
  max-height: none;
}

.proof-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.proof-image figcaption strong {
  color: var(--blue-900);
}

.proof-image figcaption span {
  color: var(--orange-500);
  white-space: nowrap;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.audience-item {
  padding: 24px;
}

.qr-stage {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 34px;
  text-align: center;
}

.qr-stage img {
  width: min(260px, 72vw);
  height: auto;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.news-main {
  background:
    linear-gradient(180deg, #f7fafc 0%, #ffffff 42%, #f7fafc 100%);
}

.news-page {
  padding: 72px 40px 96px;
}

.news-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.news-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.news-heading h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.news-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-card {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 48, 74, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: rgba(242, 140, 40, 0.62);
  box-shadow: 0 18px 48px rgba(18, 48, 74, 0.12);
  transform: translateY(-3px);
}

.news-card:focus-visible {
  outline: 3px solid rgba(242, 140, 40, 0.22);
  outline-offset: 3px;
}

.news-card-inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 154px;
  padding: 24px 28px;
}

.news-card-meta {
  display: grid;
  gap: 8px;
  align-content: start;
}

.news-card-meta span {
  color: var(--orange-500);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card-meta time {
  color: var(--blue-900);
  font-weight: 800;
}

.news-card-body {
  min-width: 0;
}

.news-card-body strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.32rem;
  line-height: 1.28;
}

.news-card-body span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.news-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--blue-900);
  font-weight: 800;
  white-space: nowrap;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.news-card:hover .news-card-action,
.news-card:focus-visible .news-card-action {
  color: #fff;
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.article-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: 86vh;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(11, 34, 55, 0.28);
}

.article-dialog::backdrop {
  background: rgba(18, 48, 74, 0.58);
  backdrop-filter: blur(4px);
}

.article-modal {
  display: flex;
  flex-direction: column;
  max-height: 86vh;
  background: #fff;
}

.article-modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 26px 32px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border-bottom: 1px solid var(--line);
}

.article-dialog-meta {
  margin: 0 0 8px;
  color: var(--orange-500);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-dialog-title {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.article-dialog-close {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--blue-900);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-dialog-close:hover,
.article-dialog-close:focus-visible {
  color: #fff;
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.article-dialog-body {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  padding: 28px 32px 34px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.article-dialog-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

.article-dialog-body h3 {
  margin: 24px 0 8px;
  color: var(--blue-900);
  font-size: 1.2rem;
}

.article-dialog-body ul {
  padding-left: 20px;
  margin: 8px 0 0;
  color: var(--muted);
}

.article-dialog-body li {
  margin: 4px 0;
}

.article-figure {
  margin: 18px 0;
}

.article-figure:first-child {
  margin-top: 0;
}

.article-figure a {
  display: block;
}

.article-figure img {
  width: 100%;
  height: auto;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(18, 48, 74, 0.1);
}

.article-figure-cover {
  margin-top: 18px;
}

.article-figure-cover a {
  display: flex;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(18, 48, 74, 0.1);
}

.article-figure-cover img {
  width: auto;
  max-width: 100%;
  max-height: 420px;
  border: 0;
  box-shadow: none;
}

.article-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 20px;
}

.article-fact-grid div {
  padding: 12px 14px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-fact-grid span,
.article-fact-grid strong {
  display: block;
}

.article-fact-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.article-fact-grid strong {
  margin-top: 2px;
  color: var(--blue-900);
  font-size: 1.05rem;
}

.article-gallery {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.feature-grid [data-reveal]:nth-child(2),
.audience-grid [data-reveal]:nth-child(2),
.flow-grid [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.feature-grid [data-reveal]:nth-child(3),
.audience-grid [data-reveal]:nth-child(3),
.flow-grid [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}

.feature-grid [data-reveal]:nth-child(4),
.flow-grid [data-reveal]:nth-child(4) {
  transition-delay: 240ms;
}

.flow-grid [data-reveal]:nth-child(5) {
  transition-delay: 320ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px 20px;
  }

  .site-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    padding: 84px 0 86px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .hero-proof {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .section {
    padding: 64px 20px;
  }

  .business-stage,
  .business-stage:has(.business-panel:nth-child(2).is-active),
  .business-stage:has(.business-panel:nth-child(3).is-active) {
    grid-template-columns: 1fr;
  }

  .business-panel {
    min-height: 440px;
  }

  .panel-link {
    width: 100%;
    justify-content: center;
  }

  .quality-grid,
  .recommendation-grid,
  .entity-grid,
  .content-lanes,
  .contact-panel,
  .detail-lead,
  .entity-showcase-head,
  .entity-showcase-body,
  .feature-grid,
  .flow-grid,
  .proof-split,
  .audience-grid,
  .qr-split {
    grid-template-columns: 1fr;
  }

  .anchor-rail {
    top: 132px;
    justify-content: flex-start;
  }

  .detail-section {
    padding: 64px 20px;
    scroll-margin-top: 180px;
  }

  .news-page {
    padding: 64px 20px 78px;
  }

  .news-card-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px;
  }

  .news-card-action {
    width: fit-content;
  }

  .flow-title {
    font-size: 2.45rem;
    white-space: normal;
  }

  .entity-showcase-head {
    align-items: start;
    padding: 34px 28px;
  }

  .entity-showcase-head .section-title {
    font-size: 2.45rem;
  }

  .entity-showcase-body {
    padding: 18px;
  }

  .entity-info-panel {
    position: static;
  }

  .cinema-block {
    padding: 36px 28px;
  }

  .flow-grid {
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding: 10px 16px;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .nav-action {
    display: none;
  }

  .site-nav {
    gap: 16px;
    white-space: nowrap;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 34px;
  }

  .hero-content {
    padding: 56px 0 22px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

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

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

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
    width: min(100% - 32px, 720px);
    max-width: none;
    margin: 0 auto;
  }

  .hero-proof span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .business-panel {
    padding: 24px;
  }

  .business-panel h3 {
    margin-top: 40px;
    font-size: 1.7rem;
  }

  .contact-panel {
    padding: 28px;
  }

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

  .contact-qr img {
    width: 96px;
    height: 96px;
  }

  .site-footer {
    display: block;
    padding: 28px 20px;
  }

  .detail-hero .hero-content {
    padding-top: 82px;
  }

  .news-heading h1 {
    font-size: 2.35rem;
  }

  .article-modal-head {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .article-dialog-close {
    width: fit-content;
  }

  .article-dialog-body {
    padding: 22px;
  }

  .article-fact-grid {
    grid-template-columns: 1fr;
  }

  .article-figure-cover img {
    max-height: 340px;
  }

  .anchor-rail {
    top: 132px;
  }

  .detail-lead,
  .proof-split,
  .qr-split {
    gap: 24px;
  }

  .entity-showcase-head {
    padding: 28px 22px;
  }

  .entity-showcase-head .section-title {
    font-size: 2rem;
  }

  .entity-showcase-head > span {
    width: fit-content;
  }

  .entity-showcase-body {
    padding: 12px;
  }

  .entity-info-panel {
    padding: 22px;
  }

  .entity-info-panel h3 {
    font-size: 1.45rem;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .entity-summary div {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px;
  }

  .entity-summary dt,
  .entity-summary dd {
    font-size: 0.9rem;
  }

  .entity-name {
    white-space: nowrap;
  }

  .feature-tile,
  .flow-step,
  .proof-panel,
  .audience-item,
  .qr-stage {
    padding: 22px;
  }

  .proof-image {
    min-height: 260px;
    padding: 12px;
  }

  .proof-zoom {
    padding: 6px;
  }

  .proof-image figcaption {
    display: block;
  }

  .proof-image figcaption span {
    display: block;
    margin-top: 2px;
  }
}
