:root {
  --ink: #161616;
  --muted: #61605c;
  --paper: #f8f5ef;
  --surface: #ffffff;
  --sage: #819170;
  --moss: #42503c;
  --clay: #b86648;
  --sand: #e7dccb;
  --line: rgba(22, 22, 22, 0.14);
  --shadow: 0 22px 80px rgba(35, 31, 25, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::selection {
  background: var(--clay);
  color: #fff;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(248, 245, 239, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
footer,
.leader-placeholders {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--moss), var(--clay));
  border-radius: 50%;
  box-shadow: 10px 0 0 rgba(129, 145, 112, 0.45);
}

nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

nav a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #2e332a;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 11, 0.78) 0%, rgba(12, 13, 11, 0.48) 42%, rgba(12, 13, 11, 0.05) 100%),
    url("assets/hero-growth-group.png") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(40px, 8vw, 96px) clamp(18px, 6vw, 86px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c6aa;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-quote {
  max-width: 880px;
  margin: 0 0 24px;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin: 0 auto 42px;
  max-width: 1180px;
}

.section-heading.narrow {
  display: block;
  max-width: 820px;
  text-align: center;
}

.recognition-grid,
.offer-grid,
.contrast-grid,
.audience-grid,
.facts-grid,
.timeline {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.recognition-grid article,
.offer-card,
.timeline article,
.audience-grid article,
.facts-grid article,
.contrast-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
}

.recognition-grid p,
.offer-card p,
.section-note,
.timeline p,
.audience-grid p,
.copy p,
.signup p,
.facilitator-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.section-note {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 18px;
}

.offers {
  background: #fff;
}

.offer-grid {
  grid-template-columns: repeat(6, 1fr);
}

.offer-card {
  grid-column: span 2;
  display: grid;
  align-content: start;
}

.offer-card-large {
  grid-column: span 3;
}

.offer-card:nth-child(4),
.offer-card:nth-child(5) {
  grid-column: span 3;
}

.offer-label {
  display: inline-flex;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
}

.offer-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 7vw, 84px);
  max-width: 1320px;
  margin: 0 auto;
  background: #fff;
}

.copy {
  font-size: 19px;
}

.process {
  background: var(--moss);
  color: #fff;
}

.process .eyebrow,
.process p {
  color: rgba(255, 255, 255, 0.72);
}

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

.timeline article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.timeline span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--moss);
  font-weight: 900;
}

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

.contrast-grid ul {
  padding-left: 19px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.positive {
  border-top: 5px solid var(--sage) !important;
}

.negative {
  border-top: 5px solid var(--clay) !important;
}

.audience {
  background: #ece6da;
}

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

.facilitator-card,
.signup-panel {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 8px;
  background: #1f221d;
  color: #fff;
  box-shadow: var(--shadow);
}

.facilitator-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(28px, 5vw, 64px);
}

.facilitator-card p {
  color: rgba(255, 255, 255, 0.72);
}

.leader-placeholders {
  grid-column: 1 / -1;
  gap: 14px;
  flex-wrap: wrap;
}

.leader-placeholders div {
  flex: 1 1 240px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.leader-placeholders img {
  display: block;
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.leader-placeholders strong,
.leader-placeholders span {
  display: block;
}

.leader-placeholders span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
}

.facts-grid {
  grid-template-columns: repeat(5, 1fr);
}

.facts-grid article {
  min-height: 140px;
}

.facts-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.facts-grid strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
}

.faq {
  background: #fff;
}

.faq-list {
  max-width: 900px;
  margin: 38px auto 0;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--clay);
}

details[open] summary::after {
  content: "-";
}

.signup-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(28px, 6vw, 72px);
}

.thank-you {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
}

.thank-you-panel {
  width: min(860px, 100%);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  padding: clamp(32px, 7vw, 84px);
}

.thank-you-panel h1 {
  margin-bottom: 24px;
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.65;
}

.thank-you-panel .button {
  margin-top: 18px;
}

form {
  display: grid;
  gap: 16px;
}

form[hidden] {
  display: none !important;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

label span {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 15px;
  font: inherit;
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.5;
}

.form-status {
  margin: 0;
  border-left: 3px solid var(--clay);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.5;
}

.form-status[data-state="error"] {
  border-left-color: #f4c6aa;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .section-heading,
  .split,
  .facilitator-card,
  .signup-panel {
    grid-template-columns: 1fr;
  }

  .recognition-grid,
  .offer-grid,
  .timeline,
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-card,
  .offer-card-large,
  .offer-card:nth-child(4),
  .offer-card:nth-child(5) {
    grid-column: auto;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(12, 13, 11, 0.28), rgba(12, 13, 11, 0.82)),
      url("assets/hero-growth-group.png") center / cover;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 36px;
  }

  h1 {
    font-size: 48px;
  }

  .recognition-grid,
  .offer-grid,
  .timeline,
  .contrast-grid,
  .audience-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
