/* Legal, support and invite pages. Same tokens and type as landing.css, simpler layout. */
:root {
  --bg: #FAF7F2; --card: #FFFFFF; --ink: #1A1714; --heading: #2B2622; --muted: #6B635A;
  --accent: #FF4D2E; --accent-soft: #FFE3DC; --line: #E6DFD3; --hairline: rgba(26, 23, 20, .06);
  --shadow: rgba(26, 23, 20, .08); --faint: #A39A91;
  color-scheme: light;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 17px/1.65 "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); }

.bar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.brand img { border-radius: 8px; }
.back { display: inline-flex; align-items: center; height: 40px; padding: 0 18px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 15px; text-decoration: none; }

main { max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 40px) 64px; }
h1 { margin: 0 0 6px; font-size: clamp(36px, 6vw, 56px); line-height: 1.05; letter-spacing: -.04em; font-weight: 500; color: var(--heading); }
h2 { margin: 44px 0 10px; font-size: 22px; line-height: 1.25; letter-spacing: -.02em; font-weight: 600; color: var(--heading); }
p, li { color: var(--ink); }
ul { padding-left: 1.2em; }
li + li { margin-top: 6px; }
strong { color: var(--heading); font-weight: 600; }
.muted { color: var(--muted); font-size: 15px; }
.note { border-radius: 16px; padding: 14px 18px; background: var(--accent-soft); }

table { width: 100%; border-collapse: collapse; font-size: 15px; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--hairline); vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }

.draft { margin-top: 48px; font-size: 14px; color: var(--muted); }

.mini-foot { border-top: 1px solid var(--hairline); max-width: 1120px; margin: 0 auto; padding: 28px clamp(16px, 4vw, 40px) 48px; display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; color: var(--faint); font-size: 15px; }
.mini-foot nav { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-left: auto; }
.mini-foot a { color: var(--muted); text-decoration: none; font-weight: 500; }
.mini-foot a:hover { color: var(--accent); }

/* Invite page */
.invite { text-align: center; min-height: calc(100vh - 220px); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.invite img { border-radius: 18px; box-shadow: 0 12px 28px rgba(255, 77, 46, .25); margin-bottom: 20px; }
.invite p { color: var(--muted); max-width: 44ch; margin: 12px auto 0; }
.code { display: inline-block; margin-top: 18px; padding: 10px 18px; border-radius: 14px; background: var(--card); box-shadow: 0 10px 30px var(--shadow); font-weight: 700; font-size: 22px; letter-spacing: .12em; color: var(--heading); }
.store-btn { display: inline-flex; align-items: center; gap: 8px; height: 50px; margin-top: 24px; padding: 0 24px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; text-decoration: none; box-shadow: 0 10px 24px rgba(255, 77, 46, .28); }
[hidden] { display: none !important; }
