:root {
  --ink: #0a0b12;
  --ink-soft: #171722;
  --navy: #080a12;
  --panel: #10111a;
  --purple: #6b20c7;
  --purple-light: #9c49ef;
  --purple-deep: #3e0f82;
  --blue: #0a87eb;
  --paper: #f7f7f8;
  --white: #ffffff;
  --muted: #4f5059;
  --line: #d8d8df;
  --shell: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
  top: 32px;
}

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

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(9, 10, 18, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand img,
.brand .custom-logo {
  display: block;
  width: clamp(230px, 24vw, 320px);
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list > li {
  position: relative;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #0c0d16;
}

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

.nav-list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  min-width: 240px;
  padding: 14px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e5e5eb;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(12, 8, 28, 0.16);
}

@media (min-width: 851px) {
  .nav-list .sub-menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 16px;
  }
}

.nav-list li:hover > .sub-menu,
.nav-list li:focus-within > .sub-menu {
  display: grid;
  gap: 2px;
}

.nav-list .sub-menu a {
  display: block;
  padding: 10px 12px;
  font-family: Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 0;
}

.nav-chevron {
  position: relative;
  top: -1px;
  font-family: Inter, sans-serif;
  font-size: 0.9em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 14px 22px;
  border: 0;
  border-radius: 3px;
  background: linear-gradient(135deg, #42107d 0%, #6d22c7 58%, #7b2bd8 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(75, 18, 145, 0.22);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.018em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(75, 18, 145, 0.31);
  filter: saturate(1.12);
}

.button-header {
  min-height: 50px;
  padding-inline: 20px;
  white-space: nowrap;
}

.button-emergency {
  background: #c81920;
  color: #fff;
  box-shadow: 0 12px 28px rgba(159, 18, 24, 0.28);
}

.button-header.button-emergency {
  min-height: 64px;
  padding-block: 9px;
  font-size: calc(1.02rem + 4px);
  line-height: 1.08;
}

.button-emergency__label {
  display: block;
  text-align: center;
}

.button-emergency__label > span {
  display: inline-block;
}

.button-emergency:hover,
.button-emergency:focus-visible {
  background: #a90f16;
  box-shadow: 0 16px 34px rgba(159, 18, 24, 0.36);
}

.emergency-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(92vw, 560px);
  max-height: 90vh;
  margin: 0;
  padding: 0;
  color: #161720;
  background: transparent;
  border: 0;
  border-radius: 4px;
  transform: translate(-50%, -50%);
}

.emergency-dialog::backdrop {
  background: rgba(13, 8, 31, 0.76);
}

.emergency-dialog__panel {
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  padding: clamp(28px, 5vw, 46px);
  background: #fff;
  border-top: 7px solid #c81920;
  box-shadow: 0 28px 80px rgba(13, 8, 31, 0.35);
}

.emergency-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #34343c;
  background: #f2f2f5;
  border: 0;
  border-radius: 2px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.emergency-dialog__close:hover,
.emergency-dialog__close:focus-visible {
  color: #fff;
  background: #c81920;
}

.emergency-dialog__eyebrow {
  margin: 0 50px 8px 0;
  color: #c81920;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.emergency-dialog h2 {
  margin: 0 50px 12px 0;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
}

.emergency-dialog__warning {
  margin: 0 0 24px;
  padding: 14px 16px;
  color: #4d2023;
  background: #fff1f2;
  border-left: 4px solid #c81920;
  line-height: 1.55;
}

.emergency-form__fields {
  display: grid;
  gap: 18px;
}

.emergency-form__fields label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.emergency-form__fields input {
  width: 100%;
  padding: 14px 15px;
  color: #161720;
  background: #fff;
  border: 1px solid #cfcfd8;
  border-radius: 2px;
}

.emergency-form__fields input:focus {
  outline: 3px solid rgba(200, 25, 32, 0.18);
  border-color: #c81920;
}

.emergency-form__fields b {
  color: #c81920;
}

.emergency-form__consent {
  margin: 16px 0 20px;
  color: #565761;
  font-size: 0.86rem;
  line-height: 1.5;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 27px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero-section {
  position: relative;
  min-height: 662px;
  overflow: hidden;
  background-color: #030305;
  background-image:
    linear-gradient(90deg, #030305 0%, #030305 31%, rgba(3, 3, 5, 0.98) 39%, rgba(3, 3, 5, 0.79) 50%, rgba(3, 3, 5, 0.10) 76%, rgba(3, 3, 5, 0.04) 100%),
    url("../images/hero-art.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 18%, rgba(125, 42, 207, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 662px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(560px, 47%);
  padding-block: 48px 42px;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.7rem, 5vw, 5.85rem);
  line-height: 0.93;
  font-weight: 800;
  letter-spacing: -0.022em;
  text-transform: uppercase;
}

.hero-copy h1 span,
.hero-copy h2 span {
  display: block;
}

.hero-copy .hero-line-detail {
  white-space: nowrap;
}

.hero-copy h1 .hero-alert {
  color: #ff3b30;
  font-weight: 900;
  text-decoration-line: underline;
  text-decoration-color: #ff3b30;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.1em;
}

.hero-copy h2 {
  margin-top: 15px;
}

.hero-copy h2 strong {
  display: inline-block;
  color: #9c4bf0;
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-color: #9c4bf0;
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}

.hero-rule {
  width: 86%;
  height: 32px;
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 8px;
  margin-block: 12px 8px;
}

.hero-rule span {
  height: 2px;
  background: linear-gradient(90deg, rgba(142, 50, 225, 0.95), rgba(142, 50, 225, 0.2));
}

.hero-rule span:last-child {
  background: linear-gradient(90deg, rgba(142, 50, 225, 0.2), rgba(142, 50, 225, 0.95));
}

.hero-rule i {
  position: relative;
  width: 23px;
  height: 27px;
  margin: auto;
  background: linear-gradient(145deg, #ffffff 0 24%, #4b158a 25% 72%, #a64bf1 73% 100%);
  clip-path: polygon(50% 0, 92% 18%, 84% 73%, 50% 100%, 16% 73%, 8% 18%);
  box-shadow: 0 0 12px rgba(159, 63, 238, 0.8);
}

.hero-copy > p {
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 11px 0 7px;
  border-bottom: 2px solid #963be8;
  color: #fff;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.method-section {
  padding: 28px 0 30px;
  background: linear-gradient(180deg, #fbfbfc 0%, #f1f1f3 100%);
  border-bottom: 1px solid #d9d9df;
}

.method-heading {
  text-align: center;
  margin-bottom: 22px;
}

.method-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.05rem, 3vw, 2.95rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.method-heading h2 sup {
  position: relative;
  top: -0.8em;
  font-size: 0.35em;
}

.method-heading p {
  margin: 9px 0 0;
  color: #373842;
  font-size: 1rem;
}

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

.method-step {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: start;
  gap: 17px;
  min-width: 0;
}

.method-step > img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.method-step h3 {
  margin: 1px 0 0;
  color: #57209d;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.method-step h4 {
  margin: 5px 0 8px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.15rem;
  line-height: 1.1;
  font-weight: 700;
}

.method-step p {
  margin: 0;
  color: #33343d;
  font-size: 0.86rem;
  line-height: 1.5;
}

.method-arrow {
  position: absolute;
  top: 30px;
  right: -21px;
  color: #6524b6;
  font-size: 2.4rem;
  line-height: 1;
}

.dark-band {
  background: #0d0e16;
  color: #fff;
}

.dark-grid {
  width: min(var(--shell), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.89fr 0.95fr;
}

.dark-panel {
  position: relative;
  min-height: 302px;
  overflow: hidden;
  background: linear-gradient(135deg, #151620 0%, #080910 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.dark-panel:last-child {
  border-right: 0;
}

.declaration-panel {
  background-image:
    linear-gradient(90deg, rgba(11, 10, 18, 0.98) 0%, rgba(16, 12, 25, 0.92) 43%, rgba(22, 11, 34, 0.34) 76%, rgba(22, 11, 34, 0.12) 100%),
    url("../images/declaration-castle.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}

.panel-content {
  position: relative;
  z-index: 1;
  padding: 28px 34px 24px;
}

.dark-panel h2 {
  max-width: 390px;
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.55rem, 2.15vw, 2rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.heading-accent {
  display: block;
  width: 42px;
  height: 3px;
  margin: 10px 0 16px;
  background: #922ee5;
}

.declaration-panel p {
  max-width: 275px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

.declaration-panel a,
.panel-bottom-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  padding: 8px 0 5px;
  border-bottom: 2px solid #963be8;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.link-list {
  display: grid;
  gap: 0;
  margin: 8px 0 4px;
  padding: 0;
  list-style: none;
}

.link-list li {
  margin: 0;
}

.link-list a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 7px;
  min-height: 35px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.85rem;
}

.link-list a:hover,
.link-list a:focus-visible {
  color: #b36cff;
}

.link-list b {
  justify-self: end;
  font-size: 1.12rem;
  font-weight: 400;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #a743ef;
  font-size: 1.1rem;
  line-height: 1;
}

.trust-section {
  background: #fff;
  border-bottom: 1px solid #dcdce2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 0.62fr)) minmax(410px, 1.7fr);
  min-height: 214px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 18px 18px;
  text-align: center;
  border-right: 1px solid #d6d6dc;
}

.trust-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 8px;
}

.trust-item h3 {
  margin: 0 0 6px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-item p {
  margin: 0;
  color: #2d2e35;
  font-size: 0.72rem;
  line-height: 1.45;
}

.founder-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 180px;
  overflow: hidden;
}

.founder-quote {
  position: relative;
  z-index: 2;
  padding: 24px 12px 18px 44px;
}

.quote-mark {
  position: absolute;
  left: 16px;
  top: 12px;
  color: #6420bd;
  font-family: Georgia, serif;
  font-size: 4.6rem;
  line-height: 1;
}

.founder-quote blockquote {
  margin: 7px 0 12px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.signature {
  width: fit-content;
  margin-bottom: 4px;
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: 1.2rem;
  transform: rotate(-4deg);
}

.founder-quote strong,
.founder-quote > span:last-child {
  display: block;
}

.founder-quote strong {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1rem;
}

.founder-quote > span:last-child {
  color: #5a20aa;
  font-size: 0.82rem;
}

.founder-visual {
  position: relative;
  align-self: stretch;
  min-height: 214px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 25%, rgba(115, 32, 190, 0.14), transparent 46%),
    linear-gradient(135deg, #fafafa, #efeff3);
}

.founder-visual > img:not(.founder-shield) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-shield {
  width: 165px;
  max-width: none;
  margin-bottom: -2px;
  opacity: 0.92;
  mix-blend-mode: multiply;
}

.final-cta {
  background: linear-gradient(90deg, #090710 0%, #0c0717 56%, #1d0b36 100%);
  color: #fff;
  border-top: 1px solid rgba(141, 48, 218, 0.35);
}

.final-cta-inner {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-statement {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-statement img {
  width: 44px;
  height: 52px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.cta-statement strong {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.final-cta .button {
  min-width: 330px;
}

.site-footer {
  padding: 32px 0;
  background: #05050a;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  width: 230px;
  padding: 6px;
  background: #fff;
}

.footer-copy {
  display: grid;
  gap: 6px;
  text-align: right;
  font-size: 0.8rem;
}

.footer-copy strong {
  color: #fff;
  font-size: 0.9rem;
}

.standard-page {
  min-height: 60vh;
  padding: 80px 0;
  background: #f7f7fa;
}

.content-column {
  max-width: 900px;
}

.content-column h1 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.entry-content {
  font-size: 1.05rem;
}

.archive-card {
  padding: 28px;
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid #e1e1e7;
}

.declaration-page {
  background: #f7f7fa;
}

.declaration-hero {
  min-height: 410px;
  display: flex;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 10, 0.98), rgba(14, 8, 22, 0.62)),
    url("../images/declaration-castle.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}

.declaration-hero-inner {
  text-align: center;
}

.declaration-hero img {
  width: 100px;
  margin-bottom: 15px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.92);
}

.declaration-hero p {
  margin: 0 0 5px;
  color: #cfa7ff;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.declaration-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.declaration-copy {
  max-width: 840px;
  padding: 70px 0 85px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  line-height: 1.9;
}

.declaration-lead {
  margin-block: 0.2em;
  font-size: 1.55rem;
}

.declaration-copy h2 {
  margin: 56px 0 28px;
  font-family: Inter, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
}

.declaration-copy h2 strong {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.declaration-close {
  font-size: 1.2rem;
}

.declaration-signature {
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid #d3d3da;
  font-family: Inter, sans-serif;
}

.declaration-signature .signature {
  font-size: 1.7rem;
}

.declaration-signature strong,
.declaration-signature span {
  display: block;
}

.declaration-signature span {
  margin-top: 4px;
  color: #565660;
}

.declaration-action {
  margin-top: 54px;
  padding: 36px;
  background: #fff;
  border: 1px solid #e1e1e7;
  box-shadow: 0 22px 60px rgba(26, 10, 48, 0.08);
  font-family: Inter, sans-serif;
}

.declaration-action p {
  margin-top: 0;
}


.hero-eyebrow {
  margin: 0 0 15px;
  color: #d6b0ff;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #6923ba;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-section {
  padding: 64px 0 52px;
  background:
    radial-gradient(circle at 8% 10%, rgba(118, 35, 198, 0.08), transparent 26%),
    radial-gradient(circle at 92% 80%, rgba(10, 135, 235, 0.06), transparent 28%),
    #fff;
  border-bottom: 1px solid #ddddE4;
}

.story-heading {
  max-width: 960px;
  margin: 0 auto 34px;
  text-align: center;
}

.story-heading h2,
.success-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.012em;
  text-transform: uppercase;
}

.story-heading > p,
.success-heading > p {
  max-width: 800px;
  margin: 16px auto 0;
  color: #42434d;
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.problem-card {
  position: relative;
  min-height: 214px;
  padding: 29px 28px 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #dedee6;
  border-top: 4px solid #7628c8;
  box-shadow: 0 18px 42px rgba(30, 12, 56, 0.08);
}

.problem-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(111, 35, 192, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 23px rgba(111, 35, 192, 0.035), 0 0 0 48px rgba(111, 35, 192, 0.025);
}

.problem-number {
  display: block;
  margin-bottom: 12px;
  color: #7b2fd0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.problem-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.problem-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #3f4048;
  font-size: 0.92rem;
  line-height: 1.6;
}

.guide-strip {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin-top: 26px;
  padding: 30px 36px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(6, 7, 14, 0.98), rgba(20, 9, 35, 0.96) 56%, rgba(70, 17, 126, 0.95)),
    #0a0b12;
  border: 1px solid rgba(132, 55, 210, 0.32);
  box-shadow: 0 20px 48px rgba(21, 9, 41, 0.14);
}

.guide-strip .section-kicker {
  color: #c596ff;
}

.guide-mark {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 47, 209, 0.26), rgba(8, 9, 17, 0.08) 70%);
}

.guide-mark img {
  width: 82px;
  height: 88px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.guide-copy h3 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-copy > p {
  max-width: 980px;
  margin: 10px 0 17px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.96rem;
  line-height: 1.65;
}

.authority-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.authority-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 650;
}

.authority-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  background: #a14ef0;
  transform: rotate(45deg);
}

.method-heading .section-kicker,
.success-heading .section-kicker {
  margin-bottom: 7px;
}

.method-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid #d4d4dc;
}

.method-action p {
  margin: 0;
  color: #32333c;
  font-weight: 650;
}

.method-action .button {
  min-height: 48px;
  padding-block: 11px;
}

.success-heading {
  max-width: 920px;
  padding: 54px 0 30px;
  text-align: center;
}

.success-heading h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
}

.founder-credentials {
  display: block;
  max-width: 290px;
  margin-top: 9px;
  color: #5a5b65;
  font-size: 0.69rem;
  line-height: 1.4;
}

.cta-statement > div {
  display: grid;
  gap: 2px;
}

.cta-statement span {
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.76rem;
  line-height: 1.4;
}

@media (max-width: 1220px) {
  .site-shell {
    width: min(var(--shell), calc(100% - 34px));
  }

  .brand img,
  .brand .custom-logo {
    width: 248px;
  }

  .primary-nav {
    gap: 22px;
  }

  .nav-list {
    gap: 22px;
  }

  .hero-copy {
    width: min(530px, 51%);
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(3.25rem, 5.2vw, 5rem);
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(115px, 0.65fr)) minmax(350px, 1.55fr);
  }

  .founder-panel {
    grid-template-columns: 1fr 145px;
  }
}

@media (max-width: 850px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img,
  .brand .custom-logo {
    width: 225px;
    max-height: 58px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 22px 24px 26px;
    background: #fff;
    border-top: 1px solid #e4e4e9;
    box-shadow: 0 18px 42px rgba(13, 8, 31, 0.17);
  }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a {
    width: 100%;
    justify-content: space-between;
    padding: 11px 0;
  }

  .nav-list .sub-menu {
    position: static;
    display: grid;
    margin: 0 0 8px 14px;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .button-header {
    width: 100%;
  }

  .hero-section,
  .hero-layout {
    min-height: 630px;
  }

  .hero-section {
    background-position: 64% center;
    background-image:
      linear-gradient(90deg, #030305 0%, #030305 35%, rgba(3, 3, 5, 0.97) 50%, rgba(3, 3, 5, 0.36) 74%, rgba(3, 3, 5, 0.12) 100%),
      url("../images/hero-art.webp");
  }

  .hero-copy {
    width: min(520px, 59%);
  }

  .method-grid {
    gap: 18px;
  }

  .method-step {
    grid-template-columns: 78px 1fr;
    gap: 12px;
  }

  .method-step > img {
    width: 72px;
    height: 72px;
  }

  .method-arrow {
    right: -15px;
  }

  .dark-grid {
    grid-template-columns: 1fr 1fr;
  }

  .declaration-panel {
    grid-column: 1 / -1;
    min-height: 330px;
    background-size: auto 125%;
  }

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

  .founder-panel {
    grid-column: 1 / -1;
    min-height: 230px;
    grid-template-columns: 1fr 220px;
  }

  .final-cta-inner {
    padding-block: 14px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(var(--shell), calc(100% - 26px));
  }

  .hero-section,
  .hero-layout {
    min-height: 690px;
  }

  .hero-section {
    background-position: 63% center;
    background-size: auto 72%;
    background-image:
      linear-gradient(90deg, rgba(3, 3, 5, 1) 0%, rgba(3, 3, 5, 0.99) 50%, rgba(3, 3, 5, 0.84) 68%, rgba(3, 3, 5, 0.35) 100%),
      url("../images/hero-art.webp");
  }

  .hero-layout {
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding-top: 45px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
    line-height: 0.94;
  }

  .hero-rule {
    width: min(430px, 92%);
  }

  .hero-copy > p {
    max-width: 420px;
  }

  .method-section {
    padding: 30px 0 35px;
  }

  .method-heading {
    margin-bottom: 28px;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .method-step {
    grid-template-columns: 78px 1fr;
  }

  .method-arrow {
    display: none;
  }

  .dark-grid {
    grid-template-columns: 1fr;
  }

  .dark-panel,
  .declaration-panel {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .declaration-panel {
    min-height: 330px;
    background-position: 78% center;
    background-size: auto 112%;
  }

  .panel-content {
    padding: 31px 26px 29px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .founder-panel {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 145px;
  }

  .founder-quote {
    padding-left: 36px;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0;
  }

  .cta-statement {
    justify-content: center;
    text-align: center;
  }

  .final-cta .button {
    width: 100%;
    min-width: 0;
  }

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

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(var(--shell), calc(100% - 22px));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img,
  .brand .custom-logo {
    width: 205px;
    max-height: 52px;
  }

  .hero-section,
  .hero-layout {
    min-height: 660px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(2.65rem, 13.5vw, 4rem);
  }

  .hero-copy h2 strong {
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
  }

  .hero-actions {
    align-items: stretch;
    gap: 15px;
  }

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

  .text-button {
    width: fit-content;
  }

  .method-heading h2 {
    font-size: 2rem;
  }

  .method-step {
    grid-template-columns: 66px 1fr;
  }

  .method-step > img {
    width: 60px;
    height: 60px;
  }

  .method-step h3 {
    font-size: 1.5rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid #d6d6dc;
  }

  .founder-panel {
    grid-template-columns: 1fr;
  }

  .founder-visual {
    min-height: 220px;
  }

  .founder-shield {
    width: 200px;
  }

  .cta-statement img {
    display: none;
  }

  .declaration-hero {
    min-height: 360px;
    background-position: 67% center;
  }

  .declaration-copy {
    padding-top: 50px;
  }

  .declaration-action {
    padding: 26px;
  }
}

@media (max-width: 850px) {
  .story-section {
    padding: 52px 0 44px;
  }

  .problem-grid {
    gap: 14px;
  }

  .problem-card {
    padding: 25px 22px 23px;
  }

  .guide-strip {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 22px;
    padding: 27px 28px;
  }

  .guide-mark {
    width: 88px;
    height: 88px;
  }

  .guide-mark img {
    width: 68px;
    height: 73px;
  }

  .authority-list {
    gap-inline: 18px;
  }

  .method-action {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .hero-section,
  .hero-layout {
    min-height: 770px;
  }

  .hero-eyebrow {
    margin-bottom: 13px;
  }

  .story-heading {
    text-align: left;
  }

  .story-heading > p,
  .success-heading > p {
    margin-left: 0;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

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

  .guide-strip {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .guide-mark {
    width: 82px;
    height: 82px;
  }

  .authority-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .method-action {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .method-action .button {
    width: 100%;
  }

  .success-heading {
    padding: 44px 0 25px;
    text-align: left;
  }

  .cta-statement span {
    max-width: 520px;
  }
}

@media (max-width: 520px) {
  .hero-section,
  .hero-layout {
    min-height: 790px;
  }

  .hero-eyebrow {
    font-size: 0.88rem;
  }

  .story-section {
    padding: 45px 0 38px;
  }

  .story-heading h2,
  .success-heading h2 {
    font-size: 2.3rem;
  }

  .guide-strip {
    padding: 25px 22px;
  }

  .authority-list {
    grid-template-columns: 1fr;
  }

  .success-heading {
    padding-top: 38px;
  }

  .cta-statement > div {
    text-align: center;
  }
}

/* ======================================================================
   Citadel Networks complete-site templates — v3.0
   ====================================================================== */

.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 12px 18px;
  color: #fff;
  background: #42107d;
  border-radius: 3px;
}

.text-button--dark {
  color: var(--ink);
}

.section-block {
  position: relative;
  padding: clamp(64px, 7vw, 110px) 0;
}

.section-block--white {
  background: #fff;
}

.section-block--paper {
  background:
    radial-gradient(circle at 10% 10%, rgba(107, 32, 199, 0.06), transparent 25%),
    radial-gradient(circle at 90% 85%, rgba(10, 135, 235, 0.05), transparent 25%),
    #f6f6f8;
}

.section-block--ink {
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(108, 32, 199, 0.26), transparent 36%),
    radial-gradient(circle at 12% 85%, rgba(10, 135, 235, 0.11), transparent 30%),
    linear-gradient(135deg, #080810, #10111b 55%, #0b0715);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading h2,
.split-layout h2,
.guide-text h2,
.page-cta h2,
.archive-hero h1,
.not-found-page h1,
.single-insight-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.45rem, 4.6vw, 4.7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.section-heading > p,
.section-heading--center > p,
.split-layout > div > p,
.guide-text > p {
  margin: 20px 0 0;
  color: #51525d;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.section-heading--light h2,
.section-heading--light p,
.section-block--ink .section-heading p,
.guide-text > p,
.section-block--ink .split-layout p {
  color: #fff;
}

.section-kicker--light {
  color: #d1a9ff;
}

.inner-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(470px, 54vw, 650px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #080810;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(4, 4, 9, 0.98) 0%, rgba(7, 6, 14, 0.88) 44%, rgba(9, 5, 18, 0.38) 72%, rgba(5, 4, 11, 0.64) 100%),
    url("../images/hero-art.webp");
  background-repeat: no-repeat;
  background-position: center, right center;
  background-size: cover, auto 100%;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(132, 41, 226, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 41, 226, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 30%, #000 80%);
  opacity: 0.3;
}

.inner-hero-art {
  position: absolute;
  z-index: -1;
  right: clamp(20px, 6vw, 110px);
  bottom: clamp(-180px, -12vw, -85px);
  width: clamp(270px, 34vw, 520px);
  aspect-ratio: 1;
  background: url("../images/logo-shield-transparent.png") center / contain no-repeat;
  opacity: 0.12;
  filter: drop-shadow(0 0 42px rgba(125, 43, 220, 0.48));
}

.inner-hero--compliance::before,
.inner-hero--industry::before {
  background-image:
    linear-gradient(90deg, rgba(4, 4, 9, 0.98), rgba(9, 6, 17, 0.80) 50%, rgba(11, 6, 22, 0.25)),
    url("../images/declaration-castle.webp");
  background-position: center, right center;
  background-size: cover, auto 100%;
}

.inner-hero-inner {
  position: relative;
  width: 100%;
  padding-block: clamp(80px, 9vw, 128px);
}

.inner-hero-copy {
  width: min(780px, 68%);
}

.inner-hero-eyebrow {
  margin: 0 0 17px;
  color: #d3adff;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inner-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(3.6rem, 7.2vw, 7.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  text-wrap: balance;
}

.inner-hero-lead {
  max-width: 770px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}

.inner-hero::before {
  background-color: #080810;
  background-image:
    linear-gradient(90deg, rgba(4,4,9,0.72), rgba(8,6,15,0.60)),
    url("/wp-content/uploads/2026/08/citadel_only_full.png");
  background-position: center, center;
  background-size: cover, 100% 100%;
}

.inner-hero .inner-hero-art {
  display: none;
}

.inner-hero .inner-hero-copy {
  width: 72%;
  max-width: 1040px;
  margin-inline: auto;
  display: block;
}

.inner-hero .inner-hero-eyebrow {
  text-align: left;
}

.inner-hero h1 {
  max-width: 1040px;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.98;
  text-align: left;
}

.inner-hero h1 span {
  display: block;
}

.inner-hero .inner-hero-lead {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  text-align: left;
}

.inner-hero .inner-hero-actions {
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-top: 28px;
}

.breadcrumbs {
  padding-block: 18px;
  font-size: 0.84rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #666773;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #aaaab2;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--purple);
}

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

.feature-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  background: rgba(255,255,255,0.93);
  border: 1px solid #dddde5;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 11, 39, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -90px auto;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(107, 32, 199, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(107, 32, 199, 0.035), 0 0 0 58px rgba(10, 135, 235, 0.025);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107, 32, 199, 0.35);
  box-shadow: 0 26px 60px rgba(20, 11, 39, 0.13);
}

.feature-card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(107, 32, 199, 0.28);
  border-radius: 50%;
  background: #fff;
}

.feature-card-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.feature-card h3,
.challenge-card h3,
.outcome-card h3,
.framework-card h3,
.related-card,
.method-page-grid h3,
.value-grid h3,
.doctrine-grid h3,
.resource-type-card h3,
.resource-card h2,
.contact-step-list h3,
.contact-details-card h3,
.assessment-note h3,
.assessment-priorities h3,
.blog-sidebar h2,
.author-card h2 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.feature-card h3 {
  font-size: 2rem;
}

.feature-card p,
.challenge-card p,
.outcome-card p,
.framework-card p {
  margin: 16px 0 0;
  color: #575862;
  line-height: 1.7;
}

.feature-card > a {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: #5819a3;
  font-weight: 800;
}

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

.challenge-card {
  position: relative;
  padding: 34px 30px 32px;
  border-top: 4px solid #6b20c7;
  background: #f7f7f9;
}

.challenge-number {
  display: block;
  margin-bottom: 20px;
  color: rgba(107, 32, 199, 0.23);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 0.8;
}

.challenge-card h3 {
  font-size: 1.75rem;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.guide-emblem {
  min-height: 350px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle, rgba(120, 38, 206, 0.27), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}

.guide-emblem img {
  width: min(250px, 74%);
  filter: drop-shadow(0 18px 40px rgba(75, 16, 141, 0.5));
}

.guide-text h2 {
  color: #fff;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 8px;
  border-left: 2px solid #7e2bd7;
  border-bottom: 2px solid #7e2bd7;
  transform: rotate(-45deg);
}

.check-list--light {
  color: rgba(255,255,255,0.88);
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.check-list--light li::before {
  border-color: #ba75ff;
}

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

.outcome-card {
  position: relative;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid #dedee6;
  border-radius: 6px;
}

.outcome-mark {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #0a87eb, #8a29dc);
}

.outcome-card h3 {
  font-size: 1.55rem;
}

.deliverable-panel {
  padding: clamp(30px, 5vw, 56px);
  background: #fff;
  border: 1px solid #dddde5;
  box-shadow: 0 20px 55px rgba(20, 10, 39, 0.07);
}

.check-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 50px;
  row-gap: 18px;
  margin-top: 0;
}

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

.framework-card {
  padding: 30px;
  border: 1px solid #e0e0e7;
  background: #fff;
}

.framework-index {
  display: inline-block;
  margin-bottom: 20px;
  color: #7424c8;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.framework-card h3 {
  font-size: 1.65rem;
}

.method-page-section {
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f2f2f5);
  border-block: 1px solid #dedee5;
}

.method-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #dcdce4;
  border: 1px solid #dcdce4;
}

.method-page-grid article {
  position: relative;
  min-height: 300px;
  padding: 40px 34px;
  background: #fff;
}

.method-page-grid img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  margin-bottom: 22px;
}

.method-page-grid article > span {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(107, 32, 199, 0.2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
}

.method-page-grid h3 {
  color: #5d1daf;
  font-size: 2rem;
}

.method-page-grid p {
  margin: 14px 0 0;
  color: #555660;
  line-height: 1.7;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

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

.faq-list details {
  background: #fff;
  border: 1px solid #dedee5;
}

.faq-list summary {
  position: relative;
  padding: 23px 58px 23px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 750;
  line-height: 1.45;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b20c7;
  font-size: 1.6rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  padding: 0 24px 24px;
  color: #555660;
  line-height: 1.75;
}

.faq-list details > div p {
  margin: 0;
}

.reference-strip {
  padding: 26px 0;
  background: #edeef2;
  border-block: 1px solid #d7d7df;
}

.reference-strip-inner {
  display: grid;
  gap: 12px;
}

.reference-strip a {
  width: fit-content;
  color: #55189e;
  font-weight: 800;
}

.reference-strip p {
  max-width: 1050px;
  margin: 0;
  color: #5c5d67;
  font-size: 0.86rem;
  line-height: 1.6;
}

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

.related-card {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #10111b, #171023);
  border-left: 4px solid #7b27d3;
  font-size: 1.35rem;
  transition: transform 160ms ease, background 160ms ease;
}

.related-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #151624, #24123a);
}

.related-card b {
  color: #b368ff;
  font-size: 1.5rem;
}

.page-cta {
  color: #fff;
  background:
    radial-gradient(circle at 82% 40%, rgba(135, 43, 230, 0.28), transparent 30%),
    linear-gradient(110deg, #070810, #15101f 58%, #250c45);
  border-top: 1px solid rgba(162, 78, 235, 0.28);
}

.page-cta-inner {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 64px;
}

.page-cta h2 {
  max-width: 850px;
  color: #fff;
}

.page-cta p {
  max-width: 780px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.split-layout--wide {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.declaration-callout {
  position: relative;
  padding: 48px 36px 38px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(8,8,16,0.90), rgba(25,10,39,0.80)),
    url("../images/declaration-castle.webp") right center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(20, 9, 40, 0.18);
}

.declaration-callout .quote-mark {
  top: 18px;
  left: 20px;
}

.declaration-callout blockquote {
  margin: 0 0 25px;
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.6;
}

.declaration-callout strong,
.declaration-callout > span:last-child {
  display: block;
}

.declaration-callout > span:last-child {
  color: #c894ff;
}

.founder-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.founder-story-photo {
  position: relative;
  max-height: 660px;
  overflow: hidden;
  background: #11131d;
  box-shadow: 0 28px 70px rgba(17, 10, 31, 0.18);
}

.founder-story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.founder-story-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.founder-story-copy > p {
  color: #54555f;
  line-height: 1.78;
}

.authority-list--dark {
  color: #23242c;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 22px;
  padding: 0;
  list-style: none;
}

.authority-list--dark li {
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid #dddde4;
}

.authority-list--dark li::before {
  color: #6b20c7;
}

.doctrine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.14);
}

.doctrine-grid article {
  min-height: 280px;
  padding: 34px 30px;
  background: rgba(8,8,15,0.88);
}

.doctrine-grid article > span {
  color: #a85cff;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.doctrine-grid h3 {
  margin-top: 24px;
  color: #fff;
  font-size: 1.55rem;
}

.doctrine-grid p {
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

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

.value-grid article {
  padding: 30px 26px;
  border: 1px solid #dedee5;
  background: #fff;
  text-align: center;
}

.value-grid img {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
}

.value-grid h3 {
  font-size: 1.45rem;
}

.value-grid p {
  color: #5b5c65;
  line-height: 1.65;
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(50px, 8vw, 110px);
}

.contact-intro-grid h2,
.contact-form-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-step-list {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.contact-step-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dedee5;
}

.contact-step-list article > span {
  color: #7424ca;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-step-list h3 {
  font-size: 1.55rem;
}

.contact-step-list p {
  color: #585963;
  line-height: 1.65;
}

.contact-details-card {
  padding: 36px;
  color: #fff;
  background: linear-gradient(145deg, #0b0c15, #17101f 58%, #280d49);
  box-shadow: 0 24px 60px rgba(18, 8, 35, 0.17);
}

.contact-details-card > img {
  width: 105px;
  margin-bottom: 24px;
}

.contact-details-card h3 {
  font-size: 2rem;
}

.contact-details-card > p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.contact-details-card dl {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
}

.contact-details-card dl div {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-details-card dt {
  color: #be7dff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-details-card dd {
  margin: 6px 0 0;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: start;
}

.contact-form-heading > p {
  color: #565761;
  line-height: 1.7;
}

.contact-form-panel {
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  border: 1px solid #dddde5;
  box-shadow: 0 24px 65px rgba(18, 8, 35, 0.08);
}

.form-notice {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-left: 4px solid #6b20c7;
  background: #f0e8fa;
}

.form-notice--error {
  border-color: #a42d3d;
  background: #fff0f2;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.form-grid label > span {
  font-size: 0.9rem;
}

.form-grid b {
  color: #6b20c7;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.search-form input {
  width: 100%;
  padding: 14px 15px;
  color: #161720;
  background: #fff;
  border: 1px solid #cfcfd8;
  border-radius: 2px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.search-form input:focus {
  outline: 3px solid rgba(107, 32, 199, 0.15);
  border-color: #6b20c7;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 26px;
}

.form-submit-row p {
  max-width: 470px;
  margin: 0;
  color: #6a6b73;
  font-size: 0.8rem;
  line-height: 1.5;
}

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

.resource-type-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 30px;
  background: #fff;
  border: 1px solid #dedee5;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.resource-type-card--featured {
  grid-column: span 2;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,8,15,0.94), rgba(28,11,48,0.88)),
    url("../images/declaration-castle.webp") right center / cover no-repeat;
}

.resource-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(19, 9, 37, 0.11);
}

.resource-type-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
}

.resource-type-card > span {
  color: #6b20c7;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-type-card--featured > span,
.resource-type-card--featured p {
  color: rgba(255,255,255,0.75);
}

.resource-type-card h3 {
  margin-top: 10px;
  font-size: 1.8rem;
}

.resource-type-card p {
  color: #5b5c65;
  line-height: 1.65;
}

.resource-type-card b {
  margin-top: auto;
  color: #6b20c7;
}

.resource-type-card--featured b {
  color: #c58cff;
}

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

.resource-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dedee5;
  box-shadow: 0 16px 45px rgba(18, 8, 35, 0.06);
}

.resource-card-media {
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: #0c0d16;
}

.resource-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.resource-card:hover .resource-card-media img {
  transform: scale(1.035);
}

.resource-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(111,34,199,0.28), transparent 43%),
    linear-gradient(135deg, #0b0c15, #1b1028);
}

.resource-card-placeholder img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.resource-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px;
}

.resource-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
  color: #6b20c7;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.resource-card h2 {
  font-size: 1.75rem;
}

.resource-card h2 a:hover {
  color: #5d1da9;
}

.resource-card-body > p {
  color: #5a5b65;
  line-height: 1.68;
}

.resource-card-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: #5e1dac;
  font-weight: 800;
}

.empty-state {
  padding: 44px;
  text-align: center;
  background: #fff;
  border: 1px dashed #c9c9d3;
}

.empty-state--wide {
  grid-column: 1 / -1;
}

.empty-state img {
  width: 90px;
  margin-bottom: 15px;
}

.empty-state h3,
.empty-state h2 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.resource-principle-section blockquote {
  margin: 0;
  padding: 30px;
  border-left: 4px solid #9a44ea;
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2.3rem);
  line-height: 1.45;
}

.assessment-note {
  padding: 30px;
  background: #f4eefb;
  border-left: 4px solid #6b20c7;
}

.assessment-note h3 {
  font-size: 1.6rem;
}

.assessment-note p {
  color: #5c5d66;
  font-size: 0.85rem;
}

.assessment-shell {
  max-width: 1000px;
}

.risk-assessment {
  padding: clamp(24px, 5vw, 52px);
  background: #fff;
  border: 1px solid #dddde5;
  box-shadow: 0 25px 70px rgba(18, 8, 35, 0.08);
}

.assessment-progress {
  height: 6px;
  overflow: hidden;
  background: #e4e4ea;
  border-radius: 999px;
}

.assessment-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #0a87eb, #8c2cda);
  transition: width 180ms ease;
}

.assessment-progress-label {
  margin: 10px 0 30px;
  color: #6a6b74;
  font-size: 0.8rem;
  text-align: right;
}

.assessment-question {
  margin: 0;
  padding: 28px 0;
  border: 0;
  border-top: 1px solid #dedee5;
}

.assessment-question legend {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 130px 1fr;
  gap: 16px;
  align-items: start;
  font-weight: 650;
  line-height: 1.55;
}

.assessment-question legend > span {
  color: #7223c8;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.assessment-question legend b {
  color: #151620;
}

.assessment-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  margin: 22px 0 0 194px;
}

.assessment-options label {
  cursor: pointer;
}

.assessment-options input {
  position: absolute;
  opacity: 0;
}

.assessment-options span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 9px;
  border: 1px solid #cfcfd8;
  background: #fff;
  font-weight: 700;
  transition: border 150ms ease, background 150ms ease, color 150ms ease;
}

.assessment-options input:checked + span {
  color: #fff;
  background: #5f1dab;
  border-color: #5f1dab;
}

.assessment-options input:focus-visible + span {
  outline: 3px solid rgba(107, 32, 199, 0.2);
}

.assessment-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 30px;
}

.assessment-error {
  margin: 0;
  color: #a1263a;
  font-weight: 700;
}

.assessment-result {
  margin-top: 36px;
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(133, 43, 226, 0.31), transparent 31%),
    linear-gradient(135deg, #090a12, #171020);
  box-shadow: 0 28px 70px rgba(18, 8, 35, 0.18);
}

.assessment-score-wrap {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 35px;
  align-items: center;
}

.assessment-score {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px solid #8d35dd;
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(141, 53, 221, 0.09);
}

.assessment-score strong {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 4rem;
  line-height: 1;
}

.assessment-score span {
  color: rgba(255,255,255,0.65);
  font-size: 0.73rem;
  text-transform: uppercase;
}

.assessment-result h2 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.assessment-result p {
  color: rgba(255,255,255,0.73);
  line-height: 1.7;
}

.assessment-priorities {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.assessment-priorities h3 {
  font-size: 1.7rem;
}

.assessment-priorities ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 30px;
  padding-left: 22px;
}

.assessment-priorities li {
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

.assessment-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}

.assessment-result .text-button--dark {
  color: #fff;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 310px;
  gap: 50px;
  align-items: start;
}

.blog-main {
  min-width: 0;
}

.blog-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 115px;
}

.blog-sidebar > section,
.single-insight-sidebar > div {
  padding: 28px;
  background: #fff;
  border: 1px solid #dedee5;
}

.blog-sidebar h2,
.author-card h2 {
  font-size: 1.55rem;
}

.blog-sidebar ul {
  display: grid;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.blog-sidebar li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid #ececf0;
}

.blog-sidebar a:hover {
  color: #5e1dab;
}

.sidebar-cta {
  color: #fff;
  background: linear-gradient(145deg, #0b0c15, #24103c) !important;
}

.sidebar-cta img {
  width: 60px;
  margin-bottom: 15px;
}

.sidebar-cta h2,
.sidebar-cta p {
  color: #fff;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.72);
}

.pagination {
  grid-column: 1 / -1;
  margin-top: 36px;
}

.pagination .nav-links,
.pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #d8d8e0;
}

.pagination .current {
  color: #fff;
  background: #6420b8;
  border-color: #6420b8;
}

.single-insight-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #080910;
}

.single-insight-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,5,10,0.97), rgba(11,7,19,0.70)),
    url("../images/hero-art.webp") right center / auto 100% no-repeat;
}

.single-insight-hero-inner {
  padding-block: 90px 70px;
}

.single-insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
  color: #d1a3ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-insight-hero h1 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(3.4rem, 6.5vw, 7rem);
}

.single-insight-hero p {
  max-width: 850px;
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  line-height: 1.7;
}

.single-insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(45px, 7vw, 90px);
  align-items: start;
  padding-block: 70px 90px;
}

.single-insight-content {
  max-width: 820px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.single-insight-content h2,
.single-insight-content h3,
.legal-content h2 {
  margin: 1.5em 0 0.5em;
  font-family: "Barlow Condensed", Inter, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.single-insight-content h2,
.legal-content h2 {
  font-size: 2.5rem;
}

.single-insight-content h3 {
  font-size: 1.8rem;
}

.single-insight-content a {
  color: #5d1da8;
  text-decoration: underline;
}

.single-featured-image {
  margin: 0 0 42px;
}

.post-footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid #dedee5;
  font-size: 0.88rem;
}

.single-insight-sidebar {
  position: sticky;
  top: 115px;
  display: grid;
  gap: 24px;
}

.author-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  margin-bottom: 18px;
}

.author-card > span {
  color: #6b20c7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-card h2 {
  margin-top: 8px;
}

.author-card p {
  color: #5a5b64;
  line-height: 1.65;
}

.author-card a {
  color: #5d1da8;
  font-weight: 800;
}

.archive-hero {
  padding: 95px 0 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7,7,13,0.95), rgba(18,8,30,0.78)),
    url("../images/declaration-castle.webp") right center / cover no-repeat;
}

.archive-hero h1 {
  color: #fff;
}

.archive-description {
  max-width: 750px;
  color: rgba(255,255,255,0.75);
}

.search-page-form {
  max-width: 760px;
  margin: 0 auto 45px;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.resource-card--search {
  min-height: 260px;
}

.not-found-page {
  min-height: 75vh;
  display: grid;
  place-items: center;
  padding: 90px 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(6,6,12,0.9), rgba(12,6,21,0.86)),
    url("../images/hero-art.webp") center / cover no-repeat;
}

.not-found-inner {
  max-width: 820px;
}

.not-found-inner > img {
  width: 125px;
  margin-bottom: 20px;
}

.not-found-page h1 {
  color: #fff;
}

.not-found-page p {
  color: rgba(255,255,255,0.74);
  font-size: 1.08rem;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0;
}

.not-found-page .search-form {
  max-width: 620px;
  margin: 35px auto 0;
}

.legal-draft-notice {
  padding: 24px;
  background: #fff4d9;
  border-left: 4px solid #aa7500;
}

.faq-index-layout {
  display: grid;
  grid-template-columns: 250px minmax(0,1fr);
  gap: 60px;
  align-items: start;
}

.faq-index-nav {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 9px;
  padding: 25px;
  background: #f5f3f8;
  border-left: 4px solid #6b20c7;
}

.faq-index-nav a {
  padding: 8px 0;
  border-bottom: 1px solid #dedbe4;
  font-weight: 700;
}

.faq-index-nav a:hover {
  color: #5d1da8;
}

.faq-topic-groups {
  display: grid;
  gap: 62px;
}

.faq-topic {
  scroll-margin-top: 120px;
}

.faq-topic h2 {
  margin: 0 0 25px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2.6rem;
  text-transform: uppercase;
}

/* Expanded footer */
.site-footer {
  color: #fff;
  background: #070810;
  border-top: 1px solid rgba(145, 52, 220, 0.28);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) minmax(180px, 0.6fr) minmax(280px, 0.85fr);
  gap: 65px;
  padding-block: 65px;
}

.footer-brand-block .footer-logo {
  width: 290px;
  margin-bottom: 22px;
  padding: 7px 10px;
  background: #fff;
}

.footer-brand-block p,
.footer-contact p {
  max-width: 520px;
  color: rgba(255,255,255,0.66);
  line-height: 1.7;
}

.footer-brand-block strong {
  display: block;
  max-width: 520px;
  margin-top: 24px;
  color: #d5b0ff;
}

.footer-navigation h2,
.footer-contact h2 {
  margin: 0 0 20px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.footer-menu {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu a,
.footer-social-link {
  color: rgba(255,255,255,0.74);
}

.footer-menu a:hover,
.footer-social-link:hover {
  color: #c58bff;
}

.footer-social-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
}

.footer-bottom-inner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-inner a:hover {
  color: #fff;
}

@media (max-width: 1120px) {
  .feature-card-grid,
  .resource-card-grid,
  .framework-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

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

  .resource-type-card--featured {
    grid-column: span 2;
  }

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

  .blog-layout,
  .single-insight-layout {
    grid-template-columns: minmax(0,1fr) 280px;
    gap: 35px;
  }

  .assessment-question legend {
    grid-template-columns: 42px 110px 1fr;
  }

  .assessment-options {
    margin-left: 168px;
  }
}

@media (max-width: 900px) {
  .inner-hero-copy {
    width: min(760px, 86%);
  }

  .inner-hero .inner-hero-copy {
    width: 100%;
    display: block;
  }

  .inner-hero .inner-hero-lead {
    max-width: 680px;
    margin-top: 28px;
  }

  .inner-hero::before {
    background-position: center, 72% center;
  }

  .challenge-grid,
  .method-page-grid,
  .related-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .guide-layout,
  .faq-layout,
  .split-layout,
  .split-layout--wide,
  .founder-story-grid,
  .contact-intro-grid,
  .contact-form-layout,
  .blog-layout,
  .single-insight-layout,
  .faq-index-layout {
    grid-template-columns: 1fr;
  }

  .guide-emblem {
    min-height: 260px;
  }

  .blog-sidebar,
  .single-insight-sidebar,
  .faq-index-nav {
    position: static;
  }

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

  .footer-top {
    gap: 35px;
  }

  .assessment-question legend {
    grid-template-columns: 42px 1fr;
  }

  .assessment-question legend b {
    grid-column: 2;
  }

  .assessment-question legend b + * {
    grid-column: 2;
  }

  .assessment-options {
    margin-left: 58px;
  }

  .assessment-score-wrap {
    grid-template-columns: 150px 1fr;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 28px, var(--shell));
  }

  .section-block {
    padding-block: 58px;
  }

  .inner-hero {
    min-height: 540px;
  }

  .inner-hero::before {
    background-image:
      linear-gradient(180deg, rgba(4,4,9,0.78), rgba(5,4,10,0.82)),
      url("/wp-content/uploads/2026/08/citadel_only_full.png");
    background-position: center, center;
    background-size: cover, 100% 100%;
  }

  .inner-hero .inner-hero-copy {
    width: 100%;
  }

  .inner-hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .inner-hero-actions,
  .form-submit-row,
  .assessment-submit-row,
  .assessment-result-actions,
  .footer-bottom-inner,
  .section-heading--split {
    align-items: stretch;
    flex-direction: column;
  }

  .inner-hero-actions .button,
  .inner-hero-actions .text-button,
  .page-cta .button,
  .form-submit-row .button,
  .assessment-submit-row .button,
  .assessment-result-actions .button,
  .not-found-actions .button,
  .not-found-actions .text-button {
    width: 100%;
  }

  .feature-card-grid,
  .challenge-grid,
  .outcome-grid,
  .framework-grid,
  .method-page-grid,
  .related-grid,
  .value-grid,
  .resource-type-grid,
  .resource-card-grid,
  .doctrine-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .resource-type-card--featured {
    grid-column: auto;
  }

  .check-list--light,
  .check-list--columns,
  .authority-list--dark,
  .assessment-priorities ol {
    grid-template-columns: 1fr;
  }

  .guide-emblem {
    min-height: 220px;
  }

  .founder-story-photo {
    max-height: 520px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .assessment-question legend {
    display: block;
  }

  .assessment-question legend > span,
  .assessment-question legend b {
    display: block;
    margin-bottom: 8px;
  }

  .assessment-options {
    grid-template-columns: repeat(2, minmax(0,1fr));
    margin-left: 0;
  }

  .assessment-score-wrap {
    grid-template-columns: 1fr;
  }

  .assessment-score {
    width: 150px;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    padding-block: 20px;
  }

  .footer-bottom-inner > div {
    flex-direction: column;
    gap: 10px;
  }

  .single-insight-hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
}

@media print {
  .site-header,
  .site-footer,
  .final-cta,
  .page-cta,
  .breadcrumbs,
  .assessment-intro-section,
  .risk-assessment,
  .assessment-result-actions,
  .reference-strip {
    display: none !important;
  }

  .assessment-result[hidden] {
    display: none !important;
  }

  .assessment-result {
    display: block !important;
    color: #000;
    background: #fff;
    box-shadow: none;
  }

  .assessment-result p,
  .assessment-priorities li {
    color: #000;
  }
}

/* Navigation hierarchy indicators */
@media (min-width: 851px) {
  .nav-list > .menu-item-has-children > a::after {
    content: "⌄";
    position: relative;
    top: -1px;
    font-family: Inter, sans-serif;
    font-size: 0.82em;
    line-height: 1;
  }
}

@media (max-width: 850px) {
  .nav-list > .menu-item-has-children > a::after {
    content: "";
  }
}
