:root {
  --bg: #0d1321;
  --bg-soft: #151e30;
  --bg-strong: #0f1828;
  --line: #2a3447;
  --text: #f7fafc;
  --muted: #b6c2d1;
  --accent: #c78543;
  --accent-strong: #d69a5d;
  --accent-cool: #2b6cb0;
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(43, 108, 176, 0.18), transparent 28%),
    linear-gradient(180deg, #0d1321 0%, #0a101a 100%);
  color: var(--text);
  font-family: "Source Sans 3", sans-serif;
}

a {
  color: inherit;
}

.site-body {
  position: relative;
  overflow-x: hidden;
}

.background-orbit {
  position: fixed;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.18;
  pointer-events: none;
}

.background-orbit-a {
  top: 96px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
}

.background-orbit-b {
  bottom: 80px;
  left: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, var(--accent-cool), transparent 70%);
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 4vw, 48px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(199, 133, 67, 0.5);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(199, 133, 67, 0.22), rgba(43, 108, 176, 0.14));
  color: var(--accent-strong);
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.brand-name,
.hero h2,
.card h3,
.faq-card h3 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

.brand-name {
  font-size: 1.3rem;
}

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

.topnav a {
  color: var(--muted);
  text-decoration: none;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 64px;
}

.card {
  background: linear-gradient(180deg, rgba(21, 30, 48, 0.96), rgba(15, 24, 40, 0.98));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 60px var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 28px;
  padding: clamp(28px, 5vw, 56px);
  margin-bottom: 28px;
}

.hero h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.96;
  margin: 0 0 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lede,
.card p,
.faq-card dd {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.cta-row,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #10151d;
  box-shadow: 0 12px 30px rgba(199, 133, 67, 0.32);
}

.button-secondary {
  border: 1px solid rgba(182, 194, 209, 0.24);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.trust-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-proof {
  display: flex;
  align-items: stretch;
}

.proof-card {
  width: 100%;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(199, 133, 67, 0.22);
  background:
    linear-gradient(180deg, rgba(199, 133, 67, 0.08), rgba(43, 108, 176, 0.08)),
    rgba(255, 255, 255, 0.02);
}

.proof-label {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
}

.proof-note {
  margin: 16px 0 0;
  color: var(--muted);
}

.split-section,
.offer-grid,
.faq-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.split-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-section .card,
.offer-card,
.custom-card,
.faq-card {
  padding: 28px;
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.feature-list li {
  margin-bottom: 10px;
  line-height: 1.45;
}

.feature-list.compact li {
  margin-bottom: 8px;
}

.featured-offer {
  border-color: rgba(199, 133, 67, 0.35);
}

.price {
  margin: 10px 0 14px;
  color: var(--text);
  font-size: 2.2rem;
  font-weight: 700;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.custom-card {
  margin-bottom: 24px;
}

.faq-list {
  margin: 0;
}

.faq-list dt {
  margin-top: 18px;
  color: var(--text);
  font-weight: 700;
}

.faq-list dd {
  margin: 8px 0 0;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 42px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.utility-page {
  display: grid;
  place-items: center;
  padding: 48px 16px;
}

.utility-shell {
  width: min(760px, 100%);
  padding: 34px;
}

.utility-shell h1 {
  margin: 0 0 10px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.utility-shell .lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.bullet-panel {
  margin: 22px 0;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bullet-panel ul {
  margin: 0;
  padding-left: 20px;
}

.bullet-panel li {
  margin-bottom: 10px;
  color: var(--text);
}

.microcopy {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.field,
.field-full {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(182, 194, 209, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .offer-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .topnav {
    gap: 12px;
  }

  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }
}
