:root {
  --ink: #102027;
  --muted: #52636c;
  --line: #d7e0de;
  --paper: #f7faf8;
  --white: #ffffff;
  --teal: #0c6b6f;
  --teal-dark: #083c44;
  --copper: #b4643b;
  --gold: #d5a44b;
  --mist: #e8f0ed;
  --shadow: 0 22px 60px rgba(16, 32, 39, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(241, 193, 107, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(241, 193, 107, 0.12);
  }
}

@keyframes model-step {
  0%,
  14% {
    background: rgba(7, 28, 33, 0.52);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateX(0);
  }

  20%,
  34% {
    background: rgba(241, 193, 107, 0.24);
    border-color: rgba(241, 193, 107, 0.62);
    transform: translateX(6px);
  }

  42%,
  100% {
    background: rgba(7, 28, 33, 0.52);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateX(0);
  }
}

@keyframes value-sweep {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }

  18%,
  78% {
    opacity: 1;
  }

  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

@keyframes connector-flow {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 42px 0;
  }
}

@keyframes loop-card-glow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
  }

  50% {
    border-color: rgba(241, 193, 107, 0.58);
    background: rgba(241, 193, 107, 0.12);
  }
}

.hero-animate {
  animation: fade-up 0.7s ease both;
}

.hero-animate:nth-child(2) {
  animation-delay: 0.12s;
}

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

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

.service-card,
.values-grid article,
.contact-panel,
.contact-notes,
.pricing-value-strip article,
.map-node,
.pricing-statement,
.pricing-callout,
.pricing-detail-grid article {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover,
.values-grid article:hover,
.contact-panel:hover,
.contact-notes:hover,
.pricing-value-strip article:hover,
.map-node:hover,
.pricing-statement:hover,
.pricing-callout:hover,
.pricing-detail-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 107, 111, 0.28);
  box-shadow: 0 18px 44px rgba(16, 32, 39, 0.1);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(247, 250, 248, 0.9);
  border-bottom: 1px solid rgba(215, 224, 222, 0.75);
  backdrop-filter: blur(16px);
}

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

.brand-mark-img {
  width: 52px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--teal-dark);
  padding: 11px 16px;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(8, 60, 68, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(700px, calc(100svh - 82px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #08272d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 39, 45, 0.96), rgba(8, 39, 45, 0.78) 44%, rgba(8, 39, 45, 0.28)),
    linear-gradient(135deg, rgba(12, 107, 111, 0.38), rgba(180, 100, 59, 0.2)),
    url("../assets/consulting-hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c16b;
}

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

h1 {
  max-width: 1050px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
}

.button.primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 18px 36px rgba(180, 100, 59, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 650;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
}

.align-center {
  align-items: center;
}

.intro h2,
.section-heading h2,
.dark-band h2,
.cta-band h2,
.page-hero h1,
.detail-row h2,
.about-story h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.prose {
  color: var(--muted);
  font-size: 1.06rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.visual-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  padding-top: 30px;
}

.feature-image,
.image-band {
  margin: 0 auto;
}

.feature-image img,
.image-band img {
  width: 100%;
  border: 1px solid rgba(215, 224, 222, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image {
  position: relative;
}

.feature-image::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 42%;
  border-right: 2px solid rgba(180, 100, 59, 0.45);
  border-bottom: 2px solid rgba(180, 100, 59, 0.45);
  border-radius: 0 0 8px 0;
  pointer-events: none;
}

.feature-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.feature-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-metrics span {
  color: var(--teal-dark);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 750;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.service-card {
  min-height: 310px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 32, 39, 0.06);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 36px;
  margin-bottom: 32px;
  color: var(--teal-dark);
  background: var(--mist);
  border-radius: 8px;
  font-weight: 800;
}

.service-card h3,
.values-grid h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-card p,
.values-grid p {
  color: var(--muted);
}

.dark-band {
  width: 100%;
  max-width: none;
  padding: 88px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: var(--teal-dark);
}

.dark-band > .split {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.dark-band .section-kicker {
  color: #f1c16b;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-list span {
  display: block;
  margin-bottom: 6px;
  color: #f1c16b;
  font-weight: 800;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 78px;
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.page-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 70px;
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 22px;
}

.page-hero p:not(.eyebrow) {
  max-width: 770px;
  color: var(--muted);
  font-size: 1.2rem;
}

.services-hero {
  width: min(1320px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.76fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  padding-top: 78px;
  padding-bottom: 62px;
}

.services-hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 3.6vw, 4.15rem);
  line-height: 1.03;
}

.services-hero p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

.services-hero figure {
  position: relative;
  margin: 0;
}

.services-hero figure::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 44%;
  height: 44%;
  border-right: 2px solid rgba(180, 100, 59, 0.42);
  border-bottom: 2px solid rgba(180, 100, 59, 0.42);
  border-radius: 0 0 8px 0;
  pointer-events: none;
}

.services-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(215, 224, 222, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-detail-list {
  padding-top: 54px;
}

.service-detail-list .detail-row h2 {
  max-width: 520px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.service-detail-list .detail-row {
  padding: 38px 0;
}

.pricing-hero {
  position: relative;
  width: 100%;
  min-height: min(520px, calc(100svh - 82px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 28, 33, 0.96), rgba(8, 60, 68, 0.78) 48%, rgba(8, 60, 68, 0.38)),
    linear-gradient(135deg, rgba(180, 100, 59, 0.22), rgba(12, 107, 111, 0.18)),
    url("../assets/pricing-value.jpg");
  background-size: cover;
  background-position: center;
}

.pricing-hero-inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.55fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  padding: 56px 0 60px;
}

.pricing-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.85rem, 4vw, 4.2rem);
  line-height: 1;
}

.pricing-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.pricing-hero .eyebrow {
  color: #f1c16b;
}

.pricing-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pricing-hero-points span {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 750;
}

.pricing-hero-panel {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.pricing-hero-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f1c16b, transparent);
  animation: value-sweep 3.6s ease-in-out infinite;
}

.pricing-hero-panel > span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal-dark);
  background: #f1c16b;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: soft-pulse 2.8s ease-in-out infinite;
}

.hero-equation {
  display: grid;
  gap: 10px;
}

.hero-equation strong {
  display: block;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(7, 28, 33, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 1.18rem;
  animation: model-step 4.8s ease-in-out infinite;
  animation-delay: calc(var(--step) * 0.55s);
}

.hero-equation b {
  color: #f1c16b;
  font-size: 1.2rem;
  line-height: 1;
  animation: soft-pulse 2.4s ease-in-out infinite;
}

.pricing-hero-panel p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.pricing-principles {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: stretch;
  gap: 24px;
  padding-top: 26px;
}

.pricing-page .section {
  width: min(1120px, calc(100% - 64px));
  padding-top: 44px;
  padding-bottom: 44px;
}

.pricing-page .pricing-principles {
  padding-top: 42px;
}

.pricing-page .cta-band {
  padding-top: 42px;
  padding-bottom: 42px;
}

.pricing-page .cta-band h2 {
  max-width: 900px;
  font-size: clamp(1.85rem, 2.6vw, 2.9rem);
}

.pricing-statement,
.pricing-callout,
.pricing-detail-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 32, 39, 0.06);
}

.pricing-statement {
  padding: clamp(30px, 5vw, 54px);
}

.pricing-statement h2,
.pricing-detail-grid h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.5vw, 3.4rem);
  line-height: 1.05;
}

.pricing-statement p:not(.section-kicker),
.pricing-detail-grid p,
.pricing-detail-grid li {
  color: var(--muted);
}

.pricing-equation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.pricing-equation span {
  color: var(--teal-dark);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 750;
}

.pricing-equation strong {
  color: var(--copper);
  font-size: 1rem;
  line-height: 1;
}

.pricing-callout {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 60, 68, 0.94), rgba(13, 85, 91, 0.9)),
    url("../assets/ai-workshop.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.pricing-callout span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  color: var(--teal-dark);
  background: #f1c16b;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-callout p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 550;
}

.pricing-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding-top: 18px;
}

.pricing-showcase figure {
  margin: 0;
}

.pricing-showcase img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid rgba(215, 224, 222, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-showcase h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.pricing-showcase p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.pricing-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 34px;
}

.pricing-value-strip article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 32, 39, 0.06);
  overflow: hidden;
}

.pricing-value-strip article::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(12, 107, 111, 0.22);
  border-radius: 50%;
}

.pricing-value-strip span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 36px;
  margin-bottom: 30px;
  color: var(--teal-dark);
  background: var(--mist);
  border-radius: 8px;
  font-weight: 800;
}

.pricing-value-strip h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.pricing-value-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-flow-section {
  padding-top: 50px;
}

.loop-focus {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), #0d555b);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.loop-focus::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(241, 193, 107, 0.16) 0 45%, rgba(241, 193, 107, 0.82) 45% 55%, rgba(241, 193, 107, 0.16) 55% 100%);
  background-size: 42px 2px;
  animation: connector-flow 1.8s linear infinite;
  opacity: 0.55;
}

.loop-focus article {
  position: relative;
  z-index: 1;
  min-height: 142px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  animation: loop-card-glow 4.2s ease-in-out infinite;
}

.loop-focus article:nth-of-type(2) {
  animation-delay: 0.6s;
}

.loop-focus article:nth-of-type(3) {
  animation-delay: 1.2s;
}

.loop-focus span {
  display: block;
  margin-bottom: 10px;
  color: #f1c16b;
  font-weight: 800;
}

.loop-focus p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.loop-focus strong {
  color: #f1c16b;
  font-size: 1.5rem;
  animation: soft-pulse 3s ease-in-out infinite;
}

.loop-focus strong:nth-of-type(2) {
  animation-delay: 0.45s;
}

.pricing-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(232, 240, 237, 0.72), rgba(255, 255, 255, 0.76)),
    url("../assets/pricing-value.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 250, 248, 0.84);
}

.map-spine {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 156px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(180, 100, 59, 0.6), transparent);
}

.map-node {
  position: relative;
  z-index: 1;
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 32, 39, 0.06);
}

.map-node-primary {
  background: var(--teal-dark);
  border-color: rgba(255, 255, 255, 0.12);
}

.map-node span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 36px;
  margin-bottom: 28px;
  color: var(--teal-dark);
  background: var(--mist);
  border-radius: 8px;
  font-weight: 800;
}

.map-node-primary span,
.support-card span {
  color: var(--teal-dark);
  background: #f1c16b;
}

.map-node h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.map-node p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.map-node-primary h3,
.support-card h3 {
  color: var(--white);
}

.map-node-primary p,
.support-card p {
  color: rgba(255, 255, 255, 0.76);
}

.map-loop {
  position: relative;
  z-index: 1;
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(180, 100, 59, 0.38);
  border-radius: 8px;
  background: rgba(255, 251, 247, 0.86);
}

.loop-start,
.loop-end {
  border-color: rgba(180, 100, 59, 0.38);
  background: linear-gradient(180deg, #fff, #fbf7f3);
}

.loop-start::before,
.loop-end::before {
  content: "Iterate";
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-loop .loop-start::before,
.map-loop .loop-end::before {
  display: none;
}

.loop-badge {
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 2;
  transform: translateX(-50%);
  color: var(--white);
  background: var(--copper);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.support-card {
  grid-column: span 3;
  min-height: auto;
  color: var(--white);
  background: var(--teal-dark);
  border-color: rgba(255, 255, 255, 0.12);
}

.support-card p {
  max-width: 800px;
}

.flow-note {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 34px;
}

.pricing-detail-grid article {
  padding: clamp(28px, 5vw, 48px);
}

.pricing-detail-grid ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.pricing-detail-grid li {
  margin-bottom: 10px;
}

.pricing-band {
  margin-top: 24px;
}

.pricing-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 26px;
}

.pricing-promise,
.pricing-economics,
.pricing-process-grid article,
.pricing-factor-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 32, 39, 0.06);
}

.pricing-promise {
  padding: clamp(28px, 3.5vw, 40px);
}

.pricing-promise h2,
.pricing-factors-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 2.9vw, 2.85rem);
  line-height: 1.05;
}

.pricing-promise p:not(.section-kicker),
.pricing-factors-panel p,
.pricing-process-grid p,
.pricing-factor-list p {
  color: var(--muted);
}

.pricing-economics {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 28, 33, 0.96), rgba(8, 60, 68, 0.9)),
    url("../assets/pricing-value.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.pricing-economics > span {
  align-self: flex-start;
  color: var(--teal-dark);
  background: #f1c16b;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-economics strong {
  display: block;
  margin-top: auto;
  color: var(--white);
  font-size: clamp(1.95rem, 3.2vw, 2.9rem);
  line-height: 1;
}

.pricing-economics p {
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.78);
}

.pricing-economics dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.pricing-economics div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.pricing-economics dt,
.pricing-economics dd {
  margin: 0;
}

.pricing-economics dt {
  color: #f1c16b;
  font-weight: 850;
}

.pricing-economics dd {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-process-compact {
  padding-top: 22px;
  padding-bottom: 26px;
}

.pricing-process-compact .section-heading {
  display: block;
  max-width: 980px;
  margin-bottom: 24px;
}

.pricing-process-compact .section-heading h2 {
  max-width: 940px;
  font-size: clamp(1.95rem, 2.7vw, 3rem);
}

.pricing-process-compact .section-heading .prose {
  max-width: 760px;
  margin: 16px 0 0;
}

.pricing-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pricing-process-grid article {
  position: relative;
  min-height: 160px;
  padding: 20px;
  overflow: hidden;
}

.pricing-process-grid article::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(12, 107, 111, 0.18);
  border-radius: 50%;
}

.pricing-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--teal-dark);
  background: var(--mist);
  border-radius: 8px;
  font-weight: 850;
}

.pricing-process-grid h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.pricing-factors-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 28px;
  padding-bottom: 34px;
}

.pricing-factors-panel > div:first-child {
  padding: clamp(30px, 4.5vw, 46px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 28, 33, 0.96), rgba(8, 60, 68, 0.88)),
    url("../assets/ai-workshop.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-factors-panel > div:first-child .section-kicker {
  color: #f1c16b;
}

.pricing-factors-panel > div:first-child h2 {
  color: var(--white);
}

.pricing-factors-panel > div:first-child p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-factor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-factor-list article {
  min-height: 138px;
  padding: 20px;
}

.pricing-factor-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects-hero {
  width: min(1320px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.6fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  padding-top: 78px;
  padding-bottom: 54px;
}

.projects-hero h1 {
  max-width: 880px;
  font-size: clamp(2.7rem, 3.7vw, 4.25rem);
  line-height: 1.03;
}

.projects-hero p:not(.eyebrow) {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

.projects-hero-board {
  position: relative;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 28, 33, 0.96), rgba(8, 60, 68, 0.9)),
    url("../assets/workflow-tools.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(241, 193, 107, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.projects-hero-board::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(241, 193, 107, 0.28);
  border-radius: 50%;
}

.hero-board-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-board-kicker {
  display: inline-flex;
  color: var(--teal-dark);
  background: #f1c16b;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-board-header strong {
  color: #f1c16b;
  font-size: 1.05rem;
}

.projects-hero-board h2 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.hero-board-chart {
  position: relative;
  z-index: 1;
  min-height: 150px;
  margin-bottom: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.hero-board-chart::after {
  content: "";
  position: absolute;
  inset: auto 18px 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.hero-board-line {
  position: absolute;
  inset: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-board-line::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 8%;
  top: 47%;
  height: 2px;
  background: linear-gradient(90deg, #f1c16b, #70d3cf);
  transform: rotate(-9deg);
  transform-origin: left center;
}

.hero-board-bars {
  position: absolute;
  left: 28px;
  right: 128px;
  bottom: 25px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 74px;
}

.hero-board-bars span {
  display: block;
  width: 24px;
  height: var(--bar);
  background: rgba(241, 193, 107, 0.88);
  border-radius: 6px 6px 0 0;
}

.hero-board-chart em {
  position: absolute;
  right: 24px;
  bottom: 27px;
  color: #f1c16b;
  font-size: 2rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.hero-board-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.hero-board-metrics div {
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.hero-board-metrics dt {
  margin-bottom: 6px;
  color: #f1c16b;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-board-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.25;
}

.contact-hero {
  width: min(1320px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  padding-top: 78px;
  padding-bottom: 54px;
}

.contact-hero h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 3.7vw, 4.25rem);
  line-height: 1.03;
}

.contact-hero p:not(.eyebrow) {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

.contact-hero-card {
  position: relative;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 28, 33, 0.96), rgba(8, 60, 68, 0.91)),
    url("../assets/pricing-value.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(241, 193, 107, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-hero-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 136px;
  height: 136px;
  border: 1px solid rgba(241, 193, 107, 0.3);
  border-radius: 50%;
}

.contact-hero-card > span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal-dark);
  background: #f1c16b;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
  line-height: 1.05;
}

.contact-hero-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 22px;
  color: #f1c16b;
  font-size: 1.08rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-hero-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
}

.contact-hero-card dl div {
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid #f1c16b;
  border-radius: 8px;
}

.contact-hero-card dt {
  margin-bottom: 5px;
  color: #f1c16b;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-hero-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.35;
}

.about-hero {
  width: min(1320px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  padding-top: 72px;
  padding-bottom: 58px;
}

.about-hero h1 {
  max-width: 840px;
  font-size: clamp(2.7rem, 3.7vw, 4.25rem);
  line-height: 1.03;
}

.about-hero p:not(.eyebrow) {
  max-width: 740px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

.about-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 26px;
}

.about-hero-points span {
  color: var(--teal-dark);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 750;
}

.about-hero-photo {
  position: relative;
  margin: 0;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(12, 107, 111, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-hero-photo::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 46%;
  height: 46%;
  border-right: 2px solid rgba(180, 100, 59, 0.42);
  border-bottom: 2px solid rgba(180, 100, 59, 0.42);
  border-radius: 0 0 8px 0;
  pointer-events: none;
}

.about-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.about-hero-photo figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 4px 2px;
}

.about-hero-photo strong {
  color: var(--ink);
  font-size: 1rem;
}

.about-hero-photo span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  text-align: right;
}

.about-founder-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(34px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 60, 68, 0.96), rgba(13, 85, 91, 0.92)),
    url("../assets/workflow-tools.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-founder-band .section-kicker {
  color: #f1c16b;
}

.about-founder-band h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.06;
}

.about-founder-band .prose {
  color: rgba(255, 255, 255, 0.78);
}

.construction-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(34px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 60, 68, 0.95), rgba(13, 85, 91, 0.9)),
    url("../assets/workflow-tools.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.construction-panel .section-kicker {
  color: #f1c16b;
}

.construction-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.construction-panel p:not(.section-kicker) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
}

.project-preview-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 30px;
  background: linear-gradient(180deg, #ffffff, #f8fbf9);
  border: 1px solid rgba(12, 107, 111, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(16, 32, 39, 0.12);
  overflow: hidden;
}

.project-preview-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.featured-project-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 60, 68, 0.96), rgba(13, 85, 91, 0.92)),
    url("../assets/workflow-tools.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  border-color: rgba(8, 60, 68, 0.42) !important;
  box-shadow: 0 26px 62px rgba(8, 60, 68, 0.24) !important;
}

.project-card-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 246, 244, 0.96)),
    repeating-linear-gradient(135deg, rgba(12, 107, 111, 0.08) 0 1px, transparent 1px 12px) !important;
}

.project-preview-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 36px;
  margin-bottom: 22px;
  color: var(--teal-dark);
  background: var(--mist);
  border-radius: 8px;
  font-weight: 800;
}

.featured-project-card span {
  color: var(--teal-dark);
  background: #f1c16b;
}

.project-card-muted span {
  color: #6a7a82;
  background: #eef3f1;
}

.project-status {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 18px;
  padding: 7px 10px;
  color: var(--copper);
  background: #fff6ec;
  border: 1px solid rgba(180, 100, 59, 0.22);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-project-card .project-status {
  color: #f1c16b;
  background: rgba(241, 193, 107, 0.12);
  border-color: rgba(241, 193, 107, 0.34);
}

.project-preview-grid h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.2;
}

.project-preview-grid p {
  color: var(--muted);
}

.featured-project-card p {
  color: rgba(255, 255, 255, 0.78);
}

.project-card-muted h3,
.project-card-muted p:not(.project-status) {
  color: #6a7a82;
}

.project-card-muted .text-link {
  color: #5f7178;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 12px;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid rgba(12, 107, 111, 0.24);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 32, 39, 0.08);
}

.featured-project-card .text-link {
  color: var(--teal-dark);
  background: #f1c16b;
  border-color: rgba(241, 193, 107, 0.72);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.placeholder-detail {
  padding: clamp(34px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.placeholder-detail h2 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.project-catalog {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 34px;
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(12, 107, 111, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(16, 32, 39, 0.13);
  overflow: hidden;
}

.project-preview-grid article.project-card {
  padding: 0;
}

.project-preview-grid article.project-card::before {
  content: none;
  display: none;
}

.project-preview-grid article.project-card-live {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 28, 33, 0.96), rgba(8, 60, 68, 0.9)),
    url("../assets/workflow-tools.jpg");
  background-size: cover;
  background-position: center;
  border-color: rgba(241, 193, 107, 0.22);
  box-shadow: 0 30px 74px rgba(8, 60, 68, 0.28);
}

.project-preview-grid article.project-card-quiet {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 246, 0.98)),
    repeating-linear-gradient(135deg, rgba(12, 107, 111, 0.07) 0 1px, transparent 1px 13px);
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 24px 0;
}

.project-card-title {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.16;
}

.project-card-live .project-card-title {
  color: var(--white);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.project-card-quiet .project-card-title {
  color: var(--ink);
}

.project-card-number,
.project-card-status {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  min-width: max-content;
  max-width: 100%;
  margin: 0;
  min-height: 32px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: normal;
}

.project-preview-grid .project-card-number,
.project-preview-grid .project-card-status {
  width: auto;
  height: auto;
  margin: 0;
}

.project-card-number {
  color: var(--teal-dark);
  background: var(--mist);
  border: 1px solid var(--line);
}

.project-card-status {
  color: var(--copper);
  background: #fff6ec;
  border: 1px solid rgba(180, 100, 59, 0.24);
}

.project-card-live .project-card-number,
.project-card-live .project-card-status {
  color: var(--teal-dark);
  background: #f1c16b;
  border-color: rgba(241, 193, 107, 0.62);
}

.project-card-visual {
  position: relative;
  min-height: 104px;
  margin: 18px 24px 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.project-card-visual::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.mini-chart-line {
  position: absolute;
  inset: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.mini-chart-line::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, #f1c16b, #70d3cf);
  transform: rotate(-10deg);
  transform-origin: left center;
}

.mini-chart-bars {
  position: absolute;
  left: 22px;
  right: 96px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 54px;
}

.mini-chart-bars span {
  display: block;
  width: 18px;
  height: var(--bar);
  margin: 0;
  background: rgba(241, 193, 107, 0.86);
  border-radius: 5px 5px 0 0;
}

.project-card-visual strong {
  position: absolute;
  right: 18px;
  bottom: 20px;
  color: #f1c16b;
  font-size: 1.65rem;
  line-height: 1;
}

.project-card-visual-empty {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(232, 240, 237, 0.62);
  border-color: rgba(12, 107, 111, 0.12);
}

.project-card-visual-empty span {
  width: auto;
  height: auto;
  min-height: 64px;
  margin: 0;
  background: rgba(255, 255, 255, 0.68);
  border: 1px dashed rgba(12, 107, 111, 0.2);
  border-radius: 8px;
}

.project-card-visual-image {
  display: block;
  min-height: 188px;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
}

.project-card-visual-image::after {
  content: none;
}

.project-card-visual-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: contain;
  object-position: center;
}

.project-card-app .project-card-visual-image img {
  object-position: center;
}

.project-card p:not(.project-card-status) {
  padding-inline: 24px;
}

.project-card p:not(.project-card-status) {
  color: var(--muted);
}

.project-card-live p:not(.project-card-status) {
  color: rgba(255, 255, 255, 0.8);
}

.project-card-proof {
  display: grid;
  gap: 8px;
  margin: 0 24px 22px;
  padding: 0;
  text-align: left;
}

.project-card-proof div {
  display: block;
  min-width: 0;
  padding: 10px 12px 10px 13px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(12, 107, 111, 0.14);
  border-left: 3px solid rgba(180, 100, 59, 0.42);
  border-radius: 8px;
  text-align: left;
}

.project-card-live .project-card-proof div {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  border-left-color: #f1c16b;
}

.project-card-proof dt {
  margin: 0 0 3px;
  color: var(--copper);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.project-card-live .project-card-proof dt {
  color: #f1c16b;
}

.project-card-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.project-card-live .project-card-proof dd {
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 760px) {
  .project-card-app .project-card-proof dd {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.project-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: auto 24px 24px;
  padding: 12px 16px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid rgba(12, 107, 111, 0.22);
  border-radius: 8px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(16, 32, 39, 0.1);
}

.project-card-live .project-card-action {
  background: #f1c16b;
  border-color: rgba(241, 193, 107, 0.62);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.project-card-no-action {
  padding-bottom: 34px;
}

.project-preview-grid article.project-card-no-action {
  padding-bottom: 34px;
}

.project-card-no-action .project-card-proof {
  margin-bottom: 0;
}

.case-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  min-height: min(620px, calc(100svh - 82px));
  padding: 78px max(20px, calc((100vw - var(--max)) / 2)) 84px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 28, 33, 0.97), rgba(8, 60, 68, 0.86) 50%, rgba(8, 60, 68, 0.5)),
    linear-gradient(135deg, rgba(180, 100, 59, 0.22), rgba(12, 107, 111, 0.18)),
    url("../assets/workflow-tools.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.case-hero-app {
  background:
    linear-gradient(90deg, rgba(7, 28, 33, 0.97), rgba(8, 60, 68, 0.84) 52%, rgba(8, 60, 68, 0.48)),
    linear-gradient(135deg, rgba(36, 159, 84, 0.18), rgba(241, 193, 107, 0.18)),
    url("../assets/workflow-tools.jpg");
  background-size: cover;
  background-position: center;
}

.case-hero::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - var(--max)) / 2));
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(241, 193, 107, 0.72), transparent);
}

.case-hero-copy,
.case-report-card {
  position: relative;
  z-index: 1;
}

.case-hero .eyebrow {
  color: #f1c16b;
}

.case-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(3rem, 4.7vw, 5rem);
  line-height: 1;
}

.case-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.case-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.case-hero-tags span {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 750;
}

.case-report-card {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.28);
}

.case-app-preview {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.case-app-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.report-window-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 26px;
}

.report-window-bar span {
  width: 10px;
  height: 10px;
  background: var(--line);
  border-radius: 50%;
}

.report-window-bar span:first-child {
  background: var(--copper);
}

.report-window-bar span:nth-child(2) {
  background: var(--gold);
}

.report-window-bar span:nth-child(3) {
  background: var(--teal);
}

.report-label {
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-report-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.04;
}

.report-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.report-kpis div {
  min-height: 98px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.report-kpis span,
.report-bars span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-kpis strong {
  display: block;
  margin-top: 12px;
  color: var(--teal-dark);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.report-bars {
  display: grid;
  gap: 13px;
}

.report-bars div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
}

.report-bars b {
  position: relative;
  display: block;
  height: 10px;
  background: var(--mist);
  border-radius: 999px;
  overflow: hidden;
}

.report-bars b::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: inherit;
}

.report-bars em {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 800;
}

.case-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 34px;
}

.case-standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  padding-top: 34px;
}

.case-summary-grid article,
.case-standard-grid article,
.analysis-method-grid article,
.recommendation-stack article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 32, 39, 0.06);
}

.case-summary-grid article {
  padding: clamp(28px, 5vw, 48px);
}

.case-standard-grid article {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
}

.case-standard-grid article::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(12, 107, 111, 0.18);
  border-radius: 50%;
}

.case-summary-grid h2,
.case-standard-grid h2,
.case-analysis-showcase h2,
.case-dark-band h2,
.case-recommendation h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.case-summary-grid h2 {
  font-size: clamp(1.85rem, 3.2vw, 3.15rem);
}

.case-standard-grid h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.case-summary-grid p:not(.section-kicker),
.case-standard-grid p:not(.section-kicker),
.analysis-method-grid p,
.recommendation-stack p {
  color: var(--muted);
}

.app-build-section {
  padding-top: 34px;
}

.app-build-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.app-build-grid article {
  min-height: 240px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 32, 39, 0.06);
}

.app-build-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--teal-dark);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 850;
}

.app-build-grid h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.app-build-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.case-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.case-brief h2,
.report-embed-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.4vw, 4.1rem);
  line-height: 1.05;
}

.case-brief-points {
  display: grid;
  gap: 18px;
}

.case-brief-points article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.case-brief-points h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.case-brief-points p {
  margin-bottom: 0;
  color: var(--muted);
}

.report-embed-section {
  padding-top: 34px;
}

.report-embed-shell {
  height: 6200px;
  min-height: 6200px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.report-embed-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.report-open-link {
  margin-top: 18px;
}

.report-snapshots-section {
  padding-top: 34px;
}

.report-snapshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 18px;
  align-items: start;
}

.report-snapshot-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.report-snapshot-card-large {
  grid-row: span 2;
}

.report-snapshot-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: left top;
  background: var(--white);
}

.report-snapshot-card figcaption {
  margin: 0;
  padding: 18px 20px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .report-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .report-snapshot-card-large {
    grid-row: auto;
  }
}

.report-highlight-section {
  padding-top: 42px;
}

.report-dashboard {
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(7, 28, 33, 0.04), rgba(12, 107, 111, 0.06)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.report-dashboard-header h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.report-dashboard-header > span {
  flex: 0 0 auto;
  color: var(--teal-dark);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.report-metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.report-metric-row article,
.report-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.report-metric-row article {
  min-height: 128px;
  padding: 18px;
}

.report-metric-row span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-metric-row strong {
  display: block;
  margin-top: 18px;
  color: var(--teal-dark);
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  line-height: 1.04;
}

.report-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 16px;
  margin-bottom: 16px;
}

.report-panel {
  padding: 20px;
  overflow: hidden;
}

.report-wide {
  grid-row: span 2;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-heading h4 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.panel-heading p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.accuracy-chart {
  display: grid;
  gap: 16px;
}

.accuracy-chart div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 12px;
}

.accuracy-chart span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.accuracy-chart b {
  position: relative;
  display: block;
  height: 14px;
  background: var(--white);
  border: 1px solid rgba(215, 224, 222, 0.85);
  border-radius: 999px;
  overflow: hidden;
}

.accuracy-chart b::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: inherit;
}

.accuracy-chart em {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 850;
  text-align: right;
}

.report-mini-table,
.report-comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.report-mini-table th,
.report-mini-table td,
.report-comparison-table th,
.report-comparison-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.report-mini-table th,
.report-comparison-table th {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-mini-table td,
.report-comparison-table td {
  color: var(--muted);
  font-size: 0.92rem;
}

.report-mini-table td:first-child,
.report-comparison-table td:first-child {
  color: var(--ink);
  font-weight: 750;
}

.triage-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.triage-band span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.triage-band span:nth-child(2) {
  color: var(--teal-dark);
  background: #f1c16b;
}

.triage-band span:nth-child(3) {
  background: var(--copper);
}

.triage-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.triage-stats div {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.triage-stats strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.55rem;
  line-height: 1;
}

.triage-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.report-table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.report-comparison-table {
  min-width: 860px;
}

.case-analysis-showcase {
  padding-top: 42px;
}

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

.analysis-method-grid article {
  min-height: 300px;
  padding: 26px;
}

.analysis-method-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 36px;
  margin-bottom: 30px;
  color: var(--teal-dark);
  background: var(--mist);
  border-radius: 8px;
  font-weight: 800;
}

.analysis-method-grid h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.case-dark-band {
  width: 100%;
  padding: 90px clamp(20px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 28, 33, 0.96), rgba(8, 60, 68, 0.92)),
    url("../assets/pricing-value.jpg");
  background-size: cover;
  background-position: center;
}

.case-dark-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.case-dark-band .section-kicker {
  color: #f1c16b;
}

.case-dark-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.case-outcome-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-outcome-list article {
  min-height: 240px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.case-outcome-list span {
  display: block;
  margin-bottom: 18px;
  color: #f1c16b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-outcome-list strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.case-recommendation {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.recommendation-stack {
  display: grid;
  gap: 16px;
}

.recommendation-stack article {
  padding: 24px;
}

.recommendation-stack h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.image-band {
  padding-top: 0;
  padding-bottom: 20px;
}

.image-band img {
  max-height: 440px;
  object-fit: cover;
}

.image-band-tight {
  padding-top: 10px;
  padding-bottom: 16px;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.detail-row ul,
.contact-notes ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.detail-row li,
.contact-notes li {
  margin-bottom: 9px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
}

.founder-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), #0d555b);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-photo {
  margin: 0;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(4, 24, 28, 0.28);
}

.founder-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.founder-card .section-kicker {
  color: #f1c16b;
}

.founder-card h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
}

.founder-card .prose {
  color: rgba(255, 255, 255, 0.78);
}

.values-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  padding-top: 28px;
}

.contact-panel,
.contact-notes {
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 32, 39, 0.06);
}

.contact-panel h2,
.contact-notes h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.contact-panel p,
.contact-notes {
  color: var(--muted);
}

.contact-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-dark);
  font-size: 1.2rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #071c21;
}

.site-footer > div:first-child {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 18px;
}

.footer-brand {
  margin-bottom: 0;
  color: var(--white);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-mark-img {
  width: 38px;
  height: 34px;
}

.footer-mark-chip {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.site-footer p {
  max-width: none;
  margin: 0;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 22px;
  color: var(--white);
  font-weight: 650;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .card-grid,
  .values-grid,
  .project-preview-grid,
  .pricing-value-strip,
  .analysis-method-grid,
  .report-metric-row,
  .case-outcome-list,
  .case-standard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-map {
    grid-template-columns: 1fr;
  }

  .map-loop,
  .support-card {
    grid-column: auto;
  }

  .service-card {
    min-height: 250px;
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 50px 0 24px;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  .hero-actions {
    margin-top: 22px;
  }

  .trust-strip {
    margin-top: 24px;
  }

  .split,
  .visual-feature,
  .services-hero,
  .projects-hero,
  .contact-hero,
  .about-hero,
  .about-founder-band,
  .case-hero,
  .case-brief,
  .case-summary-grid,
    .case-standard-grid,
    .case-dark-inner,
    .case-recommendation,
    .report-snapshot-grid,
    .report-visual-grid,
  .app-build-grid,
  .pricing-hero-inner,
  .pricing-showcase,
  .pricing-principles,
  .pricing-detail-grid,
  .pricing-brief,
  .pricing-factors-panel,
  .pricing-process-compact .section-heading,
  .construction-panel,
  .detail-row,
  .contact-layout,
  .founder-card,
  .founder-copy {
    grid-template-columns: 1fr;
  }

  .founder-photo img {
    max-height: 420px;
  }

  .section {
    padding: 68px 0;
  }

  .pricing-page .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .dark-band {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding-top: 82px;
  }

  .services-hero {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .services-hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .services-hero img {
    aspect-ratio: 16 / 9;
  }

  .projects-hero {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .projects-hero h1 {
    font-size: clamp(2.35rem, 9.5vw, 3.3rem);
  }

  .projects-hero-board {
    display: none;
  }

  .contact-hero {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .contact-hero h1 {
    font-size: clamp(2.35rem, 9.5vw, 3.3rem);
  }

  .contact-hero-card {
    display: none;
  }

  .about-hero {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .about-hero h1 {
    font-size: clamp(2.1rem, 8.3vw, 2.85rem);
  }

  .about-hero-points {
    margin: 18px 0 18px;
  }

  .about-hero-photo {
    order: -1;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    max-width: 100%;
    padding: 10px;
  }

  .about-hero-photo img {
    width: 96px;
    height: 96px;
    aspect-ratio: auto;
  }

  .about-hero-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 0;
  }

  .about-hero-photo span {
    text-align: left;
  }

  .about-founder-band {
    padding: 30px;
  }

  .pricing-hero {
    min-height: auto;
  }

  .case-hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .pricing-hero-inner {
    padding: 58px 0 62px;
  }

  .pricing-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.1rem);
  }

  .pricing-hero-points {
    margin-top: 22px;
  }

  .pricing-hero-panel {
    display: none;
  }

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

  .pricing-hero-panel > span {
    margin-bottom: 18px;
  }

  .hero-equation strong {
    padding: 12px 14px;
  }

  .case-report-card {
    display: none;
  }

  .case-app-preview {
    max-width: 620px;
  }

  .pricing-value-strip article {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .site-footer p {
    white-space: normal;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .map-spine {
    display: none;
  }

  .loop-focus {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
    padding: 18px;
  }

  .loop-focus::before {
    top: 24px;
    bottom: 24px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    background-image: linear-gradient(180deg, rgba(241, 193, 107, 0.16) 0 45%, rgba(241, 193, 107, 0.82) 45% 55%, rgba(241, 193, 107, 0.16) 55% 100%);
    background-size: 2px 42px;
    animation-name: connector-flow;
  }

  .loop-focus strong {
    justify-self: center;
    transform: rotate(90deg);
    font-size: 1.18rem;
  }

  .loop-focus article {
    min-height: 0;
    padding: 16px;
  }
}

@media (max-width: 560px) {
  .pricing-page .section,
  .pricing-hero-inner {
    width: min(var(--max), calc(100% - 40px));
  }

  .brand {
    gap: 9px;
  }

  .brand-mark-img {
    width: 44px;
    height: 40px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .card-grid,
  .values-grid,
  .project-preview-grid,
  .pricing-value-strip,
  .analysis-method-grid,
  .pricing-process-grid,
  .pricing-factor-list,
  .report-metric-row,
  .case-outcome-list,
  .pricing-map,
  .map-loop {
    grid-template-columns: 1fr;
  }

  .report-kpis,
  .report-bars div,
  .accuracy-chart div,
  .triage-stats,
  .triage-band {
    grid-template-columns: 1fr;
  }

  .report-bars em,
  .accuracy-chart em {
    justify-self: start;
    text-align: left;
  }

  .report-dashboard-header,
  .panel-heading {
    flex-direction: column;
  }

  .panel-heading p {
    text-align: left;
  }

  .report-embed-shell {
    height: 6600px;
    min-height: 6600px;
  }

  .report-snapshot-card-large {
    grid-row: auto;
  }

  .report-snapshot-card img,
  .report-snapshot-card-large img {
    min-height: auto;
  }

  .pricing-map {
    padding: 18px;
  }

  .map-loop {
    grid-column: auto;
  }

  .loop-badge {
    position: static;
    transform: none;
    white-space: normal;
    align-self: start;
    justify-self: start;
  }

  .support-card {
    grid-column: auto;
  }

  .hero-actions,
  .hero-actions .button,
  .cta-band .button,
  .project-preview-grid .text-link {
    width: 100%;
  }

  .project-preview-grid {
    gap: 22px;
    padding-top: 12px;
  }

  .project-preview-grid article {
    min-height: auto;
    padding: 28px 24px;
    border-color: rgba(12, 107, 111, 0.24);
    box-shadow: 0 18px 44px rgba(16, 32, 39, 0.14);
  }

  .featured-project-card {
    box-shadow: 0 22px 52px rgba(8, 60, 68, 0.28) !important;
  }

  .project-preview-grid h3 {
    font-size: 1.28rem;
  }

  .project-catalog {
    padding-top: 12px;
  }

  .project-card {
    min-height: auto;
    box-shadow: 0 20px 48px rgba(16, 32, 39, 0.16);
  }

  .project-preview-grid article.project-card {
    padding: 0;
  }

  .project-card-top {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    padding: 22px 22px 0;
  }

  .project-card-number,
  .project-card-status {
    max-width: calc(50% - 6px);
    padding: 7px 9px;
    font-size: 0.66rem;
    line-height: 1.15;
  }

  .project-card-title {
    font-size: 1.28rem;
    line-height: 1.16;
  }

  .project-card-visual {
    min-height: 88px;
    margin: 20px 22px 22px;
  }

  .project-card-visual-image,
  .project-card-visual-image img {
    min-height: 168px;
  }

  .project-card-visual-empty span {
    min-height: 52px;
  }

  .project-card p:not(.project-card-status) {
    padding-inline: 22px;
  }

  .project-card-action {
    width: calc(100% - 44px);
    margin: auto 22px 22px;
  }

  .project-card-proof {
    margin-inline: 22px;
  }

  .trust-strip span {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

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

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