/* ==========================================================
   HorseJournal — landing page styles
   Palette: deep purple, warm cream, soft pink
   ========================================================== */

:root {
  /* brand */
  --purple-900: #1B1140;
  --purple-800: #2A1B5D;
  --purple-700: #3A2780;
  --purple-500: #6E5BC2;
  --purple-50:  #EFEAFB;

  --cream-100: #FBF4E4;
  --cream-200: #F5E9D0;
  --cream-300: #EDDDB7;

  --pink-500:  #F47BA0;
  --pink-400:  #F89BB8;
  --pink-100:  #FDE3EC;

  --ink:        #1A1330;
  --ink-soft:   #4A4063;
  --muted:      #7B7297;
  --line:       rgba(42, 27, 93, 0.08);

  /* type */
  --font-serif: "Fraunces", "Cooper Black", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 14px rgba(42, 27, 93, 0.06);
  --shadow:    0 18px 50px rgba(42, 27, 93, 0.10);
  --shadow-lg: 0 30px 80px rgba(42, 27, 93, 0.18);
  --max:       1120px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--purple-900);
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 5.8vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.18rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
em { font-style: italic; color: var(--pink-500); font-weight: 500; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple-500);
  margin: 0 0 .9em;
}
.eyebrow.center { text-align: center; }
.section-title { color: var(--purple-900); }
.section-title.center { text-align: center; max-width: 720px; margin-inline: auto; }
.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 56ch;
}
.muted { color: var(--muted); }
.small { font-size: .88rem; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--purple-800); color: var(--cream-100);
  padding: 10px 14px; border-radius: 8px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 22px; }
.container.narrow { max-width: 820px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 17px 26px; font-size: 1.02rem; }
.btn-sm { padding: 10px 16px; font-size: .9rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--purple-800);
  color: var(--cream-100);
  box-shadow: 0 10px 24px rgba(42, 27, 93, 0.28);
}
.btn-primary:hover { transform: translateY(-1px); background: var(--purple-700); box-shadow: 0 14px 30px rgba(42, 27, 93, 0.34); }

.btn-ghost {
  background: transparent;
  color: var(--purple-800);
  border-color: rgba(42, 27, 93, 0.18);
}
.btn-ghost:hover { background: var(--purple-50); border-color: rgba(42, 27, 93, 0.32); }

.btn-pill { background: var(--purple-800); color: var(--cream-100); }
.btn-pill:hover { background: var(--purple-700); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 36px);
  background: rgba(251, 244, 228, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { border-radius: 10px; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--purple-900);
}
.nav { display: none; gap: 28px; }
.nav a { color: var(--ink-soft); font-weight: 500; }
.nav a:hover { color: var(--purple-800); }
@media (min-width: 760px) {
  .nav { display: inline-flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 56px 0 80px;
  background:
    radial-gradient(120% 60% at 90% 0%, rgba(244, 123, 160, 0.10), transparent 60%),
    radial-gradient(80% 60% at 0% 100%, rgba(110, 91, 194, 0.10), transparent 60%),
    var(--cream-100);
  overflow: hidden;
}
.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 22px;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 920px) {
  .hero { padding: 90px 0 120px; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 64px; }
}

.hero-copy h1 { margin-bottom: .35em; }
.hero-copy .lede { font-size: 1.18rem; max-width: 32ch; }
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.hero-foot { margin-top: 16px; color: var(--muted); font-size: .9rem; }

.hero-art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.hero-icon-wrap {
  position: relative;
  width: clamp(220px, 60vw, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 28%;
  box-shadow: var(--shadow-lg);
  background: var(--purple-800);
  overflow: hidden;
  transform: rotate(-3deg);
}
.hero-icon-wrap::after {
  content: "";
  position: absolute; inset: -30%;
  background: radial-gradient(closest-side, rgba(244,123,160,.45), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.hero-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* floating pills */
.float {
  position: absolute;
  background: #fff;
  color: var(--purple-900);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.pill-1 { top: 6%; left: 0; transform: rotate(-6deg); }
.pill-2 { bottom: 12%; right: 2%; transform: rotate(4deg); background: var(--pink-100); color: var(--purple-900); }
.pill-3 { bottom: 0; left: 8%; transform: rotate(-2deg); background: var(--purple-50); }

@media (max-width: 540px) {
  .pill-1 { top: -6px; }
  .pill-2 { right: -4px; }
}

/* ---------- WHY ---------- */
.why { padding: 80px 0; background: var(--cream-100); }
.why-grid {
  margin-top: 44px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-icon {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--purple-50);
  border-radius: 14px;
  margin-bottom: 16px;
}
.why-card h3 { margin: 0 0 6px; }
.why-card p  { margin: 0; color: var(--ink-soft); }

/* ---------- FEATURES ---------- */
.features {
  padding: 90px 0 100px;
  background:
    linear-gradient(180deg, var(--cream-100), var(--cream-200));
}
.feature-grid {
  margin-top: 48px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card:nth-child(2) { background: var(--pink-100); }
.feature-card:nth-child(3) { background: var(--purple-800); color: var(--cream-100); }
.feature-card:nth-child(3) h3 { color: var(--cream-100); }
.feature-card:nth-child(3) p,
.feature-card:nth-child(3) .feature-num { color: rgba(251, 244, 228, 0.78); }
.feature-card:nth-child(4) { background: var(--cream-300); }

.feature-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-500);
  margin-bottom: 18px;
  letter-spacing: .08em;
}
.feature-card h3 { font-size: 1.35rem; margin: 0 0 10px; }
.feature-card p { margin: 0; }

/* ---------- QUOTE ---------- */
.quote {
  padding: 100px 0;
  background:
    radial-gradient(80% 60% at 50% 100%, rgba(244,123,160,.20), transparent 70%),
    var(--cream-100);
}
.big-quote { margin: 0; }
.big-quote h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  text-align: center;
  color: var(--purple-900);
}
.big-quote em { font-style: italic; }

/* ---------- TRUST (parents) ---------- */
.trust {
  padding: 90px 0;
  background: var(--purple-800);
  color: var(--cream-100);
}
.trust .eyebrow { color: var(--pink-400); }
.trust .section-title { color: var(--cream-100); }
.trust .lede { color: rgba(251, 244, 228, 0.84); }

.trust-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.trust-list { display: grid; gap: 14px; }
.trust-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 18px 20px;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.trust-list li span { font-size: 1.4rem; line-height: 1; }
.trust-list li strong { color: var(--cream-100); }
.trust-list li div { color: rgba(251, 244, 228, 0.78); font-size: .98rem; line-height: 1.5; }

/* ---------- PRICING ---------- */
.pricing {
  padding: 100px 0;
  background: var(--cream-100);
}
.plan-grid {
  margin-top: 48px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .plan-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.plan header { margin-bottom: 22px; }
.plan h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: var(--purple-900);
}
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.plan-price .price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--purple-900);
  line-height: 1;
}
.plan-price .per { color: var(--muted); font-weight: 500; }
.plan-alt { color: var(--muted); margin: 8px 0 0; font-size: .92rem; }
.plan-list { margin: 18px 0 28px; display: grid; gap: 10px; }
.plan-list li {
  position: relative; padding-left: 28px; color: var(--ink-soft);
}
.plan-list li::before {
  content: "";
  position: absolute; left: 4px; top: 9px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--purple-500);
  border-bottom: 2.5px solid var(--purple-500);
  transform: rotate(-45deg);
}
.plan .btn { margin-top: auto; }

.plan-featured {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--cream-100) 100%);
  border: 2px solid var(--purple-800);
  box-shadow: var(--shadow);
}
.plan-featured h3, .plan-featured .price { color: var(--purple-900); }
.plan-featured .plan-list li::before { border-color: var(--pink-500); }
.plan-badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--pink-500);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(244,123,160,.4);
}

/* ---------- STABLES ---------- */
.stables { padding: 100px 0; background: var(--cream-100); }
.stables-card {
  background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
  color: var(--cream-100);
  padding: clamp(36px, 5vw, 64px);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stables-card::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(closest-side, rgba(244,123,160,.45), transparent 70%);
  top: -60px; right: -60px;
  pointer-events: none;
}
@media (min-width: 880px) {
  .stables-card { grid-template-columns: 1.4fr 1fr; gap: 48px; }
}
.stables .eyebrow { color: var(--pink-400); }
.stables .section-title { color: var(--cream-100); margin-bottom: 8px; }
.stables .lede { color: rgba(251, 244, 228, 0.86); }
.stables-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; position: relative; z-index: 1; }
.stables-cta .btn-primary {
  background: var(--cream-100); color: var(--purple-900);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.stables-cta .btn-primary:hover { background: #fff; }
.stables-cta .muted { color: rgba(251, 244, 228, 0.7); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--purple-900);
  color: rgba(251, 244, 228, 0.78);
  padding: 64px 0 28px;
}
.footer-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.2fr 2fr; }
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 12px; }
.footer-name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--cream-100);
  margin: 0;
  font-size: 1.2rem;
}
.footer-brand .small { margin: 2px 0 0; color: rgba(251, 244, 228, 0.6); }

.footer-nav {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.footer-h {
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink-400);
  font-weight: 600;
  margin: 0 0 14px;
}
.footer-nav a {
  display: block;
  padding: 6px 0;
  color: rgba(251, 244, 228, 0.78);
}
.footer-nav a:hover { color: var(--cream-100); }

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 244, 228, 0.10);
}
.footer-bottom .muted { color: rgba(251, 244, 228, 0.55); }

/* ---------- language picker (root /) ---------- */
.picker-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(50% 50% at 0% 0%, rgba(244, 123, 160, 0.18), transparent 70%),
    radial-gradient(60% 60% at 100% 100%, rgba(110, 91, 194, 0.15), transparent 70%),
    var(--cream-100);
  padding: 32px 18px;
}
.picker {
  width: 100%;
  max-width: 560px;
}
.picker-card {
  background: #fff;
  border-radius: 32px;
  padding: 44px 32px 36px;
  box-shadow: 0 30px 80px rgba(42, 27, 93, 0.18);
  border: 1px solid var(--line);
  text-align: center;
}
.picker-icon-wrap {
  width: 128px;
  aspect-ratio: 1 / 1;
  border-radius: 28%;
  margin: 0 auto 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(42, 27, 93, 0.22);
}
.picker-icon-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.picker-brand {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.2rem;
  margin: 0 0 10px;
  color: var(--purple-900);
  letter-spacing: -0.01em;
}
.picker-launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-100);
  color: var(--purple-900);
  font-weight: 600;
  font-size: .85rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 123, 160, 0.30);
  margin: 0 0 28px;
}
.picker-launch .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-500);
  animation: launchPulse 2.2s ease-in-out infinite;
}
.picker-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 12px;
  text-align: left;
}
.picker-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--cream-200);
  color: var(--purple-900);
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.picker-link:hover {
  background: #fff;
  border-color: var(--purple-500);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(42, 27, 93, 0.10);
}
.picker-flag { font-size: 1.4rem; flex-shrink: 0; }
.picker-text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.picker-lang {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--purple-900);
}
.picker-tagline {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.picker-arrow {
  font-size: 1.2rem;
  color: var(--purple-500);
  flex-shrink: 0;
}
.picker-foot {
  margin: 28px 0 0;
  font-size: .8rem;
  line-height: 1.6;
  color: var(--muted);
}
.picker-foot strong { color: var(--ink-soft); font-weight: 600; }
.picker-foot a { color: var(--purple-700); text-decoration: underline; }

/* ---------- launch chip (pre-launch coming-soon pill) ---------- */
.launch-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(180deg, #FFFFFF, var(--pink-100));
  color: var(--purple-900);
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  margin: 0 0 22px;
  border: 1px solid rgba(244, 123, 160, 0.30);
  box-shadow: 0 6px 18px rgba(244, 123, 160, 0.20);
}
.launch-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-500);
  box-shadow: 0 0 0 0 rgba(244, 123, 160, 0.6);
  animation: launchPulse 2.2s ease-in-out infinite;
}
@keyframes launchPulse {
  0%   { box-shadow: 0 0 0 0 rgba(244, 123, 160, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(244, 123, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 123, 160, 0); }
}

/* ---------- language switcher ---------- */
.lang {
  display: inline-flex;
  align-items: center;
  background: rgba(42, 27, 93, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.lang a {
  display: inline-block;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-transform: uppercase;
  transition: color .15s ease, background .15s ease;
}
.lang a:hover { color: var(--purple-800); }
.lang a[aria-current="true"] {
  background: var(--purple-800);
  color: var(--cream-100);
  cursor: default;
}
.site-header .header-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* ---------- legal / doc pages ---------- */
.doc {
  padding: 48px 0 80px;
  background: var(--cream-100);
}
.doc-inner {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 22px;
}
.doc-eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple-500);
  margin: 0 0 .9em;
}
.doc h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .25em;
}
.doc .updated {
  color: var(--muted);
  font-size: .92rem;
  margin: 0 0 32px;
}
.doc .toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 0 0 40px;
}
.doc .toc p {
  font-weight: 600;
  color: var(--purple-900);
  margin: 0 0 10px;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.doc .toc ol {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  display: grid;
  gap: 6px;
}
.doc .toc a { color: var(--ink-soft); }
.doc .toc a:hover { color: var(--purple-800); text-decoration: underline; }

.doc h2 {
  font-size: 1.45rem;
  margin: 48px 0 14px;
  scroll-margin-top: 88px;
  color: var(--purple-900);
}
.doc h3 {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--purple-900);
  margin: 24px 0 8px;
}
.doc p, .doc li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.doc p { margin: 0 0 14px; }
.doc ul, .doc ol.list {
  margin: 0 0 18px;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}
.doc ul li::marker { color: var(--purple-500); }
.doc strong { color: var(--purple-900); }
.doc a:not(.btn) {
  color: var(--purple-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.doc a:not(.btn):hover { color: var(--purple-800); }
.doc .callout {
  background: var(--purple-50);
  border: 1px solid rgba(110, 91, 194, 0.20);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin: 18px 0 24px;
  color: var(--ink);
}
.doc .callout p:last-child { margin-bottom: 0; }
.doc .meta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 28px 0;
}
.doc .meta-card p { margin: 4px 0; }

/* simple page header for legal pages (no hero) */
.page-head {
  padding: 56px 0 0;
  background: var(--cream-100);
}
.page-head .container { padding-inline: 22px; }

/* faq */
.faq { display: grid; gap: 10px; margin: 12px 0 20px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 22px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--purple-900);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--purple-500);
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; }

/* footer language strip */
.footer-lang {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-lang a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(251, 244, 228, 0.6);
  padding: 4px 0;
}
.footer-lang a[aria-current="true"] { color: var(--cream-100); }
.footer-lang a:hover { color: var(--cream-100); }

/* footer company block */
.footer-company {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 244, 228, 0.10);
  display: grid;
  gap: 6px;
  color: rgba(251, 244, 228, 0.6);
  font-size: .85rem;
  line-height: 1.6;
}
.footer-company strong { color: rgba(251, 244, 228, 0.85); font-weight: 600; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
