:root {
  --green: #0b7d44;
  --green-dark: #075a33;
  --green-deep: #064229;
  --mint: #dff5e8;
  --acid: #c8ef6d;
  --paper: #f4f1e8;
  --paper-2: #ebe7dc;
  --ink: #151916;
  --muted: #687068;
  --line: #c9cdc5;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(18, 44, 30, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.topline {
  background: var(--green-deep);
  color: #dff5e8;
  text-align: center;
  padding: 8px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(21,25,22,.16);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  font-weight: 900;
  letter-spacing: -.075em;
  font-size: 25px;
  line-height: 1;
}
.brand-do { margin-right: 5px; }
.brand-lah {
  background: var(--green);
  color: white;
  padding: 5px 8px 6px;
  transform: rotate(-2deg);
}
.brand-plus {
  color: var(--green);
  font-size: 28px;
  margin-left: 3px;
}

.nav { display: flex; gap: 28px; font-size: 13px; font-weight: 700; }
.nav a { opacity: .75; transition: opacity .2s ease; }
.nav a:hover { opacity: 1; }

.site-header .button-small { justify-self: end; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  background: var(--green);
  color: white;
  border: 1px solid var(--green);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); }
.button-small { min-height: 40px; padding: 0 16px; }

.section-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-block { padding-top: 125px; padding-bottom: 125px; }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 90px;
}

.eyebrow, .section-index {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--green-dark); }
.eyebrow-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 12px 0 0 var(--acid); }

.hero h1 {
  margin: 22px 0 22px;
  font-size: clamp(58px, 7.2vw, 102px);
  line-height: .86;
  letter-spacing: -.07em;
  max-width: 720px;
}
.hero h1 span {
  display: inline-block;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -.055em;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  max-width: 620px;
  color: #454b46;
}
.hero-actions { display: flex; gap: 24px; align-items: center; margin-top: 30px; }
.text-link {
  font-weight: 800;
  font-size: 13px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.text-link span { display: inline-block; margin-left: 6px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 3px); }
.microcopy { margin-top: 20px; color: var(--muted); font-size: 12px; }

.hero-board {
  position: relative;
  background: #fcfbf7;
  border: 1px solid #c8c9c3;
  padding: 30px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.hero-board::before {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 1px solid #c8c9c3;
  z-index: -1;
}
.board-pin { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: inset 0 0 0 2px #fcfbf7, 0 2px 5px rgba(0,0,0,.2); }
.pin-1 { top: 14px; left: 14px; }
.pin-2 { top: 14px; right: 14px; }
.board-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid #d8dad4; }
.board-kicker { font-size: 9px; font-weight: 900; letter-spacing: .15em; color: var(--muted); }
.board-header h2 { margin: 7px 0 0; font-size: 24px; letter-spacing: -.035em; }
.status-chip { background: var(--mint); color: var(--green-dark); padding: 8px 10px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.board-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 18px 0; }
.board-meta div { background: #f1efe8; padding: 12px; }
.board-meta span { display: block; font-size: 9px; text-transform: uppercase; color: var(--muted); letter-spacing: .1em; font-weight: 800; }
.board-meta strong { display: block; margin-top: 5px; font-size: 13px; }
.quote-table { border-top: 1px solid #d8dad4; }
.quote-row { display: grid; grid-template-columns: 1.6fr 1fr .8fr .5fr; gap: 8px; align-items: center; padding: 13px 8px; border-bottom: 1px solid #e0e2dc; font-size: 11px; }
.quote-head { text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 900; font-size: 9px; }
.quote-row.selected { background: var(--green); color: white; margin-left: -9px; margin-right: -9px; padding-left: 17px; padding-right: 17px; }
.tick { display: inline-flex; width: 17px; height: 17px; border-radius: 50%; background: white; color: var(--green); align-items: center; justify-content: center; margin-right: 6px; }
.recommendation { margin-top: 18px; padding: 14px 16px; border: 1px dashed #9da39b; background: #fbf8eb; }
.recommendation-label { font-size: 9px; font-weight: 900; letter-spacing: .12em; color: var(--green-dark); }
.recommendation p { margin: 7px 0 0; font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: 13px; line-height: 1.45; }
.board-footer { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.board-footer span { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; border: 1px solid #cdd0ca; padding: 6px 7px; }

.proof-strip {
  border-top: 1px solid rgba(21,25,22,.16);
  border-bottom: 1px solid rgba(21,25,22,.16);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 max(20px, calc((100% - 1180px)/2));
}
.proof-strip div { padding: 28px 22px; border-right: 1px solid rgba(21,25,22,.16); }
.proof-strip div:first-child { border-left: 1px solid rgba(21,25,22,.16); }
.proof-strip strong { font-size: 28px; letter-spacing: -.05em; color: var(--green); }
.proof-strip span { display: block; margin-top: 5px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--muted); }

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.section-heading h2 { margin: 14px 0 20px; font-size: clamp(40px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; }
.section-heading p { color: var(--muted); line-height: 1.65; font-size: 16px; max-width: 520px; }
.sticky-heading { position: sticky; top: 40px; }
.category-stack { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.category-card { display: grid; grid-template-columns: 46px 1fr 40px; gap: 18px; align-items: start; padding: 30px 0; border-bottom: 1px solid var(--line); transition: padding-left .2s ease, background .2s ease; }
.category-card:hover { padding-left: 18px; background: rgba(255,255,255,.34); }
.category-no { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--green); color: var(--green); font-size: 11px; font-weight: 900; }
.category-card h3 { margin: 2px 0 9px; font-size: 24px; letter-spacing: -.03em; }
.category-card p { margin: 0; color: var(--muted); line-height: 1.6; max-width: 550px; }
.category-arrow { font-size: 22px; color: var(--green); }

.how { background: #e7eadf; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.horizontal-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 55px; }
.horizontal-heading p { max-width: 430px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #aeb5aa; border-left: 1px solid #aeb5aa; }
.step-card { min-height: 250px; padding: 28px; border-right: 1px solid #aeb5aa; border-bottom: 1px solid #aeb5aa; position: relative; background: rgba(255,255,255,.2); }
.step-card:nth-child(2), .step-card:nth-child(5) { background: rgba(255,255,255,.45); }
.step-number { font-family: Georgia, 'Times New Roman', serif; color: var(--green); font-style: italic; }
.step-card h3 { margin: 42px 0 12px; font-size: 22px; letter-spacing: -.035em; }
.step-card p { color: var(--muted); line-height: 1.55; font-size: 14px; }
.scribble { position: absolute; right: 20px; bottom: 22px; font-family: Georgia, 'Times New Roman', serif; font-style: italic; color: var(--green); transform: rotate(-5deg); font-size: 14px; }

.consolidation-panel { background: var(--green-deep); color: white; min-height: 560px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.consolidation-copy { padding: 65px; display: flex; flex-direction: column; justify-content: center; }
.section-index.light { color: var(--acid); }
.consolidation-copy h2 { margin: 16px 0 22px; font-size: clamp(48px, 5.8vw, 80px); line-height: .92; letter-spacing: -.06em; }
.consolidation-copy p { color: #c9ddd1; line-height: 1.65; max-width: 520px; }
.mini-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.mini-tags span { border: 1px solid rgba(255,255,255,.32); padding: 9px 10px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.consolidation-visual { position: relative; background: #0d5735; min-height: 560px; }
.hub-main, .company-node, .vendor-node { position: absolute; z-index: 2; display: grid; place-items: center; text-align: center; font-weight: 900; }
.hub-main { width: 135px; height: 135px; border-radius: 50%; background: var(--acid); color: var(--green-deep); left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(-4deg); font-size: 25px; line-height: .85; letter-spacing: -.05em; }
.hub-main span { font-size: 30px; }
.company-node { width: 108px; height: 108px; background: white; color: var(--green-deep); right: 7%; top: 8%; font-size: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.vendor-node { min-width: 92px; padding: 14px; border: 1px solid rgba(255,255,255,.38); background: rgba(6,66,41,.82); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.node-a { left: 6%; top: 12%; }
.node-b { left: 8%; bottom: 16%; }
.node-c { right: 8%; bottom: 19%; }
.node-d { right: 12%; top: 41%; }
.hub-line { position: absolute; height: 1px; background: rgba(200,239,109,.55); transform-origin: left center; z-index: 1; }
.line-a { width: 220px; left: 28%; top: 43%; transform: rotate(-135deg); }
.line-b { width: 220px; left: 29%; top: 57%; transform: rotate(142deg); }
.line-c { width: 220px; left: 54%; top: 56%; transform: rotate(38deg); }
.line-d { width: 200px; left: 55%; top: 48%; transform: rotate(-18deg); }

.vendor-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.vendor-note { position: relative; background: #f8f6ef; border: 1px solid #c7cac4; padding: 52px 48px; box-shadow: 10px 12px 0 #dfe4d9; transform: rotate(-1deg); }
.tape { position: absolute; width: 110px; height: 26px; background: rgba(200,239,109,.75); top: -13px; left: 50%; transform: translateX(-50%) rotate(2deg); }
.vendor-note h2 { margin: 14px 0 18px; font-size: 46px; line-height: .98; letter-spacing: -.05em; }
.vendor-note p { color: var(--muted); line-height: 1.65; }
.dark-link { display: inline-block; margin-top: 20px; }
.vendor-benefits { border-top: 1px solid var(--line); }
.benefit { display: grid; grid-template-columns: 50px 1fr; column-gap: 16px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.benefit > span { color: var(--green); font-family: Georgia, 'Times New Roman', serif; font-style: italic; }
.benefit h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.benefit p { grid-column: 2; margin: 8px 0 0; color: var(--muted); line-height: 1.55; }

.final-cta { text-align: center; position: relative; padding-bottom: 150px; }
.final-cta h2 { margin: 10px 0; font-size: clamp(60px, 8vw, 108px); letter-spacing: -.07em; line-height: .9; }
.final-cta > p:not(.section-index):not(.tiny-note) { color: var(--muted); font-size: 17px; }
.email-cta { display: inline-flex; gap: 18px; align-items: center; margin-top: 30px; padding-bottom: 5px; border-bottom: 3px solid var(--green); font-size: clamp(22px, 3vw, 38px); font-weight: 900; color: var(--green); letter-spacing: -.03em; }
.email-cta span { font-size: .8em; transition: transform .2s ease; }
.email-cta:hover span { transform: translate(4px,-4px); }
.cta-stamp { position: absolute; right: 5%; top: 65px; width: 110px; height: 110px; border-radius: 50%; border: 2px solid var(--green); color: var(--green); display: grid; place-items: center; font-size: 11px; font-weight: 900; letter-spacing: .08em; transform: rotate(10deg); }
.tiny-note { margin: 34px auto 0; max-width: 650px; font-size: 10px; line-height: 1.5; color: #7b817b; }

.footer { background: var(--ink); color: #e7e9e4; padding: 52px max(20px, calc((100% - 1180px)/2)); display: grid; grid-template-columns: 1fr 1fr; gap: 18px 50px; align-items: end; }
.footer-brand .brand-lah { background: var(--acid); color: var(--ink); }
.footer-brand .brand-plus { color: var(--acid); }
.footer > p { margin: 0; color: #aeb4ae; font-size: 13px; }
.footer-links { justify-self: end; display: flex; gap: 20px; font-size: 12px; font-weight: 800; }
.footer-links a:hover { color: var(--acid); }
.copyright { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid #343936; margin-top: 25px !important; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 50px; padding-top: 55px; }
  .hero-board { max-width: 680px; margin: 0 auto; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .proof-strip div:first-child { border-left: 0; }
  .proof-strip div:nth-child(odd) { border-left: 1px solid rgba(21,25,22,.16); }
  .split-section, .vendor-section { grid-template-columns: 1fr; gap: 50px; }
  .sticky-heading { position: static; }
  .horizontal-heading { display: block; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .consolidation-panel { grid-template-columns: 1fr; }
  .consolidation-visual { min-height: 480px; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .topline { font-size: 9px; }
  .site-header { width: min(100% - 24px, 1180px); min-height: 70px; }
  .brand { font-size: 21px; }
  .brand-plus { font-size: 24px; }
  .site-header .button-small { font-size: 11px; padding: 0 11px; }
  .section-shell { width: min(100% - 28px, 1180px); }
  .section-block { padding-top: 88px; padding-bottom: 88px; }
  .hero { padding-top: 52px; padding-bottom: 70px; }
  .hero h1 { font-size: 59px; }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-board { padding: 22px 16px; transform: none; }
  .board-header { display: block; }
  .status-chip { display: inline-block; margin-top: 14px; }
  .board-meta { grid-template-columns: 1fr 1fr 1fr; }
  .quote-row { grid-template-columns: 1.5fr .9fr .7fr; font-size: 10px; }
  .quote-row span:nth-child(4), .quote-row.quote-head span:nth-child(4) { display: none; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip strong { font-size: 22px; }
  .proof-strip div { padding: 20px 14px; }
  .section-heading h2 { font-size: 44px; }
  .category-card { grid-template-columns: 38px 1fr 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 220px; }
  .consolidation-copy { padding: 42px 26px; }
  .consolidation-copy h2 { font-size: 54px; }
  .consolidation-visual { min-height: 420px; }
  .hub-main { width: 112px; height: 112px; font-size: 21px; }
  .company-node { width: 88px; height: 88px; font-size: 11px; }
  .vendor-node { min-width: 75px; padding: 11px; font-size: 9px; }
  .vendor-note { padding: 42px 26px; box-shadow: 7px 8px 0 #dfe4d9; }
  .vendor-note h2 { font-size: 40px; }
  .cta-stamp { width: 78px; height: 78px; top: 32px; right: 0; font-size: 8px; }
  .final-cta h2 { font-size: 62px; }
  .email-cta { font-size: 22px; word-break: break-word; }
  .footer { padding-left: 20px; padding-right: 20px; }
}
