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

:root {
  --nacht-navy: #07111f;
  --nacht-navy-2: #101d31;
  --nacht-navy-3: #172842;
  --nacht-gold: #e8a820;
  --nacht-gold-2: #f6c65b;
  --nacht-mint: #78d9a3;
  --nacht-white: #ffffff;
  --nacht-muted: #aab4c3;
  --nacht-border: rgba(255, 255, 255, 0.1);
  --nacht-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(120, 217, 163, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(232, 168, 32, 0.10), transparent 30%),
    var(--nacht-navy);
  color: var(--nacht-white);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.90);
  border-bottom: 1px solid var(--nacht-border);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--nacht-navy-2), var(--nacht-navy-3));
  border: 1px solid rgba(232, 168, 32, 0.45);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  overflow: hidden;
}

.brand-mark img { width: 40px; height: 40px; object-fit: contain; }

.brand-text { line-height: 1; }
.brand-text strong { display: block; font-size: 18px; letter-spacing: -0.4px; }
.brand-text strong span { color: var(--nacht-gold); }
.brand-text small {
  color: var(--nacht-mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--nacht-muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover { color: white; }

.nav-cta {
  background: linear-gradient(135deg, var(--nacht-gold), var(--nacht-gold-2));
  color: var(--nacht-navy);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover { opacity: 0.9; }

/* ── Page shell ── */
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

/* ── Page hero ── */
.page-hero {
  margin-bottom: 48px;
}

.page-breadcrumb {
  font-size: 13px;
  color: var(--nacht-muted);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-breadcrumb a:hover { color: white; }
.page-breadcrumb span { opacity: 0.5; }

.page-hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero h1 .accent { color: var(--nacht-gold); }

.page-hero p.lead {
  font-size: 17px;
  color: var(--nacht-muted);
  font-weight: 500;
  line-height: 1.65;
  max-width: 600px;
}

/* ── Content cards ── */
.info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--nacht-border);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 24px;
}

.info-card h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--nacht-white);
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--nacht-gold);
}

.info-card p {
  color: var(--nacht-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.info-card p:last-child { margin-bottom: 0; }

.info-card ul, .info-card ol {
  color: var(--nacht-muted);
  font-size: 15px;
  line-height: 1.7;
  padding-left: 22px;
  margin-bottom: 10px;
}

.info-card ul li, .info-card ol li { margin-bottom: 6px; }

/* ── Two-column grid ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 18px; }

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nacht-gold), var(--nacht-gold-2));
  color: var(--nacht-navy);
  font-weight: 900;
  font-size: 15px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.step-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-body p {
  font-size: 14px;
  color: var(--nacht-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Highlight pill ── */
.highlight-pill {
  display: inline-block;
  background: rgba(232,168,32,0.15);
  border: 1px solid rgba(232,168,32,0.35);
  color: var(--nacht-gold-2);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 12px;
}

/* ── FAQ accordion ── */
.faq-item {
  border-bottom: 1px solid var(--nacht-border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question:hover { color: var(--nacht-gold-2); }

.faq-arrow {
  font-size: 12px;
  color: var(--nacht-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding-bottom: 18px;
  font-size: 14px;
  color: var(--nacht-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── Contact row ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--nacht-border);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
}

.contact-tile .ct-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.contact-tile strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-tile p, .contact-tile a {
  font-size: 14px;
  color: var(--nacht-muted);
}

.contact-tile a:hover { color: white; }

/* ── Legal prose ── */
.legal-prose h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 32px 0 10px;
  color: var(--nacht-white);
}

.legal-prose h2:first-child { margin-top: 0; }

.legal-prose p {
  font-size: 14px;
  color: var(--nacht-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-prose ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-prose ul li {
  font-size: 14px;
  color: var(--nacht-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-meta {
  font-size: 13px;
  color: var(--nacht-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--nacht-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(232,168,32,0.14), rgba(120,217,163,0.10));
  border: 1px solid rgba(232,168,32,0.3);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  margin-top: 40px;
}

.cta-banner h2 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: 15px;
  color: var(--nacht-muted);
  margin-bottom: 22px;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--nacht-gold), var(--nacht-gold-2));
  color: var(--nacht-navy);
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-gold:hover { opacity: 0.9; }

/* ── Footer ── */
.footer {
  background: rgba(0,0,0,0.28);
  border-top: 1px solid var(--nacht-border);
  padding: 52px 0 0;
  margin-top: 60px;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 44px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--nacht-muted);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.footer-col ul li a {
  color: var(--nacht-muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid var(--nacht-border);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom-brand img { width: 28px; height: 28px; object-fit: contain; }

.footer-bottom p { font-size: 12px; color: var(--nacht-muted); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .nav-links { display: none; }
  .page-hero h1 { font-size: 26px; }
  .info-card { padding: 22px 18px; }
}
