* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --page-bg: #ffffff;
  --text: #2f2925;
  --muted: #7c736c;
  --accent: #161616;
  --accent-dark: #000000;
  --accent-soft: #bb8669;
  --border: rgba(71, 51, 38, 0.1);
  --border-strong: rgba(71, 51, 38, 0.12);
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text);
}

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

.page-shell {
  width: min(1720px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  justify-self: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a,
.language-summary {
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-summary:hover,
.language-summary:focus-visible {
  color: var(--accent-soft);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 26px;
}

.language-menu {
  position: relative;
}

.language-summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(47, 41, 37, 0.48);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}

.language-summary::-webkit-details-marker {
  display: none;
}

.language-summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.language-list {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 10px;
  min-width: 116px;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(68, 47, 32, 0.08);
}

.language-menu:not([open]) .language-list {
  display: none;
}

.language-list button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
  white-space: nowrap;
  text-align: left;
  cursor: pointer;
}

.language-list button.is-active {
  color: var(--accent-soft);
}

.language-list button:hover,
.language-list button:focus-visible {
  color: var(--accent-soft);
}

.start-link,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transition: transform 160ms ease, background-color 160ms ease;
}

.start-link:hover,
.start-link:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 148px 0 62px;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 0.92;
}

.hero-title-main,
.hero-title-accent {
  display: block;
  font-family: "LTC Bodoni 175", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.1vw, 5.6rem);
  letter-spacing: -0.05em;
}

.hero-title-accent {
  color: var(--accent-soft);
  font-style: italic;
  font-weight: 500;
}

.hero-copy {
  width: min(700px, 100%);
  margin: 26px auto 0;
  font-size: clamp(0.98rem, 1.55vw, 1.1rem);
  line-height: 1.66;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button {
  min-width: 0;
  padding-inline: 18px;
}

.preview-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  margin-top: -12px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 252, 252, 0.97));
  box-shadow: 0 18px 46px rgba(71, 51, 38, 0.05);
}

.preview-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(187, 134, 105, 0.18) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.44));
}

.preview-card {
  position: absolute;
  width: min(320px, calc(100% - 48px));
  padding: 22px 22px 24px;
  border: 1px solid rgba(138, 116, 101, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(68, 47, 32, 0.06);
  backdrop-filter: blur(8px);
}

.preview-card-left {
  top: 92px;
  left: 220px;
  transform: rotate(-1.6deg);
}

.preview-card-right {
  top: 104px;
  right: 150px;
  transform: rotate(2.2deg);
}

.preview-card h3 {
  margin: 44px 0 10px;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.preview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.chip {
  position: absolute;
  top: 18px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(138, 116, 101, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  color: #8e6f5b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.chip-size,
.chip-domain {
  left: auto;
  right: 20px;
}

.preview-orbit {
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: 560px;
  height: 560px;
  border: 1px dashed rgba(187, 134, 105, 0.34);
  border-radius: 50%;
  transform: translateX(-50%);
}

.post-hero-scale,
.post-hero-scale-footer {
  zoom: 0.94;
}

.post-hero-scale > section + section {
  margin-top: 64px;
}

.problem-section {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(500px, 1fr);
  width: min(1480px, 100%);
  margin: 0 auto;
  align-items: start;
  gap: 132px;
  padding: 128px 84px 184px;
}

.problem-copy {
  max-width: 660px;
}

.section-label {
  margin: 0 0 26px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  color: var(--accent-soft);
}

.problem-title {
  max-width: 760px;
  margin: 0;
  font-family: "LTC Bodoni 175", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.15vw, 4.15rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.problem-body {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.06vw, 1.06rem);
  line-height: 1.66;
}

.problem-divider {
  width: min(100%, 760px);
  height: 1px;
  margin: 18px 0 14px;
  background: rgba(71, 51, 38, 0.12);
}

.problem-footnote {
  margin: 0;
  font-size: clamp(0.78rem, 0.92vw, 0.92rem);
  line-height: 1.5;
}

.problem-card {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  padding: 40px 36px 34px;
  border: 1px solid rgba(71, 51, 38, 0.11);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(71, 51, 38, 0.04);
}

.asset-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.asset-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(71, 51, 38, 0.12);
  border-radius: 10px;
  background: linear-gradient(180deg, #fffefb, #fff7ea);
}

.asset-icon::before,
.asset-icon::after {
  content: "";
  position: absolute;
  left: 8px;
}

.asset-icon::before {
  top: 11px;
  width: 16px;
  height: 11px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ffd96e, #ffbe3f);
}

.asset-icon::after {
  top: 8px;
  width: 8px;
  height: 5px;
  border-radius: 3px 3px 0 0;
  background: #ffcf5b;
}

.asset-copy h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.asset-copy p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.flow-arrow {
  margin: 18px 0 14px;
  text-align: center;
  color: var(--accent-soft);
  font-size: 1.2rem;
  line-height: 1;
}

.problem-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px dashed rgba(187, 134, 105, 0.72);
  border-radius: 10px;
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.problem-outcome {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
}

.section-label-next {
  width: min(1120px, 100%);
  margin: 0 auto 52px;
  padding: 0 18px;
}

.how-section {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 40px 0 152px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(290px, 360px));
  justify-content: center;
  gap: 0 64px;
}

.how-step {
  min-height: 320px;
  padding: 56px 48px 42px;
  border-left: 1px solid rgba(71, 51, 38, 0.1);
}

.how-step:last-child {
  border-right: 1px solid rgba(71, 51, 38, 0.1);
}

.how-number {
  margin: 0 0 18px;
  font-family: "LTC Bodoni 175", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  line-height: 1;
  color: rgba(187, 134, 105, 0.82);
}

.how-step-title {
  margin: 0 0 16px;
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.how-step-body {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.features-section {
  width: min(1460px, 100%);
  margin: 0 auto;
  padding: 112px 48px 196px;
}

.features-title {
  max-width: 760px;
  margin: 0 0 56px;
  font-family: "LTC Bodoni 175", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.9vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 280px));
  justify-content: center;
  gap: 28px;
}

.feature-card {
  min-height: 296px;
  padding: 40px 32px 34px;
  border-radius: 24px;
  background: #f8f4ed;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-bottom: 20px;
  position: relative;
  color: var(--accent-soft);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.feature-icon-canvas::before {
  inset: 5px;
  border: 1.5px solid rgba(187, 134, 105, 0.9);
  border-radius: 50%;
}

.feature-icon-canvas::after {
  width: 7px;
  height: 1.5px;
  right: 2px;
  bottom: 4px;
  background: rgba(187, 134, 105, 0.9);
  transform: rotate(45deg);
}

html[lang="en"] [data-lang-content]:not([data-lang-content="en"]),
html[lang="zh"] [data-lang-content]:not([data-lang-content="zh"]),
html[lang="ja"] [data-lang-content]:not([data-lang-content="ja"]) {
  display: none !important;
}

.feature-icon-bundles::before {
  inset: 6px 4px 4px 6px;
  border: 1.4px solid rgba(187, 134, 105, 0.9);
  border-radius: 4px;
}

.feature-icon-bundles::after {
  width: 10px;
  height: 7px;
  top: 5px;
  left: 8px;
  border: 1.4px solid rgba(187, 134, 105, 0.9);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: #fff;
}

.feature-icon-export::before {
  width: 10px;
  height: 10px;
  left: 7px;
  top: 5px;
  border-right: 1.6px solid rgba(187, 134, 105, 0.9);
  border-bottom: 1.6px solid rgba(187, 134, 105, 0.9);
  transform: rotate(45deg);
}

.feature-icon-export::after {
  width: 1.6px;
  height: 12px;
  left: 11px;
  top: 4px;
  background: rgba(187, 134, 105, 0.9);
}

.feature-icon-local::before {
  inset: 5px;
  border: 1.4px solid rgba(187, 134, 105, 0.9);
  border-radius: 5px;
}

.feature-icon-local::after {
  width: 7px;
  height: 6px;
  left: 8px;
  top: 3px;
  border: 1.4px solid rgba(187, 134, 105, 0.9);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.feature-card-title {
  margin: 0 0 18px;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.feature-card-body {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.cta-section {
  padding: 48px 36px 120px;
}

.cta-panel {
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 64px 48px 66px;
  border: 1px solid rgba(71, 51, 38, 0.1);
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(71, 51, 38, 0.03);
}

.cta-label {
  margin-bottom: 10px;
}

.cta-title {
  margin: 0;
  font-family: "LTC Bodoni 175", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.9vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.cta-title em {
  font-style: italic;
  font-weight: 500;
}

.cta-copy {
  width: min(640px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.cta-panel-primary,
.cta-panel-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.cta-panel-primary {
  background: var(--accent-soft);
  color: #ffffff;
}

.cta-panel-primary:hover,
.cta-panel-primary:focus-visible {
  transform: translateY(-1px);
  background: #af795b;
}

.cta-panel-secondary {
  border: 1px solid rgba(71, 51, 38, 0.12);
  background: #ffffff;
  color: var(--accent-soft);
}

.cta-panel-secondary:hover,
.cta-panel-secondary:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(187, 134, 105, 0.36);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 54px 0 64px;
  border-top: 1px solid rgba(71, 51, 38, 0.1);
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-name {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.footer-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.footer-nav a {
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.footer-copy {
  margin: 0;
  font-size: 0.68rem;
  color: rgba(124, 115, 108, 0.92);
}

.legal-page {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
}

.legal-home {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.legal-home:hover,
.legal-home:focus-visible {
  color: var(--text);
}

.legal-panel {
  padding: 36px 0 0;
  border-top: 1px solid rgba(71, 51, 38, 0.1);
}

.legal-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
}

.legal-title {
  max-width: 820px;
  margin: 0;
  font-family: "LTC Bodoni 175", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.legal-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-updated {
  margin: 24px 0 0;
  color: rgba(124, 115, 108, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-sections {
  display: grid;
  gap: 36px;
  margin-top: 52px;
}

.legal-section {
  display: grid;
  gap: 12px;
}

.legal-section h2 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.legal-section ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.legal-footer {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid rgba(71, 51, 38, 0.08);
  color: rgba(124, 115, 108, 0.9);
  font-size: 0.82rem;
}

.brand:focus-visible,
.site-nav a:focus-visible,
.language-summary:focus-visible,
.language-list a:focus-visible,
.start-link:focus-visible,
.button:focus-visible {
  outline: 2px solid rgba(187, 134, 105, 0.34);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .post-hero-scale,
  .post-hero-scale-footer {
    zoom: 1;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand,
  .header-actions {
    justify-self: center;
  }

  .hero {
    padding-top: 112px;
  }

  .problem-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 72px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how-step {
    min-height: auto;
    padding: 34px 0 30px 32px;
  }

  .preview-card-left {
    left: 48px;
  }

  .preview-card-right {
    right: 48px;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 24px, 1720px);
    padding-top: 20px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .header-actions {
    gap: 14px;
  }

  .start-link,
  .button-primary {
    min-height: 40px;
    padding-inline: 18px;
  }

  .hero {
    padding: 92px 0 64px;
  }

  .hero-copy {
    width: min(640px, 100%);
  }

  .hero-actions {
    width: min(420px, 100%);
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .problem-section {
    padding: 64px 12px 104px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .preview-panel {
    min-height: 560px;
  }

  .preview-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 32px);
    margin: 24px auto 0;
    transform: none;
  }

  .preview-card-left {
    margin-top: 42px;
  }

  .preview-orbit {
    width: 460px;
    height: 460px;
    bottom: -130px;
  }

  .problem-card {
    min-width: 0;
    padding: 40px 30px 36px;
  }

  .how-section {
    width: 100%;
    padding: 0 12px 56px;
  }

  .features-section {
    padding: 20px 12px 72px;
  }

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

  .cta-section {
    padding: 8px 12px 72px;
  }

  .cta-panel {
    padding: 52px 28px;
  }

  .site-footer {
    padding-top: 34px;
  }

  .footer-meta {
    flex-direction: column;
  }

  .legal-page {
    width: min(100%, calc(100% - 24px));
    padding-top: 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 18px;
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title-main,
  .hero-title-accent {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-copy,
  .problem-body,
  .problem-footnote {
    font-size: 1rem;
    line-height: 1.65;
  }

  .problem-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .problem-card {
    padding: 28px 20px 26px;
    border-radius: 28px;
  }

  .section-label-next {
    width: 100%;
    margin-bottom: 32px;
    padding: 0;
  }

  .how-step {
    padding-left: 20px;
  }

  .how-step:last-child {
    border-right: 0;
  }

  .how-number {
    margin-bottom: 26px;
    font-size: clamp(2.4rem, 14vw, 3.4rem);
  }

  .preview-panel {
    min-height: 620px;
    border-radius: 24px;
  }

  .features-title {
    margin-bottom: 32px;
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    min-height: auto;
    padding: 26px 20px 22px;
    border-radius: 20px;
  }

  .asset-row {
    align-items: flex-start;
  }

  .problem-stage {
    min-height: 82px;
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .language-list {
    left: 0;
    right: auto;
  }

  .cta-title {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .cta-copy {
    font-size: 0.98rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-panel-primary,
  .cta-panel-secondary {
    width: 100%;
  }

  .footer-nav {
    gap: 14px 18px;
  }

  .legal-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .legal-sections {
    gap: 30px;
    margin-top: 40px;
  }
}
