:root {
  --bg: #101614;
  --surface: rgba(255, 255, 255, 0.05);
  --text: #f2f6f4;
  --text-dim: #a8b8b2;
  --accent: #8fd8c4;
  --accent-ink: #0c2a22;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

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

a:hover {
  text-decoration: underline;
}

/* --- Header --- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
}

.brand-mark {
  color: var(--accent);
  font-size: 22px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 15px;
}

.header-cta:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

/* --- Hero --- */

.hero {
  padding: 56px 0 40px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 7vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero p {
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--text-dim);
  font-size: 19px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 19px;
  font-weight: 700;
}

.hero-cta:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.hero-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-dim);
}

/* --- Sections --- */

section {
  padding: 28px 0;
}

section h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

section p {
  color: var(--text-dim);
}

.steps {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 18px 16px 58px;
  border-radius: 18px;
  background: var(--surface);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 15px;
}

.faq details {
  border-radius: 16px;
  background: var(--surface);
  padding: 4px 18px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  padding: 12px 0;
  font-weight: 600;
  color: var(--text);
}

.faq p {
  margin: 0 0 16px;
}

.article-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-list a {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
}

.article-list a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.09);
}

/* --- Article pages --- */

.article {
  padding: 24px 0;
}

.article h1 {
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1.2;
  margin: 0 0 8px;
}

.article .meta {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 24px;
}

.article h2 {
  font-size: 22px;
  margin: 32px 0 8px;
}

.article p,
.article li {
  color: var(--text-dim);
  font-size: 17px;
}

.article strong {
  color: var(--text);
}

.cta-box {
  margin: 32px 0;
  padding: 24px;
  border-radius: 20px;
  background: rgba(143, 216, 196, 0.1);
  text-align: center;
}

.cta-box p {
  margin: 0 0 16px;
  color: var(--text);
}

.disclaimer {
  margin-top: 32px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--surface);
  font-size: 14px;
  color: var(--text-dim);
}

/* --- Legal pages --- */

.legal h1 {
  font-size: 30px;
}

.legal h2 {
  font-size: 20px;
  margin-top: 28px;
}

.legal p,
.legal li {
  color: var(--text-dim);
  font-size: 16px;
}

.placeholder {
  background: rgba(255, 200, 120, 0.15);
  border-radius: 4px;
  padding: 0 4px;
}

/* --- Footer --- */

.site-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  color: var(--text-dim);
}

.site-footer a {
  color: var(--text-dim);
}

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

/* --- Consent banner --- */

.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  background: #1a2320;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.consent-banner p {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--text);
}

.consent-banner p a {
  color: var(--accent);
}

.consent-actions {
  display: flex;
  gap: 10px;
}

.consent-actions button {
  flex: 1;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.consent-accept {
  background: var(--accent);
  color: var(--accent-ink);
}

.consent-decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}
