/* Stirden marketing-site — minimal dark-theme legal-page styles.
   No JS dependencies. All text renders server-side from the initial HTML
   response so non-JS crawlers (Twilio TCR verification, archive bots) can
   parse content.

   Brand baseline only — Olha owns the full brand expression once the
   Web App migration lands. */

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --border: #262626;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent: #e85a2b;
  --accent-hover: #f06d3e;
  --link: #f4f4f5;
  --link-hover: #e85a2b;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue",
               Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

header {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-bottom: 48px;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header a.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}

header nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 24px;
  font-size: 14px;
}

header nav a:hover {
  color: var(--text);
}

main {
  padding-bottom: 96px;
}

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

h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 22px;
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 700;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 32px;
}

h3 {
  font-size: 17px;
  line-height: 1.4;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}

p, ul, ol {
  margin-top: 0;
  margin-bottom: 16px;
}

ul, ol {
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--link-hover);
}

strong {
  color: var(--text);
  font-weight: 600;
}

.meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 4px;
}

.callout p:last-child {
  margin-bottom: 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
  color: var(--text-muted);
  font-size: 14px;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

footer nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-right: 16px;
}

footer nav a:hover {
  color: var(--text);
}

/* Landing page hero. */
.hero {
  padding: 96px 0 64px;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 32px;
}

.hero .cta {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 120ms ease;
}

.hero .cta:hover {
  background: var(--accent-hover);
  color: var(--text);
}

@media (max-width: 640px) {
  h1 { font-size: 28px; }
  h2 { font-size: 19px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  header nav a { margin-left: 16px; font-size: 13px; }
}
