:root {
  --brand: #14351d;
  --brand-2: #1a4426;
  --brand-3: #2f8a57;
  --ink: #13251d;
  --charcoal: #172226;
  --slate: #53635c;
  --paper: #ffffff;
  --mist: #f3f8f4;
  --line: #dbe7de;
  --warm: #f4f1e8;
  --blue: #476177;
  --shadow: 0 28px 90px rgba(15, 35, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

svg {
  display: block;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(22px, 4vw, 58px);
  color: #f7fff8;
  background: rgba(12, 28, 19, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-actions,
.hero-actions,
.form-actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.04rem;
  font-weight: 950;
}

.brand img {
  display: block;
  width: 116px;
  height: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--brand);
  background: #f7fff8;
  font-weight: 900;
}

.nav-links {
  justify-content: center;
  gap: 18px;
}

.nav-links a,
.text-link,
.site-footer a {
  color: rgba(247, 255, 248, 0.9);
  font-size: 0.9rem;
  font-weight: 820;
}

.nav-links a:hover,
.text-link:hover,
.site-footer a:hover {
  color: #ffffff;
}

.header-actions {
  justify-content: flex-end;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button:focus-visible,
.security-link:focus-visible,
.nav-links a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(107, 225, 141, 0.72);
  outline-offset: 4px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  color: #f7fff8;
  background: var(--brand);
  box-shadow: 0 14px 34px rgba(20, 53, 29, 0.26);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(20, 53, 29, 0.32);
}

.button-secondary {
  color: var(--brand);
  border-color: rgba(20, 53, 29, 0.24);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  border-color: rgba(20, 53, 29, 0.42);
  background: rgba(255, 255, 255, 0.92);
}

.site-header .button-primary {
  color: var(--brand);
  background: #f7fff8;
  box-shadow: 0 10px 26px rgba(107, 225, 141, 0.18);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  min-height: calc(100vh - 76px);
  padding: clamp(68px, 8vw, 118px) max(24px, calc((100vw - 1220px) / 2 + 24px));
  color: #f7fff8;
  background:
    linear-gradient(90deg, rgba(13, 36, 23, 0.98) 0%, rgba(13, 36, 23, 0.94) 38%, rgba(13, 36, 23, 0.76) 62%, rgba(13, 36, 23, 0.44) 100%),
    radial-gradient(circle at 72% 26%, rgba(107, 225, 141, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(13, 36, 23, 0.78), rgba(23, 34, 38, 0.82)),
    url("./assets/hero-stakeholder-discovery.jpg");
  background-position: center, center, center, right center;
  background-size: cover, cover, cover, auto 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #6be18d;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(3rem, 5vw, 5.45rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero-lede {
  max-width: 720px;
  margin: 22px 0 28px;
  color: rgba(247, 255, 248, 0.92);
  font-size: clamp(1.13rem, 1.45vw, 1.28rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .button-primary {
  min-height: 52px;
  padding-inline: 26px;
  color: #102817;
  background: #6be18d;
  box-shadow: 0 18px 46px rgba(107, 225, 141, 0.26);
}

.hero-actions .button-primary:hover {
  box-shadow: 0 22px 54px rgba(107, 225, 141, 0.32);
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-lede,
.hero-actions {
  animation: heroContentIn 640ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy h1 {
  animation-delay: 80ms;
}

.hero-lede {
  animation-delay: 160ms;
}

.hero-actions {
  animation-delay: 240ms;
}

.hero-section .button-secondary {
  color: #f7fff8;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.hero-section .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.hero-evidence-card {
  position: relative;
  display: grid;
  gap: 10px;
  align-self: center;
  width: min(100%, 500px);
  justify-self: end;
  padding: clamp(22px, 2.6vw, 28px);
  border: 1px solid rgba(215, 239, 221, 0.22);
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 243, 0.96));
  box-shadow: 0 28px 78px rgba(4, 14, 9, 0.28);
  animation: heroContentIn 680ms 280ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-evidence-card h2 {
  color: var(--brand);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 820;
  line-height: 1.28;
  text-wrap: balance;
}

.stakeholder-source {
  display: grid;
  grid-template-columns: auto minmax(104px, 0.48fr) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(20, 53, 29, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
}

.stakeholder-avatar {
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #dff4e5;
  box-shadow: 0 10px 24px rgba(20, 53, 29, 0.22);
}

.stakeholder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.stakeholder-identity {
  display: grid;
  gap: 4px;
}

.stakeholder-identity strong {
  color: var(--brand);
  font-size: 0.96rem;
  font-weight: 780;
  line-height: 1.15;
}

.stakeholder-identity span {
  color: #43564d;
  font-size: 0.78rem;
  font-weight: 620;
}

.stakeholder-source blockquote {
  margin: 0;
  color: #34483e;
  font-size: 0.86rem;
  font-style: italic;
  font-weight: 520;
  line-height: 1.45;
}

.trace-chain {
  position: relative;
  display: grid;
  gap: 8px;
}

.trace-chain::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 38px;
  bottom: 38px;
  width: 2px;
  background: linear-gradient(180deg, rgba(20, 53, 29, 0.44), rgba(20, 53, 29, 0.14));
}

.trace-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(20, 53, 29, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
}

.trace-theme {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.trace-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: #f7fff8;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(20, 53, 29, 0.2);
}

.trace-icon svg {
  width: 20px;
  height: 20px;
}

.trace-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trace-item p,
.trace-item h3,
.trace-item aside span,
.trace-item aside strong {
  margin: 0;
}

.trace-item p,
.trace-item aside span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 760;
}

.trace-item h3 {
  margin-top: 4px;
  color: #263b32;
  font-size: clamp(0.9rem, 1.16vw, 1rem);
  font-weight: 560;
  line-height: 1.36;
}

.trace-theme h3 {
  color: var(--brand);
  font-weight: 760;
}

.trace-item aside {
  display: grid;
  gap: 4px;
  min-width: 88px;
  padding: 9px 10px;
  border-radius: 8px;
  background: #edf7f0;
  text-align: center;
}

.trace-item aside strong {
  color: var(--brand);
  font-size: 1.58rem;
  font-weight: 760;
  line-height: 1;
}

.traceability-note {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  color: #173621;
  background: rgba(107, 225, 141, 0.22);
  font-size: 0.88rem;
  font-weight: 760;
}

.mini-icon svg {
  width: 22px;
  height: 22px;
}

.mini-icon path,
.mini-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 92px 28px;
  scroll-margin-top: 92px;
}

.section-intro {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-intro.narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.02;
}

.section-intro p:not(.eyebrow),
.contact-copy p {
  margin: 18px 0 0;
  color: #2d4038;
  font-size: 1.13rem;
  line-height: 1.62;
}

.pain-section,
.outputs-section,
.security-section {
  background: var(--paper);
}

.pain-grid,
.benefit-grid,
.trust-points,
.use-case-grid,
.package-grid,
.security-grid,
.output-grid {
  display: grid;
  gap: 16px;
}

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

.pain-snapshot {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(32px, 5vw, 62px);
  align-items: center;
  margin-bottom: 38px;
}

.pain-snapshot .section-intro {
  margin-bottom: 0;
}

.flow-panel {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 138, 87, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fbf8 0%, #eef6f1 100%);
  box-shadow: 0 18px 56px rgba(20, 53, 29, 0.08);
}

.flow-panel span {
  position: relative;
  padding: 13px 16px;
  border: 1px solid rgba(20, 53, 29, 0.12);
  border-radius: 8px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 850;
}

.flow-panel span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -11px;
  width: 1px;
  height: 10px;
  background: rgba(20, 53, 29, 0.22);
}

.pain-grid article,
.benefit-grid article,
.trust-points article,
.use-case-grid article,
.security-grid article,
.output-grid article,
.package-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfb;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.pain-grid article {
  min-height: 218px;
  padding: 26px;
}

.pain-grid-compact article {
  min-height: 188px;
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--brand);
  background: #eef7f1;
}

.pain-grid h3,
.benefit-grid h3,
.trust-points h3,
.use-case-grid h3,
.output-grid h3,
.security-grid h3 {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 1.15rem;
  line-height: 1.25;
}

.pain-grid p,
.benefit-grid p,
.trust-points p,
.use-case-grid p,
.output-grid p,
.security-grid p,
.package-card p,
.package-card li {
  margin: 0;
  color: #2d4038;
  font-size: 1.08rem;
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1220px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1220px) / 2 + 24px));
}

.value-section,
.use-case-section,
.packages-section {
  background: var(--mist);
}

.how-section {
  max-width: 1320px;
  padding-top: 24px;
  padding-left: 28px;
  padding-right: 28px;
}

.how-steps {
  display: grid;
  gap: 10px;
}

.how-step {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 42px);
  min-height: 248px;
  padding: clamp(28px, 4.2vw, 46px) clamp(34px, 6vw, 76px);
  border: 1px solid rgba(20, 53, 29, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.how-step-mint {
  background:
    radial-gradient(circle at 78% 24%, rgba(47, 138, 87, 0.14), transparent 34%),
    linear-gradient(135deg, #f1faf4 0%, #e8f5ed 100%);
}

.how-step-stone {
  background:
    radial-gradient(circle at 18% 42%, rgba(47, 138, 87, 0.1), transparent 34%),
    linear-gradient(135deg, #fbfaf5 0%, #f2f1e8 100%);
}

.how-step-green {
  background:
    radial-gradient(circle at 82% 30%, rgba(47, 138, 87, 0.16), transparent 36%),
    linear-gradient(135deg, #edf8f1 0%, #dff1e6 100%);
}

.how-step-reverse .how-step-copy {
  order: 2;
  margin-left: 0;
}

.how-step-copy {
  position: relative;
  max-width: 500px;
  padding-left: 66px;
}

.how-step-copy .eyebrow {
  margin-bottom: 10px;
  color: #15994a;
  font-size: 0.69rem;
}

.step-badge {
  position: absolute;
  left: 0;
  top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--brand);
  background: #bfe7c8;
  font-size: 1.26rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.how-step h2 {
  max-width: 620px;
  color: #0f2018;
  font-size: clamp(1.55rem, 2.15vw, 2.15rem);
  line-height: 1.12;
  text-wrap: balance;
}

.how-step p:not(.eyebrow) {
  max-width: 48ch;
  margin: 16px 0 0;
  color: #21382d;
  font-size: clamp(0.84rem, 1vw, 0.96rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.how-visual {
  position: relative;
  min-height: 190px;
  color: var(--brand);
}

.interview-visual {
  transform: translateX(-34px);
}

.documentation-visual {
  transform: translateX(-48px);
}

.conversation-orbit,
.documentation-visual::before {
  content: "";
  position: absolute;
  inset: 4px 38px 0 34px;
  border-radius: 44% 56% 48% 52%;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.84), transparent 24%),
    rgba(47, 138, 87, 0.08);
}

.avatar-card,
.speech-card,
.message-dot-card,
.analysis-tile,
.doc-card,
.work-package-card {
  position: absolute;
  border: 1px solid rgba(20, 53, 29, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(20, 53, 29, 0.1);
}

.avatar-card {
  display: grid;
  place-items: center;
  grid-template: 1fr / 1fr;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
}

.avatar-card-left {
  left: 10%;
  top: 31%;
}

.avatar-card-right {
  right: 12%;
  bottom: 2%;
}

.avatar-head {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  width: 24px;
  height: 27px;
  border-radius: 999px;
  background: #f0ad8c;
  transform: translateY(-10px);
}

.avatar-card-left::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 13px;
  left: 16px;
  width: 36px;
  height: 43px;
  border-radius: 20px 20px 16px 16px;
  background: #10372d;
}

.avatar-card-left::after {
  content: none;
}

.avatar-card-right .avatar-head::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -6px;
  width: 30px;
  height: 14px;
  border-radius: 18px 18px 8px 8px;
  background: #12352a;
}

.avatar-card-right .avatar-head::after {
  content: none;
}

.avatar-card-left .avatar-head::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -6px;
  width: 34px;
  height: 12px;
  border-radius: 18px 18px 7px 7px;
  background: #10372d;
}

.avatar-body {
  grid-area: 1 / 1;
  z-index: 2;
  width: 46px;
  height: 29px;
  border-radius: 30px 30px 14px 14px;
  background: #2f8a57;
  transform: translateY(20px);
}

.speech-card {
  display: grid;
  gap: 8px;
  padding: 13px 15px;
}

.speech-card span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #86ba95;
}

.speech-card-primary {
  left: 29%;
  top: 4%;
  width: 184px;
}

.speech-card-secondary {
  right: 24%;
  bottom: 17%;
  width: 180px;
}

.speech-card-primary span:nth-child(2) {
  width: 82%;
}

.speech-card-primary span:nth-child(3),
.speech-card-secondary span:nth-child(2) {
  width: 58%;
}

.message-dot-card {
  display: flex;
  gap: 6px;
  right: 18%;
  top: 36%;
  padding: 12px 15px;
  border-radius: 10px 10px 10px 0;
}

.message-dot-card span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #2f8a57;
}

.visual-check,
.shield-check {
  position: absolute;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(20, 53, 29, 0.18);
}

.visual-check {
  right: 11%;
  top: 12%;
}

.analysis-visual {
  min-height: 216px;
  transform: translateX(34px);
}

.magnifier {
  position: absolute;
  left: 5%;
  top: 20%;
  width: 128px;
  height: 128px;
  border: 10px solid rgba(47, 138, 87, 0.48);
  border-radius: 999px;
  background: rgba(47, 138, 87, 0.08);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.45);
}

.magnifier::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 102px;
  width: 64px;
  height: 14px;
  border-radius: 999px;
  background: var(--brand);
  transform: rotate(135deg);
  transform-origin: right center;
  z-index: -1;
}

.magnifier span {
  position: absolute;
  bottom: 27px;
  width: 14px;
  border-radius: 5px 5px 0 0;
  background: #2f8a57;
}

.magnifier span:nth-child(1) {
  left: 31px;
  height: 26px;
}

.magnifier span:nth-child(2) {
  left: 55px;
  height: 45px;
}

.magnifier span:nth-child(3) {
  left: 79px;
  height: 68px;
  background: var(--brand);
}

.analysis-tiles {
  position: absolute;
  inset: 8px 8% 10px 37%;
}

.analysis-tile {
  display: grid;
  width: 96px;
  height: 82px;
  padding: 10px;
}

.analysis-tile strong,
.doc-card strong,
.work-package-card strong {
  color: #183521;
  font-size: 0.62rem;
  font-weight: 880;
}

.themes-tile {
  left: 0;
  top: 0;
}

.patterns-tile {
  left: 112px;
  top: 0;
}

.risks-tile {
  left: 0;
  top: 96px;
}

.alignment-tile {
  left: 112px;
  top: 96px;
}

.themes-tile i {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #2f8a57;
}

.themes-tile i:nth-of-type(1) {
  left: 22px;
  top: 38px;
}

.themes-tile i:nth-of-type(2) {
  left: 42px;
  top: 28px;
}

.themes-tile i:nth-of-type(3) {
  left: 62px;
  top: 42px;
  background: var(--brand);
}

.themes-tile i:nth-of-type(4) {
  left: 36px;
  top: 58px;
}

.themes-tile i:nth-of-type(5) {
  left: 72px;
  top: 22px;
  opacity: 0.55;
}

.patterns-tile svg {
  align-self: end;
  width: 70px;
  height: 46px;
}

.patterns-tile path,
.patterns-tile circle {
  fill: none;
  stroke: #2f8a57;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patterns-tile circle {
  fill: #2f8a57;
}

.risks-tile b {
  place-self: end center;
  display: grid;
  place-items: center;
  width: 48px;
  height: 44px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  color: #ffffff;
  background: var(--brand);
  font-size: 1.5rem;
}

.alignment-tile em {
  align-self: end;
  width: 58px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 50%, rgba(47, 138, 87, 0.34) 0 32%, transparent 33%),
    radial-gradient(circle at 64% 50%, rgba(47, 138, 87, 0.58) 0 32%, transparent 33%);
}

.documentation-visual {
  min-height: 230px;
}

.doc-card {
  display: grid;
  gap: 9px;
  width: 130px;
  min-height: 180px;
  padding: 14px;
}

.doc-card span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #d6dfd8;
}

.doc-summary {
  left: 26px;
  top: 12%;
}

.doc-findings {
  left: 182px;
  top: 8%;
}

.doc-recommendations {
  left: 338px;
  top: 6%;
}

.doc-summary span::before,
.doc-findings span::before,
.doc-recommendations span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 999px;
  background: #2f8a57;
  transform: translateY(-1px);
}

.doc-summary i {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand);
  font-style: normal;
  font-weight: 900;
}

.doc-findings b {
  align-self: end;
  justify-self: end;
  width: 48px;
  height: 46px;
  background:
    linear-gradient(90deg, transparent 0 16px, #a9d9b5 16px 28px, transparent 28px 34px, #6fb982 34px 46px, transparent 46px),
    linear-gradient(0deg, #dcebe0 0 8px, transparent 8px);
}

.work-package-card {
  left: 330px;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  padding: 14px 16px;
}

.work-package-card span {
  width: 36px;
  height: 28px;
  border-radius: 4px;
  background: #2f8a57;
}

.work-package-card span::before {
  content: "";
  display: block;
  width: 18px;
  height: 7px;
  border-radius: 4px 4px 0 0;
  background: #2f8a57;
  transform: translate(4px, -5px);
}

.shield-check {
  left: 420px;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 46% 46% 52% 52%;
  font-size: 1.18rem;
}

.how-section {
  max-width: 980px;
  padding-top: 24px;
  padding-left: 26px;
  padding-right: 26px;
}

.how-step {
  grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
  min-height: 198px;
  padding: 22px 70px;
  gap: 42px;
  border-radius: 8px;
}

.how-step-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 390px);
}

.how-step-copy {
  max-width: 390px;
  padding-left: 64px;
}

.how-step:not(.how-step-reverse) .how-step-copy {
  margin-left: 39px;
}

.how-step-reverse .how-step-copy {
  margin-left: 26px;
}

.how-step-copy .eyebrow {
  margin-bottom: 8px;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.step-badge {
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  font-size: 1.15rem;
}

.how-step h2 {
  max-width: 390px;
  font-size: clamp(1.2rem, 1.85vw, 1.42rem);
  line-height: 1.15;
  text-wrap: normal;
}

.how-step p:not(.eyebrow) {
  max-width: 44ch;
  margin-top: 14px;
  font-size: clamp(0.72rem, 0.9vw, 0.79rem);
  line-height: 1.55;
}

.how-visual,
.analysis-visual,
.documentation-visual {
  min-height: 152px;
  transform: none;
}

.interview-visual {
  transform: translateX(-24px);
}

.analysis-visual {
  transform: translateX(68px);
}

.documentation-visual {
  transform: translateX(-34px);
}

.documentation-visual::before {
  display: none;
}

.how-illustration {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  overflow: visible;
}

.how-art {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
}

.analysis-visual .how-art {
  max-width: 325px;
}

.analysis-native {
  position: relative;
  width: 325px;
  height: 176px;
  max-width: 100%;
}

.analysis-native::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 9px;
  width: 144px;
  height: 144px;
  border-radius: 999px;
  background: rgba(47, 138, 87, 0.08);
}

.analysis-native::after {
  content: "";
  position: absolute;
  left: -34px;
  top: 100px;
  width: 64px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand);
  transform: rotate(135deg);
  transform-origin: right center;
  z-index: 1;
}

.analysis-native-lens {
  position: absolute;
  left: 2px;
  top: 19px;
  width: 92px;
  height: 92px;
  border: 8px solid rgba(47, 138, 87, 0.52);
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.2) 70%),
    rgba(47, 138, 87, 0.08);
  box-shadow: 0 12px 26px rgba(20, 53, 29, 0.08);
  overflow: hidden;
  z-index: 2;
}

.analysis-native-lens::after {
  content: none;
}

.analysis-native-lens span {
  position: absolute;
  bottom: 18px;
  width: 13px;
  border-radius: 3px 3px 0 0;
  background: #2f8a57;
}

.analysis-native-lens span:nth-child(1) {
  left: 25px;
  height: 26px;
  opacity: 0.78;
}

.analysis-native-lens span:nth-child(2) {
  left: 48px;
  height: 44px;
}

.analysis-native-lens span:nth-child(3) {
  left: 71px;
  height: 66px;
  background: var(--brand);
}

.analysis-native-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 3;
}

.analysis-native-connectors path {
  fill: none;
  stroke: rgba(47, 138, 87, 0.54);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 4 5;
}

.analysis-native-dots {
  position: absolute;
  left: 140px;
  top: 143px;
  display: grid;
  grid-template-columns: repeat(3, 3px);
  gap: 6px;
}

.analysis-native-dots span {
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(47, 138, 87, 0.32);
}

.analysis-native-card {
  position: absolute;
  width: 74px;
  height: 72px;
  padding: 9px;
  border: 1px solid rgba(20, 53, 29, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(20, 53, 29, 0.1);
  z-index: 4;
}

.analysis-native-card strong {
  display: block;
  color: #0f2018;
  font-size: 0.55rem;
  font-weight: 900;
  line-height: 1;
}

.analysis-native-themes {
  left: 157px;
  top: 0;
}

.analysis-native-patterns {
  left: 245px;
  top: 0;
}

.analysis-native-risks {
  left: 157px;
  top: 88px;
}

.analysis-native-alignment {
  left: 245px;
  top: 88px;
}

.theme-map {
  position: relative;
  height: 46px;
  margin-top: 7px;
}

.theme-map i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2f8a57;
}

.theme-map i:nth-child(1) { left: 5px; top: 17px; }
.theme-map i:nth-child(2) { left: 22px; top: 6px; }
.theme-map i:nth-child(3) { left: 36px; top: 21px; background: var(--brand); }
.theme-map i:nth-child(4) { left: 21px; top: 34px; }
.theme-map i:nth-child(5) { left: 49px; top: 9px; background: #8bc19b; }
.theme-map i:nth-child(6) { left: 48px; top: 30px; background: #b4d9bd; }
.theme-map i:nth-child(7) { left: 33px; top: 14px; background: #d5e8d9; }

.analysis-native-patterns svg {
  display: block;
  width: 58px;
  height: 38px;
  margin-top: 9px;
}

.analysis-native-patterns path,
.analysis-native-patterns circle {
  fill: none;
  stroke: #2f8a57;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.analysis-native-patterns circle {
  fill: #2f8a57;
}

.analysis-native-risks b {
  position: absolute;
  left: 24px;
  bottom: 8px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 31px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  color: #ffffff;
  background: var(--brand);
  font-size: 1rem;
  line-height: 1;
}

.analysis-native-alignment em {
  position: absolute;
  left: 20px;
  bottom: 16px;
  width: 42px;
  height: 25px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 50%, rgba(47, 138, 87, 0.34) 0 33%, transparent 34%),
    radial-gradient(circle at 64% 50%, rgba(47, 138, 87, 0.58) 0 33%, transparent 34%);
}

.documentation-visual .how-art {
  max-width: 338px;
}

.soft-blob,
.magnifier-glow {
  fill: rgba(47, 138, 87, 0.08);
}

.white-card,
.mini-card rect,
.document-card rect,
.folder-card rect {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(20, 53, 29, 0.08);
  stroke-width: 1;
}

.line-green,
.doc-lines {
  fill: none;
  stroke: #82b993;
  stroke-width: 6;
  stroke-linecap: round;
}

.chat-tail {
  fill: #ffffff;
}

.tiny-bubble {
  fill: #e7eef0;
}

.dot-row {
  fill: none;
  stroke: #2f8a57;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 1 15;
}

.avatar-ring {
  fill: #f6fbf7;
  stroke: rgba(47, 138, 87, 0.14);
  stroke-width: 2;
}

.hair-dark {
  fill: #0b2d27;
}

.skin {
  fill: #f0ad8c;
}

.shirt,
.folder-icon {
  fill: #2f8a57;
}

.check-dot,
.doc-ok,
.shield-badge circle {
  fill: var(--brand);
}

.check-mark,
.doc-check,
.shield-badge path:last-child {
  fill: none;
  stroke: #ffffff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.magnifier-svg circle {
  fill: rgba(255, 255, 255, 0.18);
  stroke: rgba(47, 138, 87, 0.62);
  stroke-width: 10;
}

.magnifier-svg path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 14;
  stroke-linecap: round;
}

.magnifier-svg rect {
  fill: #2f8a57;
}

.magnifier-svg rect:nth-of-type(1) {
  fill: #5cad73;
}

.connector {
  fill: none;
  stroke: rgba(47, 138, 87, 0.58);
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
}

.mini-card text,
.document-card text,
.folder-card text {
  fill: #0f2018;
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font-display);
}

.mini-card circle {
  fill: #2f8a57;
}

.mini-card .muted-dot {
  fill: #8ac19b;
}

.sparkline {
  fill: none;
  stroke: #2f8a57;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.risk-triangle {
  fill: var(--brand);
}

.risk-mark {
  fill: #ffffff;
  font-size: 22px;
  font-weight: 900;
  text-anchor: middle;
}

.venn-a {
  fill: rgba(47, 138, 87, 0.34);
}

.venn-b {
  fill: rgba(47, 138, 87, 0.58);
}

.dot-matrix circle {
  fill: rgba(47, 138, 87, 0.32);
}

.doc-bullet {
  fill: #71b983;
}

.bar-faint {
  fill: #d8eadc;
}

.bar-mid {
  fill: #8fcca0;
}

.tiny-checks {
  fill: none;
  stroke: #2f8a57;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shield-badge path:nth-child(2) {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linejoin: round;
}

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

.benefit-grid article,
.trust-points article,
.security-grid article {
  padding: 28px;
}

.help-steps article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 30px;
}

.help-steps article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #f7fff8;
  background: var(--brand);
  font-size: 0.78rem;
  font-weight: 950;
}

.help-steps article h3,
.help-steps article p {
  grid-column: auto;
}

.trust-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  gap: 18px;
}

.trust-points article {
  background: #ffffff;
  min-height: 220px;
}

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

.use-case-grid article {
  min-height: 176px;
  padding: 24px;
}

.compact-cases article {
  min-height: 150px;
  background: #ffffff;
}

.compact-cases p {
  font-size: 1.02rem;
}

.package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 40px;
}

.package-card h3 {
  color: var(--brand);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.package-subtitle {
  margin: 14px 0 18px !important;
  color: var(--ink) !important;
  font-size: 1.12rem !important;
  font-weight: 850;
  line-height: 1.45 !important;
}

.package-card p:not(.package-subtitle) {
  font-size: 1.13rem;
  line-height: 1.62;
}

.package-card h4 {
  margin: 28px 0 12px;
  color: var(--brand);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 1.2rem;
}

.package-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.guided-card {
  color: #f7fff8;
  border-color: rgba(107, 225, 141, 0.28);
  background:
    radial-gradient(circle at 80% 0%, rgba(107, 225, 141, 0.18), transparent 38%),
    linear-gradient(135deg, #14351d 0%, #172226 100%);
  box-shadow: var(--shadow);
}

.package-card:hover,
.trust-points article:hover,
.output-grid article:hover,
.use-case-grid article:hover,
.security-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 138, 87, 0.26);
  box-shadow: 0 18px 54px rgba(15, 35, 24, 0.12);
}

.guided-card:hover {
  border-color: rgba(107, 225, 141, 0.5);
  box-shadow: 0 34px 100px rgba(15, 35, 24, 0.28);
}

.guided-card h3,
.guided-card h4,
.guided-card .package-subtitle {
  color: #f7fff8 !important;
}

.guided-card p,
.guided-card li {
  color: rgba(247, 255, 248, 0.94);
}

.badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #073412;
  background: #6be18d;
  box-shadow: 0 12px 28px rgba(107, 225, 141, 0.3);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.output-grid article {
  min-height: 178px;
  padding: 26px;
  background: #ffffff;
}

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

.security-grid article {
  min-height: 210px;
}

.security-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid rgba(20, 53, 29, 0.24);
  border-radius: 8px;
  color: var(--brand);
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.security-link:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 53, 29, 0.4);
  background: #f7fbf8;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.82fr);
  gap: 54px;
  align-items: start;
  padding: 96px max(28px, calc((100vw - 1320px) / 2 + 28px));
  color: #f7fff8;
  background: linear-gradient(135deg, #14351d 0%, #172226 78%);
}

.contact-copy {
  max-width: 650px;
}

.contact-copy p {
  color: rgba(247, 255, 248, 0.78);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: rgba(247, 255, 248, 0.94);
  font-size: 1rem;
  font-weight: 850;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px 16px;
  color: #f7fff8;
  background: rgba(5, 20, 12, 0.48);
  font: inherit;
  font-size: 1.04rem;
  line-height: 1.45;
}

.form-row select {
  appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(107, 225, 141, 0.28);
  border-color: #6be18d;
}

[data-reveal="true"] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 440ms cubic-bezier(0.22, 0.72, 0.24, 1),
    transform 440ms cubic-bezier(0.22, 0.72, 0.24, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal-direction="left"] {
  transform: translateX(-10px) translateY(8px);
}

[data-reveal-direction="right"] {
  transform: translateX(10px) translateY(8px);
}

[data-reveal="true"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.package-card[data-reveal="true"].is-visible:hover {
  transform: translateY(-4px);
}

.trust-points article[data-reveal="true"].is-visible:hover,
.output-grid article[data-reveal="true"].is-visible:hover,
.use-case-grid article[data-reveal="true"].is-visible:hover,
.security-grid article[data-reveal="true"].is-visible:hover {
  transform: translateY(-4px);
}

.how-step[data-reveal="true"].is-visible:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 138, 87, 0.24);
  box-shadow: 0 18px 48px rgba(15, 35, 24, 0.1);
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

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

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

  [data-reveal="true"],
  [data-reveal-direction="left"],
  [data-reveal-direction="right"],
  [data-reveal="true"].is-visible {
    opacity: 1;
    transform: none;
  }

  .button:hover,
  .security-link:hover,
  .package-card:hover,
  .trust-points article:hover,
  .output-grid article:hover,
  .use-case-grid article:hover,
  .security-grid article:hover,
  .how-step[data-reveal="true"].is-visible:hover {
    transform: none;
  }
}


.form-row-hidden {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-section .button-secondary {
  color: #f7fff8;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.form-status {
  min-height: 1.3em;
  margin: 0;
  color: rgba(247, 255, 248, 0.86);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status[data-tone="success"] {
  color: #aaf4bd;
}

.form-status[data-tone="error"] {
  color: #ffd7d7;
}

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

.site-footer div {
  gap: 18px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-evidence-card {
    justify-self: start;
  }

  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .pain-snapshot,
  .use-case-grid,
  .trust-points,
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-step {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
    gap: 24px;
    padding: 32px 34px;
  }

  .how-step-copy {
    padding-left: 60px;
  }

  .step-badge {
    width: 40px;
    height: 40px;
  }

  .speech-card-primary {
    width: 178px;
  }

  .speech-card-secondary {
    width: 168px;
  }

  .analysis-tiles {
    right: 0;
  }

  .analysis-tile {
    width: 92px;
  }

  .patterns-tile,
  .alignment-tile {
    left: 104px;
  }

  .doc-card {
    width: 122px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .text-link {
    display: none;
  }

  .hero-section,
  .section,
  .split-section,
  .contact-section {
    padding: 58px 22px;
  }

  .section {
    scroll-margin-top: 0;
  }

  h1 {
    font-size: 2.24rem;
  }

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

  .stakeholder-source {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .stakeholder-source blockquote {
    grid-column: 1 / -1;
  }

  .trace-theme {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .trace-item aside {
    grid-column: 2;
    justify-self: start;
    min-width: 112px;
  }

  .pain-grid,
  .pain-snapshot,
  .benefit-grid,
  .use-case-grid,
  .trust-points,
  .package-grid,
  .security-grid,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .how-section {
    padding-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .how-steps {
    gap: 10px;
  }

  .how-step,
  .how-step-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 30px 22px;
  }

  .how-step-reverse .how-step-copy {
    order: 0;
  }

  .how-step-copy {
    max-width: none;
    padding-left: 0;
    margin-left: 0;
  }

  .how-step:not(.how-step-reverse) .how-step-copy,
  .how-step-reverse .how-step-copy {
    margin-left: 0;
  }

  .step-badge {
    position: static;
    margin-bottom: 18px;
  }

  .how-step h2 {
    font-size: 1.78rem;
  }

  .how-step p:not(.eyebrow) {
    font-size: 1rem;
  }

  .how-visual,
  .analysis-visual,
  .documentation-visual {
    min-height: 190px;
    max-width: 360px;
    width: 100%;
    justify-self: center;
    transform: none;
  }

  .conversation-orbit,
  .documentation-visual::before {
    inset: 16px 4px 12px;
  }

  .avatar-card {
    width: 72px;
    height: 72px;
  }

  .avatar-card-left {
    left: 0;
    top: 38%;
  }

  .avatar-card-right {
    right: 4px;
    bottom: 0;
  }

  .avatar-head {
    width: 24px;
    height: 27px;
  }

  .avatar-body {
    width: 46px;
    height: 30px;
  }

  .speech-card-primary {
    left: 22%;
    top: 10%;
    width: 216px;
  }

  .speech-card-secondary {
    right: 22%;
    bottom: 16%;
    width: 184px;
  }

  .message-dot-card {
    right: 10%;
    top: 38%;
  }

  .magnifier {
    left: 0;
    top: 31%;
    width: 130px;
    height: 130px;
    border-width: 10px;
  }

  .magnifier::after {
    left: -4px;
    top: 104px;
    width: 64px;
    height: 14px;
  }

  .magnifier span:nth-child(1) {
    left: 31px;
    height: 28px;
  }

  .magnifier span:nth-child(2) {
    left: 56px;
    height: 46px;
  }

  .magnifier span:nth-child(3) {
    left: 81px;
    height: 66px;
  }

  .analysis-tiles {
    inset: 12px 0 0 42%;
  }

  .analysis-tile {
    width: 92px;
    height: 88px;
    padding: 10px;
  }

  .analysis-tile strong,
  .doc-card strong,
  .work-package-card strong {
    font-size: 0.68rem;
  }

  .patterns-tile,
  .alignment-tile {
    left: 102px;
  }

  .risks-tile,
  .alignment-tile {
    top: 104px;
  }

  .patterns-tile svg {
    width: 68px;
    height: 44px;
  }

  .risks-tile b {
    width: 48px;
    height: 44px;
  }

  .doc-card {
    width: 112px;
    min-height: 164px;
    gap: 8px;
    padding: 12px;
  }

  .doc-summary {
    left: 0;
    top: 26%;
  }

  .doc-findings {
    left: 34%;
    top: 16%;
  }

  .doc-recommendations {
    right: 0;
    top: 4%;
  }

  .work-package-card {
    right: 0;
    bottom: 0;
    min-width: 142px;
    padding: 14px;
  }

  .shield-check {
    right: 3%;
    width: 48px;
    height: 48px;
  }

  .package-card {
    min-height: 0;
  }

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

  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
  }
}
