:root {
  --brand-blue: #1e88e5;
  --brand-blue-deep: #1565c0;
  --brand-cyan: #dff4ff;
  --page-bg: #f5f7fa;
  --surface: #ffffff;
  --surface-muted: #eef3f8;
  --surface-dark: #1c2530;
  --text-strong: #333333;
  --text-body: #666666;
  --text-light: #8b98a9;
  --line: rgba(30, 48, 74, 0.12);
  --shadow-soft: 0 18px 40px rgba(18, 37, 63, 0.08);
  --shadow-large: 0 32px 70px rgba(18, 37, 63, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-body);
  font-family: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: #f5f7fa;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.shell-inner {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(30, 48, 74, 0.08);
}

.site-header .shell-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

.home-header {
  background: rgba(255, 255, 255, 0.86);
}

.home-header .shell-inner {
  position: relative;
  width: calc(100% - 48px);
  max-width: none;
}

.home-header-inner {
  grid-template-columns: 1fr auto 1fr;
}

.home-header-spacer {
  display: block;
  width: 44px;
  height: 44px;
}

.page-header .shell-inner {
  position: relative;
  width: calc(100% - 48px);
  max-width: none;
  grid-template-columns: 1fr auto 1fr;
}

.page-header-spacer {
  display: block;
  width: 58px;
  height: 44px;
}

.page-brand-lockup {
  justify-self: center;
}

.page-header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 18px;
  min-width: 0;
}

.page-header .site-nav {
  flex: 0 1 auto;
}

.page-header .site-cta {
  justify-self: auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-wordmark {
  width: min(100%, 156px);
  height: auto;
}

.brand-mark {
  width: 58px;
  height: auto;
}

.home-brand-lockup {
  justify-self: center;
}

.home-logo-mark {
  width: 82px;
  height: auto;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-strong);
  white-space: nowrap;
}

.home-header .site-nav {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: min(320px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid rgba(30, 48, 74, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-large);
}

.home-header.nav-open .site-nav {
  display: flex;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.text-link:hover {
  color: var(--brand-blue);
}

.site-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.site-cta,
.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--surface-dark) 0%, #0e1824 100%);
  box-shadow: 0 16px 32px rgba(11, 24, 38, 0.16);
}

.site-cta {
  flex: 0 0 auto;
  justify-self: end;
}

.button-secondary {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(30, 48, 74, 0.14);
}

.full-button {
  width: 100%;
}

.site-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.hero-dot:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(30, 48, 74, 0.14);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

.home-header .menu-toggle {
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: 0;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.home-header .menu-toggle:hover {
  transform: translateY(calc(-50% - 1px));
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text-strong);
}

.home-header .menu-toggle span {
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: #17212d;
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: #dbe8f3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.hero-slide-surface {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100%;
  color: inherit;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 28, 0.72) 0%, rgba(10, 18, 28, 0.3) 44%, rgba(10, 18, 28, 0.12) 100%),
    linear-gradient(180deg, rgba(10, 20, 28, 0.06) 0%, rgba(10, 20, 28, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 76px);
  padding: 148px 0 72px;
  color: #ffffff;
}

.hero-copy-frame {
  display: grid;
  gap: 14px;
  max-width: 600px;
}

.hero-copy-document {
  gap: 12px;
  max-width: none;
}

.hero-slide-minimal .hero-copy-frame,
.hero-slide-compact .hero-copy-frame {
  gap: 10px;
  max-width: 480px;
}

.hero-label,
.section-label,
.mini-tag,
.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-label {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.hero-stage-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-slide-minimal .hero-label,
.hero-slide-compact .hero-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.hero-slide-minimal .hero-stage-note,
.hero-slide-compact .hero-stage-note {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.hero-content h1,
.hero-content h2,
.section-copy h2,
.section-heading h2,
.story-card h3,
.case-copy h3,
.news-copy h3,
.contact-panel strong,
.page-hero-banner h1,
.detail-card h3,
.milestone-card h3,
.page-intro-copy h2,
.placeholder-card h3 {
  margin: 0;
  color: var(--text-strong);
  letter-spacing: -0.05em;
}

.hero-content h1,
.hero-content h2 {
  color: #ffffff;
  font-size: clamp(2.45rem, 4.1vw, 4.25rem);
  line-height: 1.02;
  font-weight: 400;
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  font-weight: 400;
  white-space: nowrap;
}

.hero-description,
.section-copy p,
.section-heading p,
.story-card p,
.case-copy p,
.news-copy p,
.contact-panel span,
.footer-inner p,
.page-hero-banner p,
.detail-card p,
.milestone-card p,
.page-intro-copy p,
.placeholder-card p {
  line-height: 1.8;
}

.hero-description {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

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

.hero-slide-minimal .hero-subtitle,
.hero-slide-compact .hero-subtitle {
  display: none;
}

.hero-slide-minimal .hero-content h2,
.hero-slide-compact .hero-content h2 {
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.04;
}

.hero-slide-minimal .hero-description,
.hero-slide-compact .hero-description {
  max-width: 26rem;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-slide-minimal .hero-actions,
.hero-slide-compact .hero-actions {
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.hero-inline-link {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero-inline-link::after {
  color: rgba(255, 255, 255, 0.7);
}

.hero-copy-document h1,
.hero-copy-document h2 {
  white-space: nowrap;
  letter-spacing: -0.035em;
}

.hero-controls {
  position: absolute;
  inset: auto 0 28px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 56px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #ffffff;
}

.section-block {
  padding: 96px 0;
}

.section-tint {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.section-copy,
.highlight-panel,
.story-card,
.case-card,
.news-card,
.contact-panel,
.detail-card,
.milestone-card,
.placeholder-card,
.page-hero-banner,
.page-intro-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.section-copy,
.highlight-panel,
.contact-panel,
.page-hero-banner,
.page-intro-card {
  padding: 34px;
}

.highlight-panel-visual {
  display: grid;
  gap: 18px;
}

.section-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.section-copy h2,
.section-heading h2,
.page-hero-banner h1,
.page-intro-copy h2 {
  font-size: clamp(1.72rem, 2.8vw, 2.7rem);
  line-height: 1.12;
}

.story-card h3,
.case-copy h3,
.news-copy h3,
.detail-card h3,
.milestone-card h3,
.placeholder-card h3 {
  font-size: 1.32rem;
  line-height: 1.22;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand-blue-deep);
  font-weight: 800;
}

.text-link::after {
  content: "→";
}

.muted-link {
  color: var(--text-body);
}

.light-link {
  color: #ffffff;
}

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

.metric-row div,
.quote-card,
.mini-card,
.milestone-card,
.placeholder-tile {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
}

.metric-row strong {
  display: block;
  color: var(--text-strong);
  font-size: 2rem;
}

.metric-row span,
.quote-card span,
.news-meta,
.contact-panel span,
.page-meta,
.placeholder-tag {
  color: var(--text-light);
}

.quote-card {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.08) 0%, rgba(223, 244, 255, 0.82) 100%);
}

.quote-card p {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.2rem;
  font-weight: 800;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 32px;
}

.story-grid,
.case-grid,
.news-grid,
.card-grid,
.milestone-grid,
.placeholder-grid {
  display: grid;
  gap: 20px;
}

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

.story-card,
.detail-card,
.milestone-card,
.placeholder-card,
.page-intro-card {
  padding: 30px;
}

.story-card {
  overflow: hidden;
  padding: 0;
}

.story-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface-muted);
}

.story-media img,
.page-intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-body {
  padding: 30px;
}

.story-card ul,
.detail-card ul,
.placeholder-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-strong);
  line-height: 1.85;
}

.story-card-dark {
  background: linear-gradient(135deg, #123660 0%, #0e223d 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.story-card-dark .mini-tag,
.story-card-dark p,
.story-card-dark li,
.story-card-dark h3 {
  color: #ffffff;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.construction-note,
.construction-inline,
.placeholder-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(30, 136, 229, 0.1);
  color: var(--brand-blue-deep);
  font-size: 0.85rem;
  font-weight: 800;
}

.construction-note {
  margin-top: 18px;
}

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

.case-card {
  overflow: hidden;
}

.case-card img,
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-copy,
.news-copy {
  padding: 26px;
}

.case-card-plain,
.news-card-plain {
  display: flex;
  align-items: stretch;
}

.section-action {
  margin-top: 22px;
}

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

.news-card {
  overflow: hidden;
}

.news-meta {
  margin: 0 0 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.section-contact {
  background: linear-gradient(180deg, #edf5fb 0%, #f5f7fa 100%);
}

.contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.55;
}

.site-footer {
  padding: 72px 0 60px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, #17212d 0%, #0f171f 100%);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-brand-mark {
  width: 58px;
  height: auto;
}

.footer-inner p {
  margin: 0;
}

.page-hero-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 22px;
  align-items: start;
  margin-top: 48px;
}

.page-hero-banner .button-primary,
.page-hero-banner .button-secondary,
.page-intro-copy .button-primary,
.page-intro-copy .button-secondary {
  margin-top: 14px;
}

.page-kicker {
  margin: 18px 0 0;
  color: var(--brand-blue-deep);
  font-size: 1rem;
  font-weight: 800;
}

.page-meta {
  display: block;
  margin-top: 12px;
  font-size: 0.92rem;
}

.page-main {
  padding-bottom: 36px;
}

.page-about-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  margin-top: 0;
  background-image: var(--page-hero-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.page-about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 31, 0.16) 0%, rgba(15, 23, 31, 0.42) 100%);
}

.page-about-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: calc(100vh - 76px);
  padding-top: 134px;
  padding-bottom: 72px;
}

.page-about-hero-copy {
  display: grid;
  gap: 12px;
  justify-items: end;
  max-width: 520px;
  text-align: right;
  color: #ffffff;
}

.page-about-hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
  white-space: nowrap;
}

.page-about-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.2vw, 1.12rem);
  font-weight: 400;
  white-space: nowrap;
}

.page-about-intro {
  padding: 88px 0 32px;
}

.page-about-copy {
  display: grid;
  gap: 22px;
  max-width: 900px;
}

.page-about-copy p {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(1.12rem, 1.4vw, 1.36rem);
  line-height: 1.95;
}

.page-section {
  padding: 84px 0 0;
}

.page-section:last-child {
  padding-bottom: 32px;
}

.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.page-intro-copy {
  padding: 34px;
}

.page-intro-card {
  display: grid;
  gap: 16px;
}

.page-intro-card-visual {
  overflow: hidden;
  padding: 0;
  gap: 0;
}

.page-intro-image {
  aspect-ratio: 16 / 11;
}

.page-intro-stack {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.page-intro-card strong {
  display: block;
  color: var(--text-strong);
  font-size: 1.32rem;
}

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

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

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

.placeholder-tile {
  min-height: 190px;
}

.placeholder-tag {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

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

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

@media (max-width: 1120px) {
  .contact-banner,
  .page-hero-banner,
  .page-intro-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .news-grid,
  .card-grid,
  .placeholder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-grid,
  .milestone-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .home-header .site-nav {
    width: min(320px, calc(100vw - 48px));
  }

  .page-header .site-nav {
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .shell-inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header .shell-inner {
    grid-template-columns: auto auto;
    min-height: 76px;
  }

  .page-header .shell-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-large);
  }

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

  .page-header-actions {
    gap: 0;
  }

  .page-header .site-nav {
    left: auto;
    right: 0;
    width: min(320px, calc(100vw - 28px));
  }

  .site-cta {
    display: none;
  }

  .hero-slider {
    min-height: 680px;
  }

  .hero-content {
    min-height: 680px;
    padding: 138px 0 78px;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: none;
    font-size: clamp(1.88rem, 7vw, 3.2rem);
  }

  .story-grid,
  .case-grid,
  .news-grid,
  .card-grid,
  .milestone-grid,
  .placeholder-grid {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 72px 0;
  }

  .page-about-hero,
  .page-about-hero-inner {
    min-height: 620px;
  }

  .page-about-hero-inner {
    justify-content: flex-start;
    align-items: flex-end;
    padding-top: 120px;
  }

  .page-about-hero-copy {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .brand-wordmark {
    width: 132px;
  }

  .brand-mark {
    width: 48px;
  }

  .home-logo-mark {
    width: 64px;
  }

  .hero-content {
    padding-top: 136px;
  }

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

  .button-primary,
  .button-secondary,
  .site-cta {
    width: 100%;
  }

  .section-copy,
  .highlight-panel,
  .case-copy,
  .news-copy,
  .contact-panel,
  .page-hero-banner,
  .detail-card,
  .milestone-card,
  .placeholder-card,
  .page-intro-copy,
  .page-intro-card {
    padding: 24px;
  }

  .hero-controls {
    bottom: 22px;
  }

  .story-body,
  .page-intro-stack {
    padding: 24px;
  }

  .page-about-copy p {
    font-size: 1rem;
    line-height: 1.9;
  }

  .page-about-hero-copy h1,
  .page-about-hero-copy p,
  .hero-copy-document h1,
  .hero-copy-document h2,
  .hero-copy-document .hero-subtitle {
    white-space: normal;
  }
}
