:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5e6b65;
  --line: #d9e1dc;
  --paper: #f8f7f2;
  --white: #ffffff;
  --forest: #12352d;
  --green: #246d5a;
  --copper: #b66b3e;
  --amber: #dca44a;
  --blue: #486f83;
  --shadow: 0 24px 70px rgba(23, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.text-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-weight: 800;
}

.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);
  border-bottom: 1px solid rgba(217, 225, 220, 0.8);
  background: rgba(248, 247, 242, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.brand-mark-wide {
  width: 44px;
}

.brand-text {
  font-size: 0.98rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--green);
}

.nav .nav-cta {
  min-height: 38px;
  padding: 0 14px;
  color: var(--forest);
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  min-height: calc(100vh - 74px);
  padding: 64px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.22;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.founder-proof {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 680px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.founder-avatar {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 18%;
  border: 1px solid rgba(18, 53, 45, 0.12);
}

.founder-proof strong,
.founder-proof span {
  display: block;
}

.founder-proof strong {
  margin-bottom: 3px;
  color: var(--forest);
}

.founder-proof span {
  color: var(--muted);
  font-size: 0.91rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  border-color: #b66b3e;
  background: #dca44a !important;
  background-color: #dca44a !important;
  background-image: linear-gradient(135deg, #dca44a, #b66b3e);
  color: #12352d !important;
  box-shadow: 0 14px 28px rgba(182, 107, 62, 0.22);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--forest);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.launch-note {
  max-width: 610px;
  margin: -14px 0 28px;
  color: var(--forest);
  font-size: 0.98rem;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 0;
}

.proof-strip div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.proof-strip dt {
  color: var(--forest);
  font-size: 1.25rem;
  font-weight: 800;
}

.proof-strip dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.architecture-visual {
  position: relative;
  min-height: 570px;
  padding: 28px;
  border: 1px solid rgba(217, 225, 220, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 46px);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: graphFadeUp 760ms ease both;
}

.visual-topline,
.risk-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.visual-topline {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.visual-topline strong {
  color: var(--green);
}

.system-map {
  position: relative;
  height: 418px;
  margin-top: 26px;
}

.node,
.hub {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 94px;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid rgba(18, 53, 45, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(23, 33, 29, 0.08);
  animation: graphFadeIn 760ms ease both;
}

.hub {
  top: 172px;
  left: 50%;
  width: 146px;
  height: 86px;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--white);
  text-align: center;
}

.architecture-visual.motion-in .node {
  animation:
    graphFadeIn 760ms ease both,
    architectureNodeFloat 4600ms ease-in-out 900ms infinite;
}

.architecture-visual.motion-in .hub {
  animation: architectureHubPulse 2800ms ease-in-out 700ms infinite;
}

.node-commerce {
  top: 28px;
  left: 36px;
}

.node-pim {
  top: 96px;
  right: 20px;
}

.node-erp {
  top: 206px;
  left: 30px;
}

.node-oms {
  top: 30px;
  right: 96px;
}

.node-wms {
  right: 42px;
  bottom: 48px;
}

.node-crm {
  bottom: 34px;
  left: 92px;
}

.node-data {
  right: 148px;
  bottom: 6px;
}

.node-store {
  top: 326px;
  left: 18px;
}

.line {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(36, 109, 90, 0), rgba(36, 109, 90, 0.45), rgba(182, 107, 62, 0.62), rgba(36, 109, 90, 0));
  background-size: 220% 100%;
  transform-origin: left center;
  animation:
    architectureLineFlow 2600ms linear infinite,
    graphLinePulse 1800ms ease-in-out infinite alternate;
}

.architecture-visual.motion-in .line {
  animation:
    architectureLineFlow 2600ms linear infinite,
    graphLinePulse 1800ms ease-in-out infinite alternate;
}

.line-1 {
  top: 134px;
  left: 118px;
  width: 238px;
  transform: rotate(21deg);
}

.line-2 {
  top: 208px;
  left: 108px;
  width: 278px;
  transform: rotate(-5deg);
}

.line-3 {
  top: 120px;
  right: 92px;
  width: 214px;
  transform: rotate(145deg);
}

.line-4 {
  bottom: 122px;
  right: 94px;
  width: 248px;
  transform: rotate(202deg);
}

.line-5 {
  bottom: 98px;
  left: 148px;
  width: 248px;
  transform: rotate(-24deg);
}

.risk-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 247, 242, 0.9);
}

.risk-label {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.risk-meter {
  width: 128px;
  height: 9px;
  border-radius: 99px;
  background: #e5e1d7;
  overflow: hidden;
}

.risk-meter span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--copper));
  background-size: 180% 100%;
  transform-origin: left center;
  animation:
    graphGrowX 900ms ease both,
    architectureRiskFlow 2600ms ease-in-out 900ms infinite;
}

.architecture-visual.motion-in .risk-meter span {
  animation:
    graphGrowX 900ms ease both,
    architectureRiskFlow 2600ms ease-in-out 900ms infinite;
}

.pattern-band {
  border-top: 1px solid rgba(18, 53, 45, 0.08);
  border-bottom: 1px solid rgba(18, 53, 45, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 53, 45, 0.96), rgba(18, 53, 45, 0.92)),
    var(--forest);
  color: var(--white);
}

.pain-section,
.diagnostic,
.process,
.authority,
.founder-section {
  padding: 86px 0;
}

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

.pattern-band .eyebrow {
  color: #f0bd69;
}

.pattern-band .section-heading h2 {
  color: var(--white);
}

.section-heading p:last-child,
.diagnostic-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.pain-grid article,
.outcome-list article,
.timeline article,
.pricing-card,
.deliverables {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(23, 33, 29, 0.06);
}

.pattern-band .pain-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.pattern-band .pain-grid h3 {
  color: var(--white);
}

.pattern-band .pain-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.pain-grid article,
.outcome-list article,
.timeline article {
  padding: 24px;
  animation: graphFadeUp 720ms ease both;
}

.pain-grid p,
.outcome-list p,
.timeline p,
.pricing-card p,
.authority-copy p,
.cta-card p,
.deliverables li {
  color: var(--muted);
}

.card-index {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 800;
}

.diagnostic {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 32px;
  align-items: start;
}

.pricing-card,
.deliverables {
  padding: 26px;
}

.pricing-card {
  margin-top: 30px;
}

.pricing-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  margin: 8px 0;
  color: var(--forest);
  font-size: clamp(1.9rem, 3.6vw, 2.45rem);
  line-height: 1.05;
}

.pricing-card .button {
  margin-top: 18px;
}

.deliverables h3 {
  margin-bottom: 18px;
}

.deliverables ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverables li {
  position: relative;
  padding-left: 28px;
}

.deliverables li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--green);
}

.sample-output {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(217, 225, 220, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 244, 238, 0.96), rgba(246, 244, 238, 0.8)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 36px);
}

.sample-output-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.sample-output-header span,
.sample-risk-row span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-output-header strong {
  color: var(--forest);
  font-size: 1.1rem;
}

.sample-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(217, 225, 220, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.sample-map::before,
.sample-map::after {
  content: "";
  position: absolute;
  right: 14%;
  left: 14%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(36, 109, 90, 0), rgba(36, 109, 90, 0.45), rgba(182, 107, 62, 0.58), rgba(36, 109, 90, 0));
  opacity: 0.65;
}

.sample-map::before {
  top: 34%;
}

.sample-map::after {
  bottom: 34%;
}

.sample-node {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.sample-hub {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.sample-risk-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.52fr) minmax(0, 1fr) minmax(92px, 0.44fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(217, 225, 220, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.sample-risk-row strong {
  color: var(--forest);
  font-size: 0.96rem;
}

.sample-risk-row i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #e5ded0;
}

.sample-risk-row i::before {
  content: "";
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e0a245, var(--copper));
}

.founder-section {
  display: grid;
  gap: 18px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.founder-portrait {
  position: relative;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 53, 45, 0) 50%, rgba(18, 53, 45, 0.82) 100%);
  pointer-events: none;
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 50% 15%;
}

.founder-portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 800;
}

.founder-bio {
  align-self: center;
  padding: clamp(8px, 2vw, 18px);
}

.founder-bio p {
  color: var(--muted);
  font-size: 1.04rem;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.capability-card {
  display: block;
  padding: clamp(26px, 5vw, 52px);
}

.capability-copy {
  max-width: none;
  padding: 0;
}

.capability-copy h2 {
  max-width: 940px;
}

.capability-copy p {
  max-width: 980px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.capability-grid span {
  display: grid;
  min-height: 82px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 244, 238, 0.84);
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 800;
}

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

.trust-grid article {
  min-height: 176px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.trust-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-grid strong {
  display: block;
  color: var(--forest);
  font-size: 1rem;
  line-height: 1.32;
}

.outcomes {
  padding: 86px 0;
  background: var(--forest);
  color: var(--white);
}

.outcomes .eyebrow {
  color: #f0bd69;
}

.outcomes .outcome-list article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.outcomes p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline article {
  min-height: 220px;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.authority {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 48px;
  align-items: start;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.credential-grid span {
  min-height: 84px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--forest);
  font-weight: 800;
  animation: graphFadeUp 720ms ease both;
}

.cta-section {
  padding: 86px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.64fr);
  gap: 40px;
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 53, 45, 0.96), rgba(36, 109, 90, 0.94)),
    var(--forest);
  color: var(--white);
}

.cta-card .eyebrow {
  color: #f0bd69;
}

.cta-card p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.76);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.lead-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%),
    rgba(255, 255, 255, 0.96);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin: -2px 0 0;
  font-size: 0.82rem;
}

.purchase-panel {
  display: grid;
  gap: 14px;
  align-self: stretch;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.purchase-panel span {
  color: #f0bd69;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.purchase-panel strong {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.purchase-panel .button {
  width: 100%;
}

.purchase-panel small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 700 !important;
  line-height: 1.35;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.lead-magnet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 68px 0 76px;
}

.lead-magnet-copy h1 {
  max-width: 820px;
}

.lead-magnet-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lead-magnet-proof span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 800;
}

.lead-magnet-form-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(217, 225, 220, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 53, 45, 0.96), rgba(36, 109, 90, 0.94)),
    var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.lead-magnet-form-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.lead-magnet-form-card p {
  color: rgba(255, 255, 255, 0.76);
}

.form-kicker {
  display: block;
  margin-bottom: 12px;
  color: #f0bd69;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.whitepaper-preview,
.download-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 86px 0;
}

.whitepaper-cover {
  position: relative;
  min-height: 520px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 42px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cover-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
}

.whitepaper-cover strong {
  display: block;
  margin-top: 34px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.98;
}

.whitepaper-cover small {
  position: absolute;
  right: 34px;
  bottom: 30px;
  color: var(--green);
  font-weight: 800;
}

.cover-map {
  position: absolute;
  right: 34px;
  bottom: 88px;
  left: 34px;
  height: 190px;
}

.cover-map span {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(18, 53, 45, 0.14);
  box-shadow: 0 16px 34px rgba(23, 33, 29, 0.08);
  animation: articleVisualPulse 3200ms ease-in-out infinite;
}

.cover-map span:nth-child(1) {
  top: 8px;
  left: 8px;
  width: 112px;
  height: 54px;
}

.cover-map span:nth-child(2) {
  top: 54px;
  right: 14px;
  width: 126px;
  height: 54px;
}

.cover-map span:nth-child(3) {
  top: 86px;
  left: 50%;
  width: 160px;
  height: 74px;
  transform: translateX(-50%);
  background: var(--forest);
}

.cover-map span:nth-child(4) {
  bottom: 0;
  left: 30px;
  width: 104px;
  height: 50px;
}

.cover-map span:nth-child(5) {
  right: 38px;
  bottom: 8px;
  width: 100px;
  height: 50px;
}

.whitepaper-takeaways,
.value-grid {
  display: grid;
  gap: 14px;
}

.whitepaper-takeaways article,
.value-grid article,
.download-note {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(23, 33, 29, 0.06);
}

.whitepaper-takeaways span,
.download-note span {
  display: block;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.whitepaper-takeaways p,
.value-grid p,
.download-note p {
  color: var(--muted);
}

.whitepaper-value {
  padding: 20px 0 92px;
}

.whitepaper-value h2 {
  max-width: 860px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.download-page {
  min-height: calc(100vh - 74px);
}

.download-note strong {
  display: block;
  color: var(--forest);
  font-size: 1.35rem;
  line-height: 1.15;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 68px 0 76px;
}

.product-hero h1 {
  max-width: 840px;
}

.product-proof dt {
  color: var(--green);
}

.product-kit-visual {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(217, 225, 220, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 42px);
  box-shadow: var(--shadow);
}

.kit-cover-card {
  position: relative;
  min-height: 290px;
  padding: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 36%, rgba(220, 164, 74, 0.22), transparent 32%),
    radial-gradient(circle at 30% 66%, rgba(36, 109, 90, 0.46), transparent 34%),
    linear-gradient(135deg, var(--forest), #0c2a24);
  color: var(--white);
  overflow: hidden;
}

.kit-cover-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.free-kit-visual .kit-cover-card img {
  opacity: 1;
  object-fit: contain;
}

.kit-cover-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 53, 45, 0.92), rgba(18, 53, 45, 0.52) 52%, rgba(18, 53, 45, 0.16)),
    linear-gradient(0deg, rgba(18, 53, 45, 0.45), transparent 55%);
}

.free-kit-visual .kit-cover-card::after {
  display: none;
}

.kit-cover-content {
  position: relative;
  z-index: 1;
}

.kit-cover-card span,
.kit-cover-card small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.kit-cover-card strong {
  display: block;
  max-width: 340px;
  margin: 56px 0 42px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.kit-scorecard,
.kit-flow {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.kit-scorecard {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.kit-scorecard div {
  display: grid;
  grid-template-columns: minmax(110px, 0.75fr) minmax(100px, 1fr) 36px;
  gap: 12px;
  align-items: center;
}

.kit-scorecard span,
.kit-scorecard b {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
}

.kit-scorecard i {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: #e6dfd1;
  overflow: hidden;
}

.kit-scorecard i::before {
  content: "";
  display: block;
  width: var(--value, 64%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--copper));
  animation: graphGrowX 900ms ease both;
}

.kit-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.kit-flow span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--paper);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
}

.free-video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 24px 0 86px;
}

.free-video-copy {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(217, 225, 220, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 244, 238, 0.94), rgba(246, 244, 238, 0.78)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 44px);
  box-shadow: 0 18px 48px rgba(23, 33, 29, 0.08);
}

.free-video-copy h2 {
  max-width: 860px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.free-video-copy p {
  max-width: 760px;
  color: var(--muted);
}

.free-video-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.free-video-points span {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(217, 225, 220, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.free-video-player {
  width: min(100%, 380px);
  justify-self: center;
  padding: 10px;
  border: 1px solid rgba(217, 225, 220, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 54px rgba(23, 33, 29, 0.14);
}

.free-video-player video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  background: var(--forest);
  object-fit: cover;
}

.paid-video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.78fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: 34px 0 86px;
}

.paid-video-copy {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(217, 225, 220, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 244, 238, 0.96), rgba(246, 244, 238, 0.82)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 44px);
  box-shadow: 0 18px 48px rgba(23, 33, 29, 0.08);
}

.paid-video-copy h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 4.35rem);
}

.paid-video-copy p {
  max-width: 720px;
  color: var(--muted);
}

.paid-video-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.paid-video-points span {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(217, 225, 220, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.paid-video-player {
  width: min(100%, 780px);
  justify-self: center;
  padding: 10px;
  border: 1px solid rgba(217, 225, 220, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 54px rgba(23, 33, 29, 0.16);
}

.paid-video-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: var(--forest);
  object-fit: cover;
}

.kit-author-band {
  padding: 86px 0;
}

.kit-author-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(217, 225, 220, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 244, 238, 0.96), rgba(246, 244, 238, 0.84)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 44px);
  box-shadow: 0 22px 54px rgba(23, 33, 29, 0.09);
}

.kit-author-card-paid {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 244, 238, 0.86)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 44px);
}

.kit-author-portrait {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: 0 18px 40px rgba(23, 33, 29, 0.12);
}

.kit-author-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(18, 53, 45, 0) 48%, rgba(18, 53, 45, 0.86) 100%);
}

.kit-author-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 50% 16%;
}

.kit-author-portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 22px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
}

.kit-author-copy {
  align-self: center;
}

.kit-author-copy h2 {
  max-width: 920px;
  font-size: clamp(2rem, 3.5vw, 4rem);
}

.kit-author-copy p {
  max-width: 880px;
  color: var(--muted);
}

.kit-author-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.kit-author-credentials span {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(217, 225, 220, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
}

.kit-author-thesis {
  padding: 18px 20px;
  border-left: 4px solid var(--copper);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.66);
  color: var(--forest) !important;
  font-weight: 760;
}

.kit-home-hero {
  min-height: auto;
}

.kit-catalog-section {
  padding: 86px 0;
}

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

.kit-product-card {
  display: flex;
  min-height: 312px;
  flex-direction: column;
  gap: 14px;
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid rgba(217, 225, 220, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 244, 238, 0.74)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.035) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.035) 0 1px, transparent 1px 42px);
  box-shadow: 0 16px 38px rgba(23, 33, 29, 0.06);
}

.kit-product-card-featured {
  border-color: rgba(182, 107, 62, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 244, 238, 0.84)),
    repeating-linear-gradient(90deg, rgba(182, 107, 62, 0.07) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.035) 0 1px, transparent 1px 42px);
}

.kit-product-card-free {
  border-color: rgba(36, 109, 90, 0.45);
}

.kit-product-card h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.kit-product-card p {
  margin: 0;
  color: var(--muted);
}

.kit-product-card small {
  display: block;
  margin-top: auto;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.45;
}

.kit-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(217, 225, 220, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kit-status.available,
.kit-status.free {
  border-color: rgba(36, 109, 90, 0.4);
  background: var(--forest);
  color: var(--white);
}

.kit-status.free {
  background: var(--green);
}

.kit-status.waitlist {
  border-color: rgba(182, 107, 62, 0.46);
  background: rgba(220, 164, 74, 0.2);
  color: var(--forest);
}

.product-problem {
  padding: 86px 0;
}

.product-method,
.product-inside,
.product-pricing,
.product-faq {
  padding: 86px 0;
}

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

.method-grid article,
.faq-grid article,
.inside-list article,
.product-preview-panel,
.product-price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(23, 33, 29, 0.06);
}

.method-grid article,
.faq-grid article {
  padding: 22px;
}

.method-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
}

.method-grid p,
.faq-grid p,
.inside-list p,
.product-preview-panel p,
.product-price-card p,
.product-pricing p {
  color: var(--muted);
}

.inside-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 22px;
  align-items: start;
}

.inside-list {
  display: grid;
  gap: 14px;
}

.inside-list article {
  padding: 22px;
}

.inside-list span,
.preview-label,
.preview-note span,
.product-price-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.inside-list strong,
.preview-note strong {
  display: block;
  color: var(--forest);
  font-size: 1.25rem;
  line-height: 1.18;
}

.product-preview-panel {
  position: sticky;
  top: 98px;
  padding: 22px;
}

.preview-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.preview-table div {
  display: grid;
  grid-template-columns: 1fr 70px 90px;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(217, 225, 220, 0.75);
}

.preview-table div:first-child {
  background: var(--forest);
  color: var(--white);
}

.preview-table div:last-child {
  border-bottom: 0;
}

.preview-table span {
  color: var(--muted);
}

.preview-table strong {
  color: var(--copper);
}

.preview-note {
  margin-top: 16px;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
}

.product-pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 32px;
  align-items: center;
}

.product-price-card {
  padding: clamp(22px, 4vw, 34px);
}

.product-price-card strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--forest);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.product-price-card .button {
  width: 100%;
  margin: 14px 0;
}

.savings-note {
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(182, 107, 62, 0.32);
  border-radius: 8px;
  background: rgba(220, 164, 74, 0.15);
}

.savings-note strong {
  margin: 0;
  color: var(--forest);
  font-size: 1rem;
  line-height: 1.2;
}

.savings-note span {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
}

.product-waitlist-form {
  margin: 18px 0 14px;
  border-color: var(--line);
  background: rgba(248, 247, 242, 0.86);
}

.product-waitlist-form label {
  color: var(--forest);
}

.product-waitlist-form input,
.product-waitlist-form textarea {
  border-color: rgba(18, 53, 45, 0.18);
  background: var(--white);
}

.product-waitlist-form .button {
  margin: 4px 0 0;
}

.product-free-link {
  display: block;
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.product-free-link:hover {
  color: var(--forest);
}

.product-price-card small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-cta-card .lead-form {
  align-self: stretch;
}

.simple-page {
  min-height: 58vh;
  padding: 92px 0;
}

.simple-page h1 {
  max-width: 920px;
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
}

.paid-confirmation-page {
  min-height: 52vh;
}

.waitlist-thanks-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 72px 0 52px;
}

.waitlist-thanks-copy h1 {
  max-width: 880px;
}

.waitlist-ticket {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(217, 225, 220, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 42px);
  box-shadow: var(--shadow);
}

.waitlist-ticket h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.waitlist-ticket p {
  color: var(--muted);
}

.ticket-price-row,
.ticket-savings {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 247, 242, 0.9);
}

.ticket-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.ticket-price-row span,
.ticket-savings span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-price-row strong {
  color: var(--forest);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.9;
}

.ticket-savings {
  background: rgba(220, 164, 74, 0.14);
  border-color: rgba(182, 107, 62, 0.28);
}

.ticket-savings strong,
.ticket-savings span {
  display: block;
}

.ticket-savings strong {
  margin-bottom: 4px;
  color: var(--forest);
}

.waitlist-next-steps {
  padding-bottom: 26px;
}

.waitlist-value-section {
  padding: 58px 0 74px;
}

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

.waitlist-check-grid article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(23, 33, 29, 0.06);
}

.waitlist-check-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.waitlist-check-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 1.26rem;
  line-height: 1.16;
}

.waitlist-check-grid p {
  color: var(--muted);
}

.waitlist-featured-read {
  padding-bottom: 92px;
}

.free-download-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 72px 0 52px;
}

.free-download-copy h1 {
  max-width: 900px;
}

.free-download-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(217, 225, 220, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 42px);
  box-shadow: var(--shadow);
}

.free-download-card img {
  width: 100%;
  border: 1px solid rgba(18, 53, 45, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 33, 29, 0.1);
}

.free-download-card h2 {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.free-download-card p {
  color: var(--muted);
}

.free-download-steps {
  padding-bottom: 26px;
}

.free-download-upgrade-actions {
  margin-top: 28px;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  min-height: calc(100vh - 74px);
  padding: 72px 0;
}

.contact-copy h1 {
  max-width: 940px;
}

.contact-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.contact-signal-grid article {
  min-height: 144px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 244, 238, 0.96), rgba(246, 244, 238, 0.82)),
    var(--cream);
}

.contact-signal-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-signal-grid strong {
  display: block;
  color: var(--forest);
  font-size: 1rem;
  line-height: 1.2;
}

.contact-form-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(217, 225, 220, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 53, 45, 0.97), rgba(36, 109, 90, 0.94)),
    var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.contact-form-card p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-form-card .lead-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-thanks-hero {
  min-height: calc(100vh - 74px);
}

.legal-page {
  max-width: 920px;
}

.legal-page section {
  margin-top: 34px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(23, 33, 29, 0.06);
}

.legal-page h2 {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.legal-page p {
  color: var(--muted);
}

.confirmation-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 42px;
}

.confirmation-steps article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 244, 238, 0.96), rgba(246, 244, 238, 0.82)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.04) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.04) 0 1px, transparent 1px 44px);
  box-shadow: 0 16px 38px rgba(23, 33, 29, 0.06);
}

.confirmation-steps span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  font-weight: 900;
}

.confirmation-steps h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.confirmation-steps p {
  color: var(--muted);
}

.insights-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: 92px 0 34px;
}

.insights-hero h1 {
  max-width: 920px;
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
}

.insights-hero-card,
.insights-cta {
  border: 1px solid rgba(217, 225, 220, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 42px);
  box-shadow: 0 18px 48px rgba(23, 33, 29, 0.08);
}

.insights-hero-card {
  padding: 24px;
}

.insights-hero-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.insights-hero-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 1.35rem;
  line-height: 1.12;
}

.insights-hero-card p,
.insights-cta p {
  color: var(--muted);
}

.insight-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 34px;
}

.insight-topic-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 800;
}

.featured-insight {
  padding-bottom: 18px;
}

.featured-insight article {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.featured-insight h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.featured-insight p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.featured-insight .card-index,
.featured-insight .text-link {
  color: #f0bd69;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 92px;
}

.article-grid article {
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(23, 33, 29, 0.06);
  animation: graphFadeUp 720ms ease both;
}

.article-card-visual {
  position: relative;
  height: 164px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(217, 225, 220, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.56)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.06) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.06) 0 1px, transparent 1px 32px);
}

.featured-insight .article-card-visual {
  height: 260px;
  margin-bottom: 0;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px);
}

.article-card-visual span {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--copper));
  box-shadow: 0 16px 30px rgba(23, 33, 29, 0.12);
  animation: articleVisualPulse 3200ms ease-in-out infinite;
}

.visual-ai span:nth-child(1) {
  width: 92px;
  height: 92px;
  top: 34px;
  left: calc(50% - 46px);
  border-radius: 50%;
  background: var(--forest);
}

.visual-ai span:nth-child(2),
.visual-ai span:nth-child(3),
.visual-ai span:nth-child(4) {
  height: 8px;
  transform-origin: left center;
}

.visual-ai span:nth-child(2) {
  width: 46%;
  top: 58px;
  left: 14%;
  transform: rotate(18deg);
}

.visual-ai span:nth-child(3) {
  width: 48%;
  right: 13%;
  bottom: 62px;
  transform: rotate(156deg);
}

.visual-ai span:nth-child(4) {
  width: 38%;
  left: 28%;
  bottom: 34px;
  background: linear-gradient(90deg, var(--amber), var(--copper));
}

.visual-global span {
  bottom: 24px;
  width: 15%;
  border-radius: 8px 8px 3px 3px;
}

.visual-global span:nth-child(1) {
  left: 12%;
  height: 54px;
}

.visual-global span:nth-child(2) {
  left: 34%;
  height: 78px;
}

.visual-global span:nth-child(3) {
  left: 56%;
  height: 112px;
}

.visual-global span:nth-child(4) {
  left: 78%;
  height: 92px;
}

.visual-omni span {
  right: 12%;
  left: 12%;
  height: 26px;
}

.visual-omni span:nth-child(1) {
  top: 30px;
  background: var(--forest);
}

.visual-omni span:nth-child(2) {
  top: 64px;
}

.visual-omni span:nth-child(3) {
  top: 98px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.visual-omni span:nth-child(4) {
  top: 132px;
  background: linear-gradient(90deg, var(--amber), var(--copper));
}

.visual-architecture span {
  width: 74px;
  height: 42px;
}

.visual-architecture span:nth-child(1) {
  top: 24px;
  left: 18px;
}

.visual-architecture span:nth-child(2) {
  top: 42px;
  right: 18px;
}

.visual-architecture span:nth-child(3) {
  bottom: 26px;
  left: 28px;
}

.visual-architecture span:nth-child(4) {
  right: 36px;
  bottom: 38px;
  background: var(--forest);
}

.article-grid h2 {
  margin-bottom: 14px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.article-grid h2 a:hover,
.article-grid h2 a:focus-visible {
  color: var(--green);
}

.article-grid p,
.article-page p,
.article-page li {
  color: var(--muted);
}

.article-page {
  max-width: 820px;
  padding: 72px 0 96px;
}

.article-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
}

.article-page h2 {
  margin-top: 42px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.article-page p {
  font-size: 1.08rem;
}

.article-meta {
  margin-bottom: 34px;
  color: var(--copper) !important;
  font-size: 0.9rem !important;
  font-weight: 800;
}

.article-header-image {
  position: relative;
  height: clamp(260px, 42vw, 390px);
  margin: 0 0 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.05) 0 1px, transparent 1px 44px);
  box-shadow: 0 18px 46px rgba(23, 33, 29, 0.08);
}

.article-header-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(248, 247, 242, 0), rgba(248, 247, 242, 0.72));
  pointer-events: none;
}

.header-node,
.header-hub,
.header-layer,
.ai-core {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 53, 45, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(23, 33, 29, 0.08);
}

.header-node {
  min-width: 104px;
  min-height: 54px;
  padding: 12px 16px;
}

.header-hub,
.ai-core {
  top: 50%;
  left: 50%;
  width: 190px;
  height: 94px;
  transform: translate(-50%, -50%);
  background: var(--forest);
  color: var(--white);
  text-align: center;
}

.ai-core {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  font-size: 2rem;
}

.header-path {
  position: absolute;
  z-index: 1;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(36, 109, 90, 0), rgba(36, 109, 90, 0.42), rgba(182, 107, 62, 0.58), rgba(36, 109, 90, 0));
  background-size: 220% 100%;
  animation:
    architectureLineFlow 2600ms linear infinite,
    graphLinePulse 1800ms ease-in-out infinite alternate;
}

.header-architecture .node-a,
.header-ai .node-a {
  top: 16%;
  left: 10%;
}

.header-architecture .node-b,
.header-ai .node-b {
  bottom: 20%;
  left: 12%;
}

.header-architecture .node-c,
.header-ai .node-c {
  top: 20%;
  right: 12%;
}

.header-architecture .node-d,
.header-ai .node-d {
  right: 10%;
  bottom: 18%;
}

.header-architecture .path-a,
.header-ai .path-a {
  top: 36%;
  left: 18%;
  width: 42%;
  transform: rotate(18deg);
}

.header-architecture .path-b,
.header-ai .path-b {
  right: 18%;
  top: 42%;
  width: 38%;
  transform: rotate(154deg);
}

.header-architecture .path-c,
.header-ai .path-c {
  bottom: 28%;
  left: 22%;
  width: 50%;
  transform: rotate(-12deg);
}

.header-omni {
  display: grid;
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
}

.header-layer {
  position: relative;
  min-height: 56px;
  margin: 0 auto;
  padding: 0 22px;
}

.layer-a {
  width: min(82%, 580px);
  background: var(--forest);
  color: var(--white);
}

.layer-b {
  width: min(72%, 510px);
}

.layer-c {
  width: min(62%, 440px);
}

.layer-d {
  width: min(52%, 370px);
  background: linear-gradient(90deg, var(--green), var(--copper));
  color: var(--white);
}

.header-global {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: clamp(16px, 4vw, 34px);
  padding: clamp(28px, 5vw, 56px);
}

.header-global strong {
  position: absolute;
  top: 34px;
  left: 34px;
  color: var(--forest);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.header-bar {
  display: block;
  width: min(16%, 86px);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--green), var(--copper));
  box-shadow: 0 18px 34px rgba(23, 33, 29, 0.1);
  transform-origin: bottom center;
  animation: graphGrowY 1000ms ease both;
}

.bar-a {
  height: 42%;
}

.bar-b {
  height: 58%;
}

.bar-c {
  height: 76%;
}

.bar-d {
  height: 64%;
}

.header-node,
.header-hub,
.header-layer,
.ai-core {
  animation: graphFadeUp 760ms ease both;
}

.insights-cta {
  margin-bottom: 92px;
  padding: clamp(24px, 4vw, 42px);
}

.insights-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.insights-cta p {
  max-width: 760px;
  font-size: 1.06rem;
}

.insight-graphic,
.comparison-graphic {
  margin: 44px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(90deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(18, 53, 45, 0.045) 0 1px, transparent 1px 54px);
  box-shadow: 0 18px 46px rgba(23, 33, 29, 0.08);
}

.insight-graphic {
  padding: clamp(18px, 4vw, 34px);
}

.insight-graphic figcaption,
.comparison-graphic figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.insight-graphic figcaption strong {
  color: var(--ink);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
}

.insight-graphic figcaption span {
  color: var(--green);
}

.graphic-note {
  max-width: 720px;
  margin: -10px 0 26px;
  color: var(--muted);
  font-size: 0.95rem !important;
}

.insight-map {
  position: relative;
  min-height: 470px;
}

.map-node,
.map-hub {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 118px;
  min-height: 58px;
  padding: 13px 16px;
  border: 1px solid rgba(18, 53, 45, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(23, 33, 29, 0.08);
  animation: graphFadeIn 720ms ease both;
}

.map-hub {
  top: 194px;
  left: 50%;
  width: 254px;
  height: 112px;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--white);
  font-size: 1.15rem;
}

.map-node.commerce {
  top: 40px;
  left: 86px;
}

.map-node.oms {
  top: 42px;
  right: 178px;
}

.map-node.pim {
  top: 140px;
  right: 24px;
}

.map-node.erp {
  top: 242px;
  left: 30px;
}

.map-node.stores {
  bottom: 36px;
  left: 12px;
}

.map-node.crm {
  bottom: 28px;
  left: 170px;
}

.map-node.data {
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.map-node.wms {
  right: 66px;
  bottom: 64px;
}

.map-line {
  position: absolute;
  z-index: 1;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(36, 109, 90, 0.1), rgba(36, 109, 90, 0.34), rgba(182, 107, 62, 0.56));
  transform-origin: left center;
  animation: graphLinePulse 1800ms ease-in-out infinite alternate;
}

.map-line.line-a {
  top: 214px;
  left: 24px;
  width: 370px;
  transform: rotate(-34deg);
}

.map-line.line-b {
  top: 288px;
  left: 40px;
  width: 455px;
  transform: rotate(-4deg);
}

.map-line.line-c {
  top: 314px;
  left: 10px;
  width: 420px;
  transform: rotate(26deg);
}

.map-line.line-d {
  right: 96px;
  top: 278px;
  width: 320px;
  transform: rotate(174deg);
}

.map-line.line-e {
  right: 74px;
  top: 332px;
  width: 244px;
  transform: rotate(150deg);
}

.graphic-risk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 247, 242, 0.9);
}

.graphic-risk span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.graphic-risk strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

.graphic-meter {
  width: min(260px, 44%);
  height: 14px;
  border-radius: 99px;
  background: #e6dfd1;
  overflow: hidden;
}

.graphic-meter i {
  display: block;
  width: var(--value, 68%);
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--copper));
  transform-origin: left center;
  animation: graphGrowX 900ms ease both;
}

.comparison-graphic {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 30px);
}

.comparison-graphic figcaption {
  margin-bottom: 4px;
  color: var(--forest);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.75fr) minmax(160px, 1fr) minmax(120px, 0.7fr);
  gap: 18px;
  align-items: center;
}

.comparison-row span,
.comparison-row strong {
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
}

.comparison-row strong {
  color: var(--muted);
  text-align: right;
}

.bar {
  height: 12px;
  border-radius: 99px;
  background: #e6dfd1;
  overflow: hidden;
}

.bar i {
  display: block;
  width: var(--value, 70%);
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--copper));
  transform-origin: left center;
  animation: graphGrowX 900ms ease both;
}

.stack-graphic {
  display: grid;
  gap: 12px;
}

.stack-graphic div {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  animation: graphFadeUp 700ms ease both;
}

.stack-graphic div:first-child {
  background: var(--forest);
}

.stack-graphic span,
.stack-graphic strong {
  color: var(--forest);
  font-weight: 800;
}

.stack-graphic div:first-child span,
.stack-graphic div:first-child strong {
  color: var(--white);
}

.stack-graphic strong {
  color: var(--muted);
}

.radar-graphic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  min-height: 420px;
  padding-top: 18px;
}

.radar-graphic div {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: end;
  gap: 12px;
  height: 390px;
  min-width: 0;
}

.radar-graphic strong {
  align-self: start;
  color: var(--green);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.radar-graphic i {
  align-self: end;
  display: block;
  width: 100%;
  height: var(--score, 60%);
  min-height: 48px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--green), var(--copper));
  box-shadow: 0 16px 32px rgba(23, 33, 29, 0.08);
  transform-origin: bottom center;
  animation: graphGrowY 1000ms ease both;
}

.radar-graphic span {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

@keyframes graphGrowX {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes graphGrowY {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes graphFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes graphFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes graphLinePulse {
  from {
    opacity: 0.35;
    filter: saturate(0.8);
  }
  to {
    opacity: 0.9;
    filter: saturate(1.15);
  }
}

@keyframes architectureLineFlow {
  from {
    background-position: 120% 0;
  }
  to {
    background-position: -120% 0;
  }
}

@keyframes architectureNodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes architectureHubPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(23, 33, 29, 0.08);
  }
  50% {
    box-shadow: 0 18px 44px rgba(18, 53, 45, 0.22);
  }
}

@keyframes architectureRiskFlow {
  0%,
  100% {
    background-position: 0 0;
    filter: saturate(1);
  }
  50% {
    background-position: 100% 0;
    filter: saturate(1.2);
  }
}

@keyframes articleVisualPulse {
  0%,
  100% {
    filter: saturate(0.95);
    opacity: 0.86;
  }
  50% {
    filter: saturate(1.18);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .architecture-visual,
  .node,
  .hub,
  .line,
  .risk-meter span,
  .map-node,
  .map-hub,
  .map-line,
  .graphic-meter i,
  .bar i,
  .stack-graphic div,
  .radar-graphic i,
  .pain-grid article,
  .outcome-list article,
  .timeline article,
  .article-grid article,
  .article-card-visual span,
  .article-header-image,
  .credential-grid span,
  .proof-strip div,
  .trust-grid article,
  .deliverables,
  .pricing-card,
  .founder-card,
  .cta-card,
  .article-cta,
  .motion-ready,
  .motion-in {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready .bar i,
  .motion-ready .graphic-meter i,
  .motion-ready .risk-meter span,
  .motion-ready .radar-graphic i {
    transform: none;
  }
}

.article-cta {
  margin-top: 52px;
  padding: 28px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
}

.article-cta h2 {
  margin-top: 0;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.article-cta .button {
  min-height: 58px;
  margin-top: 18px;
  padding: 0 24px;
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.article-cta .button::after {
  content: "->";
  margin-left: 12px;
  font-weight: 800;
}

.article-cta .button:hover,
.article-cta .button:focus-visible {
  background: #f0bd69;
  color: var(--forest);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.motion-ready {
  opacity: 0;
  transform: translateY(14px);
}

.motion-ready .bar i,
.motion-ready .graphic-meter i,
.motion-ready .risk-meter span {
  animation: none;
  transform: scaleX(0);
}

.motion-ready .radar-graphic i {
  animation: none;
  transform: scaleY(0);
}

.motion-ready .line,
.motion-ready .map-line {
  animation: none;
  opacity: 0;
}

.motion-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.motion-in .bar i,
.motion-in .graphic-meter i,
.motion-in .risk-meter span {
  animation: graphGrowX 950ms ease both;
}

.motion-in .radar-graphic i {
  animation: graphGrowY 1050ms ease both;
}

.motion-in .line,
.motion-in .map-line {
  animation: graphLinePulse 1800ms ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready,
  .motion-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready .bar i,
  .motion-ready .graphic-meter i,
  .motion-ready .risk-meter span,
  .motion-ready .radar-graphic i,
  .motion-in .bar i,
  .motion-in .graphic-meter i,
  .motion-in .risk-meter span,
  .motion-in .radar-graphic i,
  .motion-ready .line,
  .motion-ready .map-line,
  .motion-in .line,
  .motion-in .map-line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.proof-strip div,
.trust-grid article,
.deliverables,
.pricing-card,
.founder-card,
.cta-card {
  animation: graphFadeUp 720ms ease both;
}

.node:nth-of-type(2),
.map-node:nth-of-type(2),
.comparison-row:nth-of-type(2) .bar i,
.pain-grid article:nth-child(2),
.outcome-list article:nth-child(2),
.timeline article:nth-child(2),
.article-grid article:nth-child(2),
.credential-grid span:nth-child(2),
.trust-grid article:nth-child(2),
.stack-graphic div:nth-child(2),
.radar-graphic div:nth-child(2) i {
  animation-delay: 90ms;
}

.node:nth-of-type(3),
.map-node:nth-of-type(3),
.comparison-row:nth-of-type(3) .bar i,
.pain-grid article:nth-child(3),
.outcome-list article:nth-child(3),
.timeline article:nth-child(3),
.article-grid article:nth-child(3),
.credential-grid span:nth-child(3),
.trust-grid article:nth-child(3),
.stack-graphic div:nth-child(3),
.radar-graphic div:nth-child(3) i {
  animation-delay: 180ms;
}

.node:nth-of-type(4),
.map-node:nth-of-type(4),
.comparison-row:nth-of-type(4) .bar i,
.credential-grid span:nth-child(4),
.trust-grid article:nth-child(4),
.stack-graphic div:nth-child(4),
.radar-graphic div:nth-child(4) i {
  animation-delay: 270ms;
}

.node:nth-of-type(5),
.map-node:nth-of-type(5),
.stack-graphic div:nth-child(5),
.radar-graphic div:nth-child(5) i {
  animation-delay: 360ms;
}

.node:nth-of-type(6),
.map-node:nth-of-type(6),
.radar-graphic div:nth-child(6) i {
  animation-delay: 450ms;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer span:first-child {
  color: var(--muted);
  font-weight: 700;
}

.footer a {
  color: var(--green);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: flex-end;
  text-align: right;
}

.cookie-notice {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(680px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid rgba(217, 225, 220, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    var(--white);
  box-shadow: 0 24px 70px rgba(23, 33, 29, 0.2);
}

.cookie-notice strong,
.cookie-notice p,
.cookie-notice a {
  display: block;
}

.cookie-notice strong {
  margin-bottom: 4px;
  color: var(--forest);
}

.cookie-notice p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-notice a {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
}

.cookie-notice-actions {
  display: flex;
  gap: 10px;
}

.cookie-notice-actions .button {
  min-height: 42px;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--forest);
    font-size: 0.82rem;
  }

  .hero,
  .product-hero,
  .waitlist-thanks-hero,
  .free-download-hero,
  .contact-page,
  .diagnostic,
  .authority,
  .founder-card,
  .cta-card,
  .free-video-section,
  .paid-video-section,
  .kit-author-card,
  .inside-layout,
  .product-pricing,
  .insights-hero,
  .featured-insight article,
  .lead-magnet-hero,
  .whitepaper-preview,
  .download-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .product-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .product-preview-panel {
    position: static;
  }

  .architecture-visual {
    min-height: 520px;
  }

  .pain-grid,
  .free-video-points,
  .paid-video-points,
  .kit-author-credentials,
  .outcome-list,
  .timeline,
  .method-grid,
  .faq-grid,
  .kit-catalog-grid,
  .credential-grid,
  .confirmation-steps,
  .waitlist-check-grid,
  .contact-signal-grid,
  .capability-grid,
  .article-grid,
  .trust-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .sample-risk-row {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    min-height: 300px;
  }

  .insight-map {
    display: grid;
    gap: 10px;
    min-height: 0;
  }

  .map-node,
  .map-hub {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .map-line {
    display: none;
  }

  .map-hub {
    height: 74px;
  }

  .comparison-row,
  .stack-graphic div {
    grid-template-columns: 1fr;
  }

  .graphic-risk {
    align-items: flex-start;
    flex-direction: column;
  }

  .graphic-meter {
    width: 100%;
  }

  .comparison-row strong {
    text-align: left;
  }

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

  .featured-insight .article-card-visual {
    height: 220px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand-text {
    display: inline;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .kit-flow,
  .kit-scorecard div,
  .free-video-points,
  .paid-video-points,
  .preview-table div {
    grid-template-columns: 1fr;
  }

  .product-kit-visual,
  .product-price-card,
  .free-video-copy,
  .paid-video-copy,
  .kit-author-card,
  .contact-form-card,
  .method-grid article,
  .faq-grid article,
  .inside-list article,
  .product-preview-panel {
    padding: 18px;
  }

  .free-video-section {
    padding-bottom: 58px;
  }

  .paid-video-section {
    padding-bottom: 58px;
  }

  .kit-author-band {
    padding: 58px 0;
  }

  .kit-catalog-section {
    padding: 58px 0;
  }

  .free-video-player {
    width: min(100%, 330px);
  }

  .paid-video-player {
    width: 100%;
  }

  .kit-cover-card {
    min-height: 250px;
  }

  .kit-author-portrait,
  .kit-author-portrait img {
    min-height: 320px;
  }

  .architecture-visual {
    min-height: 450px;
    padding: 16px;
  }

  .system-map {
    height: 310px;
  }

  .node {
    min-width: 72px;
    min-height: 38px;
    padding: 8px;
    font-size: 0.66rem;
  }

  .hub {
    top: 132px;
    width: 112px;
    height: 68px;
    font-size: 0.7rem;
  }

  .node-commerce {
    top: 12px;
    left: 6px;
  }

  .node-oms {
    top: 18px;
    right: 4px;
  }

  .node-pim {
    top: 80px;
    right: 0;
  }

  .node-erp {
    top: 156px;
    left: 0;
  }

  .node-store {
    top: 238px;
    left: 0;
  }

  .node-crm {
    bottom: 12px;
    left: 44px;
  }

  .node-data {
    right: 92px;
    bottom: 0;
  }

  .node-wms {
    right: 0;
    bottom: 42px;
  }

  .line {
    opacity: 0.7;
  }

  .risk-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .risk-meter {
    width: 100%;
  }

  .pain-section,
  .product-problem,
  .product-method,
  .product-inside,
  .product-pricing,
  .product-faq,
  .diagnostic,
  .process,
  .authority,
  .founder-section,
  .outcomes,
  .cta-section {
    padding: 58px 0;
  }

  .founder-proof {
    align-items: start;
  }

  .founder-avatar {
    width: 48px;
    height: 48px;
  }

  .founder-portrait,
  .founder-portrait img {
    min-height: 260px;
  }

  .insight-graphic figcaption,
  .comparison-graphic figcaption {
    flex-direction: column;
  }

  .insights-hero {
    padding-top: 58px;
  }

  .insight-topic-strip {
    padding-bottom: 24px;
  }

  .article-card-visual {
    height: 138px;
  }

  .featured-insight .article-card-visual {
    height: 178px;
  }

  .lead-magnet-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .whitepaper-preview,
  .download-page {
    padding: 58px 0;
  }

  .whitepaper-cover {
    min-height: 430px;
    padding: 24px;
  }

  .cover-map {
    right: 24px;
    bottom: 74px;
    left: 24px;
  }

  .value-grid {
    gap: 12px;
  }

  .article-header-image {
    height: 260px;
  }

  .header-node {
    min-width: 82px;
    min-height: 44px;
    padding: 9px 11px;
    font-size: 0.76rem;
  }

  .header-hub {
    width: 138px;
    height: 74px;
    font-size: 0.82rem;
  }

  .ai-core {
    width: 86px;
    height: 86px;
    font-size: 1.45rem;
  }

  .header-layer {
    min-height: 46px;
    font-size: 0.78rem;
  }

  .header-global strong {
    top: 22px;
    left: 22px;
  }

  .radar-graphic {
    gap: 10px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }

  .cookie-notice {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
  }

  .cookie-notice-actions {
    width: 100%;
  }

  .cookie-notice-actions .button {
    flex: 1;
  }
}
