:root {
  --gold: #d4af37;
  --gold-light: #f3d878;
  --gold-dim: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.25);
  --navy-900: #0a101f;
  --navy-800: #111c35;
  --bg-light: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text-sub: #64748b;
  --text-body: #1e293b;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --px: 20px;
}

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

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  color: var(--text-body);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px var(--px) 64px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 800;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.3px;
  font-size: 18px;
}

.back-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(10, 16, 31, 0.08);
  border-radius: var(--radius-sm);
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.legal-nav a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--navy-900);
}

.hero-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: white;
  border-radius: 32px;
  padding: 44px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(10, 16, 31, 0.2);
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.hero-card h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
  max-width: 760px;
}

.hero-card p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 16px;
}

.content-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  padding: 36px;
}

.content-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--navy-900);
  margin-bottom: 18px;
}

.content-card h3 {
  font-size: 18px;
  color: var(--navy-900);
  margin: 28px 0 10px;
}

.content-card p,
.content-card li {
  color: var(--text-body);
  line-height: 1.75;
  font-size: 15px;
}

.content-card p + p,
.content-card ul {
  margin-top: 12px;
}

.content-card ul {
  padding-left: 20px;
}

.hint-box {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
}

.hint-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
}

.footer-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-sub);
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card,
  .content-card {
    padding: 24px;
    border-radius: 24px;
  }
}
