:root {
  --bg: #0c1118;
  --bg-soft: #121925;
  --panel: rgba(17, 24, 36, 0.88);
  --line: rgba(255, 255, 255, 0.08);
  --text: #edf1f7;
  --muted: #a8b3c6;
  --gold: #d8a24a;
  --gold-strong: #f1bc61;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 162, 74, 0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(113, 76, 32, 0.22), transparent 28%),
    linear-gradient(180deg, #0b1017 0%, #111722 100%);
}

a { color: inherit; text-decoration: none; }
.site-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}
.site-header,
.site-footer,
.hero-block,
.surface-card,
.page-hero,
.article-shell {
  backdrop-filter: blur(14px);
}
.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header {
  padding: 6px 0 22px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
}
.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.site-nav a,
.footer-links a {
  color: var(--muted);
}
.hero-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  min-height: 520px;
  align-items: stretch;
}
.hero-copy,
.hero-card,
.surface-card,
.page-hero,
.article-shell {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1,
.page-hero h1,
.article-shell h1,
.section-head h2,
.surface-card h2,
.surface-card h3 {
  font-family: 'Playfair Display', serif;
}
.hero-copy h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  line-height: 0.98;
}
.hero-text,
.section-head p,
.surface-card p,
.article-intro,
.page-hero p,
.footer-brand + p {
  color: var(--muted);
  line-height: 1.7;
}
.hero-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(160deg, rgba(216, 162, 74, 0.18), rgba(15, 21, 31, 0.9) 48%),
    var(--panel);
}
.hero-card::before,
.hero-card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(241, 188, 97, 0.65), rgba(241, 188, 97, 0.06));
}
.hero-card::before {
  width: 210px;
  height: 210px;
  top: -46px;
  right: -30px;
}
.hero-card::after {
  width: 140px;
  height: 140px;
  bottom: 30px;
  left: -36px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216, 162, 74, 0.14);
  color: var(--gold-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hero-actions,
.metric-row,
.split-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}
.hero-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}
.metric-card,
.metric-row > div {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 22px;
  background: rgba(10, 15, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.metric-card span,
.metric-row span { color: var(--muted); display: block; margin-bottom: 8px; }
.metric-card strong,
.metric-row strong { font-size: 1.1rem; }
.metric-row { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 16px; }
.btn,
.text-link {
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  font-weight: 700;
}
.btn:hover,
.text-link:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-strong), #b8781f);
  color: #0f1318;
}
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.content-section { margin-top: 28px; }
.section-head { margin-bottom: 16px; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.split-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.surface-card,
.page-hero,
.article-shell { padding: 26px; }
.preview-grid .surface-card { min-height: 100%; }
.ordered-list,
.plain-list { margin: 16px 0 0; padding-left: 20px; color: var(--muted); line-height: 1.8; }
.article-card p { min-height: 84px; }
.pricing-value {
  margin: 10px 0 12px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-strong);
}
.text-link { color: var(--gold-strong); font-weight: 700; }
.page-main { max-width: 920px; margin: 0 auto; }
.page-hero.compact { margin-top: 16px; }
.faq-listing { display: grid; gap: 18px; }
.article-shell { margin-top: 18px; }
.article-shell h1 { margin: 12px 0 14px; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.article-section,
.article-cta { margin-top: 18px; }
.site-footer {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}
@media (max-width: 920px) {
  .hero-block,
  .feature-grid,
  .split-grid,
  .hero-actions { grid-template-columns: 1fr; }
  .site-header,
  .site-footer { flex-direction: column; align-items: flex-start; }
  .hero-block { min-height: auto; }
}
