/* ==========================================================================
   Consultoria IBPLD — experiência editorial premium
   paper / ink / wine / champagne · identidade alinhada à Academia
   ========================================================================== */

:root {
  --cns-paper: #F5F3EE;
  --cns-ivory: #FAF8F4;
  --cns-warm: #F0EBE3;
  --cns-ink: #161719;
  --cns-graphite: #17191B;
  --cns-deep: #101214;
  --cns-muted: rgba(22, 23, 25, 0.58);
  --cns-soft: rgba(22, 23, 25, 0.42);
  --cns-line: rgba(22, 23, 25, 0.1);
  --cns-wine: #4C0911;
  --cns-champagne: #C8B69A;
  --cns-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body:has(.cns-page) {
  --site-container: 1500px;
  --mast-h: 5.5rem;
}

body:has(.cns-page) .proto-mast__bar {
  min-height: var(--mast-h);
  padding-block: 0.45rem;
}

body:has(.cns-page) .proto-mast__link.is-current,
body:has(.cns-page) .proto-mast__link.is-active {
  color: var(--cns-wine);
  font-weight: 700;
}

body:has(.cns-page) .proto-mast__aside {
  display: none;
  align-items: center;
  gap: 0.05rem;
  margin-left: auto;
  padding-left: 0.55rem;
  border-left: 1px solid rgba(22, 23, 25, 0.1);
}

@media (min-width: 1024px) {
  body:has(.cns-page) .proto-mast__nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
  }

  body:has(.cns-page) .proto-mast__aside,
  body:has(.cns-page) .proto-mast__student {
    display: inline-flex;
  }
}

.cns-page {
  background: var(--cns-paper);
  color: var(--cns-ink);
  overflow-x: clip;
}

.cns-shell {
  width: 100%;
  max-width: 1520px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 3.25rem);
  box-sizing: border-box;
}

.cns-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cns-wine);
}

.cns-kicker--light {
  color: rgba(200, 182, 154, 0.88);
}

.cns-h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.15rem, 4.2vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.cns-h2--sm {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  max-width: 18ch;
}

.cns-h2--light {
  color: #FAF8F4;
  max-width: 18ch;
}

.cns-h2--cta {
  max-width: 16ch;
}

.cns-lead {
  margin: 1.15rem 0 0;
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.55vw, 1.2rem);
  line-height: 1.55;
  color: var(--cns-muted);
}

.cns-section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.cns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.75rem 1.35rem;
  background: var(--cns-ink);
  color: #F7F5F0;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--cns-ink);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--cns-ease);
}

.cns-btn:hover,
.cns-btn:focus-visible {
  background: var(--cns-wine);
  border-color: var(--cns-wine);
  color: #F7F5F0;
  outline: none;
}

.cns-btn--ghost {
  background: transparent;
  color: var(--cns-ink);
  border-color: rgba(22, 23, 25, 0.18);
}

.cns-btn--ghost:hover,
.cns-btn--ghost:focus-visible {
  border-color: var(--cns-ink);
  background: transparent;
  color: var(--cns-ink);
}

.cns-btn--light {
  background: #F5F3EE;
  color: #17191B;
  border-color: #F5F3EE;
}

.cns-btn--light:hover,
.cns-btn--light:focus-visible {
  background: var(--cns-champagne);
  border-color: var(--cns-champagne);
  color: #17191B;
}

.cns-btn--outline-light {
  background: transparent;
  color: #F5F3EE;
  border-color: rgba(245, 243, 238, 0.35);
}

.cns-btn--outline-light:hover,
.cns-btn--outline-light:focus-visible {
  background: rgba(245, 243, 238, 0.08);
  color: #FAF8F4;
}

.cns-textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.35rem;
  font-weight: 700;
  color: var(--cns-wine);
  text-decoration: none;
}

.cns-textlink:hover,
.cns-textlink:focus-visible {
  color: var(--cns-ink);
  outline: none;
}

.cns-textlink span {
  display: inline-block;
  transition: transform 220ms var(--cns-ease);
}

.cns-textlink:hover span,
.cns-textlink:focus-visible span {
  transform: translateX(5px);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--cns-ease), transform 700ms var(--cns-ease);
}

.js-reveal [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal],
  .cns-chain__item,
  .cns-method__step,
  .cns-beyond__row,
  .cns-scope__item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ========== HERO ========== */
.cns-hero {
  position: relative;
  padding: clamp(4.25rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 4.75rem);
  background:
    radial-gradient(ellipse 55% 48% at 88% 0%, rgba(200, 182, 154, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 35% at 8% 90%, rgba(76, 9, 17, 0.05), transparent 55%),
    linear-gradient(180deg, #F7F5F0 0%, var(--cns-paper) 100%);
  border-bottom: 1px solid var(--cns-line);
  overflow: hidden;
}

.cns-hero__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.cns-hero__title {
  margin: 0;
  max-width: min(760px, 11.5em);
  font-size: clamp(2.75rem, 7.5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.cns-hero__title br { display: none; }

.cns-hero__sub {
  margin: 1.25rem 0 0;
  max-width: 40rem;
  font-size: clamp(1.05rem, 1.55vw, 1.18rem);
  line-height: 1.55;
  color: var(--cns-muted);
}

.cns-hero__tags {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  max-width: 42rem;
}

.cns-hero__tags li {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cns-soft);
  padding-right: 0.65rem;
  border-right: 1px solid rgba(22, 23, 25, 0.12);
}

.cns-hero__tags li:last-child {
  border-right: 0;
  padding-right: 0;
}

.cns-hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero chain visual */
.cns-chain {
  position: relative;
  min-height: 420px;
  padding: 1.5rem 1.35rem 1.5rem 1.65rem;
  border: 1px solid rgba(22, 23, 25, 0.08);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.45), transparent 55%),
    linear-gradient(180deg, rgba(240, 235, 227, 0.65), rgba(245, 243, 238, 0.2));
  overflow: hidden;
}

.cns-chain::before {
  content: "";
  position: absolute;
  left: 1.95rem;
  top: 3.6rem;
  bottom: 1.5rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(76, 9, 17, 0.35), rgba(200, 182, 154, 0.55), rgba(22, 23, 25, 0.08));
}

.cns-chain__label {
  margin: 0 0 1.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22, 23, 25, 0.38);
}

.cns-chain__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.cns-chain__item {
  position: relative;
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.85rem;
  align-items: center;
  opacity: 0;
  transform: translateX(10px);
}

.js-reveal .cns-chain.is-live .cns-chain__item,
.cns-chain.is-live .cns-chain__item {
  animation: cns-chain-in 520ms var(--cns-ease) forwards;
  animation-delay: calc(var(--i) * 70ms);
}

.cns-chain__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(22, 23, 25, 0.28);
  box-shadow: 0 0 0 4px rgba(245, 243, 238, 0.9);
  justify-self: center;
}

.cns-chain__item.is-emphasis .cns-chain__dot {
  background: var(--cns-wine);
  box-shadow: 0 0 0 5px rgba(76, 9, 17, 0.1);
}

.cns-chain__text {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(22, 23, 25, 0.72);
}

.cns-chain__item.is-emphasis .cns-chain__text {
  color: var(--cns-ink);
  font-weight: 700;
}

@keyframes cns-chain-in {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ========== INTEL ========== */
.cns-intel {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--cns-ivory);
  border-bottom: 1px solid var(--cns-line);
}

.cns-intel__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 980px;
}

.cns-intel__rail {
  width: 3rem;
  height: 1px;
  background: var(--cns-wine);
}

.cns-intel .cns-h2 {
  max-width: 14ch;
}

.cns-intel .cns-lead {
  max-width: 34rem;
}

/* ========== SCOPE ========== */
.cns-scope {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--cns-paper);
}

.cns-scope__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--cns-line);
}

.cns-scope__item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.65rem;
  align-items: baseline;
  padding: 1.05rem 0.85rem 1.05rem 0;
  border-bottom: 1px solid var(--cns-line);
  transition: background-color 180ms ease;
}

.cns-scope__item:hover {
  background: rgba(200, 182, 154, 0.08);
}

.cns-scope__index {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(22, 23, 25, 0.28);
}

.cns-scope__label {
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* ========== WHEN / TIMELINE ========== */
.cns-when {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--cns-warm);
  border-top: 1px solid var(--cns-line);
}

.cns-when__timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: grid;
  gap: 0;
}

.cns-when__timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(76, 9, 17, 0.35), rgba(22, 23, 25, 0.08));
}

.cns-when__item {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.15rem 0 1.15rem 0.15rem;
}

.cns-when__num {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cns-wine);
  background: var(--cns-warm);
  width: 2.3rem;
  text-align: center;
}

.cns-when__label {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* ========== METHOD ========== */
.cns-method {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--cns-ivory);
  border-top: 1px solid var(--cns-line);
}

.cns-method__flow {
  --cns-method-gap: 0.85rem;
  margin: 0;
  padding: 0 0 0 0.15rem;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.cns-method__flow::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(76, 9, 17, 0.35), rgba(22, 23, 25, 0.1));
}

.cns-method__step {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  column-gap: 0.9rem;
  row-gap: 0.2rem;
  align-items: start;
  padding: 0.95rem 0 0.95rem 0.15rem;
  min-width: 0;
}

.cns-method__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--cns-ivory);
  border: 1px solid rgba(76, 9, 17, 0.22);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cns-wine);
  box-sizing: border-box;
}

.cns-method__label {
  min-width: 0;
  max-width: 100%;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.cns-method__arrow {
  display: none;
  color: rgba(200, 182, 154, 0.95);
  font-size: 0.95rem;
  line-height: 1;
}

/* ========== BEYOND ========== */
.cns-beyond {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--cns-paper);
  border-top: 1px solid var(--cns-line);
}

.cns-beyond__list {
  display: grid;
  gap: 0;
  max-width: 920px;
}

.cns-beyond__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-top: 1px solid var(--cns-line);
}

.cns-beyond__row:last-child {
  border-bottom: 1px solid var(--cns-line);
}

.cns-beyond__left {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: rgba(22, 23, 25, 0.4);
  letter-spacing: -0.02em;
  text-align: right;
}

.cns-beyond__x {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cns-champagne);
}

.cns-beyond__right {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cns-ink);
}

/* ========== EXPERTS ========== */
.cns-experts {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--cns-warm);
  border-top: 1px solid var(--cns-line);
}

.cns-experts__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.75rem;
  max-width: 980px;
}

.cns-experts__list li {
  position: relative;
  padding: 0.55rem 0;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--cns-ink);
}

.cns-experts__list li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 1px;
  background: rgba(76, 9, 17, 0.18);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--cns-ease);
}

.cns-experts__list li:hover::after {
  transform: scaleX(1);
}

/* ========== TECH ========== */
.cns-tech {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(200, 182, 154, 0.12), transparent 55%),
    var(--cns-deep);
  color: #F5F3EE;
}

.cns-tech__shell {
  max-width: 820px;
}

.cns-tech .cns-h2 {
  max-width: 14ch;
}

.cns-tech__copy {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.1rem;
  max-width: 40rem;
}

.cns-tech__copy p {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  color: rgba(245, 243, 238, 0.68);
}

.cns-tech__emphasis {
  color: rgba(245, 243, 238, 0.92) !important;
  font-weight: 600;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(200, 182, 154, 0.28);
}

/* ========== KNOWLEDGE ========== */
.cns-knowledge {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cns-paper);
  border-top: 1px solid var(--cns-line);
}

.cns-knowledge__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}

.cns-knowledge__mark {
  display: grid;
  gap: 0.15rem;
  justify-items: start;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: rgba(22, 23, 25, 0.08);
  user-select: none;
}

.cns-knowledge__aside {
  margin: 1.5rem 0 0;
  max-width: 34rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--cns-line);
  color: var(--cns-muted);
  line-height: 1.5;
  font-size: 0.98rem;
}

.cns-knowledge__aside .cns-textlink {
  display: inline-flex;
  margin-top: 0.55rem;
}

.cns-textlink--inline {
  margin-left: 0;
}

/* ========== CTA ========== */
.cns-cta {
  padding: clamp(4.75rem, 10vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse 45% 50% at 10% 80%, rgba(76, 9, 17, 0.45), transparent 55%),
    var(--cns-graphite);
  color: #F5F3EE;
}

.cns-cta__text {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  color: rgba(245, 243, 238, 0.68);
  line-height: 1.5;
  font-size: 1.08rem;
}

.cns-cta__actions {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer compact */
body:has(.cns-page) .sitefoot.sitefoot--compact .sitefoot__shell {
  padding-block: clamp(4.5rem, 6vw, 5.5rem) !important;
}

body:has(.cns-page).course-body,
body:has(.cns-page) .course-body {
  min-height: 0 !important;
  padding-bottom: 0 !important;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .cns-scope__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cns-scope__item {
    padding-right: 1.25rem;
  }

  .cns-knowledge__shell {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }

  body:has(.cns-page) .sitefoot.sitefoot--compact .sitefoot__shell {
    display: grid;
    grid-template-columns: minmax(200px, 0.9fr) minmax(0, 2.2fr);
  }

  body:has(.cns-page) .sitefoot.sitefoot--compact .sitefoot__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cns-hero__shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.78fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
  }

  .cns-hero__title {
    font-size: clamp(56px, 5vw, 78px);
  }

  .cns-hero__title br { display: block; }

  .cns-chain {
    min-height: 520px;
    margin-top: 0.5rem;
  }

  .cns-intel__shell {
    grid-template-columns: 3rem 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: none;
  }

  .cns-intel__rail {
    width: 1px;
    height: 7rem;
    margin-top: 2.4rem;
  }

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

  .cns-when__timeline {
    grid-template-columns: 1fr 1fr;
    column-gap: 3.5rem;
  }

  .cns-when__timeline::before {
    display: none;
  }

  .cns-when__item {
    border-top: 1px solid rgba(22, 23, 25, 0.1);
  }

  /* Notebook: 4 + 3 — evita colunas estreitas demais */
  .cns-method__flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.1rem;
    padding-left: 0;
  }

  .cns-method__flow::before {
    display: none;
  }

  .cns-method__step {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem 0.35rem 0;
    border-left: 1px solid rgba(22, 23, 25, 0.1);
    min-width: 0;
  }

  .cns-method__step:nth-child(4n + 1) {
    border-left: 0;
    padding-left: 0;
  }

  .cns-method__num {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    justify-content: flex-start;
    color: rgba(22, 23, 25, 0.32);
    letter-spacing: 0.12em;
  }

  .cns-method__label {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.28;
  }

  .cns-method__arrow {
    display: block;
    position: absolute;
    right: -0.15rem;
    top: 1.55rem;
    transform: rotate(-90deg);
  }

  .cns-method__step:nth-child(4n) .cns-method__arrow,
  .cns-method__step:last-child .cns-method__arrow {
    display: none;
  }
}

@media (min-width: 1440px) {
  .cns-method__flow {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.75rem 0.9rem;
  }

  .cns-method__step {
    padding-right: 0.7rem;
  }

  .cns-method__step:nth-child(4n + 1) {
    border-left: 1px solid rgba(22, 23, 25, 0.1);
    padding-left: 0.85rem;
  }

  .cns-method__step:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .cns-method__label {
    font-size: clamp(0.98rem, 0.95vw, 1.12rem);
    line-height: 1.3;
  }

  .cns-method__arrow {
    display: block;
    right: -0.2rem;
    top: 1.65rem;
  }

  .cns-method__step:nth-child(4n) .cns-method__arrow {
    display: block;
  }

  .cns-method__step:last-child .cns-method__arrow {
    display: none;
  }
}

@media (min-width: 1366px) {
  .cns-hero__title { font-size: 72px; }
  .cns-h2 { font-size: 54px; }
}

@media (min-width: 1920px) {
  .cns-shell { max-width: 1540px; }
  .cns-hero__title { font-size: 74px; }
}

@media (min-width: 2560px) {
  body:has(.cns-page) { --site-container: 1560px; }
  .cns-shell { max-width: 1560px; }
  .cns-hero__title { font-size: 76px; }
  .cns-h2 { font-size: 56px; }
}

@media (max-width: 430px) {
  .cns-scope__grid {
    grid-template-columns: 1fr;
  }

  .cns-beyond__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    text-align: left;
  }

  .cns-beyond__left {
    text-align: left;
  }

  .cns-beyond__x {
    justify-self: start;
  }
}
