:root {
  --ink: #17211d;
  --muted: #5f6b65;
  --paper: #fbfbf7;
  --mist: #eef3ef;
  --line: #dce5de;
  --green: #235c46;
  --green-deep: #123b2d;
  --gold: #c69a3a;
  --clay: #8f4f35;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(18, 59, 45, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(251, 251, 247, 0.92);
  border-bottom: 1px solid rgba(220, 229, 222, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 20px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 62% center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 30, 24, 0.86) 0%, rgba(14, 30, 24, 0.72) 38%, rgba(14, 30, 24, 0.16) 78%),
    linear-gradient(0deg, rgba(14, 30, 24, 0.28), rgba(14, 30, 24, 0.04));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 96px 0 128px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.75rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
}

.button.primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.status-band {
  background: var(--green-deep);
  color: var(--white);
}

.status-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  gap: 12px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.82);
}

.status-inner strong {
  color: var(--white);
  white-space: nowrap;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.readiness-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.outcome-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.outcome-card,
.package-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 33, 29, 0.05);
}

.metric,
.package-kicker,
.panel-label {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.outcome-card h3,
.systems-list h3,
.process-list h3,
.package-card h3 {
  margin: 12px 0 8px;
  font-size: 1.22rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.outcome-card p,
.systems-list p,
.process-list p,
.package-card p,
.audit-copy p,
.readiness-copy p,
.contact-section p {
  margin: 0;
  color: var(--muted);
}

.audit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.audit-copy {
  max-width: 710px;
}

.audit-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.audit-copy p {
  margin-top: 20px;
  font-size: 1.06rem;
}

.audit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.audit-actions span {
  max-width: 340px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.audit-panel {
  padding: 28px;
  border: 1px solid rgba(35, 92, 70, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.audit-price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.audit-price span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-price strong {
  color: var(--green);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.9;
}

.audit-panel ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin: 22px 0 0;
  color: var(--muted);
}

.systems-section {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background: var(--mist);
}

.systems-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 34px;
  align-items: start;
}

.systems-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
}

.systems-list article {
  padding-top: 18px;
  border-top: 2px solid var(--green);
}

.signal-panel {
  position: sticky;
  top: 86px;
  padding: 22px;
  border: 1px solid rgba(35, 92, 70, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.signal-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.signal-row:last-child {
  border-bottom: 0;
}

.signal-row span {
  color: var(--muted);
}

.signal-row strong {
  color: var(--green);
}

.process-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.process-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.packages-section {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background: #f5f1e8;
}

.package-card.featured {
  border-color: rgba(35, 92, 70, 0.36);
  box-shadow: var(--shadow);
}

.package-card ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 20px 0 0;
  color: var(--muted);
}

.readiness-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 52px;
  align-items: center;
}

.readiness-checklist {
  display: grid;
  gap: 14px;
}

.readiness-checklist div {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 750;
}

.readiness-checklist span {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.contact-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto clamp(32px, 6vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 8px;
  color: var(--white);
  background: var(--green-deep);
}

.contact-section p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: rgba(14, 30, 24, 0.76);
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 72px;
  }

  .status-inner,
  .contact-section,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .outcome-grid,
  .package-grid,
  .audit-section,
  .systems-layout,
  .systems-list,
  .readiness-section {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    position: static;
  }
}

@media (max-width: 520px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .audit-actions,
  .button {
    width: 100%;
  }

  .outcome-card,
  .package-card {
    min-height: auto;
  }
}
