:root {
  /* Vibrant palette (original) — used on UI; backgrounds stay light */
  --mint: #7fffd4;
  --mint-hot: #5dffc4;
  --mint-deep: #5dffc4;
  --mint-soft: rgba(127, 255, 212, 0.42);
  --lavender: #e9b5ff;
  --lavender-hot: #d891ff;
  --lavender-deep: #d891ff;
  --lavender-soft: rgba(233, 181, 255, 0.42);
  --cream: #fffee0;
  --cream-deep: #fff8e8;
  --night: #2d1f4a;
  --night-deep: #1a1228;
  --ink-soft: #3d2f55;
  --ink-muted: #5c4a78;
  --neon-cyan: #00f5ff;
  --neon-pink: #ff4fc8;
  --neon-yellow: #fff959;
  --peach: #ffb8a8;
  --sticker-outline: #1a1228;
  --border-soft: rgba(26, 18, 40, 0.1);
  --font-display: "Fredoka", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", "Segoe UI", system-ui, sans-serif;
  --card-shadow:
    0 6px 32px rgba(45, 31, 74, 0.1),
    0 0 0 2px rgba(233, 181, 255, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--ink-soft);
}

body {
  background-color: #fffef6;
  background-image:
    radial-gradient(ellipse 88% 58% at 12% 18%, var(--lavender-soft), transparent 52%),
    radial-gradient(ellipse 78% 52% at 88% 72%, var(--mint-soft), transparent 48%),
    radial-gradient(ellipse 65% 42% at 50% 100%, rgba(255, 184, 168, 0.32), transparent 44%),
    linear-gradient(175deg, #fff9ff 0%, #f2fff8 32%, #fffcef 100%);
  background-attachment: fixed;
  line-height: 1.65;
}

main {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}

h1 {
  color: var(--night-deep);
  font-size: clamp(1.65rem, 5.5vw, 2.75rem);
  margin-bottom: 0;
  text-shadow:
    2px 2px 0 #fff,
    -1px -1px 0 rgba(233, 181, 255, 0.6),
    0 0 28px rgba(255, 79, 200, 0.22);
}

.brand-pronunciation {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

h2,
h3 {
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9);
}

h2 {
  font-size: clamp(1.35rem, 3.8vw, 2rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

p {
  margin-top: 0;
}

.slide {
  position: relative;
  min-height: 100vh;
  padding: 2.5rem 1.5rem;
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  overflow: hidden;
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(210, 255, 238, 0.35) 48%,
    rgba(248, 235, 255, 0.5) 100%
  );
}

.slide:nth-child(2) {
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(245, 230, 255, 0.42) 50%,
    rgba(255, 252, 232, 0.55) 100%
  );
}

.slide:nth-child(3) {
  background: linear-gradient(
    168deg,
    rgba(252, 248, 255, 0.95) 0%,
    rgba(200, 255, 236, 0.32) 45%,
    rgba(255, 250, 240, 0.65) 100%
  );
}

.slide:nth-child(4) {
  background: linear-gradient(
    168deg,
    rgba(240, 255, 248, 0.5) 0%,
    rgba(255, 245, 252, 0.45) 45%,
    rgba(255, 254, 235, 0.85) 100%
  );
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(90, 86, 120, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(90, 86, 120, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.4;
}

.slide:nth-child(1)::after,
.slide:nth-child(2)::after,
.slide:nth-child(3)::after,
.slide:nth-child(4)::after {
  content: "";
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.slide:nth-child(1)::after {
  background: radial-gradient(circle, var(--mint-soft), transparent 68%);
  top: -15%;
  right: -10%;
  opacity: 0.65;
}

.slide:nth-child(2)::after {
  background: radial-gradient(circle, var(--lavender-soft), transparent 68%);
  bottom: -20%;
  left: -15%;
  opacity: 0.65;
}

.slide:nth-child(3)::after {
  background: radial-gradient(
    circle,
    rgba(255, 184, 168, 0.5),
    transparent 70%
  );
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.55;
}

.slide:nth-child(4)::after {
  background: radial-gradient(
    circle,
    rgba(0, 245, 255, 0.2),
    transparent 70%
  );
  bottom: -10%;
  right: 5%;
  opacity: 0.5;
}

.content-card {
  position: relative;
  z-index: 1;
  width: min(900px, 95%);
  padding: 2.5rem;
  border-radius: 24px;
  border: 2px solid rgba(216, 145, 255, 0.5);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 254, 224, 0.88) 28%,
    rgba(180, 255, 230, 0.38) 58%,
    rgba(241, 220, 255, 0.55) 100%
  );
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
}

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

.content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    transparent 38%
  );
  opacity: 1;
}

.content-card--hero::after {
  content: "✦";
  position: absolute;
  top: 0.35rem;
  right: 1.35rem;
  z-index: 2;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--neon-pink);
  opacity: 0.9;
  text-shadow: 0 0 16px rgba(255, 79, 200, 0.45);
  pointer-events: none;
  animation: star-wiggle 4s ease-in-out infinite;
}

.content-card--hangout .hangout-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.content-card--hangout .hangout-header-text h2 {
  margin-bottom: 0;
}

.content-card--hangout .hangout-header .eyebrow {
  margin-bottom: 0.35rem;
}

.brand-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sticker-outline);
  box-shadow:
    3px 3px 0 rgba(26, 18, 40, 0.1),
    0 0 20px rgba(233, 181, 255, 0.45);
  flex-shrink: 0;
}

.hangout-pill-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hangout-pill-list li {
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sticker-outline);
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.9), var(--mint));
  border: 2px solid var(--sticker-outline);
  border-radius: 999px;
  box-shadow: 2px 2px 0 rgba(26, 18, 40, 0.08);
}

@keyframes star-wiggle {
  0%,
  100% {
    transform: rotate(-8deg) scale(1);
  }
  50% {
    transform: rotate(8deg) scale(1.08);
  }
}

.title-stack {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.builder-tagline {
  margin: 0.85rem 0 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.tag-badge {
  display: inline-block;
  margin: 0.65rem 0 0;
  padding: 0.38rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sticker-outline);
  background: linear-gradient(100deg, var(--neon-yellow), var(--mint-hot));
  border: 2px solid var(--sticker-outline);
  border-radius: 999px;
  box-shadow:
    3px 3px 0 rgba(26, 18, 40, 0.12),
    0 0 20px rgba(255, 79, 200, 0.2);
}

.name-origin {
  position: relative;
  z-index: 1;
  padding: 0.85rem 1rem;
  margin: 0 0 1rem;
  border-radius: 14px;
  border: 2px dashed rgba(216, 145, 255, 0.65);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.meta-line {
  margin: 0 0 0.25rem;
}

.birthday-note {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.meta-pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(95deg, var(--neon-pink), var(--lavender-hot));
  border: 2px solid var(--sticker-outline);
  border-radius: 999px;
  box-shadow:
    2px 2px 0 rgba(26, 18, 40, 0.12),
    0 0 16px rgba(255, 79, 200, 0.25);
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--sticker-outline);
  padding: 0.28rem 0.55rem;
  background: var(--neon-cyan);
  border: 2px solid var(--sticker-outline);
  border-radius: 999px;
  box-shadow: 2px 2px 0 rgba(26, 18, 40, 0.1);
}

.button {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 1rem;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.74rem;
  color: #fff;
  background: linear-gradient(180deg, var(--neon-pink) 0%, #e020a0 100%);
  border: 2px solid var(--sticker-outline);
  box-shadow:
    3px 3px 0 rgba(26, 18, 40, 0.14),
    0 0 28px rgba(255, 79, 200, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow:
    4px 4px 0 rgba(26, 18, 40, 0.12),
    0 0 36px rgba(0, 245, 255, 0.22);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.project-tile {
  position: relative;
  z-index: 1;
  padding: 0.6rem;
  border-radius: 18px;
  border: 2px solid rgba(216, 145, 255, 0.55);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.95) 0%,
    var(--mint) 38%,
    var(--lavender) 100%
  );
  box-shadow:
    0 4px 18px rgba(45, 31, 74, 0.08),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-tile:hover {
  transform: translateY(-3px) rotate(-0.3deg);
  box-shadow:
    0 10px 22px rgba(45, 31, 74, 0.11),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

.project-tile::after {
  content: "✦";
  position: absolute;
  top: 0.45rem;
  right: 0.7rem;
  color: var(--neon-pink);
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.project-tile:hover::after,
.project-tile.is-open::after {
  opacity: 0.95;
  transform: scale(1);
}

.project-tile a {
  color: #4a2d6e;
  font-weight: 700;
}

.project-tile a:hover {
  color: var(--neon-pink);
}

.project-grid--split {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: stretch;
}

@media (max-width: 640px) {
  .project-grid--split {
    grid-template-columns: 1fr;
  }
}

.product-title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  display: block;
}

.product-title--static {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9);
  padding: 0.15rem 0.55rem 0;
}

.toggle-hint--static {
  margin-top: 0;
  margin-bottom: 0.65rem;
  padding: 0 0.55rem;
}

.project-tile--soon p + p {
  margin-top: 0.65rem;
}

.project-toggle {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0.45rem 0.55rem 0.3rem;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.project-toggle:focus-visible {
  outline: 2px dashed var(--neon-pink);
  outline-offset: 4px;
  border-radius: 12px;
}

.toggle-eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.16rem 0.48rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #503265;
  background: rgba(255, 255, 255, 0.72);
}

.toggle-hint {
  display: block;
  margin-top: 0.15rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.product-title a,
.project-detail a {
  color: inherit;
  text-decoration: none;
  border-bottom: 3px solid var(--neon-pink);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.product-title a:hover,
.project-detail a:hover {
  color: var(--neon-pink);
  border-bottom-color: var(--lavender-hot);
}

.project-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 0.36s ease,
    opacity 0.22s ease,
    transform 0.24s ease;
}

.project-detail > p,
.project-detail > ul {
  margin-left: 0.55rem;
  margin-right: 0.55rem;
}

.project-tile.is-open .project-detail {
  max-height: 920px;
  opacity: 1;
  transform: translateY(0);
}

.click-sparkle {
  position: absolute;
  z-index: 2;
  color: var(--neon-pink);
  font-size: 1rem;
  pointer-events: none;
  animation: sparkle-pop 0.7s ease forwards;
}

@keyframes sparkle-pop {
  from {
    opacity: 0.9;
    transform: translate(-50%, 0) scale(0.65) rotate(-12deg);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -20px) scale(1.25) rotate(12deg);
  }
}

.price-label {
  margin: 1rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
}

.price-list li + li {
  margin-top: 0.35rem;
}

.version-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 0.5rem;
}

.version-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sticker-outline);
  background: var(--neon-yellow);
  border: 2px solid var(--sticker-outline);
  border-radius: 6px;
  box-shadow: 2px 2px 0 rgba(26, 18, 40, 0.1);
}

.version-caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.changelog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.changelog-list li {
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(216, 145, 255, 0.35);
}

.changelog-list li + li {
  margin-top: 0.45rem;
}

.project-tile--soon {
  padding: 1.05rem 1.1rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(233, 181, 255, 0.35) 50%,
    rgba(127, 255, 212, 0.28) 100%
  );
}

.soon-badge {
  display: inline-block;
  margin: 0.75rem 0 0;
  padding: 0.32rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sticker-outline);
  background: var(--neon-yellow);
  border: 2px solid var(--sticker-outline);
  border-radius: 999px;
  box-shadow: 2px 2px 0 rgba(26, 18, 40, 0.1);
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li + li {
  margin-top: 0.45rem;
}

.link-list a {
  color: #5b5290;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(91, 82, 144, 0.35);
}

.link-list a:hover {
  color: var(--neon-pink);
  border-bottom-color: rgba(255, 79, 200, 0.45);
}

.slide-nav {
  position: fixed;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  border: 2px solid #fff;
  background: rgba(233, 181, 255, 0.75);
  box-shadow: 2px 2px 0 rgba(26, 18, 40, 0.1);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dot.active {
  background: var(--neon-yellow);
  border-color: var(--sticker-outline);
  box-shadow:
    2px 2px 0 rgba(26, 18, 40, 0.12),
    0 0 14px rgba(255, 79, 200, 0.35);
  transform: scale(1.12);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: float-glow 12s ease-in-out infinite;
}

.glow--mint {
  width: 180px;
  height: 180px;
  left: 12%;
  top: 22%;
  background: rgba(127, 255, 212, 0.5);
  animation-delay: 0s;
}

.glow--lavender {
  width: 220px;
  height: 220px;
  right: 8%;
  bottom: 18%;
  background: rgba(233, 181, 255, 0.48);
  animation-delay: -4s;
}

@keyframes float-glow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate(12px, -10px) scale(1.05);
    opacity: 1;
  }
}

.pixel-cloud {
  position: absolute;
  width: 108px;
  height: 72px;
  opacity: 0.42;
  image-rendering: pixelated;
  background-size: 12px 12px;
  background-image:
    linear-gradient(var(--cream) 100%, transparent 0),
    linear-gradient(90deg, var(--cream) 100%, transparent 0);
  filter: drop-shadow(0 0 14px rgba(233, 181, 255, 0.65));
  z-index: 0;
}

.cloud-one {
  left: 8%;
  top: 16%;
}

.cloud-two {
  right: 13%;
  bottom: 18%;
}

@media (max-width: 700px) {
  .slide-nav {
    right: 0.6rem;
  }

  .content-card {
    padding: 1.35rem;
  }

  .content-card--hangout .hangout-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .brand-avatar {
    width: 72px;
    height: 72px;
  }
}

.site-footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(216, 145, 255, 0.45);
  text-align: center;
}

.footer-company,
.footer-legal,
.footer-copy {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.footer-legal {
  margin-bottom: 0.35rem;
}

.footer-legal a,
.footer-copy a {
  color: #5b5290;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(91, 82, 144, 0.35);
}

.footer-legal a:hover {
  color: var(--neon-pink);
}

.footer-copy {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.page-legal {
  min-height: 100vh;
  margin: 0;
  padding: 1.75rem 1.25rem 3rem;
  background-color: #fffef6;
  background-image:
    radial-gradient(ellipse 88% 58% at 12% 18%, var(--lavender-soft), transparent 52%),
    radial-gradient(ellipse 78% 52% at 88% 72%, var(--mint-soft), transparent 48%),
    linear-gradient(175deg, #fff9ff 0%, #f2fff8 32%, #fffcef 100%);
  background-attachment: fixed;
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #4a4568;
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 2px solid var(--sticker-outline);
  background: linear-gradient(165deg, var(--lavender) 0%, var(--mint-deep) 100%);
  box-shadow: 2px 2px 0 rgba(26, 18, 40, 0.1);
}

.legal-back:hover {
  transform: translateY(-1px);
}

.legal-doc {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 2rem;
  border-radius: 20px;
  border: 2px solid rgba(216, 145, 255, 0.5);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 254, 224, 0.88) 35%,
    rgba(241, 220, 255, 0.45) 100%
  );
  box-shadow: var(--card-shadow);
  color: var(--ink-soft);
  line-height: 1.65;
}

.legal-doc h1 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  margin-bottom: 0.35rem;
  color: var(--night-deep);
  text-shadow: none;
}

.legal-doc .legal-meta {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.legal-doc h2 {
  font-size: 1.05rem;
  margin: 1.35rem 0 0.5rem;
  text-shadow: none;
}

.legal-doc h3 {
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 1rem 0 0.4rem;
  color: var(--ink-soft);
  text-shadow: none;
}

.legal-doc p,
.legal-doc li {
  font-size: 0.95rem;
}

.legal-doc ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.legal-doc li + li {
  margin-top: 0.35rem;
}

.legal-doc a {
  color: #5b5290;
  font-weight: 600;
}

.legal-doc .legal-contact {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(216, 145, 255, 0.45);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .glow {
    animation: none;
  }

  .content-card--hero::after {
    animation: none;
  }

  .button {
    transition: none;
  }

  .legal-back:hover {
    transform: none;
  }
}
