:root {
  --paper: #ffffff;
  --ink: #151619;
  --muted: #5e6468;
  --line: #d9dedc;
  --faint: #f4f6f5;
  --teal: #005b5e;
  --teal-dark: #003d40;
  --vermillion: #cf2b1e;
  --stone: #e9ebe8;
  --shadow: 0 22px 70px rgba(21, 22, 25, 0.12);
  --header-height: 82px;
  --content: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

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

body.nav-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.svg-defs {
  display: none;
}

.icon {
  width: 1.08em;
  height: 1.08em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 30px rgba(21, 22, 25, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  font-size: clamp(1.56rem, 2.2vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 54px);
  color: var(--ink);
  font-size: 0.98rem;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--vermillion);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle .close-icon {
  display: none;
}

.site-header.is-open .menu-toggle .menu-icon {
  display: none;
}

.site-header.is-open .menu-toggle .close-icon {
  display: block;
}

.page-grid {
  width: var(--content);
  margin-inline: auto;
}

.hero {
  padding-block: 42px 42px;
}

.hero-grid {
  min-height: calc(76svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(430px, 0.72fr) minmax(460px, 1fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero h1,
.thesis h2,
.section-heading h2,
.practice-title h2,
.market-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(3.7rem, 5.3vw, 5.9rem);
}

.hero-copy p {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 0 24px;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 520;
  cursor: pointer;
  transition:
    transform 170ms ease,
    background-color 170ms ease,
    border-color 170ms ease,
    color 170ms ease,
    box-shadow 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(0, 91, 94, 0.16);
}

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

.button-secondary:hover {
  border-color: var(--vermillion);
  color: var(--vermillion);
}

.hero-media {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: var(--faint);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9.8;
  object-fit: cover;
}

.thesis {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 82% 30%, rgba(0, 91, 94, 0.05), transparent 42%),
    var(--faint);
}

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.56fr);
  gap: clamp(42px, 8vw, 116px);
  align-items: end;
  padding-block: 52px;
}

.thesis h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
}

.thesis h2::after,
.contact-copy h2::after,
.practice-title h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin-top: 28px;
  background: var(--vermillion);
}

.thesis p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section {
  position: relative;
  padding-block: 94px;
}

.section-shell,
.practice-layout,
.market-shell,
.contact-grid,
.footer-grid {
  width: var(--content);
  margin-inline: auto;
}

.approach {
  overflow: hidden;
}

.approach::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto auto;
  width: min(48vw, 680px);
  height: 420px;
  opacity: 0.42;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 70% 18%, transparent 0 22px, rgba(0, 91, 94, 0.12) 23px 24px),
    repeating-radial-gradient(ellipse at 36% 52%, transparent 0 25px, rgba(0, 91, 94, 0.09) 26px 27px);
  mask-image: linear-gradient(120deg, transparent, #000 24%, #000 78%, transparent);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.section-heading span,
.practice-title span,
.market-intro span,
.platform-title span,
.use-heading span,
.contact-copy span {
  display: block;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.compact-heading h2 {
  max-width: 780px;
  font-size: clamp(2.9rem, 5.2vw, 5rem);
}

.products {
  border-bottom: 1px solid var(--line);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-list article {
  min-height: 330px;
  padding: 34px 34px 32px;
  border-left: 1px solid var(--line);
}

.product-list article:first-child {
  border-left: 0;
  padding-left: 0;
}

.product-icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 6px;
  background: var(--teal-dark);
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(0, 61, 64, 0.14);
}

.product-list h3 {
  margin: 28px 0 0;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
}

.product-list p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.product-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--vermillion);
  font-size: 0.94rem;
  font-weight: 650;
}

.product-list a .icon {
  transition: transform 170ms ease;
}

.product-list a:hover .icon {
  transform: translateX(4px);
}

.platform {
  background: var(--paper);
}

.platform-layout {
  width: var(--content);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 106px);
  align-items: start;
  margin-inline: auto;
}

.platform-title {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.platform-title h2,
.use-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  font-size: clamp(2.75rem, 5.2vw, 4.9rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.platform-title h2::after,
.use-heading h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin-top: 28px;
  background: var(--vermillion);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.capability-list article {
  min-height: 230px;
  padding: 30px 28px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-list article:nth-child(2n) {
  border-right: 0;
}

.capability-list .icon {
  width: 32px;
  height: 32px;
  color: var(--teal);
}

.capability-list h3 {
  margin: 24px 0 0;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.capability-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 78px;
}

.process-list article {
  position: relative;
  padding-top: 36px;
  border-top: 1px solid var(--teal-dark);
}

.process-list article::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid var(--teal-dark);
  border-radius: 50%;
  background: var(--paper);
}

.process-list span,
.market-list span {
  color: var(--vermillion);
  font-size: 1rem;
  font-weight: 650;
}

.process-list h3,
.market-list h3,
.practice-list span {
  margin: 24px 0 0;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.08;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.process-list h3::after,
.market-list h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 26px;
  background: currentColor;
}

.process-list p,
.market-list p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.practice {
  border-top: 1px solid var(--line);
  padding-top: 88px;
}

.practice-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.92fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
}

.practice-title {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.practice-title h2 {
  font-size: clamp(3.3rem, 6vw, 5.6rem);
}

.practice-list {
  border-left: 1px solid var(--teal-dark);
  padding-left: clamp(34px, 5vw, 66px);
}

.practice-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.practice-list a:first-child {
  border-top: 1px solid var(--line);
}

.practice-list a .icon {
  width: 34px;
  height: 34px;
  color: var(--vermillion);
  transition: transform 170ms ease;
}

.practice-list a:hover .icon {
  transform: translateX(5px);
}

.markets {
  position: relative;
  overflow: hidden;
  padding-block: 92px 86px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px),
    var(--teal-dark);
  background-size: 68px 68px;
  color: var(--paper);
}

.markets::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 70% 24%, transparent 0 26px, rgba(255, 255, 255, 0.13) 27px 28px),
    repeating-radial-gradient(ellipse at 24% 78%, transparent 0 24px, rgba(255, 255, 255, 0.08) 25px 26px);
  mask-image: linear-gradient(90deg, transparent, #000 36%, #000 100%);
}

.market-map {
  position: absolute;
  top: 58px;
  right: max(24px, calc((100vw - 1180px) / 2));
  width: min(42vw, 560px);
  height: 240px;
  opacity: 0.5;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 44%, var(--vermillion) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 52%, var(--vermillion) 0 5px, transparent 6px),
    radial-gradient(circle at 86% 34%, var(--vermillion) 0 4px, transparent 5px),
    radial-gradient(circle at 34% 70%, rgba(255, 255, 255, 0.7) 0 1.5px, transparent 2px),
    radial-gradient(circle at 52% 32%, rgba(255, 255, 255, 0.7) 0 1.5px, transparent 2px);
  background-size: auto, auto, auto, 15px 15px, 13px 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.market-shell {
  position: relative;
  z-index: 1;
}

.market-intro {
  max-width: 650px;
}

.market-intro span {
  color: #ff6a5c;
}

.market-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.market-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 78px;
}

.market-list article {
  min-height: 240px;
  padding: 0 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
}

.market-list article:first-child {
  padding-left: 0;
  border-left: 0;
}

.market-list span,
.market-list h3::after {
  color: #ff6a5c;
}

.market-list h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
}

.market-list p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  padding-block: 82px 220px;
  background: var(--paper);
}

.use-cases {
  border-block: 1px solid var(--line);
  padding-block: 84px;
  background:
    radial-gradient(ellipse at 82% 22%, rgba(0, 91, 94, 0.06), transparent 40%),
    var(--faint);
}

.use-shell {
  width: var(--content);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.82fr);
  gap: clamp(54px, 8vw, 102px);
  align-items: start;
  margin-inline: auto;
}

.use-list {
  border-top: 1px solid var(--line);
}

.use-list a {
  display: grid;
  grid-template-columns: 38px 1fr 32px;
  gap: 20px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.use-list a > .icon:first-child {
  width: 30px;
  height: 30px;
  color: var(--teal);
}

.use-list span {
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
}

.use-list .arrow {
  color: var(--vermillion);
  transition: transform 170ms ease;
}

.use-list a:hover .arrow {
  transform: translateX(5px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(380px, 0.84fr);
  gap: clamp(58px, 9vw, 116px);
  align-items: start;
}

.contact-copy span {
  color: var(--vermillion);
}

.contact-copy h2 {
  max-width: 520px;
  font-size: clamp(3rem, 5.4vw, 5.1rem);
}

.contact-copy p {
  max-width: 440px;
  margin-top: 26px;
}

.contact-points {
  display: grid;
  gap: 0;
  width: min(420px, 100%);
  margin-top: 46px;
  font-style: normal;
}

.contact-points a,
.contact-points span {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}

.contact-points .icon {
  width: 28px;
  height: 28px;
  color: var(--vermillion);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label span {
  font-size: 0.96rem;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #8b908e;
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 91, 94, 0.13);
}

.button-submit {
  width: 100%;
  min-height: 62px;
  border-color: var(--vermillion);
  background: var(--vermillion);
  color: var(--paper);
  margin-top: 4px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.site-footer {
  border-top: 0;
  padding-block: 78px;
  background: var(--teal-dark);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) 1fr auto;
  gap: 38px;
  align-items: end;
}

.footer-brand {
  min-height: 40px;
}

.legal-name {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
}

.footer-description {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 42px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 680;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  white-space: nowrap;
}

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

@media (max-width: 1060px) {
  .hero-grid,
  .thesis-grid,
  .practice-layout,
  .contact-grid,
  .platform-layout,
  .use-shell {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: 760px;
  }

  .practice-title {
    position: static;
  }

  .platform-title {
    position: static;
  }

  .practice-list {
    border-left: 0;
    padding-left: 0;
  }

  .process-list,
  .market-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 52px;
  }

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

  .market-list article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
    --content: min(100% - 32px, 1180px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-name {
    font-size: 1.42rem;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 54px;
    padding-inline: 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero {
    padding-block: 34px 34px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.35rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .thesis-grid {
    padding-block: 42px;
  }

  .section,
  .markets,
  .use-cases,
  .contact-section {
    padding-block: 64px;
  }

  .section-heading span,
  .practice-title span,
  .market-intro span,
  .platform-title span,
  .use-heading span,
  .contact-copy span {
    margin-bottom: 20px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .section-heading h2,
  .practice-title h2,
  .market-intro h2,
  .platform-title h2,
  .use-heading h2,
  .contact-copy h2,
  .thesis h2 {
    line-height: 1.04;
  }

  .process-list,
  .market-list,
  .product-list,
  .capability-list {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .product-list article,
  .product-list article:first-child {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-list article:first-child {
    border-top: 0;
  }

  .capability-list article,
  .capability-list article:nth-child(2n) {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
  }

  .process-list article,
  .market-list article,
  .market-list article:nth-child(odd) {
    padding: 28px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
  }

  .process-list article {
    border-top-color: var(--teal-dark);
  }

  .practice-list a {
    min-height: 78px;
  }

  .practice-list span {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .market-map {
    display: none;
  }

  .contact-points {
    margin-top: 34px;
  }

  .footer-grid {
    gap: 26px;
  }

  .site-footer nav {
    gap: 14px 24px;
    font-size: 0.78rem;
  }

  .copyright {
    white-space: normal;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .thesis h2,
  .section-heading h2,
  .practice-title h2,
  .market-intro h2,
  .platform-title h2,
  .use-heading h2,
  .contact-copy h2 {
    font-size: 2.55rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    min-height: 52px;
    padding-inline: 18px;
  }

  .legal-name {
    letter-spacing: 0;
  }
}
