* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
.system-copy h2,
.offer-card h3,
.final-cta h2 {
  font-family: var(--font-display);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4vw, 3.4rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h3 {
  line-height: 1.18;
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow,
.label {
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.label {
  margin-bottom: 14px;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.eyebrow-copper,
.copper-text {
  color: var(--copper);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 104px;
  border-bottom: 1px solid rgba(16, 42, 42, 0.14);
  background: rgba(248, 246, 240, 0.96);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  width: 212px;
}

.brand img {
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-links > a:not(.button) {
  position: relative;
}

.nav-links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--green);
  content: "";
  transition: transform 180ms ease;
}

.nav-links > a:not(.button):hover::after,
.nav-links > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 36px;
  padding: 8px;
  border: 1px solid rgba(16, 42, 42, 0.35);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 4px 0;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: var(--green);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}

.button-small {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 0.84rem;
}

.button-copper {
  border-color: var(--copper);
  background: var(--copper);
}

.button-copper:hover,
.button-copper:focus-visible {
  border-color: var(--white);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 0.94rem;
  font-weight: 700;
}

.text-link span,
.offer-meta a span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span,
.offer-meta a:hover span,
.offer-meta a:focus-visible span {
  transform: translateX(4px);
}

.hero {
  overflow: hidden;
  background: var(--paper-bright);
}

.hero-grid {
  display: grid;
  min-height: 860px;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) 464px;
  padding-block: 76px;
}

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

.hero h1 {
  max-width: 760px;
  margin-bottom: 48px;
  font-size: clamp(4rem, 6.7vw, 5.65rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  color: var(--green);
  font-weight: 600;
}

.lead {
  max-width: 710px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
}

.actions {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-art {
  width: 100%;
  box-shadow: 0 24px 60px rgba(16, 42, 42, 0.12);
}

.hero-art img {
  width: 100%;
  height: auto;
}

.proof-strip {
  background: var(--ink);
  color: var(--white);
}

.proof-grid {
  display: grid;
  min-height: 148px;
  align-items: center;
  gap: 34px;
  grid-template-columns: 2.6fr repeat(3, 0.72fr);
  padding-block: 28px;
}

.proof-audience {
  padding-right: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-audience .label {
  margin-bottom: 8px;
  color: var(--sage);
}

.proof-audience > p:last-child {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.proof-item strong {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.proof-item span {
  color: var(--sage);
  font-size: 0.78rem;
}

.split-layout {
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.section-intro {
  max-width: 530px;
}

.section-intro > p:last-child,
.section-lead,
.system-copy > p:last-child,
.credibility-grid > div > p:last-child {
  color: var(--muted);
  font-size: 1.03rem;
}

.trigger-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trigger-list li {
  display: grid;
  gap: 22px;
  grid-template-columns: 46px 1fr;
  padding: 30px 0;
  border-top: 1px solid rgba(16, 42, 42, 0.16);
}

.trigger-list li:last-child {
  border-bottom: 1px solid rgba(16, 42, 42, 0.16);
}

.trigger-list > li > span {
  color: var(--copper);
  font-family: var(--font-mono);
  font-size: 0.86rem;
}

.trigger-list h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  font-weight: 700;
}

.trigger-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.system-section {
  background: var(--ink);
  color: var(--white);
}

.system-grid {
  display: grid;
  align-items: center;
  gap: 82px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.system-copy {
  max-width: 490px;
}

.system-copy h2 {
  font-size: clamp(2.75rem, 4.5vw, 3.65rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.system-copy > p:last-child {
  color: var(--sage);
}

.system-layers {
  display: grid;
  gap: 14px;
}

.system-layers article {
  position: relative;
  display: grid;
  min-height: 116px;
  align-content: center;
  padding: 24px 102px 22px 28px;
  border-radius: 3px;
  background: var(--green-dark);
}

.system-layers article.active {
  background: var(--copper);
}

.system-layers .label {
  margin-bottom: 8px;
  color: var(--copper);
}

.system-layers .active .label {
  color: var(--white);
}

.system-layers h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.system-layers article > span {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  color: #7e9f94;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.system-layers .active > span {
  color: var(--white);
}

.engagements {
  background: var(--warm);
}

.engagements .section-lead {
  margin-bottom: 60px;
}

.offer-grid {
  display: grid;
  align-items: start;
  gap: 36px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  display: flex;
  min-height: 550px;
  flex-direction: column;
  padding: 34px 30px 28px;
  border-top: 7px solid var(--ink);
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 42, 42, 0.04);
}

.offer-card:first-child {
  border-top-color: var(--copper);
}

.offer-card-featured {
  min-height: 610px;
  border-top-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.offer-card .label {
  color: var(--green);
}

.offer-card-featured .label {
  color: var(--mist);
}

.offer-card h3 {
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.offer-promise {
  margin-bottom: 28px;
  color: var(--green);
  font-size: 0.93rem;
  font-weight: 700;
}

.offer-card-featured .offer-promise {
  color: var(--white);
}

.offer-card > p:not(.label):not(.offer-promise) {
  padding-top: 28px;
  border-top: 1px solid rgba(16, 42, 42, 0.14);
  color: var(--muted);
  font-size: 0.86rem;
}

.offer-card-featured > p:not(.label):not(.offer-promise) {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: var(--mist);
}

.offer-card ul,
.fit-card ul {
  margin: 10px 0 32px;
  padding: 0;
  list-style: none;
}

.offer-card li,
.fit-card li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 0.86rem;
}

.offer-card li::before,
.fit-card li::before {
  position: absolute;
  left: 0;
  content: "+";
  font-weight: 700;
}

.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 42, 42, 0.14);
}

.offer-card-featured .offer-meta {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.offer-meta strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.offer-meta a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.process {
  background: var(--white);
}

.process h2 {
  margin-bottom: 68px;
}

.process-steps {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 32px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-steps::before {
  position: absolute;
  z-index: 0;
  top: 27px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
}

.process-steps li {
  position: relative;
  z-index: 1;
}

.process-steps li > span {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  place-items: center;
  border: 2px solid var(--copper);
  border-radius: 50%;
  background: var(--paper);
  color: var(--copper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.process-steps li:first-child > span {
  background: var(--copper);
  color: var(--white);
}

.process-steps li:last-child > span {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.process-steps h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.process-steps p {
  max-width: 185px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.credibility {
  background: var(--mist);
}

.credibility-grid {
  display: grid;
  align-items: center;
  gap: 86px;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.credibility-grid > div {
  max-width: 590px;
}

.fit-card {
  padding: 34px;
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 42, 42, 0.07);
}

.fit-card ul {
  margin-top: 0;
}

.fit-card li {
  padding-block: 8px;
  font-weight: 600;
}

.fit-card > p:last-child {
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 42, 42, 0.14);
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-section {
  background: var(--paper-bright);
}

.faq-layout {
  display: grid;
  gap: 86px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.faq-list {
  border-top: 1px solid rgba(16, 42, 42, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(16, 42, 42, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--copper);
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.2rem;
}

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

.faq-list details p {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--muted);
}

.final-cta {
  padding: 70px 0;
  background: var(--ink);
  color: var(--white);
}

.cta-grid {
  display: grid;
  align-items: center;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
}

.final-cta .eyebrow {
  margin-bottom: 16px;
}

.final-cta h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.05rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.cta-actions .button {
  width: 100%;
}

.contact-box {
  display: grid;
  gap: 7px;
  padding: 18px 20px;
  border: 1px solid rgba(244, 241, 232, 0.3);
  border-left: 3px solid var(--copper);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  color: var(--white);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-box:hover,
.contact-box:focus-visible {
  border-color: var(--copper);
  background: rgba(182, 120, 69, 0.12);
  transform: translateY(-2px);
}

.contact-box-kicker {
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact-box strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.contact-box-message {
  color: var(--mist);
  font-size: 0.76rem;
  line-height: 1.45;
}

.contact-box-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(244, 241, 232, 0.16);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-box-email > span {
  color: var(--copper);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.contact-box:hover .contact-box-email > span,
.contact-box:focus-visible .contact-box-email > span {
  transform: translateX(4px);
}

.site-footer {
  padding: 34px 0;
  background: var(--ink-deep);
  color: var(--sage);
}

.footer-grid {
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: 220px 1fr auto;
}

.footer-grid img {
  width: 200px;
}

.footer-grid p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
