/* ============================================================
   KNIGHTS VANGUARD — Global Stylesheet
   Dark gold theme for Cloudflare Pages static site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dim:    #7a6330;
  --gold-glow:   rgba(201, 168, 76, 0.15);
  --bg:          #06060a;
  --bg-2:        #0d0d14;
  --bg-3:        #121220;
  --card:        #0f0f1a;
  --card-border: rgba(201, 168, 76, 0.25);
  --text:        #e8e8f0;
  --text-muted:  #9090a8;
  --white:       #ffffff;
  --font-head:   'Cinzel', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12);
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

.gold-text    { color: var(--gold); }
.muted        { color: var(--text-muted); }
.lead         { font-size: 1.15rem; line-height: 1.8; color: var(--text-muted); max-width: 700px; }
.text-center  { text-align: center; }
strong        { color: var(--white); font-weight: 600; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }
section.alt { background: var(--bg-2); }
section.dark { background: var(--bg-3); }

.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-header {
  margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header .lead { margin: 0 auto; }
.section-header.center { text-align: center; }
.section-header.center .lead { margin: 0 auto; }

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 0;
}
.text-center .divider { margin: 20px auto 0; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6, 6, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.82rem !important;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-glow);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 14px 24px;
}
.btn-ghost:hover { color: var(--gold); }

/* ── Cards ── */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%), var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.03) 80px,
      rgba(201,168,76,0.03) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.03) 80px,
      rgba(201,168,76,0.03) 81px
    );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-family: var(--font-head);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.25));
}

.hero h1 {
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--white) 30%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Tier Cards ── */
.tier-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

.tier-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.tier-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.tier-card:hover::before { opacity: 1; }

.tier-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, var(--card) 100%);
}
.tier-card.featured::before { opacity: 1; }

.tier-badge {
  display: inline-block;
  background: var(--gold-glow);
  border: 1px solid var(--card-border);
  color: var(--gold);
  font-size: 0.7rem;
  font-family: var(--font-head);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.tier-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.tier-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.tier-price small {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.tier-supply {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tier-votes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.tier-features {
  list-style: none;
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.tier-features li {
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.tier-features li::before {
  content: '✦';
  color: var(--gold-dim);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── Benefit cards ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ── Roadmap ── */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.roadmap::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim), transparent);
}

.roadmap-item {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.roadmap-item:last-child { padding-bottom: 0; }

.roadmap-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  z-index: 1;
}
.roadmap-item.active .roadmap-dot {
  border-color: var(--gold);
  background: var(--gold-glow);
  box-shadow: 0 0 16px rgba(201,168,76,0.25);
}

.roadmap-content { padding-top: 8px; }
.roadmap-content h4 { color: var(--white); margin-bottom: 6px; }
.roadmap-content p { font-size: 0.9rem; color: var(--text-muted); }

/* ── Treasury stat cards ── */
.treasury-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ── Table ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
}
.data-table th {
  background: var(--bg-3);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
}
.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  color: var(--text);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(201,168,76,0.02); }
.data-table tfoot td {
  background: var(--bg-3);
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-head);
  border-top: 1px solid var(--card-border);
}

/* ── FAQ Accordion ── */
.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--card);
  cursor: pointer;
  text-align: left;
  border: none;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-3); }
.faq-item.open .faq-question { background: var(--bg-3); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-glow); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--bg-2);
}
.faq-answer-inner {
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-answer-inner ul {
  margin: 12px 0 12px 20px;
}
.faq-answer-inner li {
  margin-bottom: 6px;
}
.faq-answer-inner strong { color: var(--white); }

/* ── Form ── */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option { background: var(--bg-2); color: var(--white); }
.form-textarea { min-height: 130px; resize: vertical; }

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -12px; left: 20px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.step h4 { margin-bottom: 8px; font-size: 1rem; }
.step p { font-size: 0.88rem; color: var(--text-muted); }

/* ── Alert / Info Box ── */
.info-box {
  background: var(--gold-glow);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text);
}
.info-box strong { color: var(--gold); }

/* ── Footer ── */
footer {
  background: var(--bg-3);
  border-top: 1px solid var(--card-border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-col a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Page header (inner pages) ── */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%), var(--bg);
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(201,168,76,0.025) 80px, rgba(201,168,76,0.025) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(201,168,76,0.025) 80px, rgba(201,168,76,0.025) 81px);
  pointer-events: none;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { margin: 0 8px; }

/* ── Prose (legal pages) ── */
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  color: var(--white);
}
.prose h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  color: var(--gold);
}
.prose p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.prose ul { color: var(--text-muted); margin: 0 0 16px 24px; }
.prose li { margin-bottom: 8px; line-height: 1.7; }
.prose a { color: var(--gold); }
.prose a:hover { color: var(--gold-light); }

/* ── Mobile nav ── */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6,6,10,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--card-border);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  section { padding: 72px 0; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Utility ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.inline-flex { display: inline-flex; align-items: center; gap: 8px; }
.tag {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 0.75rem;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--card-border);
}

.separator {
  height: 1px;
  background: var(--card-border);
  margin: 48px 0;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
