.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  border: 3px solid white;
  border-radius: 100px;
}

.disection{
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.check {
  display: grid;
  width: 30px;
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  background: #6d071a;
  border-radius: 9px;
  font-weight: 900;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(138, 13, 37, 0.45), transparent 24rem),
    linear-gradient(135deg, #111113, #050506);
  box-shadow: var(--shadow);
  margin: -3px;
  padding: 100px;
}

.manifesto-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.manifesto .section-kicker {
  color: #e8506c;
}

.manifesto h2 {
    margin-bottom: 1.3rem;
    color: #f6f6f6;
    font-size: clamp(2.25rem, 5vw, 6rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.055em;
}

.manifesto p {
    max-width: 650px;
    color: #bdb6b0;
}

.manifesto-list {
    display: grid;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.manifesto-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.4rem 1.6rem;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.manifesto-item:last-child {
    border-bottom: 0;
}

.manifesto-item strong {
    color: #ffffff;
}

.manifesto-item p {
    margin: 0.2rem 0 0;
    font-size: 0.88rem;
}

@media (max-width: 900px) {
    .nav-links {
    display: none;
}

.hero-grid,
.section-heading,
.manifesto {
    grid-template-columns: 1fr;
    }
}

.manifesto-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
}

.section-kicker {
    margin-bottom: 0.65rem;
    color: var(--blood);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cta {
      padding-bottom: clamp(5rem, 9vw, 8rem);
    }

    .cta-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      padding: clamp(2rem, 5vw, 6rem);
      align-items: center;
      color: white;
      background: linear-gradient(135deg, #470410, #7d0b21);
      box-shadow: 0 28px 70px rgba(80, 5, 20, 0.25);
      margin: -2px;
    }

    .cta h2 {
      max-width: 700px;
      margin-bottom: 0.75rem;
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 900;
    }

    .cta p {
      max-width: 680px;
      margin-bottom: 0;
      color: rgba(255, 255, 255, 0.72);
    }

    .cta .button {
      color: #0b0b0c;
      background: #f3eee6;
      justify-self: start
    }

.button {
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.05rem;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

a:focus-visible,
    button:focus-visible {
      outline: 3px solid var(--blood-2);
      outline-offset: 4px;
      border-radius: 6px;
    }


/* Responsive */
@media (max-width: 560px) {
  .shell {
      width: min(calc(100% - 1.2rem), var(--max));
  }
}
