/* Revenue Today — shared GitHub Pages styles (matches app Theme.swift) */

:root {
  --bg: #0a0a0f;
  --card: #141418;
  --elevated: #1c1c22;
  --accent: #00c896;
  --text: #ffffff;
  --muted: #8a8a8e;
  --tertiary: #48484c;
  --stroke: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

.rt-wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.rt-header {
  margin-bottom: 2rem;
}

.rt-mark {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rt-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

.rt-sub {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.rt-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
}
.rt-nav a {
  color: var(--muted);
}
.rt-nav a:hover {
  color: var(--accent);
}

.rt-card {
  background: var(--card);
  border: 0.5px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
}

.rt-section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--tertiary);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.rt-card h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}
.rt-card h2:first-child {
  margin-top: 0;
}

.rt-card p,
.rt-card li {
  font-size: 0.9375rem;
  color: var(--muted);
}
.rt-card p strong,
.rt-card li strong {
  color: var(--text);
}

.rt-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.rt-footer {
  margin-top: 2.5rem;
  font-size: 0.8125rem;
  color: var(--tertiary);
}

.rt-list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rt-list-plain li {
  padding: 0.65rem 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}
.rt-list-plain li:last-child {
  border-bottom: none;
}
