/* Othersight — shared styles for the marketing/support/privacy pages */
:root {
  --bg: #1B1418;        /* ink — warm plum-brown near-black */
  --bg-elev: #2A2024;   /* surface — cards */
  --fg: #F6EFEA;        /* cream — primary text */
  --muted: #B8ABA4;     /* warm taupe — secondary text */
  --accent: #FF7A5E;    /* coral — primary accent */
  --accent-2: #F4B8C1;  /* blush — secondary accent */
  --border: #3A2E33;    /* warm subtle border derived from surface */
  --maxw: 720px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Fredoka", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #331F1B 0%, var(--bg) 60%);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 20px;
}

.brand .brand-mark {
  width: 26px; height: 26px;
  flex: 0 0 auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255, 122, 94, .35));
}

nav a { color: var(--muted); margin-left: 18px; font-size: 15px; }
nav a:hover { color: var(--fg); text-decoration: none; }

h1 {
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.1;
  margin: 8px 0 16px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.tagline { font-size: 20px; color: var(--muted); margin: 0 0 32px; }

h2 { font-size: 24px; margin: 40px 0 12px; font-weight: 600; }
h3 { font-size: 18px; margin: 28px 0 8px; font-weight: 600; }

p, li { color: #E4D9D2; }
.muted { color: var(--muted); }

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 28px;
  margin: 20px 0;
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 8px 0 8px 44px;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 6px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1B1418; font-weight: 600; border-radius: 50%;
  font-size: 14px;
}

footer.site {
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--fg); }
