:root {
  --ctm-bg: #030d18;
  --ctm-bg-2: #06172a;
  --ctm-panel: rgba(9, 30, 48, 0.64);
  --ctm-panel-strong: rgba(8, 24, 39, 0.84);
  --ctm-border: rgba(188, 217, 236, 0.22);
  --ctm-border-strong: rgba(91, 179, 238, 0.42);
  --ctm-glass-highlight: rgba(255, 255, 255, 0.16);
  --ctm-text: #f6f2ea;
  --ctm-muted: rgba(246, 242, 234, 0.72);
  --ctm-soft: rgba(246, 242, 234, 0.54);
  --ctm-gold: #d9a441;
  --ctm-gold-2: #f0c469;
  --ctm-blue: #4bb6ff;
  --ctm-blue-2: #1e76ad;
  --ctm-radius: 8px;
  --ctm-max: 1320px;
  --ctm-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ctm-site {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(75, 182, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 12% 32%, rgba(217, 164, 65, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--ctm-bg), var(--ctm-bg-2) 48%, #020912);
  color: var(--ctm-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.ctm-site a {
  color: inherit;
  text-decoration: none;
}

.ctm-site img {
  display: block;
  max-width: 100%;
}

.ctm-skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: #06111f;
  background: var(--ctm-gold-2);
  border-radius: var(--ctm-radius);
}

.ctm-skip-link:focus {
  top: 12px;
}

.ctm-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  right: 16px;
  left: 16px;
}

.ctm-header__inner,
.ctm-mobile-nav,
.glass-panel,
.glass-card,
.ctm-request-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ctm-border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), transparent 18%),
    linear-gradient(145deg, rgba(12, 35, 56, 0.72), rgba(4, 16, 29, 0.48));
  box-shadow:
    var(--ctm-shadow),
    inset 0 1px 0 var(--ctm-glass-highlight),
    inset 0 -1px 0 rgba(75, 182, 255, 0.08);
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
}

.ctm-header__inner::before,
.glass-panel::before,
.glass-card::before,
.ctm-request-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 26%, transparent 72%, rgba(75, 182, 255, 0.09)),
    radial-gradient(circle at var(--shine-x, 18%) var(--shine-y, 0%), rgba(255, 255, 255, 0.14), transparent 16rem);
  opacity: 0.72;
}

.ctm-header__inner {
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(var(--ctm-max), calc(100vw - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 22px;
  border-radius: 18px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.ctm-header.is-scrolled .ctm-header__inner {
  border-color: var(--ctm-border-strong);
  background: rgba(5, 19, 34, 0.86);
}

.ctm-brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.ctm-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(75, 182, 255, 0.22));
}

.ctm-brand span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.ctm-brand strong,
.ctm-footer__brand strong {
  color: var(--ctm-text);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ctm-brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ctm-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 36px);
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 760;
}

.ctm-nav a,
.ctm-mobile-nav a {
  transition: color 180ms ease;
}

.ctm-nav a:hover,
.ctm-nav a:focus-visible,
.ctm-mobile-nav a:hover,
.ctm-mobile-nav a:focus-visible {
  color: var(--ctm-gold-2);
}

.ctm-header__cta {
  flex: 0 0 auto;
  padding: 12px 18px;
  border: 1px solid rgba(217, 164, 65, 0.72);
  border-radius: var(--ctm-radius);
  color: #ffe6ac;
  font-size: 0.92rem;
  font-weight: 800;
  background: rgba(217, 164, 65, 0.08);
}

.ctm-menu-toggle {
  display: none;
  margin-left: auto;
  color: var(--ctm-text);
  background: transparent;
  border: 0;
}

.ctm-mobile-nav {
  display: none;
  width: min(var(--ctm-max), calc(100vw - 32px));
  margin: 8px auto 0;
  padding: 12px;
  border-radius: 14px;
}

.ctm-mobile-nav a {
  display: block;
  padding: 12px 14px;
  color: var(--ctm-muted);
}

.ctm-main {
  min-height: 70vh;
}

.ctm-section-dark {
  position: relative;
  overflow: clip;
  padding-inline: clamp(20px, 5vw, 72px);
}

.ctm-hero {
  min-height: 930px;
  display: grid;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 72px;
  isolation: isolate;
  perspective: 1200px;
}

.ctm-hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, calc(var(--ctm-parallax-y, 0) * 1px), 0) scale(1.04);
  transition: transform 80ms linear;
}

.ctm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 13, 24, 0.94) 0%, rgba(3, 13, 24, 0.78) 31%, rgba(3, 13, 24, 0.18) 68%),
    linear-gradient(180deg, rgba(3, 13, 24, 0.15), var(--ctm-bg) 96%);
}

.ctm-hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 76% 22%, rgba(75, 182, 255, 0.24), transparent 20rem),
    radial-gradient(circle at 40% 72%, rgba(217, 164, 65, 0.16), transparent 18rem);
  animation: ctm-glow 9s ease-in-out infinite alternate;
}

.ctm-orbit-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 70% 18%, rgba(75, 182, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 28%, rgba(240, 196, 105, 0.65) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 21%, rgba(255, 255, 255, 0.6) 0 1px, transparent 2px),
    linear-gradient(105deg, transparent 52%, rgba(75, 182, 255, 0.18) 52.1%, transparent 52.4%),
    linear-gradient(28deg, transparent 61%, rgba(75, 182, 255, 0.16) 61.1%, transparent 61.35%);
  opacity: 0.72;
  animation: ctm-field-drift 14s ease-in-out infinite alternate;
}

.ctm-hero__content {
  width: min(650px, 100%);
  margin: 0 auto;
  transform: translateX(calc((min(var(--ctm-max), 100vw) - min(var(--ctm-max), 100vw)) / 2));
}

@media (min-width: 980px) {
  .ctm-hero__content {
    width: min(var(--ctm-max), calc(100vw - 144px));
  }

  .ctm-hero__content > * {
    max-width: 650px;
  }
}

.ctm-eyebrow,
.ctm-topic-label {
  margin: 0 0 14px;
  color: var(--ctm-gold-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ctm-topic-label {
  display: inline-block;
  color: #5ec2ff;
}

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

.ctm-site h1,
.ctm-site h2,
.ctm-site h3 {
  color: var(--ctm-text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.ctm-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(4.1rem, 7.6vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.ctm-hero__copy {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.55;
}

.ctm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ctm-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  overflow: hidden;
  border-radius: var(--ctm-radius);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ctm-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.ctm-button:hover::after,
.ctm-button:focus-visible::after {
  transform: translateX(120%);
}

.ctm-button--primary {
  color: #1d1407;
  background: linear-gradient(180deg, var(--ctm-gold-2), var(--ctm-gold));
  box-shadow: 0 14px 32px rgba(217, 164, 65, 0.24);
}

.ctm-button--secondary {
  color: var(--ctm-text);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.05);
}

.ctm-value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(var(--ctm-max), calc(100vw - 40px));
  margin: 54px auto 0;
  border-radius: 20px;
}

.ctm-value-strip div {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 110px;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.ctm-value-strip div:last-child {
  border-right: 0;
}

.dashicons {
  width: auto;
  height: auto;
  color: var(--ctm-gold-2);
  font-size: 2rem;
}

.ctm-mission,
.ctm-articles,
.ctm-programs,
.ctm-invite,
.ctm-archive,
.ctm-single,
.ctm-page,
.ctm-request-page,
.ctm-page-hero {
  padding-top: clamp(70px, 9vw, 128px);
  padding-bottom: clamp(70px, 9vw, 128px);
}

.ctm-mission,
.ctm-programs,
.ctm-invite,
.ctm-archive,
.ctm-single,
.ctm-page,
.ctm-request-page,
.ctm-page-hero {
  background: linear-gradient(180deg, rgba(3, 13, 24, 0.98), rgba(6, 23, 42, 0.98));
}

.ctm-section-heading {
  width: min(820px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.ctm-section-heading h1,
.ctm-section-heading h2,
.ctm-page__header h1,
.ctm-single__header h1,
.ctm-request-page__intro h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
}

.ctm-section-heading p,
.ctm-page__header p,
.ctm-single__header p,
.ctm-request-page__intro p {
  color: var(--ctm-muted);
  font-size: 1.08rem;
}

.ctm-mission-grid,
.ctm-audience-grid,
.ctm-offering-grid,
.ctm-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--ctm-max), 100%);
  margin: 0 auto;
}

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

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

.ctm-offering-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.ctm-offering {
  min-height: 230px;
  padding: 28px;
  border-radius: 20px;
}

.ctm-offering h3 {
  font-size: 1.45rem;
}

.ctm-offering p {
  color: var(--ctm-muted);
}

.ctm-pathways {
  position: relative;
  overflow: hidden;
  color: #10283b;
  background:
    linear-gradient(rgba(12, 42, 62, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 42, 62, 0.055) 1px, transparent 1px),
    #edf2f4;
  background-size: 72px 72px;
}

.ctm-pathways::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(17, 66, 94, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(17, 66, 94, 0.035), 0 0 0 128px rgba(17, 66, 94, 0.025);
  pointer-events: none;
}

.ctm-pathways__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  width: min(var(--ctm-max), 100%);
  margin: 0 auto;
}

.ctm-pathways__intro {
  position: sticky;
  top: 128px;
}

.ctm-pathways .ctm-eyebrow,
.ctm-pathway__audience {
  color: #8a5b09;
}

.ctm-pathways h2,
.ctm-pathways h3 {
  color: #071d2d;
}

.ctm-pathways h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
}

.ctm-pathways__intro > p:not(.ctm-eyebrow) {
  color: #40596a;
  font-size: 1.12rem;
}

.ctm-pathways__promise {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(7, 29, 45, 0.18);
}

.ctm-pathways__promise .dashicons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  background: #0b3550;
}

.ctm-pathways__promise p {
  margin: 0;
  color: #26465b;
  font-weight: 700;
}

.ctm-pathways__list {
  display: grid;
  border-top: 1px solid rgba(7, 29, 45, 0.2);
}

.ctm-pathway {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(7, 29, 45, 0.2);
}

.ctm-pathway__number {
  color: #9b710f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.ctm-pathway__audience {
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ctm-pathway h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.ctm-pathway p:last-child {
  margin-bottom: 0;
  color: #486173;
  font-size: 1.02rem;
}

.ctm-pathways__actions {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  width: min(var(--ctm-max), 100%);
  margin: 60px auto 0;
  padding: 26px 30px;
  border: 1px solid rgba(7, 29, 45, 0.14);
  border-left: 4px solid var(--ctm-gold);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 60px rgba(18, 49, 68, 0.09);
  backdrop-filter: blur(18px);
}

.ctm-pathways__actions p {
  max-width: 680px;
  margin: 0;
  color: #40596a;
}

.ctm-pathways__actions strong {
  color: #071d2d;
}

.ctm-pathways__text-link {
  display: inline-flex;
  align-items: center;
  padding: 13px 4px;
  color: #0b3550;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid #b07c17;
}

.glass-card,
.glass-panel {
  border-radius: 20px;
}

.glass-card {
  min-height: 210px;
  padding: 28px;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.glass-card:hover,
.glass-card:focus-within,
.ctm-offering:hover,
.ctm-offering:focus-within {
  transform: translateY(-5px);
  border-color: var(--ctm-border-strong);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(75, 182, 255, 0.11),
    inset 0 1px 0 var(--ctm-glass-highlight);
}

.glass-card p,
.ctm-article-card p,
.ctm-featured-article p,
.ctm-invite p,
.ctm-footer p {
  color: var(--ctm-muted);
}

.ctm-articles {
  background:
    radial-gradient(circle at 12% 5%, rgba(75, 182, 255, 0.18), transparent 26rem),
    linear-gradient(180deg, var(--ctm-bg), #051525);
}

.ctm-topic-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(var(--ctm-max), 100%);
  margin: 0 auto 28px;
}

.ctm-topic-chips a {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ctm-radius);
  color: var(--ctm-muted);
  background: rgba(255, 255, 255, 0.04);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.ctm-topic-chips a:hover,
.ctm-topic-chips a:focus-visible,
.ctm-topic-chips a.is-active {
  color: var(--ctm-text);
  border-color: rgba(75, 182, 255, 0.7);
  background: rgba(75, 182, 255, 0.12);
  box-shadow: 0 0 28px rgba(75, 182, 255, 0.14);
}

.ctm-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  width: min(var(--ctm-max), 100%);
  margin: 0 auto;
}

.ctm-featured-article {
  overflow: hidden;
}

.ctm-featured-article__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ctm-featured-article__image img,
.ctm-article-card__image img,
.ctm-single__header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.ctm-featured-article:hover img,
.ctm-article-card:hover img {
  transform: scale(1.045);
}

.ctm-featured-article__body {
  padding: 30px;
}

.ctm-featured-article h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
}

.ctm-text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--ctm-gold-2);
  font-weight: 800;
}

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

.ctm-article-card {
  overflow: hidden;
  border: 1px solid var(--ctm-border);
  border-radius: 18px;
  background: rgba(8, 29, 48, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.ctm-article-card:hover,
.ctm-article-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--ctm-border-strong);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), 0 0 32px rgba(75, 182, 255, 0.1);
}

.ctm-article-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ctm-article-card__body {
  padding: 22px;
}

.ctm-article-card h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}

.ctm-card-meta,
.ctm-single__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ctm-soft);
  font-size: 0.9rem;
}

.ctm-card-meta .dashicons {
  color: var(--ctm-soft);
  font-size: 1rem;
}

.ctm-center {
  display: flex;
  justify-content: center;
  width: min(var(--ctm-max), 100%);
  margin: 34px auto 0;
}

.ctm-invite__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(var(--ctm-max), 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
}

.ctm-invite__panel h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.ctm-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 44px clamp(20px, 5vw, 72px);
  background: #020912;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ctm-footer__brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 12px;
}

.ctm-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ctm-muted);
}

.ctm-footer__social {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.ctm-footer__social .dashicons {
  color: var(--ctm-gold-2);
  font-size: 1.1rem;
}

.ctm-footer__fineprint {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ctm-soft);
  font-size: 0.86rem;
}

.ctm-page-hero {
  padding-top: 180px;
  padding-bottom: 58px;
}

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

.ctm-pagination {
  width: min(var(--ctm-max), 100%);
  margin: 42px auto 0;
  color: var(--ctm-muted);
}

.ctm-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ctm-pagination .page-numbers {
  padding: 10px 14px;
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius);
}

.ctm-pagination .current {
  color: #1d1407;
  background: var(--ctm-gold);
}

.ctm-single,
.ctm-page,
.ctm-request-page {
  padding-top: 180px;
}

.ctm-single__header,
.ctm-page__header,
.ctm-request-page__intro {
  width: min(980px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.ctm-single__header img {
  width: 100%;
  max-height: 520px;
  margin-top: 32px;
  border: 1px solid var(--ctm-border);
  border-radius: 22px;
  box-shadow: var(--ctm-shadow);
  object-fit: cover;
}

.ctm-single__meta {
  justify-content: center;
}

.ctm-single__content,
.ctm-page__content {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 62px);
  color: rgba(255, 255, 255, 0.84);
}

.ctm-single__content :where(p, li),
.ctm-page__content :where(p, li) {
  font-size: 1.08rem;
}

.ctm-single__content a,
.ctm-page__content a {
  color: var(--ctm-gold-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ctm-single__content :where(h2, h3),
.ctm-page__content :where(h2, h3) {
  margin-top: 1.5em;
}

.ctm-single__footer {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.ctm-request-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.ctm-request-page__intro {
  margin: 0;
  text-align: left;
}

.ctm-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 22px;
}

.ctm-request-form label {
  display: grid;
  gap: 8px;
  color: var(--ctm-muted);
  font-weight: 750;
}

.ctm-request-form input,
.ctm-request-form select,
.ctm-request-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ctm-radius);
  color: var(--ctm-text);
  background: rgba(255, 255, 255, 0.06);
}

.ctm-request-form textarea {
  padding: 12px 14px;
}

.ctm-request-form input,
.ctm-request-form select {
  padding: 0 14px;
}

.ctm-request-form input:focus,
.ctm-request-form select:focus,
.ctm-request-form textarea:focus {
  outline: 2px solid rgba(75, 182, 255, 0.55);
  outline-offset: 2px;
}

.ctm-full,
.ctm-request-form button,
.ctm-form-message {
  grid-column: 1 / -1;
}

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

.ctm-form-message {
  padding: 12px 14px;
  border-radius: var(--ctm-radius);
}

.ctm-form-message.success {
  color: #dfffe7;
  background: rgba(60, 180, 105, 0.15);
}

.ctm-form-message.error {
  color: #ffe0df;
  background: rgba(207, 68, 68, 0.15);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes ctm-glow {
  from {
    opacity: 0.65;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes ctm-field-drift {
  from {
    opacity: 0.42;
    transform: translate3d(-8px, 6px, 0) scale(1);
  }

  to {
    opacity: 0.8;
    transform: translate3d(12px, -10px, 0) scale(1.018);
  }
}

@media (max-width: 1100px) {
  .ctm-nav,
  .ctm-header__cta {
    display: none;
  }

  .ctm-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ctm-mobile-nav.is-open {
    display: block;
  }

  .ctm-value-strip,
  .ctm-featured-grid,
  .ctm-request-page,
  .ctm-pathways__inner {
    grid-template-columns: 1fr;
  }

  .ctm-pathways__intro {
    position: static;
  }

  .ctm-value-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ctm-value-strip div:last-child {
    border-bottom: 0;
  }

  .ctm-mission-grid,
  .ctm-offering-grid,
  .ctm-audience-grid,
  .ctm-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ctm-header {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .ctm-header__inner {
    width: calc(100vw - 20px);
  }

  .ctm-brand img {
    width: 50px;
    height: 50px;
  }

  .ctm-brand strong {
    font-size: 0.94rem;
  }

  .ctm-brand small {
    display: none;
  }

  .ctm-hero {
    min-height: 780px;
    padding-top: 116px;
  }

  .ctm-hero::after {
    background:
      linear-gradient(90deg, rgba(3, 13, 24, 0.94), rgba(3, 13, 24, 0.58)),
      linear-gradient(180deg, rgba(3, 13, 24, 0.16), var(--ctm-bg) 96%);
  }

  .ctm-hero__image {
    object-position: 62% center;
  }

  .ctm-hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  .ctm-actions,
  .ctm-single__footer,
  .ctm-invite__panel {
    grid-template-columns: 1fr;
  }

  .ctm-button {
    width: 100%;
  }

  .ctm-mission-grid,
  .ctm-offering-grid,
  .ctm-audience-grid,
  .ctm-article-grid,
  .ctm-archive-grid,
  .ctm-footer,
  .ctm-request-form {
    grid-template-columns: 1fr;
  }

  .ctm-invite__panel {
    display: grid;
  }

  .ctm-pathway {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .ctm-pathways__actions {
    display: grid;
    padding: 24px;
  }

  .ctm-pathways__actions .ctm-actions {
    display: grid;
  }

  .ctm-pathways__text-link {
    justify-self: start;
  }

  .ctm-section-heading {
    text-align: left;
  }
}

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
