
:root {
  --ink: #17211d;
  --deep: #13251d;
  --muted: #5b6761;
  --paper: #fbfdf8;
  --soft: #eef5ed;
  --line: #dce8dc;
  --sage: #476b58;
  --sage-soft: #8fb19a;
  --mint: #dfeee3;
  --leaf: #6f9578;
  --forest: #284638;
  --gold: #7fa66f;
  --clay: #d9b6a5;
  --shadow: 0 22px 70px rgba(31, 55, 42, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(143, 177, 154, 0.24), transparent 34rem),
    linear-gradient(180deg, #fbfdf8 0%, #f3f9f2 48%, #fbfdf8 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  line-height: 1.7;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(251, 253, 248, 0.9);
  border-bottom: 1px solid rgba(143, 177, 154, 0.26);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 48px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a {
  text-decoration: none;
}

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

.menu-button {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(31, 41, 36, 0.06);
  cursor: pointer;
}

.menu-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(225deg);
}

main {
  overflow: hidden;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-soft);
}

.home-hero,
.network-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 650px;
  padding: clamp(56px, 8vw, 112px) clamp(24px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(251, 253, 248, 0.97), rgba(232, 244, 235, 0.8)),
    url("/assets/media/site-hero.jpg") center / cover;
}

.home-hero-copy,
.network-hero > div,
.contact-hero > div {
  max-width: 780px;
}

.home-hero p,
.network-hero p,
.contact-hero p {
  color: #344139;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--ink);
  background: rgba(255,253,249,0.75);
}

.button.light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.home-hero-card,
.summary-card,
.contact-card {
  padding: 28px;
  background: rgba(251, 253, 248, 0.92);
  border: 1px solid rgba(143, 177, 154, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-hero-card strong,
.summary-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.home-hero-card ul,
.summary-card ul,
.task-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-hero-card li,
.summary-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
}

.home-hero-card li::before,
.summary-card li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 900;
}

.content-section,
.article-shell,
.cta-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 24px;
}

.content-section.tinted {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.rich-copy,
.article-intro {
  color: #303b36;
  font-size: 1.16rem;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.exercise-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 92px) 24px 28px;
}

.exercise-intro {
  max-width: 880px;
  margin-bottom: 30px;
}

.exercise-intro p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.16rem;
}

.tool-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.tool-tile {
  display: grid;
  gap: 8px;
  min-height: 170px;
  align-content: end;
  padding: 22px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tool-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tool-tile.primary {
  color: #fff;
  background: linear-gradient(135deg, #435a51, #71887f);
  border-color: transparent;
}

.tool-tile span,
.path-group span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-tile.primary span,
.tool-tile.primary small {
  color: rgba(255, 255, 255, 0.78);
}

.tool-tile strong {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.tool-tile small {
  color: var(--muted);
  font-size: 0.98rem;
}

.quick-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.quick-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

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

.path-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.path-group h2 {
  margin: 7px 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.path-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.path-links a,
.compact-link-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--sage);
  background: var(--soft);
  border: 1px solid rgba(83, 109, 99, 0.18);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.exercise-all {
  padding-top: 34px;
}

.compact-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.resource-card,
.feature-grid article,
.task-list li {
  padding: 24px;
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.resource-card.featured,
.tool-callout {
  background: linear-gradient(145deg, var(--soft), rgba(223, 238, 227, 0.78));
  border-color: rgba(71, 107, 88, 0.28);
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.resource-card span,
.feature-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-card h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.resource-card p,
.feature-grid p,
.task-list span {
  color: var(--muted);
}

.feature-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--sage));
  border-radius: 50%;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.article-shell.compact {
  display: block;
  max-width: 860px;
}

.article-header {
  position: sticky;
  top: 96px;
  min-width: 0;
}

.article-header h1 {
  max-width: 100%;
  font-size: clamp(2.4rem, 4.65vw, 4.55rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.article-subtitle {
  margin: -8px 0 14px;
  color: #344139;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.article-meta {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  color: var(--sage);
  background: var(--soft);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.article-body {
  min-width: 0;
  max-width: 760px;
  color: #2f3b35;
  font-size: 1.06rem;
}

.article-lead {
  color: #25322d;
  font-size: clamp(1.18rem, 2vw, 1.38rem);
  font-weight: 700;
  line-height: 1.55;
}

.article-body h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.025em;
}

.article-body p {
  margin-bottom: 20px;
}

.article-note {
  margin-top: 34px;
  padding: 18px 20px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-radius: 8px;
  font-size: 0.98rem;
}

.interactive-article .article-body section {
  scroll-margin-top: 110px;
}

.article-toc-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(251, 253, 248, 0.78);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.article-toc-card a {
  color: var(--sage);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
}

.article-toc-card a:hover,
.article-toc-card a:focus-visible {
  color: var(--forest);
}

.kopp-intro-panel,
.kopp-bento-grid,
.kopp-card-row,
.role-grid,
.needs-grid {
  display: grid;
  gap: 16px;
}

.kopp-intro-panel {
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  align-items: stretch;
  margin-bottom: 34px;
}

.kopp-stat-card {
  display: grid;
  align-content: center;
  padding: 24px;
  color: #fff;
  background: linear-gradient(145deg, var(--leaf), var(--forest));
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(31, 55, 42, 0.16);
}

.kopp-stat-card span,
.kopp-bento-grid span,
.role-grid span,
.phase-timeline span {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kopp-stat-card strong {
  margin: 10px 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
}

.kopp-stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.kopp-bento-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  margin: 30px 0 44px;
}

.kopp-bento-grid article,
.kopp-card-row article,
.role-grid article,
.needs-grid article,
.impact-list,
.source-panel {
  padding: 22px;
  background: rgba(251, 253, 248, 0.88);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.kopp-bento-grid article:first-child {
  background: linear-gradient(145deg, var(--soft), rgba(223, 238, 227, 0.78));
}

.kopp-bento-grid h2,
.kopp-card-row h3,
.needs-grid h3,
.phase-timeline h3 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

.kopp-accordion {
  display: grid;
  gap: 10px;
  margin: 18px 0 38px;
  counter-reset: koppSteps;
}

.kopp-accordion details {
  background: rgba(251, 253, 248, 0.88);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.kopp-accordion summary {
  position: relative;
  min-height: 58px;
  padding: 16px 52px 16px 18px;
  color: var(--deep);
  font-weight: 850;
  cursor: pointer;
}

.kopp-accordion summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--sage);
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.kopp-accordion details[open] summary::after {
  content: "-";
}

.kopp-accordion p {
  margin: 0;
  padding: 0 18px 18px;
}

.kopp-accordion.numbered summary {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.kopp-accordion.numbered summary::before {
  counter-increment: koppSteps;
  content: counter(koppSteps, decimal-leading-zero);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-size: 0.78rem;
}

.kopp-signal-grid,
.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 38px;
}

.kopp-signal-grid span,
.source-links a {
  padding: 10px 13px;
  color: var(--sage);
  background: var(--soft);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.section-mini-heading p {
  color: var(--muted);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
  padding: 6px;
  background: var(--soft);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.tab-buttons button {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--sage);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.tab-buttons button[aria-selected="true"] {
  color: #fff;
  background: var(--sage);
  box-shadow: 0 12px 28px rgba(31, 55, 42, 0.12);
}

.tab-panel {
  margin-bottom: 40px;
}

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

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

.role-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--sage);
}

.impact-list {
  display: grid;
  gap: 12px;
}

.impact-list p {
  margin: 0;
}

.phase-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 20px 0 42px;
}

.phase-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--leaf), rgba(111, 149, 120, 0.18));
}

.phase-timeline article {
  position: relative;
  padding: 18px 18px 18px 58px;
  background: rgba(251, 253, 248, 0.88);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.phase-timeline article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 10px;
  width: 18px;
  aspect-ratio: 1;
  background: var(--paper);
  border: 4px solid var(--leaf);
  border-radius: 50%;
}

.phase-timeline span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--sage);
}

.source-panel {
  margin-top: 36px;
  background: linear-gradient(145deg, rgba(238, 245, 237, 0.92), rgba(251, 253, 248, 0.88));
}

.emotion-wheel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 4vw, 34px);
  margin: 30px 0 38px;
  padding: clamp(20px, 4vw, 30px);
  background:
    radial-gradient(circle at 16% 20%, rgba(127, 166, 111, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(238, 245, 237, 0.96), rgba(251, 253, 248, 0.9));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 55, 42, 0.12);
}

.emotion-tool-heading {
  grid-column: 1 / -1;
  max-width: 720px;
}

.emotion-tool-heading span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.emotion-tool-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.emotion-tool-heading p {
  color: var(--muted);
}

.emotion-orbit {
  position: relative;
  min-height: 420px;
  isolation: isolate;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(251, 253, 248, 0.94) 0 27%, transparent 28%),
    radial-gradient(circle, transparent 0 48%, rgba(143, 177, 154, 0.18) 49% 50%, transparent 51%),
    radial-gradient(circle, transparent 0 72%, rgba(71, 107, 88, 0.15) 73% 74%, transparent 75%);
}

.emotion-orbit::before,
.emotion-orbit::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(71, 107, 88, 0.12);
  border-radius: 44% 56% 50% 50% / 52% 42% 58% 48%;
  animation: organicDrift 16s ease-in-out infinite alternate;
}

.emotion-orbit::after {
  inset: 18%;
  border-color: rgba(127, 166, 111, 0.18);
  animation-duration: 12s;
  animation-direction: alternate-reverse;
}

.emotion-node {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 112px;
  min-height: 104px;
  place-items: center start;
  padding: 16px;
  color: var(--deep);
  background: linear-gradient(145deg, rgba(251, 253, 248, 0.96), rgba(223, 238, 227, 0.82));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 46% 54% 50% 50% / 56% 44% 54% 46%;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(31, 55, 42, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.emotion-node i {
  display: block;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.86), transparent 22%),
    linear-gradient(135deg, var(--leaf), var(--forest));
}

.emotion-node span {
  font-size: 0.94rem;
  font-weight: 900;
}

.emotion-node:hover,
.emotion-node.is-active {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(71, 107, 88, 0.48);
  box-shadow: 0 24px 54px rgba(31, 55, 42, 0.17);
}

.emotion-node.is-active {
  background: linear-gradient(145deg, #fff, rgba(216, 234, 216, 0.98));
}

.node-blij { left: 50%; top: 0; transform: translateX(-50%); }
.node-verdrietig { right: 1%; top: 23%; }
.node-boos { right: 8%; bottom: 8%; }
.node-bang { left: 8%; bottom: 8%; }
.node-beschaamd { left: 1%; top: 23%; }
.node-walging { left: 50%; bottom: 0; transform: translateX(-50%); }

.node-blij:hover,
.node-blij.is-active,
.node-walging:hover,
.node-walging.is-active {
  transform: translateX(-50%) translateY(-5px) scale(1.03);
}

.emotion-compass-center {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 138px;
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, var(--leaf), var(--forest));
  border: 8px solid rgba(251, 253, 248, 0.86);
  border-radius: 50%;
  box-shadow: 0 22px 58px rgba(31, 55, 42, 0.2);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.emotion-compass-center span {
  font-weight: 900;
}

.emotion-insight {
  display: grid;
  align-content: start;
  padding: clamp(22px, 4vw, 30px);
  background: rgba(251, 253, 248, 0.94);
  border: 1px solid rgba(71, 107, 88, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 55, 42, 0.09);
}

.emotion-insight > span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.emotion-insight dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.emotion-insight dl div {
  padding: 12px 0;
  border-top: 1px solid rgba(71, 107, 88, 0.12);
}

.emotion-insight dt {
  color: var(--deep);
  font-weight: 900;
}

.emotion-insight dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.emotion-practice {
  margin-top: 20px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.emotion-practice h3 {
  margin-bottom: 6px;
}

.emotion-practice p {
  margin-bottom: 0;
}

@keyframes organicDrift {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(8deg) scale(1.03); }
}

.pattern-timeline {
  margin: 26px 0 34px;
  padding: 22px;
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.timeline-control {
  display: grid;
  gap: 12px;
}

.timeline-control label {
  color: var(--deep);
  font-weight: 900;
}

.timeline-control input {
  width: 100%;
  accent-color: var(--sage);
}

.timeline-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.timeline-stages span {
  padding: 10px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.timeline-stages span.is-active {
  color: #fff;
  background: var(--sage);
}

.timeline-card {
  padding: 18px;
  background: var(--paper);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.about-card-set {
  margin: 34px 0 42px;
  padding: clamp(20px, 4vw, 28px);
  background:
    radial-gradient(circle at top right, rgba(127, 166, 111, 0.2), transparent 16rem),
    linear-gradient(145deg, rgba(238, 245, 237, 0.92), rgba(251, 253, 248, 0.88));
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.about-card-set > h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

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

.about-flip-grid details {
  min-height: 136px;
  background:
    linear-gradient(145deg, rgba(251, 253, 248, 0.96), rgba(223, 238, 227, 0.72));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(31, 55, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-flip-grid details:hover,
.about-flip-grid details[open] {
  transform: translateY(-3px);
  border-color: rgba(71, 107, 88, 0.42);
  box-shadow: 0 24px 54px rgba(31, 55, 42, 0.13);
}

.about-flip-grid details[open] {
  grid-column: auto;
  background:
    radial-gradient(circle at top left, rgba(127, 166, 111, 0.22), transparent 11rem),
    linear-gradient(145deg, rgba(251, 253, 248, 0.98), rgba(238, 245, 237, 0.92));
}

.about-flip-grid summary {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 136px;
  align-content: space-between;
  padding: 18px 52px 18px 18px;
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.about-flip-grid summary::-webkit-details-marker {
  display: none;
}

.about-flip-grid summary::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.about-flip-grid details[open] summary::after {
  transform: rotate(225deg);
}

.about-flip-grid summary .about-card-mark {
  position: relative;
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(127, 166, 111, 0.2));
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 50%;
}

.about-card-mark::before,
.about-card-mark::after {
  content: "";
  position: absolute;
}

.mark-acute::before {
  width: 18px;
  height: 14px;
  border: 2px solid var(--sage);
  border-radius: 50%;
}

.mark-acute::after {
  width: 8px;
  height: 8px;
  right: 10px;
  bottom: 9px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
}

.mark-training::before {
  width: 19px;
  height: 19px;
  border: 2px solid var(--sage);
  border-radius: 50%;
}

.mark-training::after {
  width: 12px;
  height: 2px;
  background: var(--sage);
  box-shadow: 0 -5px 0 var(--sage), 0 5px 0 var(--sage);
}

.mark-consultation::before {
  width: 22px;
  height: 15px;
  border: 2px solid var(--sage);
  border-radius: 7px;
}

.mark-consultation::after {
  left: 12px;
  bottom: 10px;
  width: 7px;
  height: 7px;
  border-left: 2px solid var(--sage);
  transform: skewY(-35deg);
}

.mark-knowledge::before {
  width: 20px;
  height: 23px;
  border: 2px solid var(--sage);
  border-radius: 3px;
}

.mark-knowledge::after {
  width: 11px;
  height: 2px;
  background: var(--sage);
  box-shadow: 0 -5px 0 var(--sage), 0 5px 0 var(--sage);
}

.mark-projects::before {
  width: 22px;
  height: 15px;
  border: 2px solid var(--sage);
  border-top: 0;
}

.mark-projects::after {
  top: 10px;
  width: 24px;
  height: 10px;
  border-top: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
}

.about-flip-grid p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
}

.article-quote {
  margin: 28px 0;
  padding: 24px;
  color: #25322d;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(244, 241, 236, 0.9)),
    repeating-linear-gradient(118deg, rgba(168, 111, 13, 0.06) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(83, 109, 99, 0.18);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
}

.article-quote p {
  margin-bottom: 0;
  font-size: clamp(1.08rem, 2vw, 1.26rem);
  font-weight: 800;
  line-height: 1.55;
}

.article-body a {
  color: var(--sage);
  font-weight: 800;
}

.article-visual {
  margin: 0 0 34px;
}

.article-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(83, 109, 99, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(31, 41, 36, 0.1);
}

.action-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.action-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 24px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.action-card.primary {
  background: var(--soft);
  border-color: rgba(83, 109, 99, 0.28);
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.action-card span {
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.action-card h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

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

.action-card strong {
  margin-top: auto;
  color: var(--sage);
}

.article-body .action-card-grid {
  grid-template-columns: 1fr;
  margin: 26px 0 30px;
}

.article-body .action-card {
  min-height: auto;
}

.tool-callout {
  margin: 0 0 34px;
  padding: 24px;
  border: 1px solid rgba(83, 109, 99, 0.28);
  border-radius: 8px;
}

.tool-callout span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-callout h2 {
  margin-top: 0;
}

.tool-callout p {
  color: var(--muted);
}

.tool-callout .button {
  margin-top: 4px;
}

.tool-callout .button.primary {
  color: #fff;
}

.tool-callout .button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--sage);
}

.inline-list {
  margin: 22px 0;
  padding-left: 1.35rem;
  list-style: disc;
}

.inline-list li {
  padding: 4px 0 4px 2px;
}

.inline-list li::marker {
  color: var(--sage);
}

.insight-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.insight-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  color: #2f3b35;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(244, 241, 236, 0.86)),
    repeating-linear-gradient(118deg, rgba(168, 111, 13, 0.07) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-radius: 8px;
}

.insight-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 14px;
  aspect-ratio: 1;
  background: var(--paper);
  border: 3px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.reflection-card {
  margin: 30px 0;
  padding: clamp(22px, 4vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(244, 241, 236, 0.88)),
    repeating-linear-gradient(118deg, rgba(168, 111, 13, 0.07) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(83, 109, 99, 0.18);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(31, 41, 36, 0.08);
}

.reflection-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reflection-card.compact-card p {
  margin-bottom: 16px;
}

.reflection-card.compact-card li {
  min-height: auto;
  padding-left: 46px;
  font-size: 1.04rem;
}

.reflection-card.compact-card li::before {
  width: 30px;
  height: 30px;
  font-size: 0.68rem;
}

.reflection-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: reflection;
}

.reflection-card li {
  position: relative;
  min-height: 44px;
  padding-left: 56px;
  color: var(--deep);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.35;
  counter-increment: reflection;
}

.reflection-card li::before {
  content: counter(reflection, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.direction-questions li {
  min-height: 36px;
  padding-left: 48px;
  font-size: 1rem;
}

.direction-questions li::before {
  width: 32px;
  height: 32px;
  font-size: 0.68rem;
}

.aat-card-set {
  margin: 26px 0 30px;
  padding: clamp(20px, 4vw, 28px);
  background: linear-gradient(145deg, rgba(238, 245, 237, 0.95), rgba(251, 253, 248, 0.9));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
}

.aat-heading span {
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aat-heading h3 {
  margin: 7px 0 18px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.aat-card-grid {
  display: grid;
  gap: 10px;
}

.aat-card-grid details {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.aat-card-grid details:hover,
.aat-card-grid details[open] {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(31, 55, 42, 0.1);
}

.aat-card-grid summary {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 48px 16px 16px;
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.aat-card-grid summary::-webkit-details-marker {
  display: none;
}

.aat-card-grid summary::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(45deg);
}

.aat-card-grid details[open] summary::after {
  transform: rotate(225deg);
}

.aat-card-grid summary span {
  display: block;
  width: 28px;
  height: 28px;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.88), transparent 23%),
    linear-gradient(145deg, var(--leaf), var(--forest));
  border: 5px solid rgba(127, 166, 111, 0.16);
  border-radius: 50%;
}

.aat-card-grid p {
  margin: 0;
  padding: 0 18px 18px 58px;
  color: var(--muted);
}

.emotions-page .article-shell {
  max-width: 1320px;
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(34px, 5vw, 76px);
}

.emotions-page .article-body {
  max-width: 920px;
}

.interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 34px;
  padding: 0;
  list-style: none;
}

.interest-list li {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px 10px 40px;
  position: relative;
  color: var(--deep);
  background: rgba(244, 241, 236, 0.78);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.25;
}

.interest-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 10px;
  aspect-ratio: 1;
  background: var(--sage);
  border-radius: 50%;
}

.word-quote {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.word-quote span {
  display: inline-flex;
  padding: 12px 18px;
  color: var(--sage);
  background: var(--soft);
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 900;
}

.task-list strong {
  display: block;
  margin-bottom: 4px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 72px;
  color: #fff;
  background: linear-gradient(135deg, #435a51, #71887f);
  border-radius: 8px;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  max-width: 720px;
  color: rgba(255,255,255,0.88);
}

.cta-section .small {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-card {
  display: grid;
  gap: 10px;
}

.contact-card a {
  color: var(--sage);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(24px, 6vw, 84px);
  color: rgba(255,255,255,0.82);
  background: #17211d;
}

.site-footer p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-copyright {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: nowrap;
    overflow: visible;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(20px, 4vw, 56px);
    left: clamp(20px, 4vw, 56px);
    display: grid;
    width: auto;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
    color: var(--ink);
    background:
      linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(244, 241, 236, 0.94)),
      repeating-linear-gradient(118deg, rgba(168, 111, 13, 0.07) 0 1px, transparent 1px 34px);
    border: 1px solid rgba(83, 109, 99, 0.16);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(31, 41, 36, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
    counter-reset: menu;
  }

  .site-header:focus-within .site-nav,
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .site-nav a {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 900;
  }

  .site-nav a::before {
    counter-increment: menu;
    content: "0" counter(menu);
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--sage);
    background: rgba(83, 109, 99, 0.1);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--deep);
    background: rgba(255, 253, 249, 0.78);
    border-color: rgba(83, 109, 99, 0.16);
  }

  .site-nav a[aria-current="page"]::before {
    color: #fff;
    background: var(--sage);
  }

  .home-hero,
  .network-hero,
  .contact-hero,
  .split,
  .article-shell,
  .kopp-intro-panel,
  .kopp-bento-grid,
  .kopp-card-row,
  .role-grid,
  .needs-grid,
  .emotion-wheel,
  .about-flip-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .network-hero,
  .contact-hero {
    min-height: auto;
  }

  .article-header {
    position: static;
  }

  .card-grid,
  .feature-grid,
  .tool-strip,
  .action-card-grid,
  .path-group {
    grid-template-columns: 1fr;
  }

  .exercise-page {
    padding-top: 44px;
    padding-bottom: 12px;
  }

  .exercise-intro {
    margin-bottom: 22px;
  }

  .tab-buttons {
    display: grid;
  }

  .emotion-orbit,
  .timeline-stages {
    grid-template-columns: 1fr;
  }

  .about-flip-grid details[open] {
    grid-column: auto;
  }

  .about-flip-grid details,
  .about-flip-grid summary {
    min-height: auto;
  }

  .tool-strip {
    gap: 10px;
    margin-bottom: 18px;
  }

  .tool-tile {
    min-height: auto;
    padding: 18px;
  }

  .quick-jump {
    flex-wrap: nowrap;
    margin-right: -24px;
    margin-left: -24px;
    padding: 0 24px 6px;
    overflow-x: auto;
    scroll-padding-inline: 24px;
    -webkit-overflow-scrolling: touch;
  }

  .quick-jump a {
    flex: 0 0 auto;
  }

  .path-group {
    gap: 14px;
    padding: 18px;
  }

  .path-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .path-links a,
  .compact-link-grid a {
    width: 100%;
    justify-content: space-between;
    border-radius: 8px;
  }

  .resource-card {
    min-height: auto;
    padding: 18px;
  }

  .resource-card span {
    margin-bottom: 8px;
  }

  .resource-card h2 {
    margin-bottom: 6px;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Redesign layer */
:root {
  --gold: #7fa66f;
  --gold-soft: #d8ead8;
  --leaf: #6f9578;
  --mist: #d9e9dd;
  --sky: #c7ddd0;
  --deep: #13251d;
  --cream: #fbfdf8;
}

h1,
h2 {
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid rgba(168, 111, 13, 0.45);
  outline-offset: 4px;
}

.site-header {
  box-shadow: 0 10px 40px rgba(31, 41, 36, 0.06);
}

.brand span {
  letter-spacing: 0;
}

.redesigned-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 253, 249, 0.98) 0%, rgba(245, 239, 226, 0.95) 45%, rgba(218, 231, 224, 0.92) 100%),
    repeating-linear-gradient(105deg, rgba(83, 109, 99, 0.09) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, #fffdf9 0%, #f3efe5 52%, #dce7e0 100%);
}

.redesigned-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(105deg, rgba(83, 109, 99, 0.08) 1px, transparent 1px),
    linear-gradient(15deg, rgba(168, 111, 13, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.redesigned-hero > * {
  position: relative;
  z-index: 1;
}

.home-hero.redesigned-hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  min-height: min(640px, calc(100vh - 85px));
  padding-top: clamp(46px, 5.5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 62px);
}

.home-hero-copy h1 {
  max-width: 860px;
  color: var(--deep);
  font-size: clamp(2.55rem, 3.8vw, 4.25rem);
  line-height: 1.05;
}

.home-hero-copy p:not(.eyebrow) {
  max-width: 680px;
}

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

.hero-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-audience span {
  padding: 9px 12px;
  color: var(--sage);
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid rgba(83, 109, 99, 0.18);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.home-featured-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  max-width: 1120px;
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 88% 18%, rgba(127, 166, 111, 0.24), transparent 15rem),
    linear-gradient(135deg, rgba(238, 245, 237, 0.96), rgba(251, 253, 248, 0.94));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(31, 55, 42, 0.09);
}

.home-featured-tool h2 {
  margin: 5px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.home-featured-tool p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.home-featured-tool .button {
  white-space: nowrap;
}

.button {
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(31, 41, 36, 0.15);
}

.button.primary {
  background: linear-gradient(135deg, var(--leaf), var(--forest));
}

.button.secondary {
  border-color: rgba(71, 107, 88, 0.32);
  background: rgba(239, 247, 238, 0.84);
}

.hero-pathfinder {
  --path-x: 0;
  --path-y: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: auto;
  padding: 22px;
  isolation: isolate;
  transform: translate3d(calc(var(--path-x) * 5px), calc(var(--path-y) * 4px), 0);
  transition: transform 220ms ease;
}

.hero-pathfinder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(251, 253, 248, 0.9), rgba(224, 239, 226, 0.46)),
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(71, 107, 88, 0.08) 37px 38px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(111, 149, 120, 0.08) 45px 46px);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(31, 55, 42, 0.13);
}

.hero-pathfinder::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 94px;
  aspect-ratio: 1;
  border: 14px solid rgba(111, 149, 120, 0.14);
  border-radius: 50%;
  opacity: 0.86;
}

.pathfinder-heading,
.pathfinder-item {
  position: relative;
  z-index: 2;
}

.pathfinder-heading {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 4px 4px 12px;
}

.pathfinder-heading span,
.pathfinder-item small {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pathfinder-heading strong {
  max-width: 520px;
  color: var(--deep);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.08;
}

.pathfinder-item {
  display: grid;
  gap: 7px;
  width: auto;
  min-height: 146px;
  align-content: space-between;
  padding: 18px 18px 18px 52px;
  color: inherit;
  background: rgba(251, 253, 248, 0.94);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(31, 41, 36, 0.12);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pathfinder-item:hover,
.pathfinder-item:focus-visible,
.pathfinder-item.is-active {
  transform: translateY(-4px);
  border-color: rgba(111, 149, 120, 0.5);
  box-shadow: 0 24px 60px rgba(31, 55, 42, 0.18);
}

.pathfinder-item strong {
  color: var(--deep);
  font-size: clamp(1.08rem, 1.75vw, 1.32rem);
  line-height: 1.18;
}

.path-dot {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 20px;
  aspect-ratio: 1;
  background: #fbfdf8;
  border: 3px solid var(--leaf);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(31, 41, 36, 0.16);
}

.route-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 88px) 24px;
}

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

.route-card {
  position: relative;
  display: grid;
  min-height: 270px;
  align-content: end;
  padding: clamp(24px, 4vw, 40px);
  overflow: hidden;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(251, 253, 248, 0.98), rgba(232, 244, 235, 0.9)),
    repeating-linear-gradient(118deg, rgba(111, 149, 120, 0.09) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.route-card::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -36px;
  width: 190px;
  aspect-ratio: 1;
  border: 18px solid rgba(111, 149, 120, 0.18);
  border-radius: 50%;
}

.route-card::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 28px;
  width: 130px;
  height: 24px;
  border-top: 5px solid rgba(83, 109, 99, 0.28);
  border-bottom: 5px solid rgba(83, 109, 99, 0.18);
  border-radius: 50%;
}

.route-card:hover,
.route-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(83, 109, 99, 0.38);
  box-shadow: var(--shadow);
}

.route-card.featured {
  color: #fff;
  background:
    repeating-linear-gradient(118deg, rgba(223, 238, 227, 0.13) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, var(--leaf), var(--forest));
}

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

.route-number {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 900;
}

.route-card h3 {
  max-width: 560px;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.1;
}

.route-card p {
  max-width: 560px;
  color: var(--muted);
}

.route-card strong {
  margin-top: 16px;
}

.profile-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(22px, 4vw, 54px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 68px) 24px;
  background: linear-gradient(90deg, rgba(239, 247, 238, 0.56), rgba(251, 253, 248, 0));
  border-top: 1px solid rgba(71, 107, 88, 0.14);
  border-bottom: 1px solid rgba(71, 107, 88, 0.14);
}

.profile-block h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.profile-block p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.profile-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.profile-points span,
.profile-points a {
  min-height: 82px;
  padding: 18px;
  color: var(--deep);
  background: rgba(251, 253, 248, 0.78);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.profile-points a {
  color: #fff;
  background: linear-gradient(135deg, var(--sage), var(--forest));
}

.profile-points a:hover,
.profile-points a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(83, 109, 99, 0.38);
  box-shadow: 0 18px 44px rgba(31, 41, 36, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(var(--reading-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}

.story-section {
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 24px;
  width: min(34vw, 260px);
  height: 8px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 999px;
}

.focus-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(56px, 8vw, 96px) max(24px, calc((100vw - 1120px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 33, 29, 0.97), rgba(49, 72, 64, 0.94)),
    repeating-linear-gradient(118deg, rgba(230, 210, 168, 0.12) 0 1px, transparent 1px 44px);
}

.focus-band .eyebrow {
  color: var(--gold-soft);
}

.focus-band .eyebrow::before {
  background: var(--gold-soft);
}

.focus-list {
  display: grid;
  gap: 12px;
}

.focus-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.focus-list span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-list h3 {
  margin-bottom: 8px;
}

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

.resource-card {
  overflow: hidden;
}

.resource-card::after {
  content: "";
  width: 56px;
  height: 6px;
  margin-top: auto;
  background: var(--gold);
  border-radius: 999px;
  transition: width 180ms ease;
}

.resource-card:hover::after {
  width: 96px;
}

.contact-hero.redesigned-hero {
  min-height: 520px;
}

.contact-card.lifted {
  display: grid;
  gap: 10px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 24px;
}

.contact-note {
  padding-top: 8px;
}

.contact-note p:not(.eyebrow) {
  color: var(--muted);
}

.safety-note {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(244, 241, 236, 0.82)),
    repeating-linear-gradient(118deg, rgba(168, 111, 13, 0.08) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(168, 111, 13, 0.24);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
}

.safety-note h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  outline: none;
  box-shadow: 0 0 0 4px rgba(83, 109, 99, 0.12);
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes pathFlow {
  to {
    stroke-dashoffset: -128;
  }
}

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

@media (max-width: 900px) {
  .home-hero.redesigned-hero,
  .route-grid,
  .profile-block,
  .focus-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .home-hero.redesigned-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .home-featured-tool {
    grid-template-columns: 1fr;
    margin-right: 24px;
    margin-left: 24px;
  }

  .home-featured-tool .button {
    width: fit-content;
  }

  .emotions-page .article-shell {
    grid-template-columns: 1fr;
  }

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

  .pathfinder-heading {
    padding-top: 4px;
  }

  .pathfinder-item {
    width: auto;
  }

  .route-card {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 42px;
    height: 30px;
  }

  .article-header h1 {
    font-size: clamp(2.15rem, 12vw, 3.15rem);
    line-height: 1.08;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.02;
  }

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

  .hero-audience span {
    min-width: 0;
    padding: 10px 3px;
    color: var(--deep);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
  }

  .home-featured-tool {
    margin-top: 24px;
  }

  .actions,
  .button-row {
    display: grid;
  }

  .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-pathfinder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 0;
    transform: none;
  }

  .hero-pathfinder::before,
  .hero-pathfinder::after,
  .pathfinder-curve {
    display: none;
  }

  .pathfinder-heading,
  .pathfinder-item {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .pathfinder-heading {
    padding: 18px 0 4px;
  }

  .pathfinder-heading strong {
    font-size: 1.55rem;
  }

  .pathfinder-item {
    min-height: auto;
    padding: 16px 16px 16px 54px;
    box-shadow: none;
  }

  .profile-points {
    grid-template-columns: 1fr;
  }

  .path-dot {
    top: 50%;
    left: 18px;
    width: 22px;
    border-width: 3px;
    transform: translateY(-50%);
  }

  .route-card {
    min-height: 245px;
  }

  .route-card h3 {
    font-size: 1.7rem;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 8px;
  }
}
