/* TiToLeave — site styles. Dark editorial, brand-aligned.
   Palette + Frozen-Aura accent mirror the app's Theme.swift. */
:root {
  --bg:      #0A0908;
  --surface: #141210;
  --fg:      #F5F1EA;
  --muted:   #A29B91;
  --hair:    rgba(245, 241, 234, 0.10);
  --aura1:   #3B8FFF;
  --aura2:   #A8C8F0;
  --aura3:   #D4C8F5;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 40px 24px 96px; }
a { color: var(--aura2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Keyboard focus — visible aura ring on the dark canvas (a11y). */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--aura2);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(34px, 6vw, 54px); margin-bottom: 10px; }
h2 { font-size: 26px; margin: 46px 0 14px; }
h3 { font-size: 19px; margin: 26px 0 8px; }
p, li { margin-bottom: 14px; }
ul, ol { padding-left: 22px; margin-bottom: 14px; }
strong { color: var(--fg); }

.eyebrow {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.muted { color: var(--muted); }
.small { font-size: 14px; }
.aura {
  background: linear-gradient(135deg, var(--aura1), var(--aura2), var(--aura3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

nav.top {
  max-width: 760px; margin: 0 auto; padding: 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--hair);
}
nav.top .brand { font-family: "Fraunces", Georgia, serif; font-size: 20px; font-weight: 600; color: var(--fg); }
nav.top .links { display: flex; gap: 10px; font-size: 15px; }
nav.top .links a { color: var(--muted); padding: 10px 8px; display: inline-flex; align-items: center; min-height: 44px; }
nav.top .links a:hover { color: var(--fg); text-decoration: none; }

.cta {
  display: inline-block; margin-top: 26px; padding: 14px 30px;
  border-radius: 999px; font-weight: 600; color: #0A0908;
  background: linear-gradient(135deg, var(--aura1), var(--aura3));
}
.cta:hover { text-decoration: none; opacity: 0.92; }

.card {
  background: var(--surface); border: 1px solid var(--hair);
  border-radius: 16px; padding: 22px 24px; margin: 18px 0;
}
hr { border: none; border-top: 1px solid var(--hair); margin: 36px 0; }

table { width: 100%; border-collapse: collapse; margin: 18px 0; }
th, td {
  text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--hair);
  vertical-align: top; font-size: 15px;
}
th { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

.foot {
  margin-top: 72px; padding-top: 24px; border-top: 1px solid var(--hair);
  color: var(--muted); font-size: 14px;
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
}
.foot a { color: var(--muted); display: inline-flex; align-items: center; min-height: 44px; padding: 0 6px; margin: -10px 0; }
.foot .spacer { flex: 1; }

.lede { font-size: 19px; color: var(--fg); }
.hero-sub { font-size: 19px; color: var(--muted); margin-top: 6px; max-width: 620px; }
.steps { display: grid; gap: 14px; margin: 28px 0; }
.note { font-size: 14px; color: var(--muted); font-style: italic; }
