:root {
  --color-primary: #e5007d;
  --color-primary-hover: #d1137f;
  --color-ink: #2d2d35;
  --color-muted: #636363;
  --color-line: #d8d2d6;
  --color-page: #e6e6e6;
  --color-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-page);
}

a {
  color: inherit;
}

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

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 56px 20px 28px;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(230, 230, 230, 0.99) 0%, rgba(230, 230, 230, 0.94) 44%, rgba(230, 230, 230, 0.68) 100%),
    url("../img/background_hero.webp") center / cover no-repeat;
}

.hero-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.logo-link {
  display: inline-flex;
  justify-content: center;
  margin: 0 auto 34px;
}

.brand-logo {
  width: clamp(180px, 24vw, 268px);
}

.hero-title {
  max-width: 860px;
  margin: 0 auto 34px;
  color: var(--color-primary);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title strong {
  font-weight: 900;
}

.axis {
  width: min(100%, 760px);
  margin: 0 auto;
}

.axis-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.axis-item {
  position: relative;
  width: min(100%, 740px);
  margin: 0 auto;
  padding: 24px 30px 25px;
  border: 1px solid rgba(216, 210, 214, 0.85);
  border-left: 5px solid var(--color-primary);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(28, 28, 38, 0.12);
  backdrop-filter: blur(6px);
}

.axis-copy {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 500;
  line-height: 1.35;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 46px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 500;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

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

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-page);
}

.legal-header,
.legal-footer {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 30px 20px;
}

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

.legal-logo {
  width: clamp(150px, 18vw, 235px);
}

.back-link {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-main {
  width: min(100%, 1200px);
  margin: 0 auto 60px;
  padding: 0 20px;
}

.legal-title {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.legal-updated {
  margin: 0 0 20px;
  color: #878787;
  font-size: 14px;
  text-align: center;
}

.legal-content {
  padding: 24px;
  border-radius: 8px;
  color: #3a3a3a;
  background: var(--color-white);
  box-shadow: 0 12px 32px rgba(28, 28, 38, 0.12);
  line-height: 1.55;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 1.25rem 0 0.5rem;
  color: #3a3a3a;
  font-size: 18px;
  font-weight: 600;
}

.legal-content p {
  margin: 1rem 0 0;
  font-size: 15px;
}

.legal-content p:first-child {
  margin-top: 0;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0 0 22px;
  padding: 0;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 4px;
  font-size: 15px;
}

.legal-content strong {
  font-weight: 600;
}

.legal-content em {
  color: var(--color-muted);
  font-style: italic;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-content--columns {
  column-count: 3;
  column-gap: 28px;
  column-rule: 1px solid #ececec;
  font-size: 12px;
  line-height: 1.4;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.legal-content--columns h2 {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 13px;
  break-after: avoid;
}

.legal-content--columns h3 {
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 12px;
  break-after: avoid;
}

.legal-content--columns p {
  margin-top: 6px;
  font-size: 12px;
  break-inside: avoid;
}

.legal-content--columns li {
  font-size: 12px;
}

.legal-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  text-align: center;
}

@media (max-width: 1024px) {
  .legal-content--columns {
    column-count: 2;
  }
}

@media (max-width: 700px) {
  .coming-soon {
    padding-top: 42px;
  }

  .axis-item {
    padding: 18px 20px;
    text-align: center;
  }

  .legal-header {
    flex-direction: column;
    justify-content: center;
  }

  .legal-content {
    padding: 16px;
  }

  .legal-content--columns {
    column-count: 1;
    column-rule: none;
    font-size: 12px;
  }

  .legal-content--columns h2 {
    font-size: 14px;
  }

  .legal-content--columns h3 {
    font-size: 13px;
  }

  .legal-content--columns p,
  .legal-content--columns li {
    font-size: 12px;
  }
}
