@font-face {
  font-family: "Satoshi";
  src: url("assets/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050505;
  --bg-soft: rgba(255, 255, 255, 0.06);
  --bg-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.16);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.68);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #000;
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 30%);
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0.15) contrast(1.15) brightness(1.08);
  transform: scale(1.02);
}

.app {
  position: relative;
  width: 100%;
  min-height: 100%;
  z-index: 2;
}

.shop {
  position: relative;
  z-index: 2;
  min-height: 100%;
}

.shell {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 40px 0 60px;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 56px;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(1240px, 100%);
  text-align: center;
}

.hero-title {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 5.4vw, 4.9rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.blur-text {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 0.18em;
}

.blur-word {
  display: inline-block;
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, -52px, 0);
  will-change: transform, filter, opacity;
}

.blur-text.is-visible .blur-word {
  animation: blurReveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.blur-text.is-visible .blur-word:nth-child(1) {
  animation-delay: 0ms;
}

.blur-text.is-visible .blur-word:nth-child(2) {
  animation-delay: 220ms;
}

.blur-text.is-visible .blur-word:nth-child(3) {
  animation-delay: 440ms;
}

.blur-text.is-visible .blur-word:nth-child(4) {
  animation-delay: 660ms;
}

.blur-text.is-visible .blur-word-emphasis {
  filter: blur(0);
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.26),
    0 0 34px rgba(255, 255, 255, 0.16);
}

.blur-text.is-visible .blur-word-muted {
  opacity: 0.5 !important;
  filter: blur(0);
}

.blur-text.is-visible .blur-word-light {
  font-weight: 400;
  letter-spacing: -0.03em;
}

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

.brand-mark {
  position: relative;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  padding: 5px 14px 5px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 80%
  );
  transform: skewX(-15deg);
  animation: brandGlare 5s ease-in-out 2s infinite;
  pointer-events: none;
}

.brand-mark > * {
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.card {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
  --edge-sensitivity: 36;
  --color-sensitivity: 58;
  --border-radius: 24px;
  --glow-padding: 22px;
  --cone-spread: 24;
  position: relative;
  min-height: 200px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(18, 18, 18, 0.58);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(28px) saturate(135%);
  -webkit-backdrop-filter: blur(28px) saturate(135%);
  isolation: isolate;
  overflow: visible;
  transform: perspective(1200px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) translateY(0);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(14, 14, 14, 0.82), rgba(14, 14, 14, 0.82)) padding-box,
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)) border-box,
    radial-gradient(at 80% 55%, rgba(255, 255, 255, 0.26) 0px, transparent 50%) border-box,
    radial-gradient(at 18% 16%, rgba(255, 255, 255, 0.18) 0px, transparent 42%) border-box,
    radial-gradient(at 68% 24%, rgba(255, 255, 255, 0.14) 0px, transparent 46%) border-box,
    radial-gradient(at 48% 84%, rgba(255, 255, 255, 0.12) 0px, transparent 48%) border-box,
    linear-gradient(rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.26)) border-box;
  mask-image:
    conic-gradient(
      from var(--cursor-angle) at center,
      black calc(var(--cone-spread) * 1%),
      transparent calc((var(--cone-spread) + 15) * 1%),
      transparent calc((100 - var(--cone-spread) - 15) * 1%),
      black calc((100 - var(--cone-spread)) * 1%)
    );
  opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  transition: opacity 220ms ease;
  pointer-events: none;
  z-index: 0;
}

.card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--border-radius) - 1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 50%),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.12), transparent 22%);
  mask-image:
    linear-gradient(to bottom, black, black),
    radial-gradient(ellipse at 50% 50%, black 42%, transparent 67%),
    conic-gradient(from var(--cursor-angle) at center, transparent 8%, black 16%, black 84%, transparent 92%);
  mask-composite: subtract, add;
  opacity: calc(0.32 * (var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  transition: opacity 220ms ease;
  pointer-events: none;
  z-index: 0;
}

.card > .edge-light {
  position: absolute;
  inset: calc(var(--glow-padding) * -1);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  mask-image: conic-gradient(from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%);
  opacity: calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
  transition: opacity 220ms ease;
  mix-blend-mode: plus-lighter;
}

.card > .edge-light::before {
  content: "";
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.92),
    inset 0 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 0 3px 0 rgba(255, 255, 255, 0.42),
    inset 0 0 10px 0 rgba(255, 255, 255, 0.24),
    0 0 2px 0 rgba(255, 255, 255, 0.42),
    0 0 12px 0 rgba(255, 255, 255, 0.18),
    0 0 28px 0 rgba(255, 255, 255, 0.1);
}

.card-inner::before {
  content: "";
  position: absolute;
  inset: -20% 38% 48% -30%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04) 38%, transparent 62%);
  opacity: 0;
  transform: translate3d(-12%, -8%, 40px) rotate(-12deg);
  filter: blur(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 2;
  min-height: 200px;
  padding: 22px 24px 24px;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
}

.card h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  transform: translateZ(28px);
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  transform: translateZ(18px);
}

.card-footer {
  display: flex;
  justify-content: flex-start;
  align-items: end;
  gap: 8px;
  transform: translateZ(22px);
}

.price {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.order-button,
.contact-close,
.contact-card {
  border: 0;
  font: inherit;
}

.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.order-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.88);
}

.order-button:focus-visible,
.contact-close:focus-visible,
.intro-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.contact-panel {
  position: relative;
  width: min(520px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.94), rgba(10, 10, 10, 0.98)),
    rgba(12, 12, 12, 0.96);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
  padding: 32px;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 28%);
  pointer-events: none;
}

.contact-kicker {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.05em;
}

.contact-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.95;
  flex: 0 0 auto;
}

.contact-name {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-card.is-copied {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 38px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.card:hover .card-inner::before {
  opacity: 1;
  transform: translate3d(6%, 2%, 40px) rotate(-10deg);
}

.card:hover .price {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.card:not(:hover)::before,
.card:not(:hover)::after,
.card:not(:hover) > .edge-light {
  opacity: 0;
  transition: opacity 0.55s ease;
}

@media (max-width: 900px) {
  html,
  body {
    overflow: auto;
  }

  .shell {
    width: min(1120px, calc(100vw - 32px));
    padding: 32px 0 48px;
  }

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

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 48px;
    gap: 40px;
  }

  .hero-copy {
    gap: 0;
  }

  .brand-lockup {
    margin-top: 20px;
  }

  .hero-title {
    white-space: normal;
    font-size: clamp(2rem, 8.8vw, 3.9rem);
  }

  .blur-text {
    flex-wrap: wrap;
  }

  .contact-panel {
    padding: 24px;
    border-radius: 24px;
  }
}

/* ── Toast ─────────────────────────────────────────── */

.toast {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  border-radius: 999px;
  background: rgba(16, 38, 22, 0.92);
  border: 1px solid rgba(74, 222, 128, 0.28);
  color: #86efac;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(74, 222, 128, 0.08),
    inset 0 1px 0 rgba(74, 222, 128, 0.12);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.toast::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(134, 239, 172, 0.18) 50%,
    transparent 80%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

.toast.is-visible::before {
  animation: toastGlare 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.toast > * {
  position: relative;
  z-index: 1;
}

.toast strong {
  color: #bbf7d0;
  font-weight: 700;
}

.toast-icon {
  flex: 0 0 auto;
  color: #4ade80;
}

.toast.is-visible {
  animation: toastIn 0.36s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: auto;
}

.toast.is-hiding {
  animation: toastOut 0.28s ease forwards;
  pointer-events: none;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes toastGlare {
  0% {
    left: -75%;
    opacity: 1;
  }
  100% {
    left: 130%;
    opacity: 1;
  }
}

@keyframes brandGlare {
  0% {
    left: -75%;
  }
  20% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

@keyframes brandFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.88;
    letter-spacing: 0.55em;
  }

  50% {
    transform: translateY(-6px);
    opacity: 1;
    letter-spacing: 0.7em;
  }
}

@keyframes blurReveal {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, -52px, 0);
  }

  60% {
    opacity: 0.48;
    filter: blur(7px);
    transform: translate3d(0, 8px, 0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.22;
    width: 100%;
  }

  50% {
    opacity: 0.72;
    width: 140%;
  }
}

@keyframes borderOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ── Cookie Banner ───────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 90;
  width: min(740px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 16px 14px 20px;
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.44s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.is-hiding {
  transform: translateX(-50%) translateY(140%);
  opacity: 0;
  pointer-events: none;
}

.cookie-text {
  flex: 1;
  margin: 0;
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.65;
}

.cookie-text a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  transition: color 150ms ease;
}

.cookie-text a:hover {
  color: var(--text);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
  color: var(--text);
}

.cookie-btn-primary {
  background: rgba(255, 255, 255, 0.13);
  color: var(--text);
}

.cookie-btn-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    bottom: 16px;
    padding: 16px;
  }

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

  .cookie-btn {
    height: 42px;
  }
}

/* ── Legal Pages ─────────────────────────────────── */

body.legal-page {
  overflow: auto;
}

.legal-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 52px;
  transition: color 160ms ease;
}

.back-link:hover {
  color: var(--text);
}

.legal-doc h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
  color: var(--text);
}

.legal-date {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8rem;
  margin: 0 0 52px;
  letter-spacing: 0.02em;
}

.legal-doc h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
  color: var(--text);
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-doc h2:first-of-type {
  margin-top: 0;
  border-top: none;
}

.legal-doc p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 14px;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-doc li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 6px;
}

.legal-doc strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.legal-doc a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  transition: color 150ms ease;
}

.legal-doc a:hover {
  color: var(--text);
}

.legal-footer {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 8px 28px;
  flex-wrap: wrap;
  align-items: center;
}

.legal-footer-brand {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-right: auto;
}

.legal-footer a:not(.legal-footer-brand) {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 150ms ease;
}

.legal-footer a:not(.legal-footer-brand):hover {
  color: var(--muted);
}
