/* ============================================================
   CD.CSS — Corporate Diva page
   ============================================================ */

.cd-page {
  --cd-black: #0a0a0a;
  --cd-charcoal: #1a1a1a;
  --cd-grey: #e8e8e8;
  --cd-grey-soft: #f3f3f3;
  --cd-gold: #f5c842;
  --cd-gold-deep: #d4af37;
  --cd-gold-muted: #c9a227;
  --cd-white: #ffffff;
  --cd-font: Arial, Helvetica, sans-serif;

  color: var(--cd-white);
  font-family: var(--cd-font);
  background: var(--cd-black);
}

.cd-page section {
  min-height: auto;
  scroll-snap-align: none;
}

.cd-main {
  padding-top: 64px;
}

.cd-page .site-header.is-stuck {
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 1px solid rgba(245, 200, 66, 0.12);
}

/* Reveal */
[data-cd-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-cd-anim].cd-anim--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shared */
.cd-section-title {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 2rem;
  text-align: center;
}

.cd-section-title--light { color: var(--cd-white); }
.cd-section-title--dark { color: #111; }

.cd-hl {
  color: var(--cd-gold);
}

.cd-hl-bar {
  display: inline;
  background: var(--cd-gold);
  color: #111;
  padding: 0.08em 0.28em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.cd-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
}

.cd-mark--center {
  align-items: center;
  margin: 2.5rem auto 0;
}

.cd-mark__letters {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  color: var(--cd-gold);
  line-height: 1;
}

.cd-mark__name {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cd-white);
}

.cd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 0.85rem 2.4rem;
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cd-white);
  text-decoration: none;
  border: 1.5px solid var(--cd-white);
  border-radius: 999px;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cd-btn:hover {
  background: var(--cd-white);
  color: #111;
  transform: translateY(-2px);
}

.cd-placeholder-note {
  font-size: 0.8rem;
  color: #888;
  margin: 0.75rem 0 0;
  text-align: center;
}

/* ============================================================
   1. Hero
   ============================================================ */

.cd-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2b2b2b;
}

.cd-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(3rem, 8vh, 5rem);
  padding-bottom: clamp(3rem, 8vh, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-hero__layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.75rem, 4vw, 3rem);
  width: 100%;
  max-width: 980px;
}

.cd-hero__brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-hero__logo {
  width: min(100%, 240px);
  height: auto;
  display: block;
}

.cd-hero__divider {
  flex: 0 0 2px;
  align-self: stretch;
  min-height: 10rem;
  width: 2px;
  background: var(--cd-gold);
}

.cd-hero__copy {
  flex: 1 1 0;
  max-width: 32rem;
  text-align: left;
}

.cd-hero__heading {
  font-family: var(--cd-font);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.22;
  color: var(--cd-white);
  margin: 0 0 1.15rem;
}

.cd-hero__lead {
  font-family: var(--cd-font);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.65;
  color: #a8a8a8;
  margin: 0;
  max-width: 30em;
}

/* ============================================================
   2. Testimonial
   ============================================================ */

.cd-testimonial {
  background: var(--cd-black);
  padding: clamp(3.5rem, 8vh, 6rem) 0;
}

.cd-testimonial__quote {
  position: relative;
  padding-right: 0;
}

.cd-quote-icon {
  width: clamp(4.5rem, 10vw, 6.5rem);
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.cd-testimonial__frame {
  position: relative;
  padding: 0.25rem 0 1.25rem 1.15rem;
  border-left: 1.5px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.85);
  max-width: 39rem;
  border-bottom-left-radius: 1.25rem;
}

.cd-testimonial__text {
  font-family: var(--cd-font);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--cd-white);
  margin: 0 0 1.5rem;
}

.cd-testimonial__attr {
  font-family: var(--cd-font);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--cd-white);
  margin: 0;
}

.cd-testimonial__visual {
  display: flex;
  justify-content: center;
  justify-content: flex-end;
}

.cd-testimonial__img {
  width: min(100%, 440px);
  height: auto;
  display: block;
  filter: grayscale(1);
}

/* ============================================================
   3. Belief
   ============================================================ */

.cd-belief {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: #f5f5f5;
  overflow: hidden;
}

.cd-belief__bg {
  position: absolute;
  inset: 0;
  background-size: auto 92%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.cd-belief__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: clamp(4.5rem, 10vh, 7rem) 1rem;
  min-height: 100%;
}

.cd-belief__eyebrow {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(0.82rem, 1.35vw, 1.05rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  line-height: 1.35;
  flex-shrink: 0;
}

.cd-belief__hl {
  display: inline;
  background: #ffd200;
  color: #000;
  padding: 0.06em 0.22em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.cd-belief__eyebrow .cd-belief__hl {
  display: inline-block;
  padding: 0.35em 0.45em;
  line-height: 1.35;
}

.cd-belief__heading {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(2.35rem, 5.6vw, 4.35rem);
  line-height: 1.22;
  color: #000;
  margin: auto 0;
  max-width: 16ch;
}

/* ============================================================
   4. Choices
   ============================================================ */

.cd-choices {
  background: #000000;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cd-choices__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 720px;
  padding: 2rem 1rem;
}

.cd-choices__title {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 clamp(1.75rem, 4vh, 2.75rem);
  text-align: center;
  width: 100%;
}

.cd-choices__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cd-choices__list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3.1rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffe14a 0%, #f5c842 45%, #e0b020 100%);
  clip-path: polygon(
    12% 0%, 88% 0%,
    100% 8%, 88% 16%, 100% 24%, 88% 32%,
    100% 40%, 88% 48%, 100% 56%, 88% 64%,
    100% 72%, 88% 80%, 100% 88%, 88% 100%,
    12% 100%,
    0% 88%, 12% 80%, 0% 72%, 12% 64%,
    0% 56%, 12% 48%, 0% 40%, 12% 32%,
    0% 24%, 12% 16%, 0% 8%
  );
  box-shadow: 0 0 28px rgba(245, 200, 66, 0.35);
  z-index: 0;
}

.cd-choices__list li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 3.1rem 1fr;
  align-items: center;
  min-height: 3.15rem;
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  letter-spacing: 0.01em;
}

.cd-choices__left,
.cd-choices__right {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}

.cd-choices__left {
  text-align: right;
  padding-right: 1rem;
}

.cd-choices__right {
  text-align: left;
  padding-left: 1rem;
}

.cd-choices__right--gold {
  color: #f5c842;
  text-shadow: 0 0 18px rgba(245, 200, 66, 0.35);
}

.cd-choices__with {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #111111;
  text-transform: lowercase;
}

.cd-choices__logo {
  margin: clamp(1.5rem, 3.5vh, 2.25rem) auto 0;
  width: min(160px, 42vw);
  position: relative;
}

.cd-choices__logo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.25rem;
  transform: translateX(-50%);
  width: 2px;
  height: 1.25rem;
  background: linear-gradient(180deg, #f5c842, transparent);
}

.cd-choices__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.cd-choices__quote {
  margin: clamp(1.75rem, 4vh, 2.5rem) auto 0;
  max-width: 40rem;
  width: 100%;
  padding: 1.15rem 1.5rem;
  border: 1.5px solid #f5c842;
  border-radius: 999px;
  font-family: var(--cd-font);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.25vw, 1.05rem);
  line-height: 1.55;
  color: #ffffff;
  text-align: center;
}

/* ============================================================
   5. Capability
   ============================================================ */

.cd-capability {
  position: relative;
  background: var(--cd-charcoal);
  padding: clamp(4rem, 10vh, 7rem) 0;
  text-align: center;
  overflow: hidden;
}

.cd-capability__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.cd-capability__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cd-capability__inner {
  position: relative;
  z-index: 2;
}

.cd-capability__diagram {
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.cd-capability__diagram img {
  width: 100%;
  height: auto;
  display: block;
}

.cd-capability__note {
  font-family: var(--cd-font);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--cd-gold);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============================================================
   6. Movement — Beyond Traditional Interventions
   ============================================================ */

.cd-movement {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cd-movement__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(0.72);
}

.cd-movement__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.cd-movement__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vh, 5rem) 1rem;
}

.cd-movement__heading {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  line-height: 1.15;
  color: #ffffff;
  text-align: center;
  margin: 0 0 clamp(3rem, 9vh, 5.5rem);
  letter-spacing: 0.01em;
}

.cd-movement__layout {
  display: grid;
  grid-template-columns: minmax(17rem, 1.1fr) auto minmax(18rem, 1.25fr);
  align-items: center;
  column-gap: clamp(1.5rem, 4vw, 3.25rem);
  width: 100%;
  max-width: 1120px;
}

.cd-movement__negatives {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.75rem 1.25rem 0.75rem 0.25rem;
}

.cd-movement__slash {
  position: absolute;
  left: 42%;
  top: -8%;
  bottom: -8%;
  width: 4px;
  background: #ffd200;
  transform: rotate(28deg);
  transform-origin: center center;
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(255, 210, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}

.cd-movement__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  position: relative;
  z-index: 0;
}

.cd-movement__list li {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.7;
  color: #ffffff;
}

.cd-movement__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255, 210, 0, 0.35));
}

.cd-movement__arrow svg {
  width: clamp(56px, 7vw, 84px);
  height: auto;
  display: block;
}

.cd-movement__positive {
  text-align: left;
  max-width: 32rem;
}

.cd-movement__title {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(2.75rem, 5.5vw, 3.85rem);
  line-height: 1.08;
  color: #ffffff;
  margin: 0 0 1.15rem;
}

.cd-movement__body {
  font-family: var(--cd-font);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
  max-width: 28rem;
}

/* ============================================================
   7. Roadmap
   ============================================================ */

.cd-roadmap {
  background: #F2F2F2;
  padding: clamp(4rem, 10vh, 7rem) 0;
  padding-bottom: 0;
}

.cd-roadmap__stage {
  position: relative;
  padding-bottom: 1rem;
}

.cd-roadmap__path {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 42%;
  height: 18px;
  background: linear-gradient(90deg, #f5c842 0%, #e8b52e 50%, #f5c842 100%);
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.08);
  z-index: 0;
}

.cd-roadmap__milestones {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cd-roadmap__node {
  text-align: center;
}

.cd-roadmap__placeholder {
  aspect-ratio: 3 / 4;
  max-width: 160px;
  margin: 0 auto 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  border: 2px dashed rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.78rem;
  color: #555;
  line-height: 1.3;
}

.cd-roadmap__age {
  display: inline-block;
  background: #111;
  color: var(--cd-gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin: 0 0 0.4rem;
}

.cd-roadmap__label {
  font-weight: 700;
  color: #111;
  margin: 0;
  font-size: 0.95rem;
}

.cd-roadmap__caption {
  margin-top: 2.5rem;
  margin-left: auto;
  max-width: 22rem;
  background: #111;
  color: var(--cd-white);
  padding: 1.35rem 1.5rem;
}

.cd-roadmap__caption p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.cd-roadmap__caption p::first-line {
  color: var(--cd-gold);
}

/* ============================================================
   8. Signature Experiences
   ============================================================ */

.cd-signature {
  background: #1a1a1a;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cd-signature__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vh, 4rem) 1rem;
}

.cd-signature__title {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.15;
  color: #f5efd8;
  text-align: center;
  margin: 0 0 clamp(2.5rem, 8vh, 5rem);
}

.cd-signature__arc {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  min-height: clamp(280px, 42vh, 420px);
  padding-bottom: 0.5rem;
}

.cd-signature__track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: end;
  min-height: inherit;
}

.cd-signature__rail {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 36px;
  height: 90px;
  border: 3px solid #4a4a4a;
  border-top: none;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 0;
  pointer-events: none;
}

.cd-signature__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  height: 100%;
}

.cd-signature__copy {
  width: 100%;
  max-width: 11.5rem;
}

.cd-signature__copy h3 {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.25;
  margin: 0 0 0.45rem;
  color: #ffffff;
}

.cd-signature__copy p {
  font-family: var(--cd-font);
  font-weight: 400;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.cd-signature__item--1 .cd-signature__copy,
.cd-signature__item--2 .cd-signature__copy {
  text-align: left;
  align-self: flex-start;
}

.cd-signature__item--1 .cd-signature__copy h3,
.cd-signature__item--2 .cd-signature__copy h3 {
  color: #f5c842;
}

.cd-signature__item--3 .cd-signature__copy {
  text-align: center;
  align-self: center;
}

.cd-signature__item--4 .cd-signature__copy,
.cd-signature__item--5 .cd-signature__copy {
  text-align: right;
  align-self: flex-end;
}

.cd-signature__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f5c842;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(245, 200, 66, 0.15);
}

.cd-signature__icon img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  display: block;
}

.cd-signature__item--1 { padding-bottom: 4.5rem; }
.cd-signature__item--2 { padding-bottom: 1.75rem; }
.cd-signature__item--3 { padding-bottom: 0; }
.cd-signature__item--4 { padding-bottom: 1.75rem; }
.cd-signature__item--5 { padding-bottom: 4.5rem; }

/* ============================================================
   9. Progress
   ============================================================ */

.cd-progress {
  background: #f2f2f2;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cd-progress__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vh, 4rem) 1rem;
}

.cd-progress__title {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  line-height: 1.15;
  color: #000;
  text-align: center;
  margin: 0 0 clamp(1.5rem, 5vh, 3rem);
}

.cd-progress__stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  align-items: end;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: clamp(320px, 58vh, 560px);
}

.cd-progress__visual {
  position: relative;
  align-self: end;
  width: 100%;
  max-width: 640px;
}

.cd-progress__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.cd-progress__arrow {
  position: absolute;
  left: 42%;
  top: 18%;
  width: clamp(140px, 28vw, 280px);
  height: clamp(10px, 1.8vw, 16px);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), #000 55%);
  transform: rotate(-38deg);
  transform-origin: left center;
  border-radius: 999px;
}

.cd-progress__arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 34px;
  border-color: transparent transparent transparent #000;
}

.cd-progress__copy {
  align-self: center;
  justify-self: end;
  text-align: right;
  padding-bottom: clamp(1rem, 6vh, 4rem);
}

.cd-progress__copy p {
  font-family: var(--cd-font);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: #000;
  margin: 0;
}

/* ============================================================
   10. Trusted
   ============================================================ */

.cd-trusted {
  background: #050505;
  padding: clamp(4.5rem, 11vh, 7.5rem) 0;
}

.cd-trusted__inner {
  max-width: 1080px;
}

.cd-trusted__title {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  line-height: 1.2;
  color: #ffffff;
  text-align: left;
  max-width: 22ch;
  margin: 0 0 clamp(2.25rem, 5vh, 3.25rem);
}

.cd-trusted__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
  margin: 0 0 2rem;
}

.cd-trusted__cell {
  position: relative;
  aspect-ratio: 2.15 / 1;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(120% 90% at 0% 100%, rgba(245, 168, 50, 0.28) 0%, rgba(245, 168, 50, 0.08) 35%, transparent 65%),
    linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 210, 80, 0.08);
}

.cd-trusted__cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ffd200 20%, #ffe680 50%, #ffd200 80%, transparent);
  box-shadow:
    0 0 10px rgba(255, 210, 0, 0.85),
    0 0 22px rgba(255, 180, 40, 0.45);
}

.cd-trusted__cell span {
  font-family: var(--cd-font);
  font-weight: 400;
  font-size: clamp(0.92rem, 1.35vw, 1.12rem);
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.cd-trusted__more {
  font-family: var(--cd-font);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  margin: 0;
}

/* ============================================================
   11. Voices
   ============================================================ */

.cd-voices {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ececec;
  overflow: hidden;
}

.cd-voices__bg {
  position: absolute;
  inset: 0 0 28% 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.55;
}

.cd-voices__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(236, 236, 236, 0.35) 0%, rgba(236, 236, 236, 0.55) 45%, #ececec 78%, #ececec 100%),
    linear-gradient(90deg, rgba(236, 236, 236, 0.55) 0%, transparent 35%, transparent 100%);
}

.cd-voices__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(2.5rem, 6vh, 4rem) 0;
}

.cd-voices__title {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(2.35rem, 4.8vw, 3.5rem);
  line-height: 1.12;
  color: #111;
  text-align: left;
  margin: 0 0 clamp(1.75rem, 4vh, 2.5rem);
}

.cd-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cd-voice-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.cd-voice-card__quote {
  flex: 1;
  background: #4a4a4a;
  padding: clamp(1.5rem, 3vw, 2.15rem);
}

.cd-voice-card__quote p {
  margin: 0;
  font-family: var(--cd-font);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.5;
  color: #ffffff;
}

.cd-voice-card__meta {
  background: linear-gradient(180deg, #f7d58a 0%, #f0c45c 100%);
  color: #111;
  padding: clamp(1.1rem, 2vw, 1.45rem) clamp(1.5rem, 3vw, 2.15rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cd-voice-card__meta strong {
  font-family: var(--cd-font);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.55vw, 1.35rem);
  line-height: 1.25;
}

.cd-voice-card__meta span {
  font-family: var(--cd-font);
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.35;
  opacity: 0.9;
}

/* ============================================================
   12. Banner
   ============================================================ */

.cd-banner {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.cd-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.cd-banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 1.25rem clamp(3.5rem, 10vh, 6rem);
}

.cd-banner__quote {
  font-family: var(--cd-font);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.45rem, 3.4vw, 2.55rem);
  line-height: 1.35;
  color: #ffd200;
  margin: 0 auto;
  max-width: 48rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.cd-banner__quote span {
  display: block;
}

/* ============================================================
   13. CTA
   ============================================================ */

.cd-cta {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.cd-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 1;
}

.cd-cta__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(3rem, 8vh, 5rem) 0;
}

.cd-cta__content {
  max-width: 38rem;
}

.cd-cta__text {
  font-family: var(--cd-font);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 1.15rem;
}

.cd-cta__text--gold {
  color: #e0b84a;
  margin-bottom: 2rem;
}

.cd-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.6rem;
  font-family: var(--cd-font);
  font-weight: 400;
  font-style: normal;
  font-size: 1.05rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  background: #0a0a0a;
  border: 1.5px solid rgba(255, 210, 100, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 210, 80, 0.15),
    0 0 18px rgba(255, 200, 60, 0.35),
    0 0 36px rgba(255, 180, 40, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cd-cta__btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 220, 120, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 220, 100, 0.25),
    0 0 24px rgba(255, 210, 80, 0.5),
    0 0 42px rgba(255, 190, 50, 0.28);
  color: #ffffff;
}

/* ============================================================
   14. Gallery
   ============================================================ */

.cd-gallery {
  background: var(--cd-charcoal);
  padding: clamp(2.5rem, 5vh, 4rem) 0 clamp(3rem, 6vh, 5rem);
}

.cd-gallery .container {
  max-width: 1180px;
}

.cd-gallery__grid {
  display: grid;
  grid-template-columns: 0.95fr 0.95fr 1.25fr 1.25fr 0.95fr;
  grid-template-rows: 1.05fr 1.55fr 1.2fr;
  grid-template-areas:
    "a b c d e"
    "f g v v e"
    "i j k l h";
  gap: 0.55rem;
  width: 100%;
  height: clamp(360px, 68vh, 580px);
}

.cd-gallery__item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #111;
  border: 2px solid var(--cd-gold);
  position: relative;
  min-height: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  color: inherit;
  font: inherit;
}

.cd-gallery__item:focus-visible {
  outline: 2px solid var(--cd-gold);
  outline-offset: 2px;
  z-index: 1;
}

.cd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.cd-gallery__item:hover img {
  transform: scale(1.04);
}

.cd-gallery__item--a { grid-area: a; }
.cd-gallery__item--b { grid-area: b; }
.cd-gallery__item--c { grid-area: c; }
.cd-gallery__item--d { grid-area: d; }
.cd-gallery__item--e { grid-area: e; }
.cd-gallery__item--vision { grid-area: v; }
.cd-gallery__item--f { grid-area: f; }
.cd-gallery__item--g { grid-area: g; }
.cd-gallery__item--h { grid-area: h; }
.cd-gallery__item--i { grid-area: i; }
.cd-gallery__item--j { grid-area: j; }
.cd-gallery__item--k { grid-area: k; }
.cd-gallery__item--l { grid-area: l; }

.cd-gallery__item--a img { object-position: center top; }
.cd-gallery__item--b img { object-position: center 20%; }
.cd-gallery__item--e img { object-position: center top; }
.cd-gallery__item--i img { object-position: center top; }
.cd-gallery__item--j img { object-position: center top; }

.cd-gallery__item--vision {
  background: #000;
}

.cd-gallery__item--vision img {
  object-fit: cover;
  object-position: center;
}

.cd-gallery__play {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s ease;
  z-index: 2;
}

.cd-gallery__item--vision:hover .cd-gallery__play {
  transform: translate(-50%, -50%) scale(1.08);
}

/* Gallery image lightbox — white box */
.cd-lightbox,
.cd-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.cd-lightbox[hidden],
.cd-video-modal[hidden] {
  display: none;
}

.cd-lightbox__backdrop,
.cd-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.cd-lightbox__dialog,
.cd-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.cd-lightbox__box {
  background: #fff;
  border-radius: 4px;
  padding: clamp(0.75rem, 2.5vw, 1.35rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.cd-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
  margin: 0 auto;
}

.cd-lightbox__close,
.cd-video-modal__close {
  position: absolute;
  top: -0.35rem;
  right: -0.15rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transform: translate(40%, -40%);
}

.cd-lightbox__close:hover,
.cd-video-modal__close:hover {
  background: var(--cd-gold);
}

.cd-video-modal__dialog {
  width: min(960px, 100%);
}

.cd-video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.cd-video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cd-video-modal__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  display: block;
}

.cd-video-modal__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cd-video-modal__poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
  transition: transform 0.25s ease;
}

.cd-video-modal__poster:hover .cd-video-modal__poster-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.cd-video-modal__fallback {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  text-align: center;
}

.cd-video-modal__fallback a {
  color: #f5c842;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.cd-video-modal__fallback a:hover {
  text-decoration: underline;
}

.cd-video-modal__close {
  background: #fff;
}

@media (max-width: 575px) {
  .cd-lightbox__close,
  .cd-video-modal__close {
    top: 0.35rem;
    right: 0.35rem;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .cd-gallery__grid {
    gap: 0.45rem;
    height: clamp(320px, 62vh, 520px);
  }

  .cd-gallery__play svg {
    width: 44px;
    height: 44px;
  }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 991px) {
  .cd-testimonial__row {
    flex-direction: column-reverse;
  }

  .cd-testimonial__visual {
    margin-bottom: 1.5rem;
    justify-content: center;
  }

  .cd-testimonial__frame {
    max-width: none;
  }

  .cd-roadmap__milestones {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .cd-roadmap__path {
    display: none;
  }

  .cd-signature__arc {
    min-height: 0;
  }

  .cd-signature__track {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1.75rem;
  }

  .cd-signature__rail {
    display: none;
  }

  .cd-signature__item,
  .cd-signature__item--1,
  .cd-signature__item--2,
  .cd-signature__item--3,
  .cd-signature__item--4,
  .cd-signature__item--5 {
    padding-bottom: 0;
    height: auto;
    align-items: center;
  }

  .cd-signature__copy,
  .cd-signature__item--1 .cd-signature__copy,
  .cd-signature__item--2 .cd-signature__copy,
  .cd-signature__item--3 .cd-signature__copy,
  .cd-signature__item--4 .cd-signature__copy,
  .cd-signature__item--5 .cd-signature__copy {
    text-align: center;
    align-self: center;
    max-width: 22rem;
  }

  .cd-signature {
    height: auto;
    min-height: 100vh;
    padding: 3.5rem 0;
  }

  .cd-trusted__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cd-trusted__title {
    max-width: none;
    font-size: clamp(1.65rem, 4vw, 2.25rem);
  }

  .cd-trusted .container,
  .cd-voices .container,
  .cd-cta .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cd-trusted__cell span {
    font-size: 0.92rem;
  }

  .cd-voices__grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .cd-voices {
    height: auto;
    min-height: 100vh;
  }

  .cd-voices__title {
    font-size: clamp(1.85rem, 5vw, 2.35rem);
  }

  .cd-voice-card__quote p {
    font-size: 1.05rem;
  }

  .cd-voice-card__meta strong {
    font-size: 1.05rem;
  }

  .cd-voice-card__meta span {
    font-size: 0.9rem;
  }

  .cd-cta__text {
    font-size: clamp(1.25rem, 3.6vw, 1.65rem);
  }

  .cd-gallery__grid {
    height: clamp(300px, 58vh, 480px);
    gap: 0.4rem;
  }

  .cd-gallery__play svg {
    width: 40px;
    height: 40px;
  }

  .cd-progress__copy {
    justify-self: center;
    text-align: center;
    padding-bottom: 0;
  }

  .cd-progress__stage {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
  }

  .cd-progress__arrow {
    left: 48%;
    top: 12%;
  }

  .cd-progress {
    height: auto;
    min-height: 100vh;
  }

  .cd-hero__layout {
    flex-direction: column;
    text-align: center;
    gap: 1.75rem;
  }

  .cd-hero__divider {
    width: min(12rem, 60%);
    height: 2px;
    min-height: 0;
    align-self: center;
  }

  .cd-hero__copy {
    text-align: center;
    max-width: 34rem;
  }

  .cd-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .cd-hero,
  .cd-voices {
    height: 100vh;
    min-height: 100vh;
  }

  .cd-cta {
    height: 100vh;
    min-height: 100vh;
  }

  /* Filling a portrait viewport with this 16:9 portrait pair crops away most of
     the frame, so show it whole and sit the quote underneath it */
  .cd-banner {
    display: block;
    height: auto;
    min-height: 0;
  }

  .cd-banner__bg {
    position: static;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .cd-banner__inner {
    padding: clamp(1.5rem, 5vw, 2.25rem) 1.25rem clamp(2rem, 6vw, 3rem);
  }

  .cd-movement {
    height: 100vh;
    min-height: 100vh;
  }

  .cd-movement__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    justify-items: center;
  }

  .cd-movement__negatives {
    justify-content: center;
    padding: 0.75rem 1.5rem;
  }

  .cd-movement__slash {
    left: 50%;
  }

  .cd-movement__list {
    text-align: left;
  }

  .cd-movement__positive {
    text-align: center;
    max-width: 28rem;
  }

  .cd-movement__body {
    max-width: none;
  }

  .cd-movement__arrow {
    transform: rotate(90deg);
  }

  .cd-belief {
    height: 100vh;
    min-height: 100vh;
  }

  .cd-belief__heading {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .cd-choices {
    height: auto;
    min-height: 100vh;
    padding: 3rem 0;
  }

  .cd-choices__list::before {
    width: 2.6rem;
  }

  .cd-choices__list li {
    grid-template-columns: 1fr 2.6rem 1fr;
    font-size: 0.95rem;
  }

  .cd-choices__left {
    padding-right: 0.5rem;
  }

  .cd-choices__right {
    padding-left: 0.5rem;
  }

  .cd-choices__quote {
    border-radius: 1.25rem;
    padding: 1rem 1.15rem;
  }

  .cd-roadmap__milestones {
    grid-template-columns: 1fr;
  }

  .cd-roadmap__caption {
    margin-left: 0;
    max-width: none;
  }

  .cd-signature__track {
    grid-template-columns: 1fr;
  }

  .cd-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: minmax(140px, 28vw);
    height: auto;
    grid-template-areas:
      "v v"
      "a b"
      "c d"
      "e h"
      "f g"
      "i j"
      "k l";
    gap: 0.4rem;
  }

  .cd-gallery__play {
    left: 50%;
    top: 50%;
  }

  .cd-gallery__play svg {
    width: 48px;
    height: 48px;
  }

  /* Trusted — side space + smaller brand names */
  .cd-trusted {
    padding: 3.5rem 0;
  }

  .cd-trusted .container {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .cd-trusted__title {
    font-size: 1.55rem;
    margin-bottom: 1.5rem;
  }

  .cd-trusted__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .cd-trusted__cell {
    aspect-ratio: 2.2 / 1;
    padding: 0.55rem 0.5rem;
    border-radius: 10px;
  }

  .cd-trusted__cell span {
    font-size: 0.78rem;
  }

  .cd-trusted__more {
    font-size: 0.95rem;
  }

  /* Voices — side space + smaller names */
  .cd-voices .container {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .cd-voices__inner {
    padding: 3rem 0;
  }

  .cd-voices__title {
    font-size: 1.75rem;
    margin-bottom: 1.35rem;
  }

  .cd-voices__grid {
    max-width: none;
    gap: 1rem;
  }

  .cd-voice-card__quote {
    padding: 1.15rem 1.15rem;
  }

  .cd-voice-card__quote p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .cd-voice-card__meta {
    padding: 0.9rem 1.15rem;
  }

  .cd-voice-card__meta strong {
    font-size: 0.95rem;
  }

  .cd-voice-card__meta span {
    font-size: 0.82rem;
  }

  /* CTA — side space + smaller copy */
  .cd-cta .container {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .cd-cta__inner {
    padding: 3rem 0;
  }

  .cd-cta__content {
    max-width: none;
  }

  .cd-cta__text {
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
  }

  .cd-cta__text--gold {
    margin-bottom: 1.5rem;
  }

  .cd-cta__btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }

  .cd-banner__quote {
    font-size: 1.2rem;
    padding: 0 0.25rem;
  }

  .cd-belief .container {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .cd-belief__heading {
    font-size: 1.85rem;
  }

  .cd-movement .container {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .cd-movement__heading {
    font-size: 1.55rem;
  }

  .cd-movement__list li {
    font-size: 1.15rem;
  }

  .cd-movement__title {
    font-size: 1.85rem;
  }

  .cd-movement__body {
    font-size: 1.05rem;
  }
}
