:root {
  --ink: #112722;
  --ink-soft: #3e514c;
  --green: #376f5e;
  --green-dark: #214c40;
  --green-pale: #e5eee9;
  --cream: #f7f4ec;
  --paper: #fffdf8;
  --line: #dcded7;
  --white: #ffffff;
  --serif: "Manrope", sans-serif;
  --sans: "DM Sans", sans-serif;
  --shadow: 0 28px 80px rgba(31, 54, 47, .13);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { display: block; }

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.section { padding: 48px 0; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  background: rgba(255, 253, 248, .9);
  border-bottom: 1px solid rgba(220, 222, 215, .7);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img {
  display: block;
  width: 180px;
  height: auto;
  border-radius: 2px;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-soft);
}

.desktop-nav a { transition: color .2s; }
.desktop-nav a:hover { color: var(--green); }

.nav-wrap > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 0 25px;
  color: var(--white);
  background: var(--green-dark);
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s, background .2s, box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 10px 28px rgba(33, 76, 64, .18);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 590px;
  padding-top: 101px;
  padding-bottom: 42px;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 39, 34, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 39, 34, .025) 1px, transparent 1px),
    var(--cream);
  background-size: 72px 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(transparent, var(--cream));
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -100px;
  top: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 148, 129, .2), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .91fr 1.09fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 630px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -.055em;
  font-weight: 600;
}

.hero-lede {
  max-width: 595px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(33, 76, 64, .35);
}

.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.trust-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 580px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 39, 34, .13);
}

.trust-note p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.trust-note strong { color: var(--ink); font-size: 16px; }
.trust-icon { flex: 0 0 28px; color: var(--green); }
.trust-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.hero-visual {
  position: relative;
  min-height: 445px;
  display: grid;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(55, 111, 94, .16);
  border-radius: 50%;
}

.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 400px; height: 400px; border-style: dashed; }

.dashboard-card {
  position: relative;
  z-index: 2;
  width: min(530px, 100%);
  padding: 27px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(17,39,34,.1);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e9e5;
}

.dashboard-label { color: #71817d; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.dashboard-header h2 { margin: 5px 0 0; font-family: var(--serif); font-size: 20px; letter-spacing: -.03em; }
.status { display: flex; align-items: center; gap: 7px; color: var(--green); background: var(--green-pale); padding: 6px 9px; border-radius: 20px; font-size: 10px; font-weight: 700; }
.status i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(55,111,94,.1); }

.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 23px 0 17px; }
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric span { color: #71817d; font-size: 11px; }
.metric strong { font-family: var(--serif); font-size: 27px; letter-spacing: -.04em; }

.chart-wrap { padding: 15px 15px 9px; background: #f8faf8; border: 1px solid #edf0ed; border-radius: 7px; }
.chart-title { display: flex; justify-content: space-between; align-items: center; color: #71817d; font-size: 10px; }
.trend { color: var(--green); font-weight: 600; }
.chart { width: 100%; height: 120px; margin-top: 6px; overflow: visible; }
.chart line { stroke: #e5e9e6; stroke-width: 1; }
.chart-area { fill: url(#area-gradient); }
.chart-line { fill: none; stroke: var(--green); stroke-width: 3; vector-effect: non-scaling-stroke; }
.chart circle { fill: var(--paper); stroke: var(--green); stroke-width: 3; }
.chart-labels { display: flex; justify-content: space-between; color: #95a09d; font-size: 9px; }

.activity {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 17px;
}

.activity-icon { display: grid; place-items: center; width: 32px; height: 32px; color: var(--green); background: var(--green-pale); border-radius: 50%; }
.activity div { display: flex; flex-direction: column; gap: 2px; font-size: 10px; }
.activity div span { color: #82908c; }
.activity-arrow { color: #8b9793; font-size: 23px; }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 185px;
  padding: 12px 15px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(17,39,34,.08);
  border-radius: 7px;
  box-shadow: 0 14px 35px rgba(31,54,47,.12);
}

.floating-card div { display: flex; flex-direction: column; gap: 2px; }
.floating-card strong { font-size: 11px; }
.floating-card div span { color: #83908c; font-size: 9px; }
.floating-top { top: 39px; right: -23px; }
.floating-bottom { bottom: 18px; left: -29px; }
.float-icon { display: grid; place-items: center; width: 31px; height: 31px; color: var(--green); background: var(--green-pale); border-radius: 50%; }
.float-icon svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.audience-strip { position: relative; z-index: 3; background: var(--green-dark); color: rgba(255,255,255,.8); }
.audience-inner { min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 52px; }
.audience-inner > p { max-width: 210px; margin: 0; font-size: 16px; line-height: 1.45; font-weight: 500; }
.audience-list { display: flex; align-items: center; gap: 27px; font-family: var(--serif); font-size: 17px; font-weight: 600; }
.audience-list i { flex: 0 0 auto; width: 5px; height: 5px; background: #83aa9d; border-radius: 50%; }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; align-items: start; }
.section-heading h2, .center-heading h2, .principles-copy h2, .fit-card h2, .contact-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.3vw, 44px);
  line-height: 1.17;
  letter-spacing: -.05em;
  font-weight: 600;
}

.opportunity-copy > p { max-width: 590px; margin: 0 0 16px; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.callout { display: flex; gap: 20px; align-items: center; max-width: 590px; margin-top: 24px; padding: 20px 23px; background: var(--cream); border-left: 3px solid var(--green); }
.callout-number { align-self: stretch; color: var(--green); font-size: 18px; font-weight: 700; letter-spacing: .08em; }
.callout p { margin: 0; font-size: 16px; line-height: 1.6; }

.process { background: #f2f3ee; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.center-heading > p:last-child { max-width: 590px; margin: 14px auto 0; color: var(--ink-soft); line-height: 1.65; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.process-card { min-height: 250px; padding: 25px 0 0; background: transparent; border: 0; border-top: 1px solid #c8cec9; }
.step-top { display: flex; justify-content: space-between; align-items: center; }
.step-number { color: var(--green); font-size: 22px; font-weight: 700; letter-spacing: .06em; }
.step-icon { display: grid; place-items: center; width: 54px; height: 54px; color: var(--green); background: transparent; border: 1px solid #a9bdb5; border-radius: 50%; }
.step-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.process-card h3 { margin: 31px 0 12px; font-family: var(--serif); font-size: 24px; line-height: 1.3; letter-spacing: -.03em; }
.process-card p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 105px; align-items: center; }
.principles-visual { position: relative; min-height: 570px; display: grid; place-items: center; background: var(--cream); overflow: hidden; }
.principles-visual::before, .principles-visual::after { content:""; position:absolute; border: 1px solid rgba(55,111,94,.13); border-radius: 50%; }
.principles-visual::before { width: 480px; height: 480px; }
.principles-visual::after { width: 340px; height: 340px; border-style: dashed; }
.message-stack { position: relative; z-index: 2; width: 78%; }
.message { background: white; border: 1px solid var(--line); box-shadow: 0 24px 55px rgba(31,54,47,.1); }
.message-muted { position: absolute; width: 88%; height: 135px; left: 6%; top: -49px; padding: 22px; opacity: .55; transform: rotate(-3deg); }
.message-muted span:last-child { display: block; width: 75%; height: 8px; margin: 12px 0 0 40px; background: #e7e9e5; border-radius: 10px; }
.avatar { display: grid; place-items: center; width: 31px; height: 31px; color: white; background: var(--green-dark); border-radius: 50%; font-size: 9px; font-weight: 700; }
.message-main { position: relative; padding: 34px; border-radius: 6px; }
.message-kicker { color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.message-main > p { margin: 20px 0 27px; color: var(--ink-soft); font-family: var(--serif); font-size: 18px; line-height: 1.65; }
.message-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid #e7e9e5; color: #87928f; font-size: 10px; }
.message-footer i { display: grid; place-items: center; width: 24px; height: 24px; color: white; background: var(--green); border-radius: 50%; font-style: normal; }
.reply-bubble { position: absolute; right: -32px; bottom: -65px; display: grid; grid-template-columns: auto 1fr; gap: 0 9px; padding: 15px 19px; min-width: 195px; background: white; border: 1px solid var(--line); border-radius: 7px; box-shadow: 0 14px 35px rgba(31,54,47,.14); }
.reply-bubble > span { grid-row: span 2; align-self: center; color: var(--green); }
.reply-bubble strong { font-size: 11px; }
.reply-bubble small { color: #87928f; font-size: 9px; }
.section-intro { margin: 18px 0 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.founder-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.founder-credentials > span { display: inline-flex; align-items: center; gap: 5px; padding: 8px 11px; color: var(--green-dark); background: var(--green-pale); border: 1px solid #cfddd6; border-radius: 3px; font-size: 11px; font-weight: 600; }
.founder-credentials strong { font-size: 14px; }
.check-list { display: flex; flex-direction: column; gap: 20px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 14px; }
.check-list li > span { flex: 0 0 25px; display: grid; place-items: center; width: 25px; height: 25px; color: white; background: var(--green); border-radius: 50%; font-size: 11px; }
.check-list strong { display: block; margin: 2px 0 6px; font-family: var(--serif); font-size: 16px; }
.check-list p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }

.fit { padding-top: 0; }
.fit-card { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; padding: 54px 62px; color: white; background: var(--green-dark); border-radius: 8px; }
.eyebrow.light { color: #9fc3b6; }
.fit-card h2 { font-size: clamp(30px, 3vw, 40px); }
.fit-list { display: flex; flex-direction: column; justify-content: center; }
.fit-list div { display: grid; grid-template-columns: 52px 1fr; gap: 15px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.fit-list div:first-child { border-top: 1px solid rgba(255,255,255,.15); }
.fit-list span { color: #b2d2c7; font-size: 19px; font-weight: 700; letter-spacing: .06em; }
.fit-list p { margin: 0; color: rgba(255,255,255,.9); font-size: 16px; line-height: 1.55; }

.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 130px; }
.faq .section-heading h2 { font-size: clamp(30px, 3.1vw, 41px); }
.faq .section-heading > p { max-width: 380px; margin: 20px 0 26px; color: var(--ink-soft); line-height: 1.65; }
.faq-item { border-top: 1px solid #ced2cc; }
.faq-item:last-child { border-bottom: 1px solid #ced2cc; }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 25px 0; color: var(--ink); background: none; border: 0; text-align: left; cursor: pointer; font-family: var(--serif); font-size: 16px; font-weight: 600; }
.faq-item button i { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.faq-item button i::before, .faq-item button i::after { content:""; position:absolute; top: 8px; left: 1px; width: 16px; height: 1px; background: var(--green); transition: transform .25s; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item.open button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding: 0 35px 25px 0; }

.contact-section { position: relative; overflow: hidden; padding: 62px 0; color: white; background: #15372e; text-align: center; }
.contact-section::before, .contact-section::after { content:""; position:absolute; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.contact-section::before { left: -190px; top: -190px; }
.contact-section::after { right: -180px; bottom: -250px; }
.contact-inner { position: relative; z-index: 2; max-width: 770px; }
.contact-inner .eyebrow { justify-content: center; }
.contact-inner > p:not(.eyebrow) { max-width: 620px; margin: 23px auto 32px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.7; }
.button-light { color: var(--green-dark); background: var(--paper); border-color: var(--paper); }
.button-light:hover { color: white; background: var(--green); border-color: var(--green); }
.contact-inner small { display: block; margin-top: 18px; color: rgba(255,255,255,.48); font-size: 11px; }

footer { padding: 32px 0; background: #0f2922; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; font-size: 11px; }
.footer-inner > span { justify-self: end; }
.footer-brand img { width: 175px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay, .reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .nav-wrap > .button { display: none; }
  .menu-button { display: flex; flex-direction: column; justify-content: center; gap: 6px; width: 42px; height: 42px; padding: 9px; background: none; border: 0; cursor: pointer; }
  .menu-button span { display: block; width: 22px; height: 1px; background: var(--ink); transition: transform .25s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 60px 0 auto; display: flex; flex-direction: column; align-items: center; gap: 25px; height: 0; padding: 0; overflow: hidden; background: var(--paper); font-family: var(--serif); font-size: 19px; transition: height .3s, padding .3s; }
  .mobile-nav.open { height: calc(100vh - 60px); padding: 60px 24px; border-top: 1px solid var(--line); }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(650px, 100%); margin: 0 auto; }
  .split-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .principles-grid { gap: 55px; }
  .fit-card { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 620px); }
  .brand img { width: 160px; }
  .section { padding: 40px 0; }
  .hero { min-height: auto; padding-top: 88px; padding-bottom: 40px; }
  .hero-grid { gap: 48px; }
  .hero h1 { font-size: clamp(35px, 9.5vw, 46px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .hero-visual { min-height: 390px; }
  .dashboard-card { padding: 20px; }
  .visual-orbit { display: none; }
  .floating-card { display: none; }
  .chart { height: 95px; }
  .audience-inner { align-items: flex-start; flex-direction: column; padding: 27px 0; gap: 20px; }
  .audience-inner > p { max-width: none; font-size: 15px; }
  .audience-list { flex-wrap: wrap; gap: 15px 20px; font-size: 16px; line-height: 1.4; }
  .split-grid { gap: 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 250px; }
  .process-card h3 { margin-top: 30px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-visual { min-height: 470px; order: 2; }
  .message-stack { width: 86%; }
  .message-main { padding: 26px; }
  .message-main > p { font-size: 16px; }
  .reply-bubble { right: -8px; }
  .fit { padding-top: 0; }
  .fit-card { padding: 48px 28px; }
  .faq-grid { gap: 45px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-inner > span { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
