:root {
  --bg: #020713;
  --bg-2: #06111f;
  --bg-3: #091a2c;
  --text: #f2f8ff;
  --text-strong: #ffffff;
  --muted: #9fb2c8;
  --dark-text: #0d1724;
  --dark-muted: #526170;
  --paper: #f5f8fb;
  --paper-2: #eaf0f6;
  --line: rgba(174, 216, 255, 0.2);
  --line-dark: rgba(13, 23, 36, 0.14);
  --cyan: #59d9ff;
  --mint: #78edc3;
  --amber: #ffd166;
  --rose: #ff7a8a;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  --max: 1120px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family:
    Pretendard,
    Inter,
    "Segoe UI",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body::selection {
  color: #03111d;
  background: var(--cyan);
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--text);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid rgba(210, 234, 255, 0.14);
  background: rgba(2, 7, 19, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 40px, var(--max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 13px, rgba(255, 255, 255, 0.38) 13px 16px, transparent 16px),
    linear-gradient(0deg, transparent 13px, rgba(255, 255, 255, 0.38) 13px 16px, transparent 16px),
    radial-gradient(circle at 58% 38%, #ffffff 0 22%, #9cc8ff 23% 44%, #1b5fce 45% 58%, transparent 59%);
  box-shadow: 0 0 24px rgba(89, 217, 255, 0.28);
}

.brand strong {
  display: block;
  color: var(--text-strong);
  font-size: 1.05rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1;
}

.section-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: rgba(242, 248, 255, 0.72);
  border-radius: 7px;
  font-size: 0.9rem;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.section-nav a:hover,
.section-nav a.is-active {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.07);
}

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: var(--indicator-width, 0);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--amber));
  transform: translateX(var(--indicator-left, 0));
  opacity: var(--indicator-opacity, 0);
  transition:
    transform 220ms ease,
    width 220ms ease,
    opacity 180ms ease;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text-strong);
  font-weight: 700;
  white-space: nowrap;
}

.header-action {
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  color: #02101b;
  border-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #ffffff, #9ee8ff 54%, #78edc3);
  box-shadow: 0 16px 42px rgba(89, 217, 255, 0.26);
}

.button.secondary {
  background: rgba(8, 24, 42, 0.68);
}

.button-icon {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.hero {
  position: relative;
  height: 86svh;
  min-height: 540px;
  max-height: 820px;
  overflow: hidden;
  border-bottom: 1px solid rgba(210, 234, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(2, 7, 19, 0.95) 0%, rgba(2, 7, 19, 0.74) 39%, rgba(2, 7, 19, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 7, 19, 0.62), rgba(2, 7, 19, 0.02) 55%, rgba(2, 7, 19, 0.46)),
    url("/static/assets/lunapix-pixel-moon.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(89, 217, 255, 0.035) 0 1px, transparent 1px 72px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 74%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 48px;
  padding-top: var(--header-h);
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  box-shadow: 10px 0 0 var(--cyan), 20px 0 0 var(--amber);
}

.eyebrow.dark {
  color: #176c83;
}

.hero h1 {
  margin-top: 18px;
  color: var(--text-strong);
  font-size: 4.8rem;
  line-height: 0.98;
  font-weight: 900;
  text-shadow: 0 0 34px rgba(135, 210, 255, 0.35);
}

.hero-lead {
  max-width: 590px;
  margin-top: 24px;
  color: rgba(242, 248, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
}

.signal-row div {
  min-width: 118px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 14, 28, 0.54);
}

.signal-row dt {
  color: var(--amber);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
}

.signal-row dd {
  margin: 3px 0 0;
  color: var(--text-strong);
  font-weight: 800;
}

.code-window {
  justify-self: end;
  width: min(100%, 500px);
  border: 1px solid rgba(202, 230, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 12, 24, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.window-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(202, 230, 255, 0.18);
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.window-dot.red {
  background: var(--rose);
}

.window-dot.amber {
  background: var(--amber);
}

.window-dot.green {
  background: var(--mint);
}

.file-name,
.status-text {
  color: rgba(242, 248, 255, 0.72);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
}

.status-text {
  color: var(--mint);
}

.code-window pre {
  min-height: 290px;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  white-space: pre-wrap;
  color: #dcecff;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.88rem;
  line-height: 1.75;
}

.token-keyword {
  color: #81a8ff;
}

.token-string {
  color: #ffd166;
}

.token-number {
  color: #78edc3;
}

.token-function {
  color: #59d9ff;
}

.token-comment {
  color: #7f91a7;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 1.15em;
  margin-left: 2px;
  vertical-align: -0.2em;
  background: var(--text-strong);
  animation: blink 900ms steps(2, start) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

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

.section-light {
  color: var(--dark-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 248, 251, 0.96)),
    var(--paper);
}

.section-dark {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(2, 7, 19, 0.92), rgba(7, 21, 35, 0.98)),
    var(--bg-2);
}

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

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 52px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: 0.84fr 1fr;
  align-items: center;
}

.section-heading h2,
.contact-section h2 {
  max-width: 740px;
  margin-top: 12px;
  font-size: 2.45rem;
  line-height: 1.18;
  font-weight: 900;
}

.section-heading p:not(.eyebrow),
.contact-section p {
  max-width: 690px;
  margin-top: 16px;
  color: inherit;
  opacity: 0.72;
}

.section-heading.center {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.service-grid,
.price-grid,
.portfolio-grid {
  display: grid;
  gap: 16px;
}

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

.service-card,
.price-card,
.portfolio-card {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.service-card {
  min-height: 240px;
  padding: 24px;
}

.card-index {
  display: inline-flex;
  margin-bottom: 46px;
  color: #176c83;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-weight: 800;
}

.service-card h3,
.price-card h3,
.portfolio-card h3,
.legal-copy h3 {
  color: inherit;
  font-size: 1.2rem;
  line-height: 1.3;
}

.service-card p,
.price-card p,
.portfolio-card p,
.legal-copy p {
  margin-top: 12px;
  color: var(--dark-muted);
}

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

.price-card {
  position: relative;
  min-height: 228px;
  padding: 26px;
  color: var(--text);
  border-color: rgba(174, 216, 255, 0.18);
  background: rgba(8, 26, 43, 0.88);
}

.price-card.featured {
  border-color: rgba(120, 237, 195, 0.54);
  background:
    linear-gradient(180deg, rgba(30, 73, 92, 0.68), rgba(8, 26, 43, 0.94)),
    var(--bg-3);
}

.price-card p {
  color: rgba(242, 248, 255, 0.72);
}

.price-card .price {
  margin-top: 20px;
  color: var(--text-strong);
  font-size: 1.65rem;
  font-weight: 900;
}

.badge {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 4px 9px;
  border: 1px solid rgba(120, 237, 195, 0.54);
  border-radius: 999px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 38px 0 0;
  padding: 1px;
  list-style: none;
  background: var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.timeline li {
  min-height: 170px;
  padding: 24px;
  background: var(--paper);
}

.timeline strong {
  display: block;
  margin-bottom: 34px;
  font-size: 1.1rem;
}

.timeline span {
  color: var(--dark-muted);
}

.about-section {
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 19, 0.96), rgba(6, 17, 31, 0.92)),
    var(--bg);
}

.moon-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(174, 216, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(89, 217, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(89, 217, 255, 0.05) 1px, transparent 1px),
    #030917;
  background-size: 26px 26px;
}

.moon-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 196px;
  height: 196px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(#ffffff 0 0) 64px 0 / 68px 12px no-repeat,
    linear-gradient(#ffffff 0 0) 40px 12px / 116px 12px no-repeat,
    linear-gradient(#d8eaff 0 0) 20px 24px / 156px 24px no-repeat,
    linear-gradient(#b9d7ff 0 0) 8px 48px / 180px 96px no-repeat,
    linear-gradient(#d8eaff 0 0) 20px 144px / 156px 24px no-repeat,
    linear-gradient(#ffffff 0 0) 40px 168px / 116px 12px no-repeat,
    linear-gradient(#ffffff 0 0) 64px 180px / 68px 12px no-repeat;
  filter: drop-shadow(0 0 28px rgba(89, 217, 255, 0.78));
}

.moon-panel span {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--cyan);
}

.moon-panel span:nth-child(1) {
  left: 17%;
  top: 22%;
}

.moon-panel span:nth-child(2) {
  right: 17%;
  top: 32%;
  background: var(--amber);
}

.moon-panel span:nth-child(3) {
  left: 27%;
  bottom: 23%;
  background: var(--mint);
}

.moon-panel span:nth-child(4) {
  right: 24%;
  bottom: 18%;
}

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

.portfolio-card {
  min-height: 250px;
  padding: 26px;
}

.portfolio-card span {
  display: inline-flex;
  margin-bottom: 78px;
  color: #176c83;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.legal-section {
  color: var(--text);
  background: #06111f;
}

.legal-section.alt {
  background: #081726;
}

.legal-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.legal-copy {
  display: grid;
  gap: 16px;
}

.legal-copy article {
  padding: 22px;
  border: 1px solid rgba(174, 216, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.legal-copy p {
  color: rgba(242, 248, 255, 0.72);
}

.contact-section {
  padding: 84px 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(2, 7, 19, 0.96), rgba(7, 28, 41, 0.9)),
    var(--bg);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(242, 248, 255, 0.62);
  background: #01040c;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-inner > div {
  display: grid;
  gap: 6px;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  color: rgba(242, 248, 255, 0.7);
}

.footer-links a:hover {
  color: var(--text-strong);
}

.legal-page-main {
  min-height: 100svh;
  color: var(--text);
  background: var(--bg);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 96px) 0 78px;
  border-bottom: 1px solid rgba(174, 216, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(2, 7, 19, 0.98), rgba(7, 24, 39, 0.94)),
    repeating-linear-gradient(90deg, rgba(89, 217, 255, 0.06) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(120, 237, 195, 0.045) 0 1px, transparent 1px 72px);
}

.privacy-hero {
  background:
    linear-gradient(90deg, rgba(2, 7, 19, 0.98), rgba(8, 28, 39, 0.94)),
    repeating-linear-gradient(90deg, rgba(120, 237, 195, 0.06) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255, 209, 102, 0.04) 0 1px, transparent 1px 72px);
}

.legal-hero h1 {
  max-width: 760px;
  margin-top: 16px;
  color: var(--text-strong);
  font-size: 4.8rem;
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(242, 248, 255, 0.76);
  font-size: 1.08rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 0;
  padding: 0;
}

.legal-meta div {
  min-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(174, 216, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.legal-meta dt {
  color: var(--mint);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.legal-meta dd {
  margin: 4px 0 0;
  color: var(--text-strong);
  font-weight: 800;
}

.legal-document-section {
  background:
    linear-gradient(180deg, rgba(6, 17, 31, 0.98), rgba(2, 7, 19, 0.99)),
    var(--bg);
}

.legal-document-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 26px);
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(174, 216, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.legal-toc strong {
  margin-bottom: 8px;
  color: var(--text-strong);
}

.legal-toc a {
  padding: 8px 9px;
  border-radius: 6px;
  color: rgba(242, 248, 255, 0.68);
  font-size: 0.9rem;
}

.legal-toc a:hover {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.07);
}

.legal-document {
  display: grid;
  gap: 16px;
}

.legal-document section {
  scroll-margin-top: calc(var(--header-h) + 22px);
  padding: 28px;
  border: 1px solid rgba(174, 216, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.legal-document h2 {
  color: var(--text-strong);
  font-size: 1.34rem;
  line-height: 1.3;
}

.legal-document p {
  margin-top: 12px;
  color: rgba(242, 248, 255, 0.72);
}

@media (max-width: 980px) {
  .header-inner {
    width: min(100% - 28px, var(--max));
    grid-template-columns: auto minmax(0, 1fr);
  }

  .header-action {
    display: none;
  }

  .section-nav {
    justify-content: flex-start;
  }

  .hero {
    height: auto;
    min-height: 760px;
    max-height: none;
  }

  .hero-inner,
  .split,
  .split.reverse,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-content: center;
    gap: 28px;
    padding: calc(var(--header-h) + 30px) 0 48px;
  }

  .code-window {
    justify-self: start;
    max-width: 540px;
  }

  .service-grid,
  .price-grid,
  .portfolio-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moon-panel {
    min-height: 320px;
  }

  .legal-document-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 64px;
  }

  .site-header {
    height: auto;
    min-height: var(--header-h);
  }

  .header-inner {
    width: min(100% - 24px, var(--max));
    grid-template-columns: 1fr;
    align-content: center;
    gap: 7px;
    padding: 9px 0;
  }

  .brand {
    justify-self: start;
  }

  .section-nav {
    width: 100%;
    padding-bottom: 2px;
  }

  .section-nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 690px;
    background-position: 60% center;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    padding-top: 122px;
    padding-bottom: 20px;
    gap: 16px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: 3.3rem;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .signal-row {
    display: none;
  }

  .code-window pre {
    min-height: 150px;
    padding: 14px;
    font-size: 0.76rem;
    line-height: 1.62;
  }

  .section {
    padding: 64px 0;
  }

  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 1.9rem;
  }

  .service-grid,
  .price-grid,
  .portfolio-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-card,
  .portfolio-card {
    min-height: auto;
  }

  .card-index,
  .portfolio-card span,
  .timeline strong {
    margin-bottom: 24px;
  }

  .contact-inner,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-hero {
    padding: calc(var(--header-h) + 116px) 0 56px;
  }

  .legal-hero h1 {
    font-size: 2.8rem;
  }

  .legal-meta {
    display: grid;
  }

  .legal-meta div {
    min-width: 0;
  }

  .legal-document section {
    padding: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
