:root {
  --ink: #18231f;
  --ink-soft: #58645f;
  --paper: #f4f0e8;
  --paper-deep: #e9e3d7;
  --white: #fffdf8;
  --green: #194e3b;
  --green-light: #b9d6c4;
  --coral: #df765b;
  --line: rgba(24, 35, 31, .15);
  --radius: 18px;
  --shadow: 0 25px 70px rgba(25, 45, 37, .13);
  --container: min(1160px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 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;
}
.skip-link {
  position: fixed; z-index: 100; left: 16px; top: -100px; padding: 10px 16px;
  background: var(--ink); color: white; border-radius: 6px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(244, 240, 232, .9); box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: var(--container); height: 84px; margin-inline: auto; display: flex;
  align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  display: block; width: 190px; height: auto;
}
.site-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 500; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: var(--ink); transition: right .25s ease;
}
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  padding: 11px 17px; border: 1px solid var(--ink); border-radius: 100px;
  transition: color .25s, background .25s, transform .25s;
}
.nav-cta:hover { color: var(--paper); background: var(--ink); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero { position: relative; overflow: hidden; padding-top: 190px; padding-bottom: 0; }
.hero-glow {
  position: absolute; width: 620px; height: 620px; right: -250px; top: 20px; border-radius: 50%;
  background: rgba(185, 214, 196, .42); filter: blur(2px); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.7fr .75fr; gap: 90px; align-items: end; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--green);
  font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow > span { display: inline-block; width: 24px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--green-light); }
h1, h2, h3, blockquote { font-family: "Avenir Next", "Segoe UI", ui-sans-serif, sans-serif; }
h1 {
  max-width: 830px; margin: 0; font-size: clamp(52px, 6.4vw, 91px); font-weight: 500;
  line-height: .99; letter-spacing: -.065em;
}
h1 em { color: var(--coral); font-weight: 400; }
.hero-lede { max-width: 650px; margin: 34px 0 0; color: var(--ink-soft); font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 15px 21px;
  border-radius: 100px; font-size: 14px; font-weight: 600; transition: transform .25s, box-shadow .25s, background .25s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: white; background: var(--green); box-shadow: 0 10px 26px rgba(25, 78, 59, .18); }
.button-primary:hover { box-shadow: 0 15px 32px rgba(25, 78, 59, .28); background: #113f2f; }
.button-light { color: var(--green); background: var(--paper); }
.text-link { font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.text-link span { display: inline-block; margin-left: 8px; transition: transform .2s; }
.text-link:hover span { transform: translateY(3px); }
.hero-note {
  position: relative; z-index: 1; padding: 26px; background: var(--white); border: 1px solid rgba(24, 35, 31, .1);
  border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(1.5deg);
}
.note-label, .note-footer { margin: 0; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.hero-note ul { list-style: none; margin: 18px 0; padding: 0; border-top: 1px solid var(--line); }
.hero-note li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.hero-note li span { color: var(--coral); font-size: 11px; font-weight: 600; }
.note-footer { color: var(--green); text-align: right; }
.trust-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 100px;
  padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust-strip p { margin: 0; color: var(--ink-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.trust-strip > div { display: flex; gap: 30px; font-size: 13px; font-weight: 500; }
.trust-strip span::before { content: "•"; margin-right: 10px; color: var(--coral); }

.section-heading { display: grid; grid-template-columns: 1.4fr .65fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .audience h2, .about h2, .contact h2 {
  margin: 0; font-size: clamp(38px, 4.8vw, 64px); line-height: 1.08; font-weight: 500; letter-spacing: -.055em;
}
.section-heading > p { margin: 0 0 6px; color: var(--ink-soft); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-card {
  min-height: 350px; padding: 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  transition: background .3s;
}
.service-card:nth-child(3n) { border-right: 1px solid var(--line); }
.service-card:nth-child(n+4) { border-bottom: 1px solid var(--line); }
.service-card:not(.service-card-cta):hover {
  position: relative; z-index: 2;
}
.service-card:not(.service-card-cta) > * { transition: transform .28s cubic-bezier(.2,.8,.2,1); }
.service-card:not(.service-card-cta):hover > * { transform: translateX(8px); }
.service-icon {
  display: grid; place-items: center; width: 54px; height: 54px; margin: 12px 0 28px;
  border: 1px solid rgba(25, 78, 59, .12); border-radius: 50%;
  background: var(--paper-deep); color: var(--green);
}
.service-icon svg {
  display: block; width: 31px; height: 31px; overflow: visible;
  fill: none; stroke: var(--green); stroke-width: 1.65;
  stroke-linecap: round; stroke-linejoin: round;
}
.service-icon svg .icon-accent-line { fill: none; stroke: var(--coral); }
.service-icon svg .icon-accent-fill { fill: var(--coral); stroke: var(--coral); }
.service-card h3 { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -.03em; }
.service-card p { margin: 13px 0 24px; color: var(--ink-soft); font-size: 14px; }
.service-card ul { list-style: none; margin: 0; padding: 0; color: var(--ink-soft); font-size: 12px; }
.service-card li { display: inline; }
.service-card li + li::before { content: " / "; color: var(--coral); }
.service-card-cta { display: flex; flex-direction: column; justify-content: space-between; color: white; background: var(--green); }
.service-card-cta:hover { background: #174735; }
.service-card-cta h3 { max-width: 260px; font-size: 28px; }
.service-card-cta .button { align-self: flex-start; }

.audience { background: var(--white); }
.audience-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; }
.audience-copy { position: sticky; top: 140px; align-self: start; }
.audience-copy > p:last-child { max-width: 490px; margin-top: 28px; color: var(--ink-soft); font-size: 17px; }
.audience-list { border-top: 1px solid var(--line); }
.audience-list > div {
  display: grid; grid-template-columns: 40px 1fr 1fr; gap: 20px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding .25s, background .25s;
}
.audience-list > div:hover { padding-inline: 14px; background: var(--paper); }
.audience-list span { color: var(--coral); font-size: 11px; }
.audience-list strong { font-family: "Avenir Next", "Segoe UI", sans-serif; font-size: 18px; font-weight: 500; }
.audience-list p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.demo-section { color: white; background: var(--green); }
.demo-heading > p { color: rgba(255,255,255,.65); }
.dashboard { padding: 24px; color: var(--ink); background: #f8f7f3; border-radius: 22px; box-shadow: 0 40px 80px rgba(0,0,0,.2); }
.dashboard-topbar, .panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.dashboard-kicker { color: var(--coral); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.dashboard h3 { margin: 2px 0 0; font-size: 24px; font-weight: 500; letter-spacing: -.04em; }
.dashboard-controls { display: flex; padding: 4px; border: 1px solid var(--line); border-radius: 100px; }
.filter-button {
  padding: 7px 13px; border: 0; border-radius: 100px; color: var(--ink-soft); background: transparent;
  cursor: pointer; font-size: 11px; transition: background .2s, color .2s;
}
.filter-button.active { color: white; background: var(--ink); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0 12px; }
.metric-card, .chart-panel, .workflow-panel { background: white; border: 1px solid rgba(24,35,31,.09); border-radius: 12px; }
.metric-card { padding: 18px; }
.metric-card p, .panel-heading p { margin: 0; font-size: 12px; font-weight: 600; }
.metric-card > div { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin: 8px 0 2px; }
.metric-card strong { font-family: "Avenir Next", "Segoe UI", sans-serif; font-size: 27px; font-weight: 500; letter-spacing: -.04em; }
.metric-card small, .panel-heading span { color: #7a837f; font-size: 10px; }
.delta { padding: 2px 7px; border-radius: 100px; font-size: 9px; }
.delta.positive { color: #1d6a4c; background: #e0f0e7; }
.delta.neutral { color: #7b5c26; background: #f5edda; }
.dashboard-main { display: grid; grid-template-columns: 1.65fr .85fr; gap: 12px; }
.chart-panel, .workflow-panel { padding: 18px; }
.legend { display: flex; gap: 12px; }
.legend span { display: flex; align-items: center; gap: 5px; }
.legend i { width: 7px; height: 7px; border-radius: 2px; }
.legend .planned { background: #dce1de; }
.legend .completed { background: var(--coral); }
.chart { display: flex; justify-content: space-around; align-items: end; gap: 14px; height: 180px; margin-top: 20px; padding-top: 12px; border-bottom: 1px solid var(--line); }
.bar-group { display: flex; height: 100%; flex: 1; align-items: end; justify-content: center; gap: 4px; position: relative; }
.bar { width: min(22px, 35%); border-radius: 4px 4px 0 0; transition: height .55s cubic-bezier(.2,.8,.2,1); }
.bar.planned { background: #dce1de; }
.bar.completed { background: var(--coral); }
.bar-group label { position: absolute; top: calc(100% + 7px); font-size: 9px; color: #7a837f; }
.workflow-list { margin-top: 16px; }
.workflow-item { display: grid; grid-template-columns: 8px 1fr auto; gap: 10px; align-items: center; padding: 11px 0; border-top: 1px solid var(--line); }
.workflow-item > i { width: 7px; height: 7px; border-radius: 50%; }
.workflow-item strong { display: block; font-size: 11px; font-weight: 500; }
.workflow-item small { display: block; color: #7a837f; font-size: 9px; }
.workflow-item > span { color: #7a837f; font-size: 9px; }
.live-label { color: #1d6a4c !important; }
.dashboard-insight { display: flex; align-items: center; gap: 13px; margin-top: 12px; padding: 13px 16px; color: white; background: var(--ink); border-radius: 10px; }
.dashboard-insight > span { color: var(--green-light); }
.dashboard-insight p { display: flex; flex: 1; gap: 14px; margin: 0; font-size: 10px; }
.dashboard-insight p span { color: rgba(255,255,255,.65); }
.dashboard-insight button { padding: 0; color: var(--green-light); background: transparent; border: 0; cursor: pointer; font-size: 10px; white-space: nowrap; }

.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); counter-reset: steps; }
.process-list li { display: grid; grid-template-columns: .18fr 1fr; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--coral); font-size: 12px; }
.process-list div { display: grid; grid-template-columns: .65fr 1fr; gap: 80px; }
.process-list h3 { margin: 0; font-size: 25px; font-weight: 500; letter-spacing: -.035em; }
.process-list p { max-width: 560px; margin: 2px 0 0; color: var(--ink-soft); }

.packages { background: var(--paper-deep); }
.package-list { border-top: 1px solid var(--line); }
.package-row {
  display: grid; grid-template-columns: 50px minmax(190px, .65fr) minmax(0, 2.35fr);
  gap: 32px; align-items: center;
  min-height: 150px; padding: 25px 22px; border-bottom: 1px solid var(--line);
  transition: background .25s;
}
.package-row:hover { position: relative; z-index: 1; }
.package-row > * { transition: transform .28s cubic-bezier(.2,.8,.2,1); }
.package-row:hover > * { transform: translateX(8px); }
.package-index { color: var(--coral); font-size: 11px; }
.package-tag { margin: 0 0 4px !important; color: var(--green) !important; font-size: 10px !important; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.package-row h3 { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -.03em; }
.package-row > p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.package-featured { background: rgba(185, 214, 196, .35); }

.about { color: white; background: var(--ink); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 130px; }
.about-statement blockquote { margin: 90px 0 0; color: var(--green-light); font-size: clamp(32px, 4vw, 52px); line-height: 1.2; letter-spacing: -.045em; }
.about-copy { padding-top: 88px; }
.about-copy h2 { color: white; }
.about-copy > p { color: rgba(255,255,255,.65); font-size: 17px; }
.principles { margin-top: 45px; border-top: 1px solid rgba(255,255,255,.15); }
.principles > div { display: flex; gap: 25px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.principles span { color: var(--coral); font-size: 10px; }
.principles strong { font-size: 13px; font-weight: 500; }

.contact { padding: 140px 0; color: white; background: var(--coral); text-align: center; }
.contact .eyebrow { justify-content: center; color: rgba(255,255,255,.75); }
.contact-inner > p:not(.eyebrow) { max-width: 640px; margin: 27px auto 45px; font-size: 18px; color: rgba(255,255,255,.83); }
.contact h2 { max-width: 850px; margin-inline: auto; font-size: clamp(48px, 6vw, 78px); }
.contact-email {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 3px 8px; border-bottom: 1px solid rgba(255,255,255,.72);
}
.contact-email > span {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(24px, 3vw, 38px); letter-spacing: -.03em;
}
.copy-email {
  position: relative; display: grid; place-items: center; width: 34px; height: 34px; padding: 0;
  border: 0; border-radius: 50%; color: white; background: transparent; cursor: pointer;
  transition: color .2s, background .2s, transform .2s;
}
.copy-email svg {
  width: 19px; height: 19px; fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.copy-email:hover { color: var(--coral); background: white; transform: translateY(-2px); }
.copy-email.copied { color: var(--green); background: white; }
.copy-confirmation { display: none; }
.copy-email.copied .copy-label { display: none; }
.copy-email.copied .copy-confirmation {
  position: absolute; display: block; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  padding: 4px 8px; border-radius: 5px; color: white; background: var(--ink);
  font-size: 10px; font-weight: 600; white-space: nowrap;
}
.contact-meta { display: flex; justify-content: center; gap: 36px; margin-top: 65px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.contact-meta span::before { content: "•"; margin-right: 10px; }
footer { padding: 35px 0; color: var(--paper); background: var(--ink); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; font-size: 11px; }
.footer-inner p { margin: 0; color: rgba(255,255,255,.5); }
.footer-inner p:nth-child(2) { text-align: center; white-space: nowrap; }
.footer-inner p:last-child { text-align: right; }
.footer-logo { display: inline-flex; justify-self: start; }
.footer-logo img { display: block; width: 132px; height: auto; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 920px) {
  .section { padding: 90px 0; }
  .site-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-note { max-width: 480px; margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 0; }
  .service-card:nth-child(2n) { border-right: 1px solid var(--line); }
  .service-card:nth-child(n+3) { border-bottom: 1px solid var(--line); }
  .audience-grid { grid-template-columns: 1fr; gap: 55px; }
  .audience-copy { position: static; }
  .dashboard-main { grid-template-columns: 1fr; }
  .package-row { grid-template-columns: 30px minmax(180px, .7fr) minmax(0, 1.8fr); gap: 24px; }
  .about-grid { gap: 70px; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 32px, 1160px); }
  .section { padding: 76px 0; }
  .nav-wrap { height: 70px; }
  .menu-toggle {
    position: relative; z-index: 2; display: grid; gap: 6px; width: 42px; height: 42px; padding: 13px; cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 1px; background: var(--ink); transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 25px; padding: 70px 32px; background: var(--paper); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
  }
  .site-nav.open { opacity: 1; visibility: visible; }
  .site-nav a { font-family: "Avenir Next", "Segoe UI", sans-serif; font-size: 30px; letter-spacing: -.04em; }
  .site-nav .nav-cta { margin-top: 20px; font-family: Inter, ui-sans-serif, sans-serif; font-size: 14px; }
  .hero { padding-top: 130px; }
  h1 { font-size: clamp(47px, 14.5vw, 68px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-note { margin-left: 0; transform: none; }
  .trust-strip { align-items: flex-start; flex-direction: column; margin-top: 70px; }
  .trust-strip > div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(2n), .service-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .service-card { min-height: 320px; }
  .audience-list > div { grid-template-columns: 30px 1fr; }
  .audience-list p { grid-column: 2; }
  .dashboard { padding: 12px; border-radius: 16px; }
  .dashboard-topbar { align-items: flex-start; flex-direction: column; }
  .dashboard-controls { width: 100%; }
  .filter-button { flex: 1; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-card { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
  .metric-card > div { justify-self: end; gap: 10px; margin: 0; }
  .metric-card small { grid-column: 1 / -1; }
  .chart { gap: 4px; height: 150px; }
  .dashboard-insight { align-items: flex-start; flex-wrap: wrap; }
  .dashboard-insight p { display: block; }
  .dashboard-insight p span { display: block; margin-top: 3px; }
  .dashboard-insight button { margin-left: 25px; }
  .process-list li { grid-template-columns: 40px 1fr; }
  .process-list div { grid-template-columns: 1fr; gap: 8px; }
  .package-row { grid-template-columns: 24px 1fr; gap: 12px 16px; padding: 24px 6px; }
  .package-row > p { grid-column: 2; }
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-statement blockquote { margin-top: 50px; }
  .about-copy { padding-top: 20px; }
  .contact { padding: 100px 0; }
  .contact-meta { align-items: center; flex-direction: column; gap: 8px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 25px; }
  .footer-inner p:nth-child(2) { display: none; }
}
