:root {
  --magenta: #ec0f8c;
  --cyan: #00aeef;
  --lime: #d6df21;
  --dark: #0f172a;
  --slate: #475569;
  --muted: #f8fafc;
  --soft: #f8fafc;
  --white: #ffffff;
  --line: rgba(15, 23, 42, 0.12);
}

.site-footer {
  padding: 58px max(20px, calc((100vw - 1180px) / 2)) 28px;
  color: rgba(255, 255, 255, 0.74);
  background: #090f1f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.footer-brand img {
  width: 168px;
  max-width: 100%;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--magenta);
}

.site-footer p {
  max-width: 340px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

.site-footer .footer-cta {
  display: inline-flex;
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus-visible {
  color: var(--white);
  filter: brightness(0.94);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.case-hero .hero-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
}

.case-hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.16), rgba(0, 174, 239, 0.1)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.case-path-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.case-path-card span,
.case-kicker {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-path-card strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.case-path-card.active span {
  color: var(--cyan);
}

.case-path-card.result span {
  color: var(--lime);
}

.case-library-section {
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.07), transparent 34%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.09), transparent 48%),
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    var(--soft);
  background-size: auto, auto, 34px 34px, 34px 34px;
}

.case-library-section .section-heading {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.case-library-section .section-heading p:not(.eyebrow),
.outcome-section .section-heading p:not(.eyebrow) {
  color: var(--slate);
}

.outcome-section {
  background: var(--soft);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin-inline: auto;
}

.outcome-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
}

.outcome-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.outcome-grid p {
  margin-bottom: 0;
  color: var(--slate);
  font-weight: 700;
}

.case-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin-inline: auto;
}

.case-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.case-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 22px;
  align-items: center;
  padding: 28px;
  cursor: pointer;
  list-style: none;
}

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

.case-card summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--magenta);
  font-size: 24px;
  font-weight: 900;
}

.case-card[open] summary::after {
  content: "-";
}

.case-card summary strong {
  grid-column: 1;
  color: var(--dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.case-card summary small {
  grid-column: 1;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 760;
}

.case-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.case-story div {
  padding: 24px;
  background: var(--white);
}

.case-story h3 {
  margin: 0 0 10px;
  color: var(--magenta);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-story p {
  margin-bottom: 0;
  color: var(--slate);
  font-weight: 700;
}

.case-story .case-result {
  grid-column: 1 / -1;
  background: var(--dark);
}

.case-story .case-result h3,
.case-story .case-result p {
  color: var(--white);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1080px) {
  .case-hero .hero-layout {
    grid-template-columns: 1fr;
  }

  .case-hero-visual {
    max-width: 720px;
  }

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

@media (max-width: 760px) {
  .case-hero-visual {
    padding: 14px;
  }

  .case-path-card {
    padding: 16px;
  }

  .outcome-grid,
  .case-story {
    grid-template-columns: 1fr;
  }

  .case-card summary {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .case-card summary::after {
    grid-column: 1;
  }

  .case-card summary strong,
  .case-card summary small {
    grid-column: 1;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

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

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.35vw, 22px);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a,
.nav-menu-trigger {
  white-space: nowrap;
}

nav a,
.header-cta,
.button,
.archetype-card a,
.offer-card a {
  text-decoration: none;
}

.nav-menu {
  position: relative;
}

.nav-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
}

.nav-menu-trigger {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 4px;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown,
.nav-menu.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  color: #334155;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--soft);
  color: var(--magenta);
}

nav > a,
.nav-menu-trigger,
.header-cta,
.button.primary {
  transition: color 0.18s ease, background-color 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}

nav > a:hover,
nav > a:focus-visible,
.nav-menu-trigger:hover,
.nav-menu-trigger:focus-visible {
  color: var(--magenta);
}

.header-cta:hover,
.header-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  filter: brightness(0.94);
}

.header-cta {
  display: inline-flex;
  padding: 13px 18px;
  color: var(--white);
  background: var(--magenta);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: auto;
  padding: 176px max(20px, calc((100vw - 1180px) / 2)) 106px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 96px max(20px, calc((100vw - 1180px) / 2)) 28px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 94%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background:
    radial-gradient(circle at 82% 22%, rgba(236, 15, 140, 0.24), transparent 30%),
    radial-gradient(circle at 22% 80%, rgba(0, 174, 239, 0.2), transparent 34%),
    linear-gradient(130deg, rgba(236, 15, 140, 0.16), transparent 38%),
    var(--dark);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    radial-gradient(circle at 24% 36%, rgba(214, 223, 33, 0.75) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 25%, rgba(0, 174, 239, 0.75) 0 3px, transparent 4px),
    radial-gradient(circle at 80% 58%, rgba(236, 15, 140, 0.7) 0 4px, transparent 5px),
    linear-gradient(100deg, transparent 0 18%, rgba(0, 174, 239, 0.18) 18.1% 18.22%, transparent 18.3% 100%),
    linear-gradient(140deg, transparent 0 62%, rgba(236, 15, 140, 0.2) 62.1% 62.24%, transparent 62.3% 100%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, auto, 46px 46px, 46px 46px;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  align-self: center;
}

.hero-content {
  max-width: 780px;
  align-self: center;
}

.hero-mirror-card {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(15, 23, 42, 0.62);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-mirror-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(236, 15, 140, 0.5), transparent 42%, rgba(0, 174, 239, 0.35));
  opacity: 0.38;
}

.mirror-kicker {
  display: grid;
  gap: 6px;
}

.mirror-kicker span,
.mirror-output span,
.map-column p {
  color: var(--magenta);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mirror-kicker strong {
  color: var(--white);
  font-size: 19px;
  line-height: 1.15;
  text-transform: uppercase;
}

.mirror-stage {
  position: relative;
  min-height: 410px;
  isolation: isolate;
}

.mirror-stage::before,
.mirror-stage::after {
  content: "";
  position: absolute;
  inset: 50% 30px auto;
  z-index: -1;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--lime));
  opacity: 0.62;
}

.mirror-stage::after {
  inset: 26px auto 26px 50%;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg, var(--cyan), var(--magenta), var(--lime));
}

.mirror-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(214, 223, 33, 0.5);
  border-radius: 999px;
  color: var(--dark);
  background: var(--lime);
  box-shadow: 0 0 0 14px rgba(214, 223, 33, 0.1), 0 24px 72px rgba(214, 223, 33, 0.18);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.mirror-question {
  position: absolute;
  z-index: 3;
  width: min(46%, 190px);
  min-height: 96px;
  display: grid;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.mirror-question::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--magenta);
  box-shadow: 0 0 22px rgba(236, 15, 140, 0.54);
}

.q1 {
  top: 18px;
  left: 0;
  border-color: rgba(236, 15, 140, 0.3);
}

.q2 {
  top: 18px;
  right: 0;
  border-color: rgba(0, 174, 239, 0.3);
}

.q3 {
  bottom: 18px;
  left: 0;
  border-color: rgba(0, 174, 239, 0.3);
}

.q4 {
  right: 0;
  bottom: 18px;
  border-color: rgba(214, 223, 33, 0.28);
}

.mirror-output {
  display: grid;
  gap: 6px;
  padding: 15px;
  border: 1px solid rgba(0, 174, 239, 0.28);
  border-radius: 8px;
  background: rgba(0, 174, 239, 0.08);
}

.mirror-output strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--magenta);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.48;
  font-weight: 650;
}

.hero-subcopy {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

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

.diagnosis-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  max-width: 680px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 223, 33, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(214, 223, 33, 0.08);
}

.diagnosis-strip strong,
.diagnosis-strip span {
  font-size: 15px;
  line-height: 1.45;
}

.diagnosis-strip strong {
  color: var(--lime);
  font-weight: 900;
}

.diagnosis-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 720;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 17px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button.primary {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 18px 50px rgba(236, 15, 140, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.hero-proof span {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 84px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.88fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.section-copy {
  color: var(--slate);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  font-weight: 500;
}

.section-copy p + p {
  margin-top: 24px;
}

.signs-section,
.shift-section,
.start-section,
.proof-section,
.faq-section {
  background: var(--white);
}

.problem-section {
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.075), transparent 34%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.09), transparent 48%),
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    var(--soft);
  background-size: auto, auto, 34px 34px, 34px 34px;
}

.section-heading {
  display: grid;
  justify-items: start;
  max-width: 980px;
  margin-bottom: 54px;
}

.section-heading.centered {
  justify-items: center;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1.55;
}

.section-heading .eyebrow {
  width: fit-content;
  max-width: 100%;
}

.archetypes {
  background:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    var(--muted);
  background-size: 32px 32px;
}

.archetype-grid,
.offer-grid,
.faq-grid,
.signs-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.archetype-card,
.offer-card,
.signs-grid article,
.proof-grid article,
.faq-grid article,
.pillar-grid article {
  border: 1px solid var(--line);
  background: var(--white);
}

.emphasis-line {
  display: inline-block;
  margin-top: 8px;
  color: var(--dark);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.dependency-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 20px;
  align-items: center;
  max-width: 980px;
  margin: 64px auto 0;
}

.dependency-map::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18%;
  right: 18%;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--lime), var(--cyan));
  transform: translateY(-50%);
}

.map-column {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.05);
}

.map-column p {
  margin: 0 0 4px;
}

.map-column span {
  display: block;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #334155;
  background: var(--white);
  font-size: 14px;
  font-weight: 850;
}

.map-hub {
  position: relative;
  z-index: 3;
  display: grid;
  width: 180px;
  height: 180px;
  align-content: center;
  justify-items: center;
  gap: 18px;
  justify-self: center;
  border-radius: 999px;
  color: var(--dark);
  background: var(--lime);
  box-shadow: 0 0 0 14px rgba(214, 223, 33, 0.14), 0 28px 70px rgba(15, 23, 42, 0.15);
  text-align: center;
}

.map-hub::before,
.map-hub::after {
  display: none;
}

.map-hub span {
  display: block;
  color: rgba(15, 23, 42, 0.64);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-hub strong {
  display: block;
  color: var(--dark);
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.signs-section {
  padding-top: clamp(70px, 8vw, 110px);
  border-top: 1px solid #e2e8f0;
}

.signs-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 28px;
  border-radius: 8px;
  color: var(--dark);
  background: #f8fafc;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.signs-grid article::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--lime));
}

.signs-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  background: var(--white);
}

.signs-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.signs-grid p {
  margin: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 760;
}

.signs-grid small {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.signs-callout {
  display: grid;
  gap: 8px;
  max-width: 880px;
  margin: 34px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(236, 15, 140, 0.22);
  border-radius: 8px;
  text-align: center;
  background: linear-gradient(135deg, rgba(236, 15, 140, 0.07), rgba(0, 174, 239, 0.07));
}

.signs-callout strong {
  color: var(--dark);
  font-size: 20px;
  line-height: 1.25;
}

.signs-callout p {
  max-width: 680px;
  margin: 0 auto;
  color: #475569;
  font-size: 16px;
  line-height: 1.55;
}

.start-section .section-grid {
  align-items: center;
}

.start-intro {
  max-width: 560px;
}

.start-intro p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #475569;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  font-weight: 620;
}

.archetype-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border-radius: 8px;
}

.archetype-visual {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1.06;
  place-items: center;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    #f8fafc;
  background-size: 28px 28px;
}

.archetype-visual span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 999px;
  color: var(--dark);
  background: var(--white);
  box-shadow: 0 0 0 10px rgba(15, 23, 42, 0.04), 0 22px 60px rgba(15, 23, 42, 0.12);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archetype-visual i {
  position: absolute;
  border-radius: 999px;
}

.firefighter-visual span {
  background: #fee2e2;
}

.firefighter-visual i {
  width: 54px;
  height: 54px;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.firefighter-visual i:nth-of-type(1) {
  top: 22px;
  left: 24px;
}

.firefighter-visual i:nth-of-type(2) {
  right: 26px;
  top: 48px;
}

.firefighter-visual i:nth-of-type(3) {
  bottom: 26px;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translateX(-50%);
}

.manager-visual::before,
.manager-visual::after,
.visionary-visual::before,
.visionary-visual::after,
.architect-visual::before,
.architect-visual::after {
  content: "";
  position: absolute;
}

.manager-visual span {
  background: #fce7f3;
}

.manager-visual::before {
  inset: 24px 28px;
  border: 1px solid rgba(236, 15, 140, 0.28);
  border-radius: 8px;
}

.manager-visual i {
  width: 70px;
  height: 34px;
  border: 1px solid rgba(236, 15, 140, 0.32);
  border-radius: 8px;
  background: rgba(236, 15, 140, 0.08);
}

.manager-visual i:nth-of-type(1) {
  top: 36px;
  left: 34px;
}

.manager-visual i:nth-of-type(2) {
  top: 36px;
  right: 34px;
}

.manager-visual i:nth-of-type(3) {
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.visionary-visual span {
  background: #e0f2fe;
}

.visionary-visual::before {
  width: 150px;
  height: 150px;
  border: 2px solid rgba(0, 174, 239, 0.32);
  border-radius: 999px;
  box-shadow: inset 0 0 0 18px rgba(0, 174, 239, 0.06);
}

.visionary-visual i {
  top: 18px;
  width: 1px;
  height: calc(100% - 36px);
  background: rgba(0, 174, 239, 0.18);
}

.visionary-visual i:nth-of-type(1) {
  left: 34%;
}

.visionary-visual i:nth-of-type(2) {
  left: 50%;
}

.visionary-visual i:nth-of-type(3) {
  left: 66%;
}

.architect-visual span {
  background: var(--lime);
}

.architect-visual::before {
  left: 28px;
  right: 28px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--lime));
}

.architect-visual::after {
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--magenta), var(--lime));
}

.architect-visual i {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(214, 223, 33, 0.28);
}

.architect-visual i:nth-of-type(1) {
  top: 28px;
  left: 32px;
}

.architect-visual i:nth-of-type(2) {
  right: 32px;
  top: 28px;
}

.architect-visual i:nth-of-type(3) {
  right: 32px;
  bottom: 28px;
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.archetype-card h3,
.offer-card h3 {
  margin-bottom: 18px;
}

.archetype-card p:not(.card-kicker),
.offer-card p:not(.card-kicker),
.faq-grid p,
.pillar-grid p {
  color: var(--slate);
  line-height: 1.6;
  font-weight: 500;
}

.archetype-card a,
.offer-card a {
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 14px 16px;
  color: var(--white);
  background: var(--dark);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archetype-card.red {
  border-top: 5px solid #ef4444;
}

.archetype-card.magenta {
  border-top: 5px solid var(--magenta);
}

.archetype-card.cyan {
  border-top: 5px solid var(--cyan);
}

.archetype-card.lime {
  border-top: 5px solid var(--lime);
}

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

.shift-grid .section-copy {
  max-width: 610px;
}

.shift-grid h2 {
  margin-bottom: 26px;
}

.architecture-shift-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto;
  gap: 18px;
  align-items: center;
  align-content: center;
  min-height: 560px;
  padding: 34px 30px;
  overflow: hidden;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(236, 15, 140, 0.08), rgba(0, 174, 239, 0.08)),
    #f8fafc;
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
  isolation: isolate;
}

.architecture-shift-visual::before {
  content: "";
  position: absolute;
  inset: 72px 88px;
  z-index: -1;
  border: 1px dashed rgba(15, 23, 42, 0.16);
  border-radius: 999px;
}

.shift-core,
.shift-system {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
  border-radius: 999px;
  text-transform: uppercase;
}

.shift-core span,
.shift-system span,
.shift-node span {
  color: var(--magenta);
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.shift-core strong,
.shift-system strong {
  max-width: 130px;
  font-size: 13px;
  line-height: 1.15;
}

.shift-core {
  width: 132px;
  height: 132px;
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  color: var(--white);
  background: var(--dark);
  box-shadow: 0 0 0 12px rgba(15, 23, 42, 0.06), 0 22px 64px rgba(15, 23, 42, 0.18);
}

.shift-core span {
  color: var(--cyan);
}

.shift-system {
  width: 146px;
  height: 146px;
  grid-column: 1 / -1;
  grid-row: 4;
  justify-self: center;
  color: var(--dark);
  background: var(--lime);
  box-shadow: 0 0 0 14px rgba(214, 223, 33, 0.14), 0 22px 64px rgba(15, 23, 42, 0.16);
}

.shift-arrow {
  position: absolute;
  top: 142px;
  bottom: 142px;
  left: 50%;
  z-index: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--magenta), var(--cyan), var(--lime));
  transform: translateX(-50%);
}

.shift-arrow::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-bottom: 3px solid var(--lime);
  border-right: 3px solid var(--lime);
  transform: translateX(-50%) rotate(45deg);
}

.shift-node {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 6px;
  width: 100%;
  max-width: none;
  justify-self: center;
  padding: 16px;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.shift-node strong {
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
}

.shift-node small {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
}

.shift-node.decision {
  grid-column: 1;
  grid-row: 2;
}

.shift-node.standards {
  grid-column: 2;
  grid-row: 2;
}

.shift-node.rhythms {
  grid-column: 1;
  grid-row: 3;
}

.shift-node.scorecards {
  grid-column: 2;
  grid-row: 3;
}

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

.check-list li {
  padding: 18px 18px 18px 46px;
  position: relative;
  color: var(--dark);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 10px;
  height: 10px;
  background: var(--magenta);
  border-radius: 999px;
}

.inline-cta {
  display: inline-flex;
  margin-top: 18px;
  padding: 17px 20px;
  color: var(--white);
  background: var(--magenta);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.diagnosis-points {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.diagnosis-points li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 760;
}

.diagnosis-points.dark li {
  color: #334155;
}

.diagnosis-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(214, 223, 33, 0.18);
}

.start-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 4px;
}

.start-path::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--lime));
}

.start-path-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-height: 188px;
  padding: 22px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #f8fafc);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.start-path-step span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  color: var(--magenta);
  background: var(--white);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 0 0 8px #f8fafc;
}

.start-path-step strong {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
}

.start-path-step small {
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 760;
}

.progress-section,
.offers-section,
.final-cta {
  color: var(--white);
  background: var(--dark);
}

.progress-section .section-heading h2,
.offers-section .section-heading h2,
.final-cta h2 {
  color: var(--white);
}

.progress-section .section-heading {
  max-width: 1180px;
  margin-inline: auto;
}

.framework-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 34px repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 34px;
  align-items: stretch;
}

.framework-step {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.framework-step.active,
.framework-step.lead {
  border-color: rgba(214, 223, 33, 0.38);
  background: rgba(214, 223, 33, 0.08);
}

.framework-step span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--dark);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.framework-step strong {
  color: var(--white);
  font-size: 12px;
  line-height: 1.15;
  text-transform: uppercase;
}

.framework-step small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
}

.framework-connector {
  align-self: center;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--lime));
}

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

.pillar-grid article {
  min-height: 210px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.pillar-grid span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--dark);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 900;
}

.pillar-grid h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.pillar-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.about-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark) 38%, var(--white) 38%, var(--white) 100%);
}

.about-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.18);
}

.about-card img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 8px;
  background: #e2e8f0;
}

.about-card h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 58px);
}

.about-card p:not(.eyebrow) {
  color: var(--slate);
  font-size: 19px;
  line-height: 1.65;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.metric-row span {
  padding: 11px 13px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #334155;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 450px;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.offer-card.featured {
  background: var(--magenta);
  border-color: var(--magenta);
  transform: translateY(-14px);
}

.offer-card.featured .card-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 4px 7px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.22);
  border-radius: 4px;
}

.offer-card p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
}

.offer-card strong {
  display: block;
  margin-top: auto;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

.offer-card a {
  color: var(--dark);
  background: var(--white);
}

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

.faq-grid article,
.proof-grid article {
  padding: 28px;
  border-radius: 8px;
}

.faq-grid h3,
.proof-grid h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.faq-grid h3 {
  color: var(--magenta);
}

.proof-section {
  border-top: 1px solid #e2e8f0;
}

.proof-section .section-heading p:not(.eyebrow) {
  color: var(--slate);
}

.proof-grid article {
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}

.proof-grid p {
  color: var(--slate);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 800;
}

.proof-grid h3 {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--magenta);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta {
  display: grid;
  place-items: center;
  padding: clamp(90px, 12vw, 150px) 20px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.92), rgba(0, 174, 239, 0.78)),
    var(--dark);
}

.final-cta h2 {
  max-width: 980px;
  margin-bottom: 34px;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.6;
}

.section-grid,
.archetype-grid,
.offer-grid,
.faq-grid,
.signs-grid,
.proof-grid,
.pillar-grid,
.about-card {
  max-width: 1180px;
  margin-inline: auto;
}

.signs-grid,
.offer-grid {
  max-width: 1280px;
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-mirror-card {
    max-width: 520px;
  }

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

  .map-hub::before,
  .map-hub::after {
    display: none;
  }

  .framework-visual {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .framework-connector {
    display: none;
  }

  .section-grid,
  .about-card {
    grid-template-columns: 1fr;
  }

  .archetype-grid,
  .offer-grid,
  .pillar-grid,
  .signs-grid,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-card.featured {
    transform: none;
  }

  .about-card img {
    max-width: 420px;
  }

  .architecture-shift-visual {
    min-height: 620px;
  }

  .start-path {
    grid-template-columns: 1fr;
  }

  .start-path::before {
    top: 28px;
    bottom: 28px;
    left: 26px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--magenta), var(--cyan), var(--lime));
  }

  .start-path-step {
    min-height: auto;
    padding-left: 78px;
  }

  .start-path-step span {
    position: absolute;
    top: 20px;
    left: 18px;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .brand img {
    width: 132px;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }

  .nav-menu {
    display: block;
  }

  .nav-menu-trigger {
    display: inline-flex;
  }

  .nav-dropdown {
    top: calc(100% + 10px);
    display: grid;
    min-width: min(300px, calc(100vw - 32px));
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
  }

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

  .hero {
    min-height: auto;
    max-width: 100vw;
    padding: 74px 18px 52px;
  }

  .hero::before {
    inset: 110px 16px 24px;
    mask-image: linear-gradient(180deg, #000 0%, #000 66%, transparent 100%);
  }

  .hero-mirror-card {
    padding: 18px;
  }

  .mirror-stage {
    display: grid;
    gap: 12px;
    min-height: auto;
  }

  .mirror-stage::before,
  .mirror-stage::after {
    display: none;
  }

  .mirror-center,
  .mirror-question {
    position: static;
    width: 100%;
    transform: none;
  }

  .mirror-center {
    order: -1;
    width: 108px;
    height: 108px;
    justify-self: center;
  }

  .mirror-question {
    min-height: auto;
    padding: 16px 16px 16px 30px;
  }

  .dependency-map {
    margin-top: 40px;
  }

  .map-hub {
    width: 150px;
    height: 150px;
  }

  .framework-visual {
    grid-template-columns: 1fr 1fr;
  }

  .architecture-shift-visual {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
    gap: 14px;
  }

  .architecture-shift-visual::before,
  .shift-arrow {
    display: none;
  }

  .shift-core,
  .shift-system,
  .shift-node {
    position: static;
    width: 100%;
    height: auto;
    min-height: 0;
    transform: none;
  }

  .shift-core,
  .shift-system {
    padding: 24px 18px;
    border-radius: 8px;
  }

  .shift-core strong,
  .shift-system strong {
    max-width: none;
  }

  .shift-node {
    padding: 16px;
  }

  h1 {
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .archetype-grid,
  .offer-grid,
  .pillar-grid,
  .signs-grid,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }
}
