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

:root {
  --color-navy: #173d8f;
  --color-navy-deep: #0e2555;
  --color-ink: #1f2b4d;
  --color-text: #4e5c79;
  --color-muted: #7e8aa5;
  --color-surface: #ffffff;
  --color-surface-soft: #eef4fb;
  --color-accent-mint: #64d4a3;
  --color-accent-gold: #f6c933;
  --shadow-soft: 0 26px 70px rgba(15, 43, 89, 0.09);
  --shadow-card: 0 16px 42px rgba(18, 51, 104, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container-width: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 100%;
  overflow-x: hidden;
  color: var(--color-text);
  font-family: "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background:
    radial-gradient(circle at 50% 10%, rgba(23, 61, 143, 0.06), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, #ffffff, #f7faff 45%, #ffffff);
}

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

a:hover,
a:focus {
  color: var(--color-navy-deep);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-ink);
  font-weight: 700;
}

p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

:focus {
  outline: none !important;
}

.container {
  max-width: var(--container-width);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-mint));
}

.section {
  position: relative;
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-heading-centered {
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.highlight-copy h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.18;
}

.section-heading p:last-child,
.highlight-copy p,
.hero-summary {
  color: var(--color-text);
  font-size: 1.04rem;
}

.btn-primary-main,
.btn-secondary-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-primary-main {
  color: #fff;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-deep));
  box-shadow: 0 12px 28px rgba(23, 61, 143, 0.18);
}

.btn-primary-main:hover,
.btn-primary-main:focus {
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary-main {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 61, 143, 0.18);
}

.btn-secondary-main:hover,
.btn-secondary-main:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23, 61, 143, 0.08);
}

.site-header {
  position: relative;
  overflow: hidden;
}

.site-navbar {
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 61, 143, 0.04);
  backdrop-filter: blur(12px);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.site-navbar.site-navbar-scrolled {
  padding: 14px 0;
  box-shadow: 0 12px 28px rgba(15, 42, 90, 0.08);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.site-brand img {
  width: 50px;
  height: 50px;
}

.site-brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.08;
}

.site-brand-text strong {
  font-size: 1rem;
  color: var(--color-ink);
}

.site-brand-text small {
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

.navbar-light .navbar-nav .nav-link,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  min-height: 44px;
  font-size: 0.98rem;
  font-weight: 600;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link,
.nav-dropdown.show > a {
  color: var(--color-navy);
}

.nav-item-cta {
  margin-left: 10px;
}

.nav-link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px !important;
  border-radius: 999px;
  color: #fff !important;
  background: var(--color-navy);
}

.nav-link-cta:hover {
  background: var(--color-navy-deep);
}

.navbar-nav .dropdown-menu {
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(23, 61, 143, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.dropdown-item {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--color-ink);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--color-surface-soft);
  color: var(--color-navy);
}

.interactive-menu-button {
  position: relative;
}

.interactive-menu-button a {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

.interactive-menu-button a span,
.interactive-menu-button a span::before,
.interactive-menu-button a span::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.3s ease;
}

.interactive-menu-button a span {
  top: 8px;
  text-indent: -9999px;
}

.interactive-menu-button a span::before,
.interactive-menu-button a span::after {
  content: "";
}

.interactive-menu-button a span::before {
  top: -7px;
}

.interactive-menu-button a span::after {
  top: 7px;
}

.interactive-menu-button a.active span {
  background: transparent;
}

.interactive-menu-button a.active span::before {
  transform: translateY(7px) rotate(45deg);
}

.interactive-menu-button a.active span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  padding: 150px 0 54px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 32%, rgba(23, 61, 143, 0.12), rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, rgba(23, 61, 143, 0.05), rgba(255, 255, 255, 0) 42%);
}

.hero-ornament {
  position: absolute;
  border: 1px solid rgba(23, 61, 143, 0.09);
  border-radius: 32px;
  pointer-events: none;
}

.hero-ornament-left {
  top: 110px;
  left: -44px;
  width: 280px;
  height: 300px;
  transform: rotate(14deg);
}

.hero-ornament-right {
  top: 90px;
  right: -70px;
  width: 420px;
  height: 360px;
  transform: rotate(-18deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: none;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5.1rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-summary {
  max-width: none;
  margin-top: 22px;
}

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

.section-capabilities {
  padding-top: 24px;
}

.capability-grid,
.process-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

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

.capability-card,
.process-card,
.cta-card {
  position: relative;
  border: 1px solid rgba(23, 61, 143, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.capability-card,
.process-card {
  padding: 26px 22px;
}

.capability-card::before,
.process-card::before,
.cta-card::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-top: 1px solid rgba(23, 61, 143, 0.1);
  border-right: 1px solid rgba(23, 61, 143, 0.1);
  border-top-right-radius: 14px;
}

.capability-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
}

.capability-icon-wrap img {
  width: 76px;
  height: 76px;
}

.capability-card h3,
.process-card h3,
.cta-card h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
}

.capability-card p {
  min-height: 126px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.capability-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-weight: 700;
}

.capability-card a::after {
  content: "→";
  margin-left: 8px;
}

.section-trust {
  padding-top: 44px;
  padding-bottom: 40px;
}

.trust-heading {
  margin-bottom: 20px;
}

.trust-logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 18px 16px 14px;
  border: 1px solid rgba(23, 61, 143, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(18, 51, 104, 0.05);
  text-align: center;
  color: #8a96ae;
}

.trust-logo-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 92px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #ffffff, #f4f7fc),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(23, 61, 143, 0.08),
    0 6px 16px rgba(23, 61, 143, 0.04);
}

.trust-logo-media img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.trust-logo strong {
  color: #7d879b;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-top: 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(23, 61, 143, 0.08);
  color: var(--color-navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.solution-copy h3 {
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
  line-height: 1.16;
}

.solution-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.solution-copy p {
  max-width: 520px;
  font-size: 1rem;
}

.solution-points {
  margin: 24px 0 30px;
}

.solution-copy .btn-primary-main {
  margin-top: auto;
}

.solution-mobile-action {
  display: none;
}

.highlight-points li {
  position: relative;
  padding-left: 18px;
}

.highlight-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-mint));
}

.section-solutions {
  background: linear-gradient(180deg, rgba(227, 236, 249, 0.9), rgba(255, 255, 255, 0));
}

.solution-showcase {
  display: grid;
  gap: 28px;
}

.highlight-shell,
.solution-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: center;
  padding: 36px 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.solution-shell-reverse .solution-copy {
  order: 2;
}

.solution-shell-reverse .solution-visual {
  order: 1;
}

.highlight-copy p {
  margin-top: 18px;
}

.highlight-points {
  display: grid;
  gap: 12px;
}

.highlight-frame {
  position: relative;
}

.highlight-screen {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(160deg, #173d8f, #12306e 58%, #0e2555);
  box-shadow: 0 24px 50px rgba(14, 37, 85, 0.28);
}

.highlight-screen-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}

.highlight-screen-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.highlight-screen-header strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight-screen-body {
  display: grid;
  gap: 14px;
}

.solution-screen-body {
  display: grid;
  gap: 16px;
}

.solution-screen-hero {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 160px;
  padding: 24px 26px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(100, 212, 163, 0.18), rgba(100, 212, 163, 0.04)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-screen-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 104px;
  width: 104px;
  height: 104px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.solution-screen-icon img {
  width: 100px;
  height: 100px;
}

.solution-screen-copy small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-screen-copy strong {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.5;
}

.solution-stat-row,
.solution-stat-row:last-child {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-chart-lg,
.screen-chart,
.screen-stat {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-chart-lg {
  min-height: 160px;
  background:
    linear-gradient(180deg, rgba(100, 212, 163, 0.18), rgba(100, 212, 163, 0.02)),
    rgba(255, 255, 255, 0.08);
}

.screen-chart-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.screen-chart {
  min-height: 86px;
}

.screen-chart-row:last-child {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-stat {
  min-height: 88px;
  padding: 16px;
  color: #fff;
}

.screen-stat small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-stat strong {
  color: #fff;
  font-size: 1.04rem;
}

.highlight-caption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 352px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.highlight-caption-external {
  display: flex;
  width: 100%;
  max-width: none;
  margin: 18px 0 0 auto;
}

.highlight-caption img {
  flex: 0 0 56px;
  width: 54px;
  height: 54px;
}

.highlight-caption strong,
.footer-brand strong {
  display: block;
}

.highlight-caption span,
.footer-brand span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.highlight-caption strong {
  margin-bottom: 4px;
  font-size: 0.98rem;
  line-height: 1.45;
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.process-card {
  min-height: 180px;
  text-align: center;
  padding: 18px 16px 18px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(18, 51, 104, 0.06);
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -11px;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(23, 61, 143, 0.18), rgba(23, 61, 143, 0.5));
}

.process-card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 52px;
  right: -11px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(23, 61, 143, 0.5);
  border-right: 2px solid rgba(23, 61, 143, 0.5);
  transform: rotate(45deg);
}

.process-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.process-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eef5ff, #e5eefb);
  box-shadow:
    inset 0 0 0 1px rgba(23, 61, 143, 0.08),
    0 8px 20px rgba(23, 61, 143, 0.05);
}

.process-icon-wrap img {
  width: 38px;
  height: 38px;
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(23, 61, 143, 0.12);
  background: linear-gradient(180deg, #f4f8ff, #eef4fb);
  color: var(--color-navy);
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 0.88rem;
}

.process-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.process-card p {
  max-width: 136px;
  margin: 0 auto;
  color: #64718d;
  font-size: 0.88rem;
  line-height: 1.55;
}

.section-cta {
  padding-top: 28px;
  padding-bottom: 70px;
}

.cta-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background:
    linear-gradient(135deg, rgba(246, 201, 51, 0.96) 0 4%, transparent 4% 100%),
    linear-gradient(325deg, rgba(246, 201, 51, 0.96) 0 4%, transparent 4% 100%),
    linear-gradient(135deg, var(--color-navy), var(--color-navy-deep));
}

.cta-card {
  padding: 42px 40px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.cta-card::before {
  display: none;
}

.cta-card h3,
.cta-card p,
.cta-card .eyebrow {
  color: #fff;
}

.cta-card .eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}

.cta-card p:not(.eyebrow) {
  margin: 16px 0 24px;
}

.cta-card-secondary {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.section-contact-anchor {
  height: 1px;
  padding: 0;
}

.site-footer {
  padding: 42px 0 22px;
  color: #dce6ff;
  background: linear-gradient(160deg, var(--color-navy-deep), #081936);
}

.footer-grid {
  grid-template-columns: 1.25fr 0.95fr 1.05fr 1.45fr;
  align-items: start;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
}

.footer-brand strong,
.footer-column h4,
.footer-bottom span,
.footer-tools a {
  color: #fff;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-column a,
.footer-column span {
  color: rgba(220, 230, 255, 0.8);
}

.footer-column-contact span:last-child {
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(220, 230, 255, 0.12);
}

.footer-tools {
  display: flex;
  gap: 18px;
}

.footer-tools a {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1199px) {
  .capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .site-navbar {
    padding: 14px 0;
  }

  .site-brand img {
    width: 44px;
    height: 44px;
  }

  .site-brand-text strong {
    font-size: 0.92rem;
  }

  .site-brand-text small {
    font-size: 0.66rem;
  }

  .navbar-collapse {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(23, 61, 143, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .nav-item,
  .nav-item-cta {
    width: 100%;
    margin: 0;
  }

  .nav-link-cta {
    margin-top: 10px;
  }

  .hero-section {
    padding-top: 142px;
  }

  .highlight-shell,
  .solution-shell {
    grid-template-columns: 1fr;
  }

  .solution-shell-reverse .solution-copy,
  .solution-shell-reverse .solution-visual {
    order: initial;
  }

  .solution-copy-action {
    display: none;
  }

  .solution-mobile-action {
    display: block;
    margin-top: 8px;
  }

  .cta-shell {
    grid-template-columns: 1fr;
  }

  .cta-card-secondary {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: none;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .capability-grid,
  .trust-logo-row,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .process-head {
    margin-bottom: 12px;
  }

  .process-icon-wrap {
    width: 70px;
    height: 70px;
  }

  .screen-chart-row,
  .screen-chart-row:last-child {
    grid-template-columns: 1fr;
  }

  .highlight-shell,
  .solution-shell {
    padding: 28px;
  }

  .highlight-caption-external {
    margin-top: 16px;
  }

  .cta-card {
    padding: 34px 28px;
  }

  .process-card:not(:last-child)::after,
  .process-card:not(:last-child)::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .btn-primary-main,
  .btn-secondary-main {
    width: 100%;
  }

  .site-brand {
    gap: 10px;
  }

  .site-brand-text strong {
    font-size: 0.84rem;
  }

  .site-brand-text small {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
}
