:root {
  --paper: #f4f0e7;
  --paper-deep: #e9e1d4;
  --ink: #102a33;
  --ink-soft: #36515a;
  --red: #b9402d;
  --red-dark: #8d2d20;
  --line: rgba(16, 42, 51, 0.18);
  --white: #fffdf7;
  --shadow: 0 30px 80px rgba(16, 42, 51, 0.12);
  --display: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --body: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(185, 64, 45, 0.055), transparent 24rem),
    linear-gradient(rgba(16, 42, 51, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 100% 34px, auto;
  font-family: var(--body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 231, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--content));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1.15;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  inset: 9px;
  border: 1px solid var(--red);
  transform: rotate(45deg);
}

.brand-mark::after {
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
}

.brand-cn {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-en {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.23em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  padding: 11px 15px;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.site-nav a::after {
  position: absolute;
  right: 15px;
  bottom: 4px;
  left: 15px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  top: -18%;
  right: -10%;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(185, 64, 45, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  padding-block: 88px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1,
.page-hero h1,
.statement h2,
.not-found h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 7.2vw, 104px);
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-summary {
  max-width: 670px;
  margin: 31px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 2;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 16px;
}

.button:hover {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.hero-art {
  position: relative;
  min-height: 510px;
}

.frame-outer,
.frame-inner,
.frame-red {
  position: absolute;
}

.frame-outer {
  inset: 20px 4px 38px 28px;
  border: 1px solid var(--ink);
}

.frame-inner {
  inset: 0 42px 68px 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.frame-inner::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(118deg, transparent 37%, rgba(255, 253, 247, 0.12) 37.2%, transparent 38%),
    radial-gradient(circle at 66% 42%, rgba(185, 64, 45, 0.8), transparent 5%, rgba(185, 64, 45, 0.18) 23%, transparent 46%);
}

.frame-inner::after {
  position: absolute;
  top: 14%;
  right: 13%;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 247, 0.5);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 28px rgba(255, 253, 247, 0.035), 0 0 0 72px rgba(255, 253, 247, 0.025);
}

.frame-red {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 34%;
  background: var(--red);
}

.hero-glyph {
  position: absolute;
  bottom: 58px;
  left: 34px;
  z-index: 2;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(118px, 15vw, 216px);
  line-height: 0.8;
}

.hero-art-meta {
  position: absolute;
  top: 42px;
  left: 22px;
  z-index: 3;
  color: var(--paper);
  font-size: 10px;
  line-height: 2;
  letter-spacing: 0.26em;
  writing-mode: vertical-rl;
}

.frame-caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section {
  padding-block: clamp(78px, 10vw, 132px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 58px;
}

.section-index {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 31px 27px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-card:hover {
  z-index: 1;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-8px);
}

.card-no {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.service-card h3 {
  margin: auto 0 13px;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: 0.02em;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-card:hover p {
  color: rgba(244, 240, 231, 0.72);
}

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

.process-step {
  position: relative;
  padding-top: 27px;
  border-top: 2px solid var(--ink);
}

.process-step::after {
  position: absolute;
  top: -7px;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: var(--red);
}

.process-step strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 22px;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.statement {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.statement::after {
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(244, 240, 231, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(244, 240, 231, 0.025), 0 0 0 110px rgba(244, 240, 231, 0.02);
}

.statement-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 70px;
  padding-block: clamp(90px, 12vw, 155px);
}

.statement-label {
  color: #d76d59;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.statement h2 {
  max-width: 820px;
  font-size: clamp(40px, 6vw, 78px);
}

.statement p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(244, 240, 231, 0.68);
  font-size: 16px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 12vw, 150px) clamp(72px, 10vw, 120px);
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  position: absolute;
  top: 0;
  right: 8%;
  bottom: 0;
  width: 1px;
  content: "";
  background: var(--line);
}

.page-hero::after {
  position: absolute;
  top: 48px;
  right: 4%;
  width: 19vw;
  height: 19vw;
  min-width: 190px;
  min-height: 190px;
  border: 1px solid rgba(185, 64, 45, 0.28);
  border-radius: 50%;
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 48px;
  align-items: end;
}

.page-code {
  align-self: start;
  padding-top: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(54px, 8vw, 110px);
}

.page-lead {
  max-width: 700px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 2;
}

.feature-stack {
  border-top: 1px solid var(--ink);
}

.feature-row {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 54px;
  padding-block: 54px;
  border-bottom: 1px solid var(--line);
}

.feature-title {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}

.feature-title span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.feature-title h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
}

.feature-copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.capability-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.34);
}

.capability-card:nth-child(2) {
  color: var(--paper);
  background: var(--ink);
}

.capability-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 154px;
  height: 154px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.18;
}

.capability-card .card-no {
  display: block;
  margin-bottom: 98px;
}

.capability-card h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.25;
}

.capability-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.capability-card:nth-child(2) p {
  color: rgba(244, 240, 231, 0.7);
}

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.principles h2 {
  position: sticky;
  top: 40px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.18;
}

.principle-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: principle;
}

.principle-list li {
  position: relative;
  padding: 30px 0 30px 58px;
  border-bottom: 1px solid var(--line);
  counter-increment: principle;
}

.principle-list li::before {
  position: absolute;
  top: 34px;
  left: 0;
  color: var(--red);
  content: "0" counter(principle);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.principle-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 23px;
}

.principle-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(48px, 9vw, 120px);
}

.about-mark {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: var(--paper);
  background: var(--red);
}

.about-mark::before {
  position: absolute;
  top: 44px;
  left: 44px;
  width: calc(100% - 88px);
  height: calc(100% - 88px);
  border: 1px solid rgba(244, 240, 231, 0.45);
  content: "";
}

.about-mark strong {
  position: absolute;
  right: -18px;
  bottom: -40px;
  font-family: var(--display);
  font-size: 260px;
  font-weight: 400;
  line-height: 1;
}

.about-mark span {
  position: absolute;
  top: 63px;
  left: 63px;
  font-size: 10px;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
}

.about-copy h2 {
  margin: 0 0 27px;
  font-family: var(--display);
  font-size: clamp(35px, 4.8vw, 62px);
  line-height: 1.25;
}

.about-copy p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

.facts {
  margin: 62px 0 0;
  border-top: 1px solid var(--ink);
}

.fact-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding-block: 23px;
  border-bottom: 1px solid var(--line);
}

.fact-row dt {
  color: var(--ink-soft);
  font-size: 13px;
}

.fact-row dd {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 74px;
}

.legal-aside {
  position: sticky;
  top: 38px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
}

.legal-aside strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 22px;
}

.legal-aside p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.legal-copy section {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 30px;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
}

.legal-copy ul {
  padding-left: 20px;
}

.not-found {
  min-height: calc(100vh - 250px);
  display: grid;
  place-items: center;
  padding-block: 80px;
  text-align: center;
}

.not-found-code {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(100px, 20vw, 260px);
  line-height: 0.8;
  opacity: 0.16;
}

.not-found h1 {
  margin-top: -26px;
  font-size: clamp(38px, 6vw, 70px);
}

.not-found p {
  margin: 20px auto 30px;
  color: var(--ink-soft);
}

.site-footer {
  color: rgba(244, 240, 231, 0.78);
  background: #0b2027;
}

.footer-main {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding-block: 54px 44px;
}

.footer-brand {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.05em;
}

.footer-note {
  margin: 7px 0 0;
  color: rgba(244, 240, 231, 0.48);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 12px;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-legal {
  padding-block: 19px 24px;
  border-top: 1px solid rgba(244, 240, 231, 0.12);
  text-align: center;
}

.footer-legal p {
  margin: 0 0 5px;
  color: rgba(244, 240, 231, 0.42);
  font-size: 11px;
}

.icp-link {
  display: inline-block;
  padding: 4px 8px;
  color: rgba(244, 240, 231, 0.74);
  font-size: 12px;
  text-decoration: underline;
  text-decoration-color: rgba(244, 240, 231, 0.24);
  text-underline-offset: 4px;
}

.icp-link:hover,
.icp-link:focus-visible {
  color: var(--white);
  text-decoration-color: var(--red);
}

.reveal {
  opacity: 1;
  transform: none;
}

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

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    transform: translateY(-14px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

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

  .site-nav a::after {
    display: none;
  }

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

  .hero-art {
    width: min(100%, 610px);
    margin-inline: auto;
  }

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

  .process-grid,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-card:last-child {
    grid-column: span 2;
  }

  .page-hero-content,
  .statement-inner {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .about-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-shell {
    min-height: 76px;
  }

  .site-nav {
    top: 76px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-cn {
    font-size: 17px;
  }

  .brand-en {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 68px 76px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 74px);
  }

  .hero-summary,
  .page-lead {
    font-size: 15px;
  }

  .hero-art {
    min-height: 390px;
  }

  .frame-inner {
    inset: 0 30px 55px 0;
  }

  .frame-outer {
    inset: 14px 0 28px 20px;
  }

  .hero-glyph {
    bottom: 45px;
    left: 24px;
    font-size: 150px;
  }

  .frame-red {
    width: 48%;
  }

  .section-heading,
  .principles {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-grid,
  .process-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 230px;
  }

  .capability-card,
  .capability-card:last-child {
    min-height: 330px;
    grid-column: auto;
  }

  .statement h2 {
    font-size: 40px;
  }

  .page-hero-content {
    gap: 22px;
  }

  .page-hero h1 {
    font-size: clamp(50px, 17vw, 76px);
  }

  .page-hero::after {
    opacity: 0.55;
  }

  .feature-row {
    gap: 27px;
    padding-block: 40px;
  }

  .feature-title {
    grid-template-columns: 42px 1fr;
  }

  .principles h2 {
    position: static;
  }

  .about-mark {
    min-height: 360px;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
