/* =========================
   Executive Positioning Framework™
   Boardroom Noir (Deep Green)
   ========================= */

:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-2: #fbf9f4;

  --text: #111111;
  --muted: #4b4b4b;

  --accent: #0f4a3c; /* deep green */
  --accent-2: #0b3a2f;

  --line: #e6e0d6;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 18px;

  --container: 980px;
  --reading: 780px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 52px 0;
}

@media (max-width: 720px) {
  .section {
    padding: 40px 0;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 224, 214, 0.8);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(15, 74, 60, 0.08);
}

.brand-title {
  font-weight: 650;
  letter-spacing: 0.2px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.2px;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 74, 60, 0.18);
}

.btn-primary:hover {
  background: var(--accent-2);
}

.btn-secondary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(15, 74, 60, 0.18);
}

.btn-secondary:hover {
  background: var(--accent-2);
}

.full {
  width: 100%;
}

.hero {
  padding-top: 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-headline {
  margin: 0 0 14px 0;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.8px;
}

@media (max-width: 720px) {
  .hero-headline {
    font-size: 34px;
  }
}

.hero-line {
  display: block;
}

.accent {
  color: var(--accent);
}

.lead {
  width: min(var(--reading), 100%);
  font-size: 16.5px;
}

.lead p {
  margin: 0;
}

.lead .spacer {
  height: 10px;
}

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.micro {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 10px;
  border-radius: 999px;
}

.hero-aside .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

.hero-aside .card + .card {
  margin-top: 12px;
}

.card.subtle {
  background: var(--surface-2);
}

.card-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.checklist,
.xlist {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.checklist li,
.xlist li {
  margin: 8px 0;
}

.section-head h2 {
  margin: 0 0 14px 0;
  font-size: 26px;
  letter-spacing: -0.3px;
}

.prose {
  width: min(var(--reading), 100%);
  color: var(--text);
}

.prose p {
  margin: 0 0 12px 0;
}

.prose ul {
  margin: 0 0 14px 18px;
  color: var(--muted);
}

.prose li {
  margin: 8px 0;
}

.divider {
  height: 1px;
  background: var(--line);
  margin-top: 26px;
}

.emphasis-block {
  background: #ffffff;
  border: 1px solid rgba(15, 74, 60, 0.25);
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: 0 12px 28px rgba(15, 74, 60, 0.12);
}

.emphasis-block .big {
  font-size: 18px;
  margin-top: 6px;
}

.stacked {
  background: rgba(15, 74, 60, 0.06);
  border-left: 4px solid rgba(15, 74, 60, 0.35);
  padding: 12px 14px;
  border-radius: 12px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.offer-card.featured {
  outline: 2px solid rgba(15, 74, 60, 0.22);
}

.offer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.offer-top h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.price {
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.2px;
}

.offer-intro {
  margin: 12px 0 0 0;
  color: var(--muted);
}

.offer-body {
  margin-top: 10px;
  color: var(--muted);
  flex: 1;
}

.offer-body ul {
  margin: 6px 0 12px 18px;
}

.offer-body li {
  margin: 8px 0;
}

.label {
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.58);
  margin: 14px 0 6px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 720px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.offer-note {
  margin: 10px 0 0 0;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.58);
}

.two-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 920px) {
  .two-panel {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

.panel-muted {
  background: var(--surface-2);
}

.panel h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  letter-spacing: -0.2px;
}

.panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.panel li {
  margin: 8px 0;
}

.steps {
  width: min(var(--reading), 100%);
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.steps li {
  margin: 10px 0;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

@media (max-width: 920px) {
  .cta-split {
    grid-template-columns: 1fr;
  }
}

.cta-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

.cta-box h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.muted {
  color: rgba(17, 17, 17, 0.58);
  margin: 0 0 12px 0;
}

.final-note {
  width: min(var(--reading), 100%);
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.final-note h2 {
  margin: 0 0 10px 0;
  font-size: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-title {
  font-weight: 750;
}

.footer-subtitle {
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  margin-top: 4px;
}

.footer-link {
  color: rgba(17, 17, 17, 0.68);
  text-decoration: none;
  margin-left: 14px;
  font-weight: 650;
  font-size: 13px;
}

.footer-link:hover {
  color: var(--text);
  text-decoration: underline;
}
