:root {
  --bg-top: #08111c;
  --bg-bottom: #13263a;
  --panel: rgba(9, 18, 31, 0.72);
  --panel-strong: rgba(11, 23, 39, 0.86);
  --text: #eef3f7;
  --muted: rgba(238, 243, 247, 0.78);
  --line: rgba(255, 255, 255, 0.24);
  --accent: #d2b46f;
  --accent-soft: rgba(210, 180, 111, 0.22);
  --shadow: rgba(0, 0, 0, 0.28);
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: 'Trebuchet MS', Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(120, 155, 184, 0.18), transparent 38%),
    linear-gradient(160deg, rgba(5, 10, 17, 0.15), rgba(5, 10, 17, 0.7)),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

.page-shell {
  min-height: 100vh;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.07), transparent 32%),
    linear-gradient(320deg, rgba(255,255,255,0.05), transparent 30%);
}

.page-overlay {
  min-height: 100vh;
  padding: 32px 16px 56px;
  background: linear-gradient(-45deg, rgba(5, 12, 20, 0.54), rgba(255, 255, 255, 0.06), rgba(5, 12, 20, 0.6));
  background-size: 300% 300%;
  animation: drift 14s ease infinite;
}

@keyframes drift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto 28px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 60px var(--shadow);
  backdrop-filter: blur(6px);
}

.hero {
  padding-top: 36px;
}

.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--muted);
}

.hero-layout, .split-section {
  display: grid;
  gap: 24px;
  align-items: start;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  margin-top: 16px;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hero-subhead {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  max-width: 16ch;
  margin-bottom: 10px;
}

.hero-support, .microcopy, .fit-line, .side-note, .bullet-panel, .proof-card, .hero-seal p, .disclaimer-section p {
  color: var(--muted);
}

.hero-support, .services h2, .split-section p {
  max-width: 40rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 12px;
}

.cta-row-centered { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.78);
  color: var(--text);
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
}

.button-primary {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.button-secondary {
  background: rgba(255,255,255,0.03);
}

.hero-seal {
  background: var(--panel-strong);
  border: 1px solid rgba(210, 180, 111, 0.35);
  border-radius: 24px;
  padding: 22px;
}

.seal {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.proof-strip, .service-grid {
  display: grid;
  gap: 16px;
}

.proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card,
.service-card,
.bullet-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
}

.proof-card {
  padding: 18px;
  line-height: 1.45;
}

.section-heading-wrap { max-width: 44rem; margin-bottom: 20px; }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.service-card-featured { border-color: rgba(210, 180, 111, 0.5); box-shadow: inset 0 0 0 1px rgba(210, 180, 111, 0.18); }
.service-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(210, 180, 111, 0.14);
  color: #f3deaa;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fit-line { margin-bottom: auto; line-height: 1.55; }

.split-section { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
.bullet-panel {
  list-style: none;
  margin: 0;
  padding: 22px 24px;
}
.bullet-panel li + li { margin-top: 14px; }
.quieter-section { background: rgba(9, 18, 31, 0.6); }
.engage-section { text-align: center; }
.engage-section p { margin-left: auto; margin-right: auto; max-width: 42rem; line-height: 1.6; }
.disclaimer-section { text-align: center; }
.disclaimer-section p { max-width: 44rem; margin: 12px auto 0; line-height: 1.6; font-size: 0.95rem; }

@media (max-width: 1023px) {
  .hero-layout, .split-section, .service-grid, .proof-strip { grid-template-columns: 1fr 1fr; }
  .hero-layout > :first-child, .split-section > :first-child { grid-column: 1 / -1; }
  .service-grid article:last-child, .proof-strip div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .page-overlay { padding: 20px 16px 40px; }
  .section { padding: 22px 18px; border-radius: 22px; }
  .hero-layout, .split-section, .service-grid, .proof-strip { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .button { width: 100%; }
  .hero-subhead { max-width: none; }
}
