/* Shared marketing-site styles for About / Privacy / Terms */
@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100vh; }
body {
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; }

/* ====== Ambient background paired with mascot peek ====== */
.amb { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.amb .ring { position: absolute; border-radius: 50%; border: 2px solid; }
.amb .r1 {
  width: 640px; height: 640px; right: -260px; top: -240px;
  border-color: var(--plum-500); opacity: 0.18;
}
.amb .r2 {
  width: 640px; height: 640px; right: -380px; top: -180px;
  border-color: var(--coral-300); opacity: 0.22;
}
.amb .r3 {
  width: 420px; height: 420px; left: -210px; bottom: -220px;
  border-color: var(--plum-500); border-width: 1.5px; opacity: 0.16;
}
.amb .r4 {
  width: 420px; height: 420px; left: -120px; bottom: -220px;
  border-color: var(--coral-300); border-width: 1.5px; opacity: 0.16;
}

/* ====== Top nav ====== */
nav.top {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 40px; gap: 16px;
  max-width: 1240px; margin: 0 auto;
}
nav.top .brand { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
nav.top .brand img { height: 54px; width: 54px; object-fit: contain; display: block; }
nav.top .brand-word {
  font-family: var(--font-display);
  font-weight: 800; font-size: 34px; line-height: 1;
  letter-spacing: -0.035em; color: #2A1252;
}
nav.top .links { display: inline-flex; align-items: center; gap: 6px; }
nav.top .links a {
  font-weight: 700; font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
nav.top .links a:hover { color: var(--coral-400); background: rgba(242, 85, 119, 0.08); }
nav.top .links a.current {
  color: var(--plum-800);
  background: var(--butter-200);
}
nav.top .chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--plum-700);
  background: var(--milk-50);
  border: 1.5px solid var(--plum-800);
  padding: 8px 14px; border-radius: 999px;
  box-shadow: 3px 3px 0 var(--plum-800);
  text-decoration: none;
}
nav.top .chip .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral-300);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(242,85,119,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(242,85,119,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,85,119,0); }
}
@media (max-width: 720px) {
  nav.top { padding: 20px 22px; }
  nav.top .brand-word { font-size: 28px; }
  nav.top .brand img { height: 44px; width: 44px; }
  nav.top .chip { display: none; }
  nav.top .links a { padding: 8px 10px; font-size: 13px; }
}

/* ====== Page shell ====== */
.page {
  position: relative; z-index: 5;
  max-width: 880px; margin: 0 auto;
  padding: 40px 40px 80px;
}
.page.wide { max-width: 1180px; }
@media (max-width: 720px) { .page { padding: 24px 22px 64px; } }

.eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-400);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.eyebrow .bullet { width: 5px; height: 5px; border-radius: 50%; background: var(--coral-300); }

h1.page-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--fg-1);
  margin: 0 0 18px;
  max-width: 14ch;
  text-wrap: balance;
}
h1.page-title .pop { color: var(--coral-300); font-style: italic; font-weight: 500; }

.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55; color: var(--fg-2);
  max-width: 52ch; margin: 0 0 56px;
}

h2.section {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--fg-1);
  margin: 64px 0 24px;
  max-width: 18ch;
  text-wrap: balance;
}
h2.section .small {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-400);
  margin-bottom: 12px;
  letter-spacing: 0.14em;
}

.prose p {
  font-size: 17px; line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 18px;
  max-width: 64ch;
}
.prose p strong { color: var(--fg-1); font-weight: 700; }
.prose em { color: var(--coral-400); font-style: italic; font-weight: 500; }

/* Side mascot illustration */
.mascot-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px; align-items: center;
  margin: 64px 0;
}
.mascot-block .mascot-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.mascot-block .mascot-wrap img {
  position: relative; z-index: 1;
  width: 100%; max-width: 360px; height: auto;
  display: block;
  filter: drop-shadow(6px 10px 0 rgba(26,10,46,0.10));
}
@media (max-width: 720px) {
  .mascot-block { grid-template-columns: 1fr; gap: 36px; }
  .mascot-block .mascot-wrap { max-width: 220px; margin: 0 auto; }
}

/* Pull-quote / callout card */
.pull {
  margin: 36px 0;
  padding: 26px 28px;
  background: var(--milk-50);
  border: 1.5px solid var(--plum-800);
  border-radius: 22px;
  box-shadow: 5px 5px 0 var(--plum-800);
}
.pull .pull-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-400);
  margin-bottom: 8px;
}
.pull .pull-text {
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0;
}

/* Color-block tile */
.tile {
  margin: 36px 0;
  padding: 28px 32px;
  border: 1.5px solid var(--plum-800);
  border-radius: 22px;
  box-shadow: 5px 5px 0 var(--plum-800);
}
.tile.coral { background: var(--coral-300); color: white; }
.tile.butter { background: var(--butter-300); color: var(--plum-800); }
.tile.pistachio { background: var(--pistachio-300); color: white; }
.tile.plum { background: var(--plum-800); color: var(--milk-50); }
.tile.plum .tile-eyebrow { color: var(--butter-300); }
.tile.coral .tile-eyebrow,
.tile.pistachio .tile-eyebrow { color: rgba(255,255,255,0.85); }
.tile-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-400);
  margin-bottom: 12px;
}
.tile-h {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}
.tile p {
  font-size: 16px; line-height: 1.55;
  margin: 0;
}

/* Closing CTA strip */
.cta-strip {
  margin-top: 80px;
  padding: 40px;
  background: var(--plum-800);
  color: var(--milk-50);
  border-radius: 28px;
  display: flex; gap: 24px; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-strip::before,
.cta-strip::after {
  content: ''; position: absolute; border-radius: 50%;
  pointer-events: none;
}
.cta-strip::before {
  width: 240px; height: 240px;
  right: -80px; top: -100px;
  background: var(--plum-600); opacity: 0.5;
  filter: blur(40px);
}
.cta-strip::after {
  width: 200px; height: 200px;
  left: -70px; bottom: -90px;
  background: var(--coral-300); opacity: 0.25;
  filter: blur(40px);
}
.cta-strip .cta-text {
  position: relative; z-index: 1;
  max-width: 32ch;
}
.cta-strip .cta-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--butter-300);
  margin-bottom: 8px;
}
.cta-strip h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.cta-strip .cta-btn {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--coral-300); color: white;
  border: 1.5px solid var(--milk-50);
  border-radius: 999px;
  padding: 16px 24px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--milk-50);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cta-strip .cta-btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--milk-50); }
.cta-strip .cta-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--milk-50); }

/* Footer (shared) */
footer.site {
  position: relative; z-index: 5;
  padding: 24px 40px;
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--fg-3); font-weight: 500;
}
footer.site .links { display: inline-flex; align-items: center; gap: 14px; font-weight: 600; }
footer.site .links a { color: var(--fg-2); text-decoration: none; transition: color var(--dur) var(--ease); }
footer.site .links a:hover { color: var(--coral-400); }
footer.site .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--milk-400); }
footer.site .right { display: inline-flex; align-items: center; gap: 6px; }
footer.site .heart {
  width: 10px; height: 10px; background: var(--coral-300);
  transform: rotate(45deg);
  display: inline-block; position: relative;
}
footer.site .heart::before, footer.site .heart::after {
  content: ''; position: absolute; width: 10px; height: 10px;
  background: var(--coral-300); border-radius: 50%;
}
footer.site .heart::before { left: -5px; top: 0; }
footer.site .heart::after  { top: -5px; left: 0; }
@media (max-width: 600px) { footer.site { padding: 20px 22px; } }

/* Legal page styles */
.legal h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 40px 0 12px;
}
.legal h3 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 16px; letter-spacing: -0.005em;
  color: var(--fg-1);
  margin: 24px 0 8px;
}
.legal p { font-size: 15px; line-height: 1.65; color: var(--fg-2); margin: 0 0 14px; max-width: 68ch; }
.legal .meta {
  font-size: 13px; color: var(--fg-3); font-weight: 500;
  margin-bottom: 36px;
  font-family: var(--font-mono);
}
