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

:root {
  --red:    #c8292e;
  --gold:   #ffaa00;
  --navy:   #1c2d4a;
  --cream:  #fdf8f0;
  --white:  #ffffff;
  --muted:  #6b7280;
  --border: #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}

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

/* ── Nav ── */
nav {
  background: var(--navy);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: #fff; text-decoration: none; }

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 24px 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 39px,
    rgba(255,255,255,0.03) 39px,
    rgba(255,255,255,0.03) 40px
  );
  pointer-events: none;
}

.hero-icon { font-size: 64px; margin-bottom: 20px; }

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn-hero {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: box-shadow 0.15s, transform 0.1s;
}
.btn-hero:hover { box-shadow: 0 4px 20px rgba(200,41,46,0.5); transform: translateY(-1px); text-decoration: none; }

/* ── Section ── */
section { padding: 72px 24px; }
section:nth-child(even) { background: var(--white); }

.container { max-width: 960px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 52px;
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.step p  { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── Features ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--cream);
}

.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature h3   { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature p    { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── CTA ── */
.cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}

.cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}

.cta p { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 36px; }

/* ── Footer ── */
footer {
  background: #111827;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
}

footer a { color: rgba(255,255,255,0.55); }
footer a:hover { color: #fff; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 10px; }

/* ── Docs pages (Terms / Privacy) ── */
.doc-page { max-width: 720px; margin: 0 auto; padding: 60px 24px; }
.doc-page h1 { font-family: Georgia, serif; font-size: 36px; margin-bottom: 6px; }
.doc-page .doc-date { color: var(--muted); font-size: 13px; margin-bottom: 40px; }
.doc-page h2 { font-size: 18px; font-weight: 700; margin: 36px 0 10px; color: var(--navy); }
.doc-page p  { color: #374151; margin-bottom: 14px; line-height: 1.7; }
.doc-page ul { padding-left: 20px; margin-bottom: 14px; }
.doc-page ul li { color: #374151; margin-bottom: 6px; line-height: 1.7; }
