:root {
  color-scheme: light;
  --bg: #f3f6ef;
  --bg-elevated: rgba(255, 255, 255, 0.68);
  --bg-strong: #e6eddc;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(247, 250, 243, 0.96);
  --line: rgba(15, 24, 17, 0.1);
  --line-strong: rgba(15, 24, 17, 0.16);
  --text: #111913;
  --muted: #516150;
  --muted-strong: #384336;
  --accent: #70855a;
  --accent-strong: #56703d;
  --accent-soft: #d7e3c9;
  --accent-ink: #f7faef;
  --shadow-soft: 0 24px 80px rgba(63, 81, 54, 0.12);
  --shadow-strong: 0 40px 120px rgba(51, 68, 43, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(152, 180, 123, 0.24), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(142, 170, 114, 0.16), transparent 24%),
    linear-gradient(180deg, #f7faf4 0%, var(--bg) 22%, #eef3e7 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 25, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 25, 19, 0.035) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.26) 0, transparent 54%);
  background-size: 120px 120px, 120px 120px, 100% 100%;
  mix-blend-mode: multiply;
  opacity: 0.48;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(17, 25, 19, 0.06) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  opacity: 0.14;
  pointer-events: none;
}

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

button,
a,
input,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
dl,
dd,
dt,
ul,
blockquote {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.page-shell {
  position: relative;
  width: min(calc(100% - 40px), calc(var(--container) + 40px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.48;
}

.ambient-a {
  width: 340px;
  height: 340px;
  top: 4rem;
  left: -3rem;
  background: rgba(168, 191, 144, 0.24);
}

.ambient-b {
  width: 280px;
  height: 280px;
  right: 5%;
  top: 24rem;
  background: rgba(115, 145, 87, 0.16);
}

.ambient-c {
  width: 380px;
  height: 380px;
  left: 30%;
  bottom: 8rem;
  background: rgba(255, 255, 255, 0.42);
}

.site-header,
.section,
.trust-strip,
.contact-card {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 18px;
  padding: 14px 18px;
  margin-bottom: 36px;
  background: rgba(250, 252, 247, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, var(--accent-strong), #9ab07d);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 22px rgba(92, 112, 72, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-copy strong {
  font-size: 0.94rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.75rem;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--muted-strong);
}

.top-nav a {
  position: relative;
  font-size: 0.92rem;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 240ms ease;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--accent-ink);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 18px 32px rgba(95, 117, 72, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 38px rgba(95, 117, 72, 0.34);
}

.button-secondary,
.button-ghost {
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(15, 24, 17, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(15, 24, 17, 0.16);
  background: rgba(255, 255, 255, 0.6);
}

.section {
  padding: 44px 0;
}

.section-slim {
  padding: 14px 0 24px;
}

.hero {
  padding-top: 24px;
}

.eyebrow,
.section-kicker,
.kicker,
.showcase-tag,
.note-tag {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 24, 17, 0.08);
  color: var(--muted-strong);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 0 rgba(86, 112, 61, 0.32);
  animation: pulse 2s infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.kicker,
.section-kicker {
  color: var(--accent-strong);
  margin-bottom: 18px;
}

.display {
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  max-width: 12ch;
}

.display em {
  display: block;
  margin-top: 10px;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-strong);
  letter-spacing: -0.03em;
}

.lead {
  max-width: 62ch;
  margin-top: 24px;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.75;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.hero-stats div {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(15, 24, 17, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-stats dt {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.hero-stats dd {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.hero-stage {
  perspective: 1600px;
}

.stage-shell {
  position: relative;
  padding: 24px;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(235, 241, 227, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-strong);
  transform:
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateZ(0);
  transition: transform 260ms ease;
  overflow: hidden;
}

.stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 48%),
    radial-gradient(circle at 80% 20%, rgba(119, 146, 92, 0.2), transparent 30%);
  pointer-events: none;
}

.stage-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.stage-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 24, 17, 0.08);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 600;
}

.stage-pill-soft {
  color: var(--accent-strong);
  background: rgba(217, 230, 203, 0.74);
}

.browser-card {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  background: rgba(17, 24, 19, 0.96);
  color: #f1f6ed;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.browser-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(241, 246, 237, 0.72);
  font-size: 0.82rem;
}

.window-dots {
  display: inline-flex;
  gap: 7px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(241, 246, 237, 0.18);
}

.browser-body {
  padding: 20px;
}

.metric-banner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(126, 152, 100, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-label,
.mini-label {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(241, 246, 237, 0.58);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-banner strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.metric-banner p {
  align-self: center;
  color: rgba(241, 246, 237, 0.74);
  line-height: 1.6;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-card h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.mini-card p {
  margin-top: 12px;
  color: rgba(241, 246, 237, 0.68);
  line-height: 1.55;
  font-size: 0.92rem;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  height: 110px;
  margin: 6px 0 16px;
}

.bar-chart span {
  display: block;
  height: var(--size);
  border-radius: 999px 999px 8px 8px;
  background:
    linear-gradient(180deg, #bcd19f 0%, #799260 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.task-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.task-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(241, 246, 237, 0.74);
  font-size: 0.82rem;
}

.floating-note {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 24, 17, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.floating-note p,
.floating-note strong {
  display: block;
}

.floating-note p {
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.5;
}

.floating-note-left {
  left: -30px;
  bottom: 42px;
  max-width: 200px;
}

.floating-note-right {
  right: -18px;
  top: 112px;
  min-width: 168px;
}

.floating-note-right strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  margin-top: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(15, 24, 17, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.trust-strip p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-strong);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.trust-items span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(232, 239, 224, 0.92);
  border: 1px solid rgba(112, 133, 90, 0.18);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 600;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 14ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  padding: 28px;
  min-height: 320px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 248, 241, 0.58));
  border: 1px solid rgba(15, 24, 17, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(216, 229, 202, 0.34));
  pointer-events: none;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(112, 133, 90, 0.24);
  box-shadow: 0 28px 60px rgba(63, 81, 54, 0.16);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 20px;
  background: rgba(224, 234, 214, 0.88);
  color: var(--accent-strong);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-index {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-card h3,
.timeline-item h3,
.showcase-copy h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-list li,
.pill-row span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 24, 17, 0.08);
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 360px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 24, 17, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.showcase-card-dark {
  grid-column: span 7;
  background:
    radial-gradient(circle at top right, rgba(124, 157, 96, 0.24), transparent 36%),
    linear-gradient(180deg, #111914 0%, #152018 100%);
  color: #eff5ea;
}

.showcase-card:not(.showcase-card-dark):not(.showcase-card-accent) {
  grid-column: span 5;
}

.showcase-card-accent {
  grid-column: span 12;
  min-height: 260px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, rgba(226, 235, 215, 0.88), rgba(208, 221, 193, 0.86));
}

.showcase-copy p {
  max-width: 54ch;
  margin-top: 14px;
  line-height: 1.7;
}

.showcase-card-dark .showcase-copy p,
.showcase-card-dark .showcase-tag {
  color: rgba(239, 245, 234, 0.72);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.showcase-card-dark .pill-row span {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(239, 245, 234, 0.84);
}

.dashboard-mockup {
  align-self: end;
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-topline {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.mock-topline span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(239, 245, 234, 0.18);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.mock-panel {
  min-height: 90px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03));
}

.mock-panel-wide {
  grid-column: span 4;
}

.mock-panel-stat {
  grid-column: span 2;
}

.mock-panel-chart {
  grid-column: span 3;
  min-height: 136px;
}

.mock-panel-list {
  grid-column: span 3;
  min-height: 136px;
}

.workspace-mockup {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  min-height: 250px;
}

.workspace-sidebar,
.workspace-header,
.workspace-editor,
.workspace-cards span {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 24, 17, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.workspace-sidebar {
  border-radius: 24px;
}

.workspace-main {
  display: grid;
  gap: 14px;
}

.workspace-header {
  min-height: 56px;
  border-radius: 18px;
}

.workspace-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.workspace-cards span {
  min-height: 80px;
  border-radius: 18px;
}

.workspace-editor {
  min-height: 140px;
  border-radius: 24px;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item,
.quote-card,
.contact-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 24, 17, 0.08);
  box-shadow: var(--shadow-soft);
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
}

.timeline-item span {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.timeline-item p,
.quote-card blockquote,
.contact-card p {
  margin-top: 12px;
  color: var(--muted-strong);
  line-height: 1.75;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(233, 240, 225, 0.7));
}

.quote-kicker {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-card blockquote {
  margin-top: 18px;
  font-family: "Instrument Serif", serif;
  font-size: 1.75rem;
  line-height: 1.18;
  color: var(--text);
}

.quote-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 24, 17, 0.08);
}

.quote-meta strong {
  display: block;
  font-size: 0.94rem;
  letter-spacing: -0.03em;
}

.quote-meta span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.contact-card {
  padding: 36px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.82), transparent 32%),
    linear-gradient(135deg, rgba(228, 236, 218, 0.96), rgba(245, 248, 240, 0.96));
}

.contact-card h2 {
  max-width: 16ch;
  margin-top: 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.contact-card p {
  max-width: 62ch;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(86, 112, 61, 0.34);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(86, 112, 61, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(86, 112, 61, 0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 16px;
  }

  .hero-grid,
  .approach-grid,
  .trust-strip,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .trust-items {
    justify-content: flex-start;
  }

  .hero-stats,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card-dark,
  .showcase-card:not(.showcase-card-dark):not(.showcase-card-accent),
  .showcase-card-accent {
    grid-column: span 12;
  }

  .floating-note-left {
    left: 18px;
    bottom: 18px;
  }

  .floating-note-right {
    right: 18px;
    top: auto;
    bottom: 124px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 24px), calc(var(--container) + 24px));
    padding-top: 18px;
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
    padding: 16px;
    top: 12px;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .header-cta {
    margin-left: auto;
  }

  .display {
    max-width: 11ch;
  }

  .hero-grid {
    gap: 24px;
  }

  .stage-shell,
  .service-card,
  .showcase-card,
  .timeline-item,
  .quote-card,
  .contact-card {
    padding: 22px;
  }

  .mini-grid,
  .workspace-cards {
    grid-template-columns: 1fr;
  }

  .metric-banner,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .workspace-mockup {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    min-height: 68px;
  }

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

  .mock-panel-wide,
  .mock-panel-stat,
  .mock-panel-chart,
  .mock-panel-list {
    grid-column: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
