:root {
  --bg: #f7f4ee;
  --ink: #161616;
  --muted: #5f5a52;
  --line: #ddd5c8;
  --paper: #fffaf2;
  --green: #1d6b4f;
  --green-dark: #124230;
  --lime: #d9f26f;
  --coral: #ef6f4a;
  --blue: #2d6cdf;
  --shadow: 0 24px 70px rgba(33, 28, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(247, 244, 238, 0.9);
  border-bottom: 1px solid rgba(221, 213, 200, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.goal-picker {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  color: #fff;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 72px);
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button.primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.button.primary:hover,
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(29, 107, 79, 0.2);
}

.button.secondary {
  background: transparent;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.hero-stats div {
  min-width: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.7);
}

.hero-stats dt {
  font-size: 1.8rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
}

.terminal-card {
  overflow: hidden;
  border: 1px solid #24231f;
  border-radius: 8px;
  background: #171916;
  box-shadow: var(--shadow);
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: #262a24;
}

.terminal-top span {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--coral);
}

.terminal-top span:nth-child(2) {
  background: #f4c754;
}

.terminal-top span:nth-child(3) {
  background: #75d37c;
}

.terminal-body {
  padding: clamp(22px, 4vw, 34px);
  color: #f4f1e8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.96rem;
  line-height: 1.75;
}

.terminal-body span {
  color: var(--lime);
}

.terminal-body .muted {
  color: #9fa899;
}

.terminal-body ul {
  padding-left: 18px;
}

.mentor-note {
  position: absolute;
  right: -18px;
  bottom: -36px;
  max-width: 270px;
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--lime);
  box-shadow: 10px 10px 0 var(--ink);
  font-weight: 700;
}

.mentor-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 36px;
  background: var(--ink);
  color: #fffaf2;
}

.intro-band .eyebrow {
  color: var(--lime);
}

.intro-band p:not(.eyebrow) {
  color: #d6d0c4;
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.goal-picker {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.goal-chip {
  min-height: 42px;
  padding: 0 16px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.goal-chip.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.paths-grid,
.packages-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.paths-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-card,
.package-card,
.process-grid div,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.path-card {
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.path-card.is-selected,
.package-card.is-selected {
  border-color: var(--green);
  box-shadow: 0 18px 50px rgba(29, 107, 79, 0.16);
  transform: translateY(-3px);
}

.path-tag,
.package-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.path-card p,
.package-card p,
.process-grid p,
.outcomes-copy p,
.faq p,
.contact-section p {
  color: var(--muted);
  line-height: 1.65;
}

.path-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: #393630;
  line-height: 1.7;
}

.packages-section {
  background: #ebe4d7;
}

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

.package-card {
  display: flex;
  min-height: 315px;
  padding: 24px;
  flex-direction: column;
}

.package-card.featured {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.package-card.featured .package-kicker,
.package-card.featured p,
.package-card.featured a {
  color: #f7f4ee;
}

.package-card.wide {
  grid-column: span 2;
}

.price {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 800;
}

.package-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
}

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

.process-grid div {
  padding: 24px;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--coral);
  font-weight: 800;
}

.outcomes {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.outcomes-list {
  display: grid;
  gap: 12px;
}

.outcomes-list div {
  padding: 18px 20px;
  border-left: 5px solid var(--green);
  background: var(--paper);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq details {
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 14px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 0.72fr);
  gap: 44px;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
  color: #fffaf2;
  background: var(--green-dark);
}

.contact-section .eyebrow {
  color: var(--lime);
}

.contact-section p {
  color: #dce7d6;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  border-radius: 8px;
  background: #fffaf2;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #393630;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.form-button {
  width: 100%;
}

.contact-form .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .intro-band,
  .outcomes,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .paths-grid,
  .packages-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .hero {
    padding-top: 38px;
  }

  .paths-grid,
  .packages-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .package-card.wide {
    grid-column: auto;
  }

  .mentor-note {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .site-footer {
    flex-direction: column;
  }
}
