

/* ============================================================
   Bleeder — shared styles for legal pages (privacy / terms / eula)
   Dark identity, matching the promo site.
   ============================================================ */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype-variations"),
       url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype-variations"),
       url("../fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../fonts/RobotoMono-VariableFont_wght.ttf") format("truetype-variations"),
       url("../fonts/RobotoMono-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../fonts/RobotoMono-Italic-VariableFont_wght.ttf") format("truetype-variations"),
       url("../fonts/RobotoMono-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --espresso: #000000;
  --espresso-2: #0a0a0a;
  --roast: #141414;
  --caramel: #3CA09D;
  --caramel-bright: #4FC8C3;
  --crema: #ffffff;
  --latte: #9AA3A2;
  --body: #C9CFCE;
  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, monospace;

  --maxw: 1140px;
  --readw: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--espresso);
  color: var(--body);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(110% 60% at 85% -10%, rgba(60,160,157,0.16), transparent 55%),
    radial-gradient(80% 50% at -10% 5%, rgba(238,114,112,0.10), transparent 50%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--caramel-bright); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------------- header ---------------- */
header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(20,13,10,0.82), rgba(20,13,10,0.4));
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; color: var(--crema); }
.brand .mark { width: 32px; height: 32px; flex: none; object-fit: cover;
  box-shadow: 0 2px 8px -2px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.08); }
.nav-cta {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 9px 18px; border-radius: 100px; color: #04201f;
  background: linear-gradient(160deg, var(--caramel-bright), var(--caramel));
  box-shadow: 0 6px 18px -6px rgba(60,160,157,0.75);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -6px rgba(60,160,157,0.9); }

/* ---------------- article ---------------- */
main { padding: clamp(40px, 7vw, 76px) 0 clamp(30px, 5vw, 56px); }
.legal { max-width: var(--readw); margin: 0 auto; }

.legal .appicon { width: 60px; height: 60px; margin-bottom: 22px;
  box-shadow: 0 8px 22px -8px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.08); }

.legal h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(30px, 5vw, 46px); line-height: 1.06; margin: 0; color: var(--crema); text-wrap: balance; }

/* "Effective Date" line — rendered as a plain <p> right after the title */
.legal h2 + p {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em;
  color: var(--caramel-bright); margin: 14px 0 30px;
}

.legal h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(19px, 2.6vw, 23px); color: var(--caramel-bright);
  margin: 2.2em 0 0.2em; }

.legal p { margin: 1em 0; font-size: clamp(15.5px, 1.8vw, 17px); color: var(--body); }

.legal ul { margin: 1em 0; padding-left: 1.3em; }
.legal li { margin: 0.55em 0; font-size: clamp(15.5px, 1.8vw, 17px); color: var(--body); }
.legal li::marker { color: var(--caramel); }

.legal a { color: var(--caramel-bright); text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(79,200,195,0.5); transition: color .2s, text-decoration-color .2s; }
.legal a:hover { color: var(--crema); text-decoration-color: var(--crema); }

/* ---------------- footer ---------------- */
footer { border-top: 1px solid var(--line-soft); padding: 46px 0 60px; margin-top: clamp(40px, 7vw, 80px); }
.foot-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { font-family: var(--font-display); font-size: 14px; color: var(--latte); transition: color .2s; }
.foot-links a:hover, .foot-links a[aria-current="page"] { color: var(--crema); }
.foot-links a[aria-current="page"] { font-weight: 600; }
.copy-line { font-family: var(--font-mono); font-size: 12.5px; color: rgba(184,162,144,0.7); letter-spacing: 0.02em; }

