:root {
  --bg: #0b1220;
  --bg-top: #0a111d;
  --panel: rgba(18,26,43,0.95);
  --panel-soft: rgba(255,255,255,0.04);
  --text: #e8edf5;
  --muted: #a9b4c7;
  --accent: #c7a86d;
  --accent-soft: #ead8b3;
  --border: rgba(255,255,255,0.08);
  --max: 1120px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top right, rgba(199,168,109,0.10), transparent 28%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.7;
}

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 14, 24, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.brand {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 15px;
}

.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  border: 1px solid rgba(199,168,109,0.35);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--accent-soft);
  background: rgba(199,168,109,0.08);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: #fff;
  font-weight: 600;
}

.inner-page-title {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 16px;
  color: #fff;
  font-weight: 600;
}

h3 {
  color: #fff;
  font-size: 22px;
  margin: 18px 0 12px;
}

.subhead {
  color: var(--accent-soft);
  font-size: clamp(20px, 2.5vw, 28px);
  margin: 0 0 24px;
  line-height: 1.35;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  max-width: 760px;
}

.hero-image-frame {
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 48px rgba(0,0,0,0.28);
  background: #ffffff;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-size: 15px;
  transition: 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: #111827;
  font-weight: 600;
}

.button-primary:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--accent-soft);
  background: transparent;
}

.button-secondary:hover {
  background: rgba(199,168,109,0.08);
  text-decoration: none;
}

.trust-line {
  margin-top: 18px;
  color: #b8c2d3;
  font-size: 15px;
  max-width: 760px;
}

.section {
  padding: 18px 0 10px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.panel {
  background: linear-gradient(180deg, rgba(18,26,43,0.95) 0%, rgba(15,22,36,0.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.panel p,
.panel li {
  color: var(--muted);
  font-size: 17px;
}

.statement-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.statement {
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.statement strong { color: #fff; }

.feature-list {
  margin: 0 0 18px;
  padding-left: 20px;
}

.linkline {
  font-size: 20px;
}

.note,
.small-note {
  color: #c7d1e0;
  opacity: 0.92;
}

.site-footer {
  padding: 38px 0 56px;
}

.footer-wrap {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.site-footer p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

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

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-image {
    max-width: 360px;
  }
}
