:root {
  --bg-primary: #f5f2ec;
  --bg-secondary: #faf8f4;
  --bg-white: #fffdf9;
  --text-primary: #111111;
  --text-secondary: #4b4945;
  --text-muted: #77736c;
  --brand-red: #b40d12;
  --brand-red-dark: #8f080c;
  --brand-red-light: #d8a4a2;
  --line-primary: #d8d2c8;
  --line-secondary: #c5b79f;
  --gold-muted: #b99a6d;
  --shadow-soft: 0 16px 50px rgba(52, 41, 29, 0.07);
  --navy: #111111;
  --navy-2: #1e1d1b;
  --navy-3: #34312d;
  --blue: #b40d12;
  --blue-2: #8f080c;
  --gold: #b99a6d;
  --gold-soft: #c5b79f;
  --ink: #111111;
  --muted: #77736c;
  --line: #d8d2c8;
  --line-dark: rgba(91, 82, 68, 0.24);
  --surface: #fffdf9;
  --paper: #f5f2ec;
  --paper-2: #eee9e0;
  --radius: 4px;
  --shadow: 0 16px 50px rgba(52, 41, 29, 0.07);
  --shadow-soft: 0 8px 24px rgba(52, 41, 29, 0.05);
  --container: 1480px;
  --font: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
}

body[data-page] {
  color: var(--text-primary);
  background: var(--bg-primary);
  font-family: var(--font);
  line-height: 1.75;
}

body[data-page] h1,
body[data-page] h2,
body[data-page] h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.container {
  width: min(var(--container), calc(100% - 144px));
}

.site-header {
  background: rgba(250, 248, 244, 0.97);
  border-bottom: 1px solid var(--line-primary);
  backdrop-filter: none;
}

.nav-container {
  width: min(1540px, calc(100% - 96px));
  min-height: 90px;
  gap: 26px;
}

.brand {
  min-width: 190px;
  gap: 0;
}

.brand img {
  width: 138px;
}

.brand-text {
  display: none;
}

.brand-mark,
.footer-logo-wrap .footer-mark {
  color: #ffffff;
  background: var(--brand-red);
  border-radius: 2px;
  box-shadow: none;
}

.nav-links {
  gap: 2px;
}

.nav-links a {
  position: relative;
  padding: 12px 13px;
  border-radius: 0;
  color: #282622;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
}

.nav-links a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 1px;
  content: "";
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease-out;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: transparent;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  gap: 22px;
}

.nav-actions [data-open-contact] {
  min-height: 50px;
  padding: 0 24px;
  color: #ffffff;
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  border-radius: 2px;
  box-shadow: none;
  font-weight: 600;
}

.nav-actions [data-open-submit] {
  order: 2;
  min-height: 50px;
  padding: 0 24px;
  color: #ffffff;
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  border-radius: 2px;
  box-shadow: none;
}

.nav-actions [data-open-contact]:hover,
.nav-actions [data-open-submit]:hover {
  transform: none;
}

.nav-actions [data-open-contact]:hover {
  color: #ffffff;
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}

.nav-actions [data-open-submit]:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}

.btn {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease-out, background 0.3s ease-out, border-color 0.3s ease-out;
}

.btn:hover {
  transform: none;
}

.btn-primary {
  color: #ffffff;
  background: var(--brand-red);
  border-color: var(--brand-red);
  box-shadow: none;
}

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

.btn-ghost,
.btn-light {
  color: var(--text-primary);
  background: var(--bg-white);
  border-color: var(--line-secondary);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-light:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
}

.btn-dark {
  color: #ffffff;
  background: var(--text-primary);
  border-color: var(--text-primary);
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 20px;
  padding: 0 30px 6px 0;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-secondary);
  border-radius: 0;
  font-weight: 600;
}

.text-link::after {
  position: absolute;
  right: 0;
  content: "→";
  color: var(--brand-red);
  transition: right 0.3s ease-out;
}

.text-link:hover {
  color: var(--brand-red);
}

.text-link:hover::after {
  right: -8px;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.hero::before {
  display: none;
}

.hero-inner {
  position: relative;
  display: block;
  min-height: 790px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 43%;
  padding: 88px 0 64px;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 22px;
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(56px, 5vw, 78px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero h1 span {
  color: var(--text-primary);
}

.hero h1::after {
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 28px;
  content: "";
  background: var(--brand-red);
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.9;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 26px;
}

.hero-proof span {
  padding: 0 16px;
  color: var(--text-secondary);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-primary);
  border-radius: 0;
  font-size: 13px;
}

.hero-proof span:first-child {
  padding-left: 0;
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-actions {
  gap: 28px;
  margin-top: 30px;
}

.hero-actions .btn-ghost {
  padding: 0 28px 4px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-secondary);
  border-radius: 0;
}

.hero-entry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line-primary);
}

.hero-entry a {
  min-height: 84px;
  padding: 16px 18px 14px 0;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-primary);
  border-radius: 0;
}

.hero-entry a:last-child {
  border-right: 0;
  padding-left: 18px;
}

.hero-entry a:nth-child(2) {
  padding-left: 18px;
}

.hero-entry strong {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
}

.hero-entry span {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.6;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, var(--bg-secondary) 0%, rgba(250, 248, 244, 0.92) 7%, rgba(250, 248, 244, 0) 27%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 58% center;
  opacity: 1;
  filter: saturate(0.9) contrast(0.96) brightness(1.04);
}

.hero-panel {
  z-index: 2;
  width: 190px;
  min-width: 0;
  padding: 0 0 0 24px;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-panel::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--bg-white);
  border: 2px solid var(--gold-muted);
  border-radius: 50%;
}

.hero-panel small {
  color: var(--gold-muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-panel strong {
  margin-top: 4px;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.hero-panel em {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 11px;
}

.panel-input {
  top: 23%;
  left: 34%;
}

.panel-center {
  top: 46%;
  right: auto;
  left: 39%;
}

.panel-output {
  bottom: 20%;
  left: 44%;
}

.section {
  padding: 118px 0;
}

.section.compact {
  padding: 78px 0;
}

.section.white {
  background: var(--bg-white);
}

.section.tint {
  background: var(--bg-primary);
}

.section.dark {
  color: var(--bg-white);
  background: var(--text-primary);
}

.section-head,
.section-head.center {
  max-width: 900px;
  margin: 0 0 58px;
  text-align: left;
}

.section-head h2,
.page-hero h1,
.final-cta h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.28;
}

.section-head > p:not(.section-kicker),
.page-hero .lead,
.final-cta p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line-primary);
}

.capability-card,
.product-card {
  min-height: 250px;
  padding: 28px 34px 36px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-secondary);
  border-right: 1px solid var(--line-primary);
  border-radius: 0;
  box-shadow: none;
}

.capability-card + .capability-card,
.product-card + .product-card {
  padding-left: 34px;
}

.capability-card:last-child,
.product-card:last-child {
  border-right: 0;
}

.card-index {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 34px;
  color: var(--brand-red);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
}

.capability-card h3,
.product-card h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 25px;
  line-height: 1.4;
}

.capability-card p,
.product-card p {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
}

.asset-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-primary);
  border-radius: 0;
  box-shadow: none;
}

.flow-column {
  padding: 38px 40px 44px;
  border-right: 1px solid var(--line-primary);
}

.flow-column:last-child {
  border-right: 0;
}

.flow-column.center {
  text-align: left;
  background: #f8f5ef;
}

.flow-column.center h3 {
  color: var(--text-primary);
}

.flow-column.center .flow-item {
  color: var(--text-primary);
  background: transparent;
  border-color: rgba(190, 181, 169, 0.72);
}

.flow-column.center .flow-item strong {
  color: var(--brand-red);
}

.flow-column.center .flow-item span {
  color: var(--text-secondary);
}

.flow-column-image {
  display: block;
  width: 100%;
  height: 132px;
  margin: -6px 0 16px;
  object-fit: cover;
  object-position: center 44%;
  border: 1px solid var(--line-primary);
}

.flow-column:first-child .flow-column-image {
  object-position: center 48%;
}

.flow-column:last-child .flow-column-image {
  object-position: center;
}

.flow-column h3 {
  margin: 0 0 28px;
  padding-bottom: 20px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--line-primary);
  font-size: 24px;
}

.flow-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(216, 210, 200, 0.7);
  border-radius: 0;
}

.flow-item:last-child {
  border-bottom: 0;
}

.flow-item strong {
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-weight: 500;
}

.flow-item span {
  color: var(--text-muted);
  font-size: 13px;
}

.cloud-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line-primary);
  counter-reset: product-catalog;
}

.product-card {
  position: relative;
  min-height: 292px;
  counter-increment: product-catalog;
}

.product-card::before {
  display: block;
  margin-bottom: 34px;
  content: "0" counter(product-catalog);
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-size: 17px;
}

.product-card .product-icon {
  position: absolute;
  top: 26px;
  right: 28px;
}

.product-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  filter: grayscale(1) sepia(0.45) saturate(2.4) hue-rotate(326deg) brightness(0.72);
}

.stats-band {
  padding: 64px 0;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border-top: 1px solid var(--line-primary);
  border-bottom: 1px solid var(--line-primary);
}

.stats-band::before {
  display: none;
}

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

.stat-card {
  min-height: 120px;
  padding: 0 34px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-primary);
  border-radius: 0;
}

.stat-card:first-child {
  padding-left: 0;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-value {
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 500;
  line-height: 1.1;
}

.stat-card span:last-child {
  margin-top: 14px;
  color: #4f4a44;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.split-grid {
  gap: 76px;
}

.image-frame,
.story-card,
.research-card {
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.image-frame img,
.story-card > img,
.research-card > img {
  filter: saturate(0.88) contrast(0.96) brightness(1.01);
}

.image-frame {
  border-top: 1px solid var(--line-secondary);
  border-bottom: 1px solid var(--line-secondary);
  padding: 14px 0;
}

.tag-row {
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line-primary);
}

.tag-row span,
.text-badge {
  padding: 12px 18px;
  color: var(--text-secondary);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-primary);
  border-bottom: 1px solid var(--line-primary);
  border-radius: 0;
  font-size: 13px;
}

.story-card,
.research-card {
  border-top: 1px solid var(--line-secondary);
}

.story-content,
.research-content {
  padding: 30px 0 0;
}

.story-card h3,
.research-card h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 28px;
}

.story-card p,
.research-card p {
  color: var(--text-muted);
}

body[data-page="home"] .home-insight-grid {
  align-items: start;
}

body[data-page="home"] .home-insight-grid .story-card > img,
body[data-page="home"] .home-insight-grid .research-card > img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1.55;
  margin: 0 auto;
  object-fit: cover;
  border: 1px solid var(--line-primary);
}

.ecosystem-scene-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-primary);
  border-left: 1px solid var(--line-primary);
}

.ecosystem-scene {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-right: 1px solid var(--line-primary);
  border-bottom: 1px solid var(--line-primary);
}

.ecosystem-scene::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 22, 29, 0.02), rgba(16, 22, 29, 0.52));
}

.ecosystem-scene img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98) brightness(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}

.ecosystem-scene strong {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}

.ecosystem-scene:hover img {
  filter: saturate(1) contrast(1) brightness(1.06);
  transform: scale(1.025);
}

.bank-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-primary);
  border-left: 1px solid var(--line-primary);
}

.bank-name {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 12px 18px;
  color: var(--text-primary);
  border-right: 1px solid var(--line-primary);
  border-bottom: 1px solid var(--line-primary);
  font-family: var(--font-serif);
  font-size: 16px;
  text-align: center;
  transition: background-color .2s ease;
}

.bank-name:hover {
  background: rgba(255, 255, 255, .52);
}

.bank-logo {
  display: block;
  width: min(150px, 78%);
  height: 58px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 58px;
}

.final-cta {
  position: relative;
  padding: 96px 0;
  color: var(--text-primary);
  background: #ebe5dc;
  border-top: 1px solid var(--line-secondary);
}

.final-cta::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--container), calc(100% - 144px));
  height: 3px;
  content: "";
  background: var(--brand-red);
  transform: translateX(-50%);
}

.final-cta .container {
  gap: 56px;
}

.final-cta p {
  color: var(--text-secondary);
}

.page-hero {
  position: relative;
  padding: 118px 0 104px;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--line-primary);
}

.page-hero::before {
  display: none;
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
  align-items: end;
  gap: 110px;
}

.page-hero.media-hero {
  padding: 0;
  overflow: hidden;
}

.page-hero.media-hero .container {
  min-height: 650px;
  grid-template-columns: minmax(0, .96fr) minmax(520px, 1.04fr);
  align-items: stretch;
  gap: 0;
}

.media-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 96px 68px 96px 0;
}

.page-hero.media-hero h1 {
  font-size: clamp(48px, 3.6vw, 56px);
}

.page-hero-media {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
}

.page-hero-media::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 24%;
  content: "";
  background: linear-gradient(90deg, var(--bg-secondary), rgba(250, 248, 244, 0));
  pointer-events: none;
}

body[data-page="product"] .page-hero-media::before,
body[data-page="solutions"] .page-hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(250, 248, 244, .3), rgba(250, 248, 244, .08) 52%, rgba(24, 44, 68, .1));
  pointer-events: none;
}

body[data-page="product"] .page-hero-media::after,
body[data-page="solutions"] .page-hero-media::after {
  z-index: 2;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(.97) brightness(1.02);
}

.ecosystem-tag-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: 100%;
  border-left: 1px solid var(--line-primary);
}

.ecosystem-tag-row span {
  min-width: 0;
  padding: 12px 6px;
  justify-content: center;
  white-space: nowrap;
  font-size: 12px;
  text-align: center;
}

.home-soe-wall {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
}

.home-soe-wall .bank-name {
  min-height: 88px;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  padding: 15px 22px;
  background: #fff;
  border: 1px solid rgba(50, 72, 97, .16);
  box-shadow: 0 8px 22px rgba(25, 47, 73, .035);
  color: #24354a;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.home-soe-wall .bank-name:hover {
  background: #f8fafc;
  border-color: rgba(35, 77, 123, .3);
  transform: translateY(-2px);
}

.home-soe-wall .bank-logo {
  width: 62px;
  height: 56px;
  flex: 0 0 62px;
}

.home-soe-wall .bank-name > span {
  min-width: 0;
  white-space: nowrap;
}

body[data-page="solutions"] .page-hero-media img,
body[data-page="stories"] .page-hero-media img {
  object-position: right center;
}

body[data-page="product"] .page-hero-media img {
  object-position: 68% center;
}

.page-hero h1 {
  max-width: 760px;
  color: var(--text-primary);
  font-size: clamp(58px, 5vw, 78px);
}

.page-hero h1::after {
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 28px;
  content: "";
  background: var(--brand-red);
}

.page-actions {
  margin-top: 32px;
}

.page-hero-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-secondary);
  border-bottom: 1px solid var(--line-secondary);
  border-radius: 0;
  box-shadow: none;
}

.page-hero-card strong,
.page-hero-card span {
  padding: 17px 0;
  border-bottom: 1px solid var(--line-primary);
}

.page-hero-card strong:nth-last-child(-n + 2),
.page-hero-card span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.page-hero-card strong {
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
}

.page-hero-card span {
  color: var(--text-secondary);
  font-size: 13px;
}

body[data-page="research"] .research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 54px;
  counter-reset: report;
}

body[data-page="research"] .research-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 30px;
  padding: 28px 0 0;
  overflow: visible;
  counter-increment: report;
}

body[data-page="research"] .research-card::before {
  position: absolute;
  top: -34px;
  left: 0;
  content: "0" counter(report);
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-size: 16px;
}

body[data-page="research"] .research-card > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border: 1px solid var(--line-primary);
}

body[data-page="research"] .research-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 0 4px;
}

body[data-page="research"] .research-content h3 {
  font-size: 30px;
  line-height: 1.45;
}

body[data-page="research"] .research-content p {
  margin: 22px 0 30px;
  color: var(--text-muted);
  line-height: 1.9;
}

body[data-page="research"] .research-content .text-link {
  margin-top: auto;
}

.badge-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-secondary);
  border-left: 1px solid var(--line-primary);
}

.badge-wall .text-badge {
  min-height: 104px;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  border-right: 1px solid var(--line-primary);
  border-bottom: 1px solid var(--line-primary);
  font-family: var(--font-serif);
  font-size: 18px;
}

.page-hero.deep-hero {
  overflow: hidden;
}

.page-hero.deep-hero::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
  content: "";
  background: var(--hero-image) center / cover no-repeat;
  filter: saturate(0.58) contrast(0.9) brightness(1.1);
  opacity: 0.24;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
  pointer-events: none;
}

.page-hero.deep-hero .container {
  position: relative;
  z-index: 1;
}

.about-copy {
  display: grid;
  gap: 18px;
  color: var(--text-secondary);
  line-height: 1.95;
}

.about-copy p {
  margin: 0;
}

.about-team-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-statement-grid,
.mission-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-primary);
  border-left: 1px solid var(--line-primary);
}

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

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

.about-statement-grid article,
.mission-grid article {
  min-height: 300px;
  padding: 34px 38px 40px;
  border-right: 1px solid var(--line-primary);
  border-bottom: 1px solid var(--line-primary);
}

.about-statement-grid span,
.mission-grid span {
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-size: 13px;
}

.about-statement-grid h3,
.mission-grid h3 {
  margin-top: 34px;
  color: var(--text-primary);
  font-size: 28px;
  line-height: 1.5;
}

.about-statement-grid p,
.mission-grid p {
  margin-top: 20px;
  color: var(--text-muted);
  line-height: 1.9;
}

.about-value-grid .solution-card {
  min-height: 285px;
}

.about-belief-section .split-grid {
  align-items: start;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line-primary);
}

.product-meta span {
  min-height: 0;
  padding: 9px 12px 9px 0;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-primary);
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
}

.product-meta span + span {
  padding-left: 12px;
}

.product-meta span:last-child {
  border-right: 0;
}

.solution-grid,
.resource-grid,
.principle-grid {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--line-primary);
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: solution-catalog;
}

.resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: resource-catalog;
}

.principle-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  counter-reset: principle-catalog;
}

.solution-card,
.resource-card,
.principle-card,
.path-card {
  position: relative;
  min-height: 250px;
  padding: 30px 36px 38px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-secondary);
  border-right: 1px solid var(--line-primary);
  border-radius: 0;
  box-shadow: none;
}

.solution-card {
  counter-increment: solution-catalog;
}

.resource-card {
  min-height: 220px;
  counter-increment: resource-catalog;
}

.principle-card {
  min-height: 220px;
  counter-increment: principle-catalog;
}

.solution-card:nth-child(3n),
.resource-card:nth-child(4n),
.principle-card:nth-child(2n) {
  border-right: 0;
}

.solution-card::before,
.resource-card::before,
.principle-card::before {
  display: block;
  margin-bottom: 34px;
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-size: 16px;
}

.solution-card::before {
  content: "0" counter(solution-catalog);
}

.resource-card::before {
  content: "0" counter(resource-catalog);
}

.principle-card::before {
  content: "0" counter(principle-catalog);
}

.solution-card h3,
.resource-card h3,
.principle-card h3,
.path-card h3 {
  color: var(--text-primary);
  font-size: 25px;
  line-height: 1.48;
}

.solution-card p,
.resource-card p,
.principle-card p,
.path-card p {
  margin-top: 18px;
  color: var(--text-muted);
  line-height: 1.9;
}

.ecosystem-cards {
  margin-top: 72px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line-primary);
}

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

.path-card::before {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 32px;
  content: attr(data-step);
  color: var(--brand-red);
  background: transparent;
  border-radius: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
}

.path-card:nth-child(4n),
.compact-path .path-card:nth-child(2n) {
  border-right: 0;
}

.detail-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line-secondary);
}

.detail-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 0;
  border-bottom: 1px solid var(--line-primary);
}

.detail-list dt {
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-weight: 500;
}

.detail-list dd {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.8;
}

body[data-page="stories"] .story-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: -12px 0 22px;
  border-bottom: 1px solid var(--line-primary);
}

body[data-page="stories"] .story-toolbar button {
  min-height: 48px;
  padding: 0 0 10px;
  color: var(--text-secondary);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-weight: 500;
}

body[data-page="stories"] .story-toolbar button:hover,
body[data-page="stories"] .story-toolbar button.active {
  color: var(--brand-red);
  background: transparent;
  border-bottom-color: var(--brand-red);
}

body[data-page="stories"] .filter-status {
  margin: 0 0 54px;
  color: var(--text-muted);
  font-weight: 500;
}

body[data-page="stories"] .story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  counter-reset: case-catalog;
}

body[data-page="stories"] .story-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  padding: 30px 0 0;
  overflow: visible;
  counter-increment: case-catalog;
}

body[data-page="stories"] .story-card::before {
  position: absolute;
  top: -35px;
  left: 0;
  content: "0" counter(case-catalog);
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-size: 16px;
}

body[data-page="stories"] .story-card:nth-child(even) > img {
  order: 2;
}

body[data-page="stories"] .story-card:nth-child(even) .story-content {
  order: 1;
}

body[data-page="stories"] .story-card > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line-primary);
}

body[data-page="stories"] .story-content {
  align-self: center;
  padding: 10px 0;
}

body[data-page="stories"] .story-content h3 {
  font-size: 36px;
  line-height: 1.5;
}

body[data-page="stories"] .story-content > p {
  margin-top: 24px;
  line-height: 1.9;
}

body[data-page="stories"] .story-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line-secondary);
  border-bottom: 1px solid var(--line-primary);
}

body[data-page="stories"] .story-facts div {
  display: block;
  padding: 18px 18px 18px 0;
  border-top: 0;
  border-right: 1px solid var(--line-primary);
}

body[data-page="stories"] .story-facts div + div {
  padding-left: 18px;
}

body[data-page="stories"] .story-facts div:last-child {
  border-right: 0;
}

body[data-page="stories"] .story-facts dt {
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-weight: 500;
}

body[data-page="stories"] .story-facts dd {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-weight: 400;
}

.site-footer {
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border-top: 1px solid var(--line-primary);
}

.footer-grid {
  border-bottom-color: var(--line-primary);
}

.footer-logo-wrap img {
  width: 176px;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.solution-card .tag-row span {
  min-height: 38px;
  padding: 9px 10px;
  white-space: nowrap;
  font-size: 10.5px;
  line-height: 1.2;
}

.footer-links a,
.legal {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--brand-red);
}

.modal-backdrop {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: none;
}

.modal-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--line-secondary);
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(34, 26, 18, 0.2);
}

.modal-close {
  color: var(--text-primary);
  background: var(--bg-white);
  border-color: var(--line-primary);
  border-radius: 2px;
}

.modal-head h2 {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-weight: 500;
}

.modal-head p:not(.section-kicker) {
  color: var(--text-secondary);
}

.project-form label span {
  color: var(--text-secondary);
}

.project-form input,
.project-form select {
  color: var(--text-primary);
  background: var(--bg-white);
  border-color: var(--line-primary);
  border-radius: 2px;
}

.project-form input:focus,
.project-form select:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(180, 13, 18, 0.1);
}

.contact-qr article,
.success-qr article,
.success-box {
  background: var(--bg-white);
  border-color: var(--line-primary);
  border-radius: 2px;
}

.contact-qr,
.success-qr {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.contact-qr.contact-qr-single {
  grid-template-columns: minmax(0, 300px);
  justify-content: center;
}

.contact-qr article,
.success-qr article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-qr img,
.success-qr img {
  display: block;
  width: min(220px, 100%);
  height: auto;
  aspect-ratio: 1;
  padding: 10px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line-primary);
  border-radius: 0;
}

.mobile-dock {
  background: var(--bg-secondary);
  border-top-color: var(--line-primary);
}

.mobile-dock button:first-child {
  background: var(--brand-red);
}

.mobile-dock button:last-child {
  color: var(--text-primary);
  background: var(--bg-white);
  border-color: var(--line-secondary);
}

.motion-item {
  transform: translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.motion-item.motion-visible,
.motion-reduced .motion-item {
  transform: none;
}

@media (max-width: 1280px) {
  .container {
    width: min(var(--container), calc(100% - 80px));
  }

  .nav-container {
    width: calc(100% - 48px);
    gap: 16px;
  }

  .nav-links a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 13px;
  }

  .nav-actions {
    gap: 14px;
  }

  .nav-actions [data-open-contact] {
    padding: 0 16px;
  }

  .hero-copy {
    width: 54%;
  }

  .hero h1 {
    font-size: 60px;
  }

  .panel-input,
  .panel-center,
  .panel-output {
    left: 48%;
  }

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

  .product-card:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 1120px) {
  .nav-container {
    min-height: 78px;
  }

  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .menu-toggle {
    display: flex;
    border-color: var(--line-secondary);
    border-radius: 2px;
    background: transparent;
  }

  .menu-toggle span {
    background: var(--text-primary);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 14px 40px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--line-primary);
    border-bottom: 1px solid var(--line-primary);
  }

  .menu-open .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line-primary);
  }

  .nav-links a::after {
    right: auto;
    bottom: 8px;
    left: 0;
    width: 36px;
  }

  .nav-actions {
    margin-left: 10px;
  }

  .nav-actions [data-open-contact] {
    display: none;
  }

  .hero {
    min-height: 730px;
  }

  .hero-inner {
    min-height: 730px;
  }

  .hero h1 {
    font-size: 54px;
  }

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

  .hero-panel {
    width: 164px;
  }

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

  .capability-card:nth-child(2) {
    border-right: 0;
  }

  .asset-flow {
    grid-template-columns: 1fr;
  }

  .flow-column {
    border-right: 0;
    border-bottom: 1px solid var(--line-primary);
  }

  .flow-column:last-child {
    border-bottom: 0;
  }

  .page-hero .container {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .page-hero.media-hero .container {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .media-hero-copy {
    padding: 82px 0 52px;
  }

  .page-hero-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .page-hero-media::after {
    inset: 0 0 auto;
    width: 100%;
    height: 18%;
    background: linear-gradient(180deg, var(--bg-secondary), rgba(250, 248, 244, 0));
  }

  body[data-page="research"] .research-grid {
    grid-template-columns: 1fr;
  }

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

  .solution-card:nth-child(3n),
  .resource-card:nth-child(4n) {
    border-right: 1px solid var(--line-primary);
  }

  .solution-card:nth-child(2n),
  .resource-card:nth-child(2n) {
    border-right: 0;
  }

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

  .ecosystem-scene-wall,
  .bank-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container,
  .nav-container {
    width: calc(100% - 32px);
  }

  .site-header {
    position: sticky;
  }

  .brand img {
    width: 122px;
  }

  .nav-actions {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    width: 100%;
    padding: 64px 0 38px;
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(44px, 11vw, 58px);
  }

  .hero-lead {
    max-width: 660px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 32px);
    height: 360px;
    margin-left: -16px;
  }

  .hero-visual::after {
    background: none;
  }

  .hero-visual img {
    object-position: 70% center;
  }

  .hero-panel {
    display: block;
    width: 158px;
    padding: 8px 10px 8px 22px;
    background: rgba(255, 253, 249, 0.9);
    border: 1px solid rgba(197, 183, 159, 0.72);
  }

  .hero-panel strong {
    font-size: 12px;
  }

  .panel-input {
    top: 20%;
    left: 7%;
  }

  .panel-center {
    top: 47%;
    left: 11%;
  }

  .panel-output {
    bottom: 8%;
    left: 15%;
  }

  .hero-entry {
    margin-top: 34px;
  }

  .section {
    padding: 84px 0;
  }

  .section-head,
  .section-head.center {
    margin-bottom: 42px;
  }

  .section-head h2,
  .page-hero h1,
  .final-cta h2 {
    font-size: clamp(36px, 8vw, 48px);
  }

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

  .product-card:nth-child(2),
  .product-card:nth-child(4),
  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-card {
    padding: 26px;
    border-bottom: 1px solid var(--line-primary);
  }

  .stat-card:first-child {
    padding-left: 26px;
  }

  .split-grid {
    gap: 48px;
  }

  .page-hero {
    padding: 82px 0 72px;
  }

  .page-hero.deep-hero::after {
    display: none;
  }

  body[data-page="stories"] .story-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body[data-page="stories"] .story-card:nth-child(even) > img,
  body[data-page="stories"] .story-card:nth-child(even) .story-content {
    order: initial;
  }

  body[data-page="stories"] .story-card > img {
    min-height: 0;
    aspect-ratio: 1.55;
  }

  body[data-page="research"] .research-card {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .final-cta::before {
    width: calc(100% - 32px);
  }
}

@media (max-width: 560px) {
  .nav-container {
    min-height: 70px;
  }

  .menu-open .nav-links {
    grid-template-columns: 1fr;
    padding: 10px 18px 20px;
  }

  .hero-copy {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.25;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-proof span {
    width: 100%;
    padding: 4px 0;
    border-right: 0;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero-actions .btn-ghost {
    width: fit-content;
  }

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

  .hero-entry a,
  .hero-entry a:nth-child(2),
  .hero-entry a:last-child {
    min-height: 0;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-primary);
  }

  .hero-visual {
    height: 280px;
  }

  .capability-grid,
  .cloud-grid,
  .stat-grid,
  .badge-wall,
  .solution-grid,
  .resource-grid,
  .principle-grid,
  .about-statement-grid,
  .mission-grid,
  .path-grid,
  .path-grid.compact-path {
    grid-template-columns: 1fr;
  }

  .about-statement-grid article,
  .mission-grid article {
    min-height: 0;
    padding: 28px 24px 32px;
  }

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

  .ecosystem-tag-row span:last-child {
    grid-column: 1 / -1;
  }

  .ecosystem-scene-wall {
    grid-template-columns: 1fr;
  }

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

  body[data-page="home"] .home-insight-grid .story-card > img,
  body[data-page="home"] .home-insight-grid .research-card > img {
    width: 100%;
  }

  .capability-card,
  .capability-card + .capability-card,
  .product-card,
  .product-card + .product-card {
    min-height: 0;
    padding: 26px 0 32px;
    border-right: 0;
  }

  .solution-card,
  .resource-card,
  .principle-card,
  .path-card,
  .solution-card:nth-child(2n),
  .solution-card:nth-child(3n),
  .resource-card:nth-child(2n),
  .resource-card:nth-child(4n),
  .principle-card:nth-child(2n),
  .path-card:nth-child(4n),
  .compact-path .path-card:nth-child(2n) {
    min-height: 0;
    padding: 26px 0 32px;
    border-right: 0;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body[data-page="stories"] .story-toolbar {
    gap: 18px;
  }

  body[data-page="stories"] .story-content h3 {
    font-size: 30px;
  }

  body[data-page="stories"] .story-facts {
    grid-template-columns: 1fr;
  }

  body[data-page="stories"] .story-facts div,
  body[data-page="stories"] .story-facts div + div {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-primary);
  }

  body[data-page="stories"] .story-facts div:last-child {
    border-bottom: 0;
  }

  .flow-column {
    padding: 28px 22px 32px;
  }

  .flow-item {
    grid-template-columns: 88px 1fr;
  }

  .stat-card {
    border-right: 0;
  }

  .page-hero-card {
    grid-template-columns: 82px 1fr;
  }

  body[data-page="research"] .research-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body[data-page="research"] .research-card > img {
    min-height: 0;
    aspect-ratio: 1.45;
  }

  .badge-wall .text-badge {
    min-height: 72px;
  }

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

  .bank-name {
    min-height: 116px;
    gap: 9px;
    padding: 16px 8px 14px;
    font-size: 15px;
  }

  .bank-logo {
    width: min(126px, 82%);
    height: 48px;
    flex-basis: 48px;
  }

  .home-soe-wall .bank-name {
    min-height: 80px;
    gap: 10px;
    padding: 12px 10px;
    font-size: 14px;
  }

  .home-soe-wall .bank-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .final-cta {
    padding: 72px 0 90px;
  }
}

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