/* SimpliExpense — dark industrial theme matching the app's Theme.swift tokens. */
:root {
  --bg: #121214;
  --surface: #212429;
  --surface-elevated: #2b2e36;
  --accent: #c8781e;        /* forge amber */
  --steel: #8c949e;
  --business: #4db873;
  --error: #e65250;
  --text: #edf0f2;
  --text-2: #a8adb5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main { max-width: 760px; margin: 0 auto; padding: 0 24px 64px; }

header.site {
  display: flex; align-items: center; gap: 12px;
  max-width: 760px; margin: 0 auto; padding: 20px 24px;
}
header.site img { width: 40px; height: 40px; border-radius: 9px; }
header.site .brand { font-weight: 700; font-size: 1.05rem; letter-spacing: 0.02em; }
header.site .brand span { color: var(--accent); }
header.site nav { margin-left: auto; display: flex; gap: 18px; }
header.site nav a { color: var(--text-2); text-decoration: none; font-size: 0.9rem; }
header.site nav a:hover { color: var(--text); }

.hero { text-align: center; padding: 56px 0 32px; }
.hero img.icon { width: 96px; height: 96px; border-radius: 22px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.hero h1 { font-size: 2.4rem; margin: 20px 0 6px; letter-spacing: -0.01em; }
.hero h1 span { color: var(--accent); }
.hero p.tagline { color: var(--text-2); font-size: 1.15rem; max-width: 32em; margin: 0 auto; }
.hero .badge {
  display: inline-block; margin-top: 28px; padding: 12px 26px;
  background: var(--accent); color: #16110a; font-weight: 700; border-radius: 12px;
  text-decoration: none; font-size: 1rem;
}
.hero .badge.soon { background: var(--surface-elevated); color: var(--text-2); font-weight: 600; }

section { margin-top: 56px; }
section h2 { font-size: 1.35rem; margin-bottom: 18px; color: var(--text); }
section h2::before { content: "▸ "; color: var(--accent); }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.feature {
  background: var(--surface); border-radius: 14px; padding: 20px;
  border: 1px solid rgba(140, 148, 158, 0.15);
}
.feature h3 { font-size: 1rem; margin-bottom: 6px; color: var(--accent); }
.feature p { font-size: 0.92rem; color: var(--text-2); }

.shots { display: flex; gap: 14px; overflow-x: auto; padding: 8px 0 16px; }
.shots img {
  width: 200px; border-radius: 18px; flex-shrink: 0;
  border: 1px solid rgba(140, 148, 158, 0.25);
}

.privacy-callout {
  background: var(--surface); border-left: 4px solid var(--business);
  border-radius: 10px; padding: 18px 20px; color: var(--text-2); font-size: 0.95rem;
}
.privacy-callout strong { color: var(--text); }

article h1 { font-size: 1.9rem; margin: 40px 0 8px; }
article p.updated { color: var(--steel); font-size: 0.85rem; margin-bottom: 28px; }
article h2 { font-size: 1.15rem; margin: 28px 0 8px; color: var(--accent); }
article p, article li { color: var(--text-2); font-size: 0.97rem; }
article ul { padding-left: 22px; margin: 8px 0; }
article a { color: var(--accent); }
article strong { color: var(--text); }

.faq dt { font-weight: 600; color: var(--text); margin-top: 22px; }
.faq dd { color: var(--text-2); margin: 6px 0 0; font-size: 0.95rem; }

footer {
  border-top: 1px solid rgba(140, 148, 158, 0.18);
  margin-top: 72px; padding: 28px 24px; text-align: center;
  color: var(--steel); font-size: 0.85rem;
}
footer a { color: var(--text-2); text-decoration: none; margin: 0 10px; }
footer a:hover { color: var(--text); }

/* fleet page */
.callout-accent { border-left-color: var(--accent); }
header.site .brand em { color: var(--text-2); font-weight: 600; }
