:root {
  --color-ink: #14213d;
  --color-text: #334155;
  --color-muted: #667085;
  --color-bg: #fbfaf7;
  --color-surface: #ffffff;
  --color-soft: #f3f7f4;
  --color-border: #dde6e1;
  --color-accent: #287c71;
  --color-accent-dark: #1d5f57;
  --color-accent-soft: #dff1ed;
  --color-ember: #eeb86a;
  --shadow-soft: 0 24px 70px rgba(20, 33, 61, 0.1);
  --shadow-strong: 0 32px 90px rgba(20, 33, 61, 0.18);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(40, 124, 113, 0.08), transparent 36rem),
    linear-gradient(180deg, #fbfaf7 0%, #ffffff 52%, #fbfaf7 100%);
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--color-accent-dark);
}

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

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.08;
}

h1 {
  max-width: 12.5ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.85rem, 6vw, 4.85rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.18rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-muted {
  background: rgba(243, 247, 244, 0.72);
  border-block: 1px solid rgba(221, 230, 225, 0.7);
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: var(--radius);
  background: var(--color-ink);
  color: #fff;
  padding: 0.75rem 1rem;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(221, 230, 225, 0.82);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1.08rem;
  font-weight: 750;
  line-height: 1.1;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.button-secondary {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-ink);
}

.button-small {
  min-height: 2.55rem;
  padding: 0.62rem 0.9rem;
  font-size: 0.92rem;
}

.hero {
  padding-top: clamp(2.8rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: clamp(2.4rem, 7vw, 5rem);
}

.eyebrow,
.micro-label {
  color: var(--color-accent-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1rem;
}

.hero-subtitle {
  max-width: 39rem;
  margin-bottom: 1.8rem;
  color: #475569;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.pulse-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(221, 230, 225, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 249, 0.94)),
    var(--color-surface);
  box-shadow: var(--shadow-strong);
  padding: clamp(1.1rem, 3vw, 1.45rem);
}

.pulse-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--color-accent);
  pointer-events: none;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  padding: clamp(1.3rem, 4vw, 2.6rem);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 2% 3% 8%;
  z-index: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 24% 22%, rgba(238, 184, 106, 0.3), transparent 20rem),
    radial-gradient(circle at 82% 70%, rgba(40, 124, 113, 0.28), transparent 18rem),
    linear-gradient(135deg, rgba(20, 33, 61, 0.08), rgba(40, 124, 113, 0.06));
  filter: blur(1px);
  transform: rotate(-3deg);
}

.visual-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(40, 124, 113, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 55px rgba(20, 33, 61, 0.12);
}

.visual-orbit-one {
  top: 4%;
  right: 5%;
  width: 5.25rem;
  height: 5.25rem;
}

.visual-orbit-two {
  bottom: 8%;
  left: 0;
  width: 3.8rem;
  height: 3.8rem;
}

.pulse-card-header,
.next-action {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pulse-card-header {
  justify-content: space-between;
  margin-bottom: 1rem;
}

.pulse-card h2 {
  margin-bottom: 0;
  font-size: 1.48rem;
}

.status-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  padding: 0.34rem 0.6rem;
  font-size: 0.76rem;
  font-weight: 750;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(150px, 0.95fr);
  gap: 0.85rem;
}

.metric-card,
.insight-panel,
.next-action,
.mini-chart {
  border: 1px solid rgba(221, 230, 225, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
}

.metric-card span,
.outcome-card span {
  display: block;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.metric-card strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--color-ink);
  font-size: 2.15rem;
  line-height: 1;
}

.metric-card small {
  display: block;
  margin-top: 0.75rem;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.primary-metric {
  background:
    linear-gradient(145deg, rgba(223, 241, 237, 0.78), rgba(255, 255, 255, 0.88)),
    #fff;
}

.mini-chart {
  display: flex;
  min-height: 9.2rem;
  align-items: end;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.35rem;
}

.mini-chart span {
  width: 100%;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--color-accent), #9fd6cc);
  box-shadow: inset 0 -10px 18px rgba(255, 255, 255, 0.28);
}

.mini-chart span:nth-child(1) {
  height: 82%;
}

.mini-chart span:nth-child(2) {
  height: 64%;
}

.mini-chart span:nth-child(3) {
  height: 48%;
}

.mini-chart span:nth-child(4) {
  height: 36%;
}

.mini-chart span:nth-child(5) {
  height: 24%;
  background: linear-gradient(180deg, var(--color-ember), #f6d59b);
}

.system-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.system-row span,
.automation-lane span:not(.lane-line) {
  display: inline-flex;
  min-height: 2.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 230, 225, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #415168;
  font-size: 0.74rem;
  font-weight: 780;
}

.insight-panel {
  margin-top: 0.8rem;
}

.insight-panel p,
.next-action p {
  margin: 0.35rem 0 0;
}

.next-action {
  margin-top: 0.8rem;
  background: #f8fbfa;
}

.automation-lane {
  display: grid;
  grid-template-columns: auto minmax(20px, 1fr) auto minmax(20px, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.automation-lane .lane-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(40, 124, 113, 0.22), rgba(40, 124, 113, 0.75));
}

.action-icon {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
}

.problems-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(20, 33, 61, 0.16);
  background:
    radial-gradient(circle at 12% 20%, rgba(40, 124, 113, 0.36), transparent 23rem),
    radial-gradient(circle at 88% 82%, rgba(238, 184, 106, 0.2), transparent 22rem),
    linear-gradient(135deg, #101b32, #17243f 52%, #0f1a2e);
}

.problems-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.problems-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 4.5rem);
}

.problems-copy {
  position: sticky;
  top: 7rem;
}

.problems-copy .eyebrow {
  color: #8ee4d5;
}

.problems-copy h2 {
  color: #fff;
}

.problems-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.quote-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.quote-card {
  position: relative;
  display: flex;
  min-height: 10rem;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 3;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  color: #fff;
  padding: 1.15rem;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 760;
  line-height: 1.16;
}

.quote-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #8ee4d5;
  padding: 0.28rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.quote-large {
  min-height: 15.5rem;
  grid-column: span 4;
  background:
    linear-gradient(145deg, rgba(40, 124, 113, 0.48), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.05);
  font-size: clamp(1.55rem, 3.5vw, 2.45rem);
}

.quote-tall {
  min-height: 15.5rem;
  grid-column: span 2;
}

.quote-wide {
  grid-column: span 4;
}

.quote-accent {
  grid-column: span 6;
  min-height: 12rem;
  background:
    linear-gradient(135deg, rgba(238, 184, 106, 0.26), rgba(40, 124, 113, 0.3)),
    rgba(255, 255, 255, 0.08);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading p {
  color: #536173;
  font-size: 1.05rem;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.outcome-card,
.credibility-panel,
.process-list article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.outcome-card {
  padding: 1.35rem;
}

.service-card p,
.outcome-card p {
  color: #536173;
}

.card-icon {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1.15rem;
  place-items: center;
  border-radius: 7px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.tag-list li {
  border-radius: 999px;
  background: #f4f8f6;
  color: #3f4f5f;
  padding: 0.38rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 650;
}

.outcome-card span {
  border-top: 1px solid var(--color-border);
  margin-top: 1rem;
  padding-top: 1rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 4.5rem);
}

.credibility-panel {
  padding: 1.35rem;
  box-shadow: 0 18px 50px rgba(20, 33, 61, 0.07);
}

.check-list {
  display: grid;
  gap: 1rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 46%, #fff 48% 55%, transparent 57%),
    var(--color-accent);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.process-list article {
  padding: 1.35rem;
}

.process-list span {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 999px;
  background: var(--color-ink);
  color: #fff;
  font-weight: 800;
}

.final-cta {
  text-align: center;
}

.final-cta-inner {
  max-width: 760px;
}

.final-cta p {
  color: #536173;
  font-size: 1.07rem;
}

.direct-email {
  margin-top: 1rem;
  font-size: 0.98rem;
}

.direct-email a {
  color: var(--color-accent-dark);
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 0.35rem 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-footer a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .problems-shell {
    grid-template-columns: 1fr;
  }

  .three-columns,
  .four-columns,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problems-copy {
    position: static;
  }

  .quote-card,
  .quote-large,
  .quote-tall,
  .quote-wide,
  .quote-accent {
    grid-column: span 3;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .section {
    padding: 3.6rem 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 13vw, 3.75rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metric-grid,
  .visual-grid,
  .three-columns,
  .four-columns,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding-inline: 0;
  }

  .system-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .automation-lane {
    grid-template-columns: 1fr;
  }

  .automation-lane .lane-line {
    display: none;
  }

  .quote-wall {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .quote-large,
  .quote-tall,
  .quote-wide,
  .quote-accent {
    min-height: 9.5rem;
    grid-column: auto;
  }

  .pulse-card-header,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-pill {
    align-self: flex-start;
  }
}

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