/* Shared styling for the Guud Passport content pages (privacy, support).
   Tokens are copied from public/index.html so the three pages look like one site.
   index.html keeps its own inline styles: it is the live deletion form and is
   deliberately left self-contained. */

:root {
  --brand: #f03060;          /* Guud Global pink-magenta (sampled from the logo) */
  --brand-dark: #c8244d;
  --ink: #14161c;
  --muted: #5b6270;
  --line: #e6e8ee;
  --bg: #ffffff;
  --surface: #f7f8fb;
  --warn-bg: #fff7e6;
  --warn-line: #e0a83a;
  --warn-ink: #7a4d05;
  --radius: 12px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, .display { font-family: "Mulish", system-ui, sans-serif; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

header { border-bottom: 1px solid var(--line); }
header .wrap { display: flex; align-items: center; gap: 12px; padding: 18px 20px; flex-wrap: wrap; }
/* Self-hosted mark. The header previously hotlinked a logo from guudmobility.com which
   now 404s. Never depend on another site's asset on a page Apple and Google review. */
header img { height: 30px; width: 30px; border-radius: 7px; }
header .brand { font-family: "Mulish", sans-serif; font-weight: 800; font-size: 17px; color: var(--ink); }
header nav { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }
header nav a { font-size: 14px; color: var(--brand-dark); text-decoration: none; }
header nav a:hover { text-decoration: underline; }
header nav a[aria-current="page"] { font-weight: 700; text-decoration: underline; }

.hero { padding: 44px 0 8px; }
.hero h1 { font-size: 30px; font-weight: 800; margin: 0 0 10px; letter-spacing: -0.01em; }
.hero p.lede { color: var(--muted); font-size: 17px; margin: 0 0 6px; }
.hero p.meta { color: var(--muted); font-size: 13px; margin: 0; }
.accent { height: 4px; width: 56px; background: var(--brand); border-radius: 4px; margin: 18px 0 0; }

main.wrap { padding-bottom: 20px; }

h2 {
  font-size: 20px; font-weight: 800; margin: 40px 0 12px;
  padding-top: 20px; border-top: 1px solid var(--line); letter-spacing: -0.01em;
}
h3 { font-size: 16px; font-weight: 700; margin: 26px 0 8px; }

p, li { margin: 0 0 14px; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 8px; }

a { color: var(--brand-dark); }

section.card {
  margin: 22px 0; padding: 22px 24px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
}
section.card :last-child { margin-bottom: 0; }
section.card h2 {
  font-size: 15px; font-weight: 700; margin: 0 0 12px; padding: 0; border: 0;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}

.warn {
  margin: 20px 0; padding: 18px 20px; border-radius: var(--radius);
  background: var(--warn-bg); border: 1px solid var(--warn-line); color: var(--warn-ink);
}
.warn :last-child { margin-bottom: 0; }

.tablewrap { overflow-x: auto; margin: 0 0 20px; }
table { border-collapse: collapse; width: 100%; min-width: 460px; font-size: 15px; }
th, td { text-align: left; vertical-align: top; padding: 10px 14px; border-bottom: 1px solid var(--line); }
th { font-family: "Mulish", sans-serif; font-weight: 700; background: var(--surface); white-space: nowrap; }

ol.steps { counter-reset: step; list-style: none; padding-left: 0; }
ol.steps li { counter-increment: step; position: relative; padding-left: 44px; margin-bottom: 18px; }
ol.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-family: "Mulish", sans-serif; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

footer { border-top: 1px solid var(--line); padding: 24px 0 48px; color: var(--muted); font-size: 13px; }
footer p { margin: 0 0 6px; }
footer a { color: var(--brand-dark); }
