/* Solo Venture AI — shared legal/info page styles */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --paper: #EDE7DC;
  --paper-2: #E6DECF;
  --card: #F6F1E8;
  --ink: #23201B;
  --ink-2: #4A4339;
  --ink-3: #7C7263;
  --ink-4: #A99E8A;
  --rule: #D8CDB7;
  --accent: #3B7EA1;
  --accent-deep: #2D6182;
  --accent-soft: #DCE7EC;
  --sun: #E0A340;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.wrap { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* nav */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
nav.top .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; max-width: 1180px; margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}
.back {
  font-size: 14.5px; font-weight: 600; color: var(--ink-2); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border: 1px solid var(--rule); border-radius: 999px;
  background: var(--card); transition: border-color .2s, color .2s, transform .2s;
}
.back:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.back .a { transition: transform .2s; }
.back:hover .a { transform: translateX(-3px); }

/* header */
.legal-head { padding: 72px 0 36px; border-bottom: 1px solid var(--rule); }
.legal-head .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px;
}
.legal-head .eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); display: inline-block; }
.legal-head h1 {
  font-family: 'Lora', Georgia, serif; font-weight: 500;
  font-size: clamp(38px, 6vw, 60px); letter-spacing: -0.02em; line-height: 1.03;
}
.legal-head .updated { margin-top: 18px; font-size: 14.5px; color: var(--ink-3); }

/* body */
.legal-body { padding: 48px 0 90px; }
.legal-body .lead {
  font-size: 20px; line-height: 1.55; color: var(--ink-2);
  margin-bottom: 40px; max-width: 60ch;
}
.legal-body h2 {
  font-family: 'Lora', Georgia, serif; font-weight: 500;
  font-size: 27px; letter-spacing: -0.01em; line-height: 1.15;
  margin: 44px 0 14px; padding-top: 8px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-size: 18px; font-weight: 700; margin: 26px 0 8px; }
.legal-body p { margin-bottom: 16px; color: var(--ink-2); }
.legal-body ul { margin: 0 0 18px 0; padding-left: 0; list-style: none; }
.legal-body li {
  position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink-2);
}
.legal-body li::before {
  content: ""; position: absolute; left: 4px; top: 11px;
  width: 7px; height: 7px; background: var(--accent); border-radius: 2px; transform: rotate(45deg);
}
.legal-body a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--accent); }
.legal-body strong { color: var(--ink); }
.callout {
  background: var(--card); border: 1px solid var(--rule); border-left: 3px solid var(--accent);
  border-radius: 12px; padding: 20px 24px; margin: 28px 0; font-size: 15.5px;
}
.callout p:last-child { margin-bottom: 0; }
.contact-line {
  margin-top: 40px; padding: 24px 26px; border-radius: 14px;
  background: var(--paper-2); border: 1px solid var(--rule); font-size: 16px;
}
.contact-line strong { display: block; font-family: 'Lora', Georgia, serif; font-size: 19px; font-weight: 600; margin-bottom: 4px; color: var(--ink); }

/* footer */
footer { background: var(--ink); color: rgba(237,231,220,0.6); padding: 44px 0; }
footer .bar {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
footer .flinks { display: flex; gap: 22px; flex-wrap: wrap; }
footer a { color: rgba(237,231,220,0.6); text-decoration: none; font-size: 14px; transition: color .2s; }
footer a:hover { color: var(--accent-soft); }
footer .cp { font-size: 13.5px; }

@media (max-width: 620px) {
  .wrap { padding: 0 22px; }
  nav.top .bar { padding: 13px 22px; }
  .legal-head { padding: 48px 0 28px; }
  .legal-body { padding: 36px 0 64px; }
  footer .bar { flex-direction: column; align-items: flex-start; }
}
