:root {
  --ink: #16231e;
  --muted: #586861;
  --green: #0f6b4f;
  --green-dark: #084f3a;
  --mint: #e3f3eb;
  --cream: #f8f6ef;
  --amber: #d79b3b;
  --line: #dce5e0;
  --white: #fff;
  --shadow: 0 1.5rem 4rem rgb(18 53 41 / 10%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
}
body,
button {
  font: inherit;
}
a {
  color: inherit;
}
p {
  line-height: 1.72;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.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;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--green-dark);
  border-radius: 0.5rem;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid #d3942e;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 5rem;
  padding: 0.75rem max(1.25rem, calc((100vw - 76rem) / 2));
  border-bottom: 1px solid rgb(220 229 224 / 80%);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.brand img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-header nav > a {
  color: #364740;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
.site-header nav > a:hover {
  color: var(--green);
}
.site-header .nav-login {
  padding-left: 1.3rem;
  border-left: 1px solid var(--line);
}
.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #fff;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button,
.button-secondary,
.button-light {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--green);
  border-radius: 0.65rem;
  color: #fff;
  background: var(--green);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0.5rem 1.2rem rgb(15 107 79 / 15%);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.button-small {
  min-height: 2.65rem;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
}
.button-secondary {
  color: var(--green-dark);
  background: #fff;
  box-shadow: none;
}
.button-secondary:hover {
  background: var(--mint);
}
.button-light {
  color: var(--green-dark);
  background: #fff;
  border-color: #fff;
}
.text-button {
  min-height: 2.65rem;
  border: 0;
  color: #fff;
  background: none;
  font-weight: 750;
  cursor: pointer;
}
.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  min-height: 44rem;
  align-items: center;
  gap: 5rem;
  max-width: 82rem;
  margin: auto;
  padding: 6rem 3rem 5rem;
  overflow: hidden;
}
.hero-copy h1,
.landing-hero h1,
.simple-hero h1,
.contact-layout h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.7rem, 5.3vw, 5rem);
  letter-spacing: -0.065em;
  line-height: 0.99;
}
.hero-lead,
.landing-hero > div > p:not(.eyebrow),
.simple-hero > p:last-child,
.contact-layout > div > p:not(.eyebrow) {
  max-width: 43rem;
  margin: 1.6rem 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  color: #52635b;
  font-size: 0.85rem;
  font-weight: 700;
  list-style: none;
}
.trust-list li::before {
  content: '✓';
  margin-right: 0.45rem;
  color: var(--green);
  font-weight: 900;
}
.hero-visual {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at 70% 20%, #f6dba9 0 12%, transparent 12.5%),
    linear-gradient(145deg, #e7f5ed, #f8f6ef);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 2.5rem;
  border: 1px solid rgb(15 107 79 / 12%);
  border-radius: 50%;
}
.dashboard-card {
  position: relative;
  z-index: 1;
  width: min(94%, 34rem);
  padding: 1.25rem;
  border: 1px solid #d9e4de;
  border-radius: 1.15rem;
  background: rgb(255 255 255 / 96%);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.dash-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8eeeb;
  color: #52635b;
  font-size: 0.8rem;
  font-weight: 750;
}
.dash-top i {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: #42a17d;
}
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1rem 0;
}
.dash-metrics div {
  padding: 0.85rem;
  border-radius: 0.7rem;
  background: #f3f8f5;
}
.dash-metrics small,
.dash-metrics strong {
  display: block;
}
.dash-metrics small {
  color: #6d7a74;
  font-size: 0.68rem;
}
.dash-metrics strong {
  margin-top: 0.2rem;
  color: var(--green-dark);
  font-size: 1.65rem;
}
.activity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid #edf1ef;
}
.activity-item strong,
.activity-item small {
  display: block;
}
.activity-item strong {
  font-size: 0.8rem;
}
.activity-item small {
  margin-top: 0.2rem;
  color: #738079;
  font-size: 0.68rem;
}
.status {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.5rem;
  font-weight: 900;
}
.status-green {
  color: #147052;
  background: #e3f5ec;
}
.status-amber {
  color: #93651f;
  background: #fff3d8;
}
.status-blue {
  color: #396b77;
  background: #e5f1f3;
}
.float-note {
  position: absolute;
  z-index: 2;
  padding: 0.65rem 0.9rem;
  border: 1px solid #fff;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 0.75rem 2rem rgb(28 73 57 / 15%);
  font-size: 0.75rem;
  font-weight: 850;
}
.float-note-one {
  top: 3rem;
  right: -1rem;
}
.float-note-two {
  bottom: 4rem;
  left: -1rem;
}

.logos-placeholder {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  max-width: 76rem;
  margin: 0 auto 3rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.logos-placeholder span {
  color: var(--green-dark);
  font-weight: 850;
}
.logos-placeholder p {
  margin: 0;
  font-size: 0.92rem;
}
.section {
  max-width: 76rem;
  margin: auto;
  padding: 6.5rem 2rem;
}
.section-heading {
  max-width: 49rem;
  margin-bottom: 3rem;
}
.section-heading h2,
.workflow h2,
.proof-ready h2,
.cta-band h2,
.story h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.section-heading > p:last-child,
.workflow-copy > p,
.proof-ready > div > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  max-width: none;
  align-items: end;
  gap: 4rem;
}
.split-heading > p {
  margin-bottom: 0;
}
.problem-section {
  max-width: none;
  padding-inline: max(2rem, calc((100vw - 76rem) / 2));
  background: var(--cream);
}
.problem-grid,
.feature-grid,
.audience-grid,
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.problem-grid article {
  padding: 2rem;
  border-top: 3px solid var(--green);
  background: #fff;
}
.problem-grid article > strong,
.scenario-grid article > span {
  color: var(--green);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.problem-grid h3,
.feature-card h3,
.audience-grid h3,
.scenario-grid h3 {
  margin: 0.9rem 0 0.5rem;
  font-size: 1.2rem;
}
.problem-grid p,
.feature-card p,
.audience-grid p,
.scenario-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}
.feature-card {
  min-height: 16rem;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
}
.feature-card .icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.7rem;
  color: var(--green);
  background: var(--mint);
}
.feature-card svg,
.benefits svg {
  width: 1.35rem;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card a,
.audience-grid a {
  display: inline-block;
  margin-top: 1.3rem;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}
.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: none;
  gap: 6rem;
  padding-inline: max(2rem, calc((100vw - 68rem) / 2));
  background: var(--green-dark);
  color: #fff;
}
.workflow .eyebrow {
  color: #9bd9be;
}
.workflow-copy > p {
  color: #cae4d9;
}
.workflow ol {
  display: grid;
  gap: 1.4rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}
.workflow li {
  display: flex;
  gap: 1rem;
}
.workflow li > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #70b99b;
  border-radius: 50%;
  color: #b8e2d0;
  font-weight: 850;
}
.workflow li strong {
  font-size: 1.05rem;
}
.workflow li p {
  margin: 0.25rem 0 0;
  color: #bdd8cd;
  font-size: 0.9rem;
}
.workflow-scene {
  display: grid;
  place-items: center;
}
.phone {
  width: min(20rem, 100%);
  padding: 1rem 1rem 1.4rem;
  border: 6px solid #173229;
  border-radius: 2rem;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 25%);
  transform: rotate(2deg);
}
.phone-bar {
  width: 4rem;
  height: 0.3rem;
  margin: 0 auto 1.2rem;
  border-radius: 2rem;
  background: #d8dfdc;
}
.phone-label {
  margin: 0;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
}
.phone > strong {
  display: block;
  margin: 0.3rem 0 1.1rem;
}
.clock-circle {
  display: grid;
  width: 8.5rem;
  height: 8.5rem;
  margin: auto;
  place-items: center;
  align-content: center;
  border: 8px solid #dff2e9;
  border-top-color: var(--green);
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 1.6rem;
  font-weight: 900;
}
.clock-circle small {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
}
.phone button {
  width: 100%;
  min-height: 2.7rem;
  margin: 1rem 0;
  border: 0;
  border-radius: 0.55rem;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}
.mini-task {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
}
.mini-task i {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 0.4rem;
  color: var(--green);
  background: var(--mint);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}
.mini-task b,
.mini-task small {
  display: block;
  font-size: 0.7rem;
}
.mini-task small {
  margin-top: 0.15rem;
  color: var(--muted);
}
.audience-grid article {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--cream);
}
.audience-grid article > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}
.proof-ready {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
  border-top: 1px solid var(--line);
}
.proof-placeholder {
  display: grid;
  min-height: 13rem;
  place-content: center;
  padding: 2rem;
  border: 1px dashed #9eb7ac;
  border-radius: 1rem;
  text-align: center;
  background: #f4f8f6;
}
.proof-placeholder span,
.proof-placeholder small {
  color: var(--muted);
  font-size: 0.75rem;
}
.proof-placeholder strong {
  margin: 0.4rem;
  color: var(--green);
  font-size: 1.6rem;
}
.cta-band {
  display: flex;
  max-width: 76rem;
  min-height: 18rem;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin: 2rem auto 6rem;
  padding: 3.5rem;
  border-radius: 1.5rem;
  color: #fff;
  background: var(--green);
}
.cta-band .eyebrow {
  color: #bce5d3;
}
.cta-band h2 {
  max-width: 18ch;
}
.cta-band p:last-child {
  max-width: 41rem;
  margin-bottom: 0;
  color: #d5ede3;
}

.breadcrumbs {
  max-width: 76rem;
  margin: 1.5rem auto 0;
  padding: 0 2rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: #66766f;
  font-size: 0.78rem;
  list-style: none;
}
.breadcrumbs li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: #9aa8a2;
}
.breadcrumbs a {
  text-decoration: none;
}
.landing-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 5rem;
  max-width: 76rem;
  min-height: 38rem;
  margin: auto;
  padding: 5rem 2rem 6rem;
}
.landing-hero h1 {
  max-width: 17ch;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}
.landing-hero aside {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.landing-hero aside > span {
  color: var(--green);
  font-weight: 850;
}
.landing-hero aside ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}
.landing-hero aside li {
  padding: 0.8rem;
  border-radius: 0.5rem;
  background: #fff;
  font-weight: 700;
}
.landing-hero aside li::before {
  content: '✓';
  margin-right: 0.6rem;
  color: var(--green);
}
.article-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  max-width: none;
  padding-inline: max(2rem, calc((100vw - 70rem) / 2));
  background: var(--cream);
}
.article-copy h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}
.article-copy p {
  color: var(--muted);
}
.article-section blockquote {
  align-self: center;
  margin: 0;
  padding: 2.5rem;
  border-left: 4px solid var(--amber);
  color: var(--green-dark);
  background: #fff;
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.35;
  box-shadow: var(--shadow);
}
.article-section blockquote small {
  display: block;
  margin-top: 1.2rem;
  color: var(--muted);
  font:
    0.8rem/1.5 Inter,
    sans-serif;
}
.landing-solution .section-heading {
  max-width: 55rem;
}
.scenario-grid article {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}
.included {
  max-width: none;
  padding-inline: max(2rem, calc((100vw - 76rem) / 2));
  background: #f3f8f5;
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.benefits h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
}
.benefits > div > p:last-child {
  color: var(--muted);
}
.benefits ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefits li {
  display: flex;
  min-height: 7rem;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 0.8rem;
  background: var(--cream);
  font-weight: 800;
}
.benefits svg {
  flex: 0 0 1.4rem;
  color: var(--green);
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  padding: 1.35rem 2.5rem 1.35rem 0;
  cursor: pointer;
  font-weight: 800;
}
.faq details p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.simple-hero {
  max-width: 76rem;
  margin: auto;
  padding: 6rem 2rem;
}
.simple-hero h1 {
  max-width: 17ch;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}
.topic-list {
  display: grid;
  gap: 1.2rem;
  padding-top: 1rem;
}
.topic-list > article {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 4rem;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.topic-list h2 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}
.topic-list ol {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topic-list li {
  display: flex;
  gap: 1rem;
  padding: 0.8rem;
  border-bottom: 1px solid #edf1ef;
}
.topic-list li > span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
}
.topic-list li strong,
.topic-list li small {
  display: block;
}
.topic-list li small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.7rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1rem;
}
.blog-card {
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.8rem 2rem rgb(21 62 48 / 6%);
}
.blog-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.13;
}
.blog-card h2 a {
  color: var(--green-dark);
  text-decoration: none;
}
.blog-card > p:not(.eyebrow) {
  color: var(--muted);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  color: var(--muted);
  font-size: 0.76rem;
}
.article-meta > * + *::before {
  content: '·';
  margin-right: 1rem;
}
.article-link {
  margin-top: auto;
  padding-top: 1.5rem;
  font-weight: 850;
  text-decoration: none;
}
.guide {
  max-width: 76rem;
  margin: auto;
  padding: 4rem 2rem 2rem;
}
.guide-header {
  max-width: 62rem;
  padding-bottom: 4rem;
}
.guide-header h1 {
  max-width: 19ch;
  margin: 0 0 1.5rem;
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}
.guide-lead {
  max-width: 48rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.guide-layout {
  display: grid;
  grid-template-columns: 15rem minmax(0, 43rem);
  gap: 5rem;
  align-items: start;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}
.guide-index {
  position: sticky;
  top: 7rem;
  padding: 1.2rem;
  border-radius: 0.75rem;
  background: var(--cream);
  font-size: 0.8rem;
}
.guide-index ol {
  display: grid;
  gap: 0.7rem;
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}
.guide-index a {
  color: var(--muted);
  text-decoration: none;
}
.guide-content > div {
  scroll-margin-top: 7rem;
}
.guide-content section {
  padding: 0 0 3.5rem;
}
.guide-content h2 {
  margin: 0 0 1.3rem;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.guide-content p,
.guide-content li {
  color: #42534c;
  font-size: 1.02rem;
  line-height: 1.8;
}
.guide-content ul {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.25rem;
}
.article-example {
  display: grid;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  overflow: hidden;
}
.article-example div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
}
.article-example div:nth-child(odd) {
  background: var(--cream);
}
.article-example dt {
  color: var(--green);
  font-weight: 850;
}
.article-example dd {
  margin: 0;
  color: #42534c;
}
.source-note {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-left: 4px solid var(--green);
  background: #edf7f2;
  font-size: 0.86rem;
}
.source-note a {
  font-weight: 750;
}
.related-guides {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 4rem;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--cream);
}
.related-guides h2 {
  margin-bottom: 0.5rem;
}
.related-guides a {
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}
.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 6rem;
  border-radius: 1rem;
  background: var(--cream);
}
.newsletter h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.04em;
}
.newsletter p:last-child {
  max-width: 45rem;
  color: var(--muted);
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding-top: 1rem;
}
.story article {
  padding: 2.5rem;
  border-radius: 1rem;
  background: var(--cream);
}
.story h2 {
  font-size: 2rem;
}
.story p,
.story li {
  color: var(--muted);
}
.story li {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 6rem;
  max-width: 76rem;
  min-height: 42rem;
  margin: auto;
  padding: 5rem 2rem 7rem;
}
.contact-layout h1 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}
.contact-layout ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}
.contact-layout li::before {
  content: '✓';
  margin-right: 0.6rem;
  color: var(--green);
}
.contact-card {
  padding: 2.5rem;
  border-radius: 1rem;
  background: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.contact-card .eyebrow {
  color: #a9ddc6;
}
.contact-card h2 {
  font-size: 2rem;
}
.contact-card p,
.contact-card small {
  color: #c8e0d6;
}
.contact-card .button {
  width: 100%;
  margin: 1rem 0;
  color: var(--green-dark);
  background: #fff;
  border-color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
}
.contact-card small {
  display: block;
  line-height: 1.5;
}
.legal-page {
  max-width: 48rem;
  margin: auto;
  padding: 5rem 2rem 7rem;
}
.legal-page h1 {
  margin: 0 0 2rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}
.legal-page h2 {
  margin-top: 2.5rem;
  font-size: 1.4rem;
}
.legal-page p {
  color: var(--muted);
}
.legal-alert {
  padding: 1.2rem;
  border-left: 4px solid var(--amber);
  background: #fff7e7;
}
.not-found {
  display: grid;
  min-height: 36rem;
  place-content: center;
  padding: 3rem 2rem;
  text-align: center;
}
.not-found h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}
.not-found p:not(.eyebrow) {
  color: var(--muted);
}
.not-found .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 3rem;
  padding: 4rem max(2rem, calc((100vw - 76rem) / 2)) 2rem;
  color: #cbdad4;
  background: #10231c;
}
.site-footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.site-footer strong {
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: 0.83rem;
}
.site-footer a:not(.brand) {
  color: #cbdad4;
  font-size: 0.82rem;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer .brand-footer {
  color: #fff;
}
.site-footer p {
  margin: 0;
  font-size: 0.8rem;
}
.footer-legal {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid #284038;
}
.consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: min(29rem, calc(100vw - 2rem));
  padding: 1.2rem;
  border-radius: 0.8rem;
  color: #fff;
  background: #172b24;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 30%);
}
.consent[hidden] {
  display: none;
}
.consent p {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
}
.consent > div {
  display: flex;
  gap: 0.8rem;
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 1.25rem;
  }
  .site-header nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 1rem 2rem rgb(20 49 39 / 8%);
  }
  .js .menu-toggle {
    display: block;
  }
  .js .site-header nav {
    display: none;
  }
  .js .site-header nav.nav-open {
    display: grid;
  }
  .site-header nav > a {
    padding: 0.9rem;
  }
  .site-header .nav-login {
    border: 0;
    padding-left: 0.9rem;
  }
  .hero,
  .landing-hero,
  .contact-layout,
  .article-section,
  .workflow,
  .proof-ready,
  .benefits,
  .faq,
  .story {
    grid-template-columns: 1fr;
  }
  .hero {
    gap: 2rem;
    padding-top: 4rem;
  }
  .hero-visual {
    min-height: 30rem;
  }
  .landing-hero,
  .contact-layout {
    gap: 2.5rem;
  }
  .article-section,
  .workflow,
  .benefits,
  .faq {
    gap: 3rem;
  }
  .problem-grid,
  .feature-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .guide-index {
    position: static;
  }
  .topic-list > article {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .landing-hero,
  .simple-hero,
  .contact-layout,
  .legal-page,
  .guide {
    padding-inline: 1.25rem;
  }
  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }
  .hero-copy h1,
  .landing-hero h1,
  .simple-hero h1,
  .contact-layout h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }
  .hero-visual {
    min-height: 25rem;
    border-radius: 1.5rem;
  }
  .float-note-one {
    right: 0.5rem;
  }
  .float-note-two {
    left: 0.5rem;
  }
  .dash-metrics div {
    padding: 0.6rem;
  }
  .logos-placeholder,
  .split-heading,
  .problem-grid,
  .feature-grid,
  .blog-grid,
  .audience-grid,
  .scenario-grid,
  .benefits ul {
    grid-template-columns: 1fr;
  }
  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .cta-band,
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
    margin: 1rem 1.25rem 4rem;
    padding: 2rem;
    border-radius: 1rem;
  }
  .cta-band .button-light {
    width: 100%;
  }
  .feature-card {
    min-height: 0;
  }
  .proof-ready {
    gap: 2rem;
  }
  .topic-list > article {
    padding: 1.3rem;
  }
  .blog-card {
    min-height: 0;
  }
  .guide {
    padding-top: 3rem;
  }
  .guide-header {
    padding-bottom: 3rem;
  }
  .guide-header h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }
  .article-example div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-inline: 1.25rem;
  }
  .site-footer > div:first-child,
  .footer-legal {
    grid-column: 1 / -1;
  }
  .consent > div {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
