:root {
  color-scheme: light;
  --ink: #101214;
  --muted: #666f76;
  --paper: #ffffff;
  --surface: #f4f7f6;
  --cream: #fff7d7;
  --line: #dbe3df;
  --yellow: #ffd63d;
  --teal: #14a899;
  --green: #126b57;
  --coral: #f16f5f;
  --dark: #0d1718;
  --radius: 8px;
  --max: 1180px;
  --header-height: 74px;
  --shadow: 0 18px 50px rgba(16, 18, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: var(--header-height);
  padding: 0 clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(219, 227, 223, 0.86);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(16, 18, 20, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.brand-symbol {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(20, 168, 153, 0.38);
  border-radius: 10px;
  background:
    linear-gradient(145deg, #0f1c1d 0%, #142729 56%, #0b1112 100%);
  color: #ffffff;
  font-size: 1.72rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 14px 30px rgba(20, 168, 153, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-symbol::before {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 214, 61, 0.96);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.brand-symbol::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 168, 153, 0.16);
}

.brand strong {
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 0.05rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(1rem, 3vw, 2.4rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 620;
}

.nav a {
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: var(--cream);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-check {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 1200;
  flex: 0 0 42px;
  width: 42px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 1px 0;
  border-radius: 999px;
  background: var(--ink);
}

.menu-close {
  display: none;
  position: relative;
  z-index: 1200;
  flex: 0 0 42px;
  width: 42px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
  padding: 0;
}

.menu-close span {
  position: absolute;
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: block;
  visibility: hidden;
  pointer-events: none;
  border: 0;
  background: rgba(16, 18, 20, 0.42);
  cursor: pointer;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.menu-check:checked ~ .menu-overlay {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.header-cta,
.mode-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
}

.header-cta,
.button.primary {
  background: var(--yellow);
  color: var(--ink);
}

.mode-link {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero,
.intro,
.flow,
.research-network,
.method-section,
.report-section,
.demo-section,
.faq-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 660px;
  margin: 0;
  padding: calc(var(--header-height) + clamp(3rem, 8vh, 6rem)) clamp(1.1rem, 4vw, 3rem) clamp(3rem, 8vh, 6rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 38%, rgba(20, 168, 153, 0.18), transparent 28rem),
    linear-gradient(135deg, #071012 0%, #101719 48%, #171817 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 0.98), rgba(7, 16, 18, 0.88) 42%, rgba(7, 16, 18, 0.32) 74%),
    linear-gradient(0deg, rgba(7, 16, 18, 0.7), transparent 52%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  top: 53%;
  right: clamp(1rem, 4vw, 4.5rem);
  left: auto;
  z-index: 0;
  width: min(52vw, 860px);
  height: min(58vh, 540px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #101719;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  transform: translateY(-44%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
  color: #ffffff;
}

.eyebrow,
.section-label {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.3rem;
  font-size: clamp(2.1rem, 4.1vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 3.3vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  line-height: 1.22;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 680px;
  margin-top: 1.75rem;
}

.hero-proof span {
  padding: 0.58rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
}

.intro,
.flow,
.research-network,
.method-section,
.report-section,
.demo-section,
.faq-section {
  padding-top: clamp(4.8rem, 10vw, 8.5rem);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(310px, 0.44fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.intro-copy {
  max-width: 700px;
}

.intro-copy p:not(.section-label),
.flow-head p:last-child,
.network-copy p,
.method-head p,
.report-copy p,
.demo-copy p,
.faq-item p,
.method-grid p,
.flow-list p,
.network-list,
.report-content p,
.report-content li,
.demo-result p,
.footer-brand p,
.footer-bottom {
  color: var(--muted);
}

.intro-copy p:not(.section-label) {
  max-width: 650px;
  margin-bottom: 1.1rem;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.hero-product,
.report-preview,
.demo-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-product {
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.product-top,
.score-card,
.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-top span,
.score-card span,
.signal-list span,
.report-header span,
.report-content span,
.demo-result span,
.evidence-box > span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-top strong,
.report-header strong {
  padding: 0.42rem 0.62rem;
  border-radius: var(--radius);
  background: var(--cream);
  color: #8b6900;
  font-size: 0.84rem;
}

.score-card {
  margin: 1rem 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.score-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(3.2rem, 7vw, 4.8rem);
  line-height: 1;
}

.score-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
}

.score-ring svg {
  width: 100%;
  height: 100%;
}

.score-ring circle {
  fill: none;
  stroke-width: 10;
  stroke: rgba(16, 18, 20, 0.1);
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
}

.score-ring circle:last-child {
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-dasharray: 302;
  stroke-dashoffset: 115;
  transition: stroke 180ms ease, stroke-dashoffset 180ms ease;
}

.score-ring img {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(16, 25, 26, 0.16);
}

.signal-list {
  display: grid;
  gap: 0.75rem;
}

.signal-list div {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.signal-list strong {
  display: block;
  margin-top: 0.25rem;
}

.flow-head,
.method-head,
.demo-copy,
.faq-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.flow-head p:last-child,
.method-head p,
.demo-copy p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.flow-list,
.method-grid,
.faq-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

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

.flow-list article,
.method-grid article,
.faq-item {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.flow-list span,
.method-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 42px;
  min-height: 34px;
  margin-bottom: 1.5rem;
  padding: 0 0.7rem;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--green);
  font-weight: 820;
}

.flow-list p,
.method-grid p,
.faq-item p {
  margin-bottom: 0;
}

.research-network {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(280px, 0.64fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.network-visual {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.network-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  object-position: center;
}

.network-copy {
  display: grid;
  gap: 1.1rem;
}

.network-copy h2,
.network-copy p {
  margin-bottom: 0;
}

.network-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.network-list li {
  position: relative;
  padding-left: 1.7rem;
}

.network-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px var(--cream);
}

.active-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  color: var(--muted);
}

.active-signals span {
  width: 100%;
  color: var(--ink);
  font-weight: 820;
}

.active-signals strong {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--green);
  font-size: 0.9rem;
}

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

.method-grid article {
  min-height: 210px;
}

.method-grid span {
  background: var(--surface);
  color: var(--green);
}

.report-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-items: start;
}

.report-copy {
  max-width: 760px;
}

.report-copy p:not(.section-label) {
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.report-preview {
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.report-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.report-header h3 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.report-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.report-content article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.report-content article:first-child {
  background: var(--cream);
}

.report-content ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
}

.demo-section {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--surface);
}

.demo-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 720;
}

input[type="text"],
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 0 0.85rem;
  outline: none;
}

input:focus,
select:focus {
  border-color: rgba(20, 168, 153, 0.76);
  box-shadow: 0 0 0 3px rgba(20, 168, 153, 0.13);
}

input[type="range"],
input[type="checkbox"] {
  accent-color: var(--teal);
}

.slider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.evidence-box {
  display: grid;
  gap: 0.8rem;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.evidence-grid label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.84rem;
}

.demo-result {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--dark);
  color: #ffffff;
}

.demo-result strong {
  color: var(--yellow);
  font-size: clamp(3.5rem, 8vw, 4.8rem);
  line-height: 1;
}

.demo-result p,
.demo-result span {
  color: rgba(255, 255, 255, 0.74);
}

.demo-result p {
  margin-bottom: 0.2rem;
}

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

.faq-item {
  min-height: 170px;
}

.faq-item h3 {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}

.faq-item h3 span {
  color: var(--green);
}

.site-footer {
  width: 100%;
  margin-top: clamp(4rem, 9vw, 7rem);
  padding: clamp(2rem, 5vw, 3rem) 0 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

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

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(170px, 0.28fr) minmax(210px, 0.32fr);
  gap: clamp(1.5rem, 6vw, 4.5rem);
  align-items: start;
}

.footer-brand {
  max-width: 540px;
}

.footer-brand h2 {
  max-width: 470px;
  margin: 1.3rem 0 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.footer-brand p {
  margin: 0.85rem 0 0;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-nav span,
.footer-contact span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-nav a,
.footer-contact a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 620;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--green);
}

.footer-bottom {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 1rem;
  margin-top: clamp(1.8rem, 5vw, 3.2rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 18, 20, 0.12);
  font-size: 0.88rem;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1100;
    display: none;
    align-content: start;
    width: 80vw;
    max-width: 380px;
    min-height: 100vh;
    padding: calc(var(--header-height) + 1.2rem) 1rem 1.5rem;
    border: 1px solid var(--line);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: -22px 0 42px rgba(16, 18, 20, 0.22);
    justify-content: stretch;
    gap: 0;
  }

  .menu-check:checked ~ .nav {
    display: grid;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 1rem 0.25rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 780;
    text-align: left;
  }

  .nav a:hover,
  .nav a:focus,
  .nav a:focus-visible,
  .nav a:active {
    background: transparent;
    color: var(--ink);
    outline: none;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: grid;
  }

  .menu-check:checked ~ .header-actions .menu-toggle {
    display: none;
  }

  .menu-check:checked ~ .header-actions .menu-close {
    display: grid;
  }

  .hero {
    min-height: 620px;
  }

  .intro,
  .research-network,
  .report-section,
  .demo-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .report-copy {
    position: static;
  }

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

  .report-content {
    grid-template-columns: 1fr;
  }

  .report-content article:first-child {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    margin-top: 4rem;
  }
    #hero-title {
        margin-bottom: 4.3rem;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 0.85rem;
  }

  .header-cta {
    display: none;
  }

  .mode-link {
    min-height: 40px;
    padding-inline: 0.8rem;
  }

  .hero,
  .intro,
  .flow,
  .research-network,
  .method-section,
  .report-section,
  .demo-section,
  .faq-section,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    width: 100%;
    min-height: 620px;
  }

  .hero-image {
    right: 1rem;
    bottom: 1rem;
    top: auto;
    width: min(86vw, 520px);
    height: 240px;
    opacity: 0.54;
    transform: none;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof {
    display: none;
  }

  .flow-list,
  .method-grid,
  .faq-grid,
  .slider-grid,
  .evidence-grid,
  .score-card {
    grid-template-columns: 1fr;
  }

  .flow-list article,
  .method-grid article,
  .faq-item {
    min-height: auto;
  }

  .network-visual,
  .network-visual img {
    min-height: 300px;
  }

  .footer-main,
  .footer-bottom {
    text-align: center;
  }

  .footer-brand,
  .footer-brand h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    gap: 0.35rem;
    color: var(--ink);
    line-height: 1.35;
    text-align: center;
  }

  .footer-bottom span:first-child {
    font-weight: 760;
  }

  .footer-bottom span:last-child {
    max-width: 260px;
    color: var(--muted);
    font-size: 0.84rem;
  }
}
