/*  Bonvoyage marketing + legal pages — self-contained dark-glass
    styles. Lives under /bonvoyage on the epochtech.ai Vercel
    deployment but doesn't depend on the parent site's stylesheet. */

:root {
  --bg: #0f0f1a;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-border: rgba(255, 255, 255, 0.10);
  --fg: #f4f4f7;
  --fg-muted: rgba(244, 244, 247, 0.66);
  --fg-faint: rgba(244, 244, 247, 0.42);
  --accent: #ffb16e;
  --accent-2: #d573dc;
  --max: 720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro",
    "Helvetica Neue", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

body {
  background:
    radial-gradient(circle at 75% 12%, rgba(255, 220, 160, 0.18), transparent 55%),
    radial-gradient(circle at 18% 78%, rgba(213, 115, 220, 0.18), transparent 50%),
    var(--bg);
  min-height: 100vh;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px 96px;
}

header.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

header.brand .logo {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background:
    linear-gradient(180deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

header.brand .wordmark {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h2 {
  font-size: 22px;
  margin: 48px 0 12px;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h3 {
  font-size: 16px;
  margin: 24px 0 8px;
  font-weight: 600;
}

p, li {
  color: var(--fg-muted);
  font-size: 16px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.tagline {
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 36px;
  max-width: 540px;
}

.feature {
  border: 1px solid var(--bg-card-border);
  background: var(--bg-card);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 12px 0;
}

.feature h3 { margin-top: 0; color: var(--fg); }

ul { padding-left: 1.25em; }

.fineprint {
  font-size: 14px;
  color: var(--fg-faint);
  margin-top: 64px;
  border-top: 1px solid var(--bg-card-border);
  padding-top: 16px;
}

.fineprint a { color: var(--fg-faint); text-decoration: underline; }

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.cta.primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 6px 20px rgba(213, 115, 220, 0.25);
}

.cta.secondary {
  background: var(--bg-card);
  color: var(--fg);
  border: 1px solid var(--bg-card-border);
}

code, pre {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 2px 6px;
}
