.plan-c {
  --c-ink: #10161d;
  --c-black: #151a20;
  --c-blue: #2f6bde;
  --c-yellow: #f2d45c;
  --c-green: #a9dfc9;
  --c-pale-blue: #cfe0ff;
  --c-bg: #f5f7f8;
  --c-muted: #63717d;
  --c-line: #d9dee3;
  color: var(--c-ink);
}

.c-yellow { background: var(--c-yellow); }
.c-green { background: var(--c-green); }
.c-blue { background: var(--c-pale-blue); }

.c-header {
  display: flex;
  height: 96px;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  background: #fff;
}

.c-brand {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .04em;
}

.c-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
}

.c-header nav button {
  padding: 8px 0;
  background: transparent;
}

.c-header nav button:first-of-type {
  color: var(--c-blue);
  font-weight: 600;
}

.c-header .icon-button {
  width: 24px;
  height: 24px;
}

.c-header .icon-button img {
  width: 18px;
  height: 18px;
}

.c-menu {
  display: none;
  background: transparent;
  font-size: 10px;
}

.c-hero {
  padding: 54px 0 48px;
  background: var(--c-bg);
}

.c-hero > .container > .eyebrow,
.c-topics .eyebrow,
.c-company .eyebrow {
  color: var(--c-blue);
}

.c-hero h1 {
  margin-bottom: 8px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.5;
}

.c-lead {
  margin-bottom: 34px;
  color: var(--c-muted);
  font-size: 12px;
}

.c-carousel {
  position: relative;
  min-height: 528px;
  touch-action: pan-y;
}

.c-slides {
  position: relative;
  width: calc(100% - 350px);
  height: 470px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.c-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 400px 1fr;
  visibility: hidden;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1), visibility .5s ease;
}

.c-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.c-slide-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 46px 40px 34px;
}

.c-slide-copy small {
  font-size: 10px;
  font-weight: 600;
}

.c-slide-copy h2 {
  margin: 20px 0 14px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
}

.c-slide-copy p {
  font-size: 13px;
}

.c-slide-copy button {
  min-height: 44px;
  margin-top: auto;
  padding: 10px 22px;
  color: #fff;
  background: var(--c-black);
  font-size: 12px;
  font-weight: 600;
}

.c-slide > img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.c-next-preview {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 330px;
  height: 470px;
  flex-direction: column;
  padding: 30px 24px;
  background: var(--c-green);
}

.c-next-preview small {
  font-size: 10px;
  font-weight: 600;
}

.c-next-preview strong {
  margin-top: 18px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
}

.c-next-preview span {
  margin-top: auto;
  font-size: 22px;
  text-align: right;
}

.c-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  height: 42px;
  align-items: center;
  gap: 12px;
}

.c-controls > span {
  width: 150px;
  color: var(--c-muted);
  font-size: 10px;
  letter-spacing: .08em;
}

.c-controls button {
  width: 18px;
  height: 3px;
  padding: 0;
  background: var(--c-line);
}

.c-controls button:first-of-type,
.c-controls button:last-of-type {
  width: 32px;
  height: 32px;
  background: transparent;
  font-size: 18px;
}

.c-controls button.is-active {
  width: 44px;
  background: var(--c-blue);
}

.c-category-rail {
  padding-block: 46px;
  background: #fff;
}

.c-category-rail .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.c-category-rail button {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  text-align: left;
  transition: transform .25s ease, filter .25s ease;
}

.c-category-rail button:hover,
.c-category-rail button.is-active {
  filter: saturate(1.18);
  transform: translateY(-3px);
}

.c-category-rail span {
  font-size: 10px;
}

.c-topics {
  background: var(--c-bg);
}

.c-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.c-topic-grid article {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 30px 28px;
}

.c-topic-grid span {
  font-size: 10px;
  font-weight: 600;
}

.c-topic-grid h3 {
  margin: 20px 0 14px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.65;
}

.c-topic-grid p {
  font-size: 13px;
}

.c-topic-grid button {
  margin-top: auto;
  padding: 10px 0;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}

.c-flow {
  color: #fff;
  background: var(--c-black);
}

.c-flow .eyebrow {
  color: var(--c-yellow);
}

.c-flow h2 {
  margin-bottom: 28px;
  font-size: 30px;
  font-weight: 600;
}

.c-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.c-flow-grid article {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  padding: 18px;
  background: #1d232a;
}

.c-flow-grid article:first-child {
  background: #242b33;
}

.c-flow-grid span {
  color: var(--c-yellow);
  font-size: 10px;
}

.c-flow-grid article:nth-child(2) span { color: var(--c-green); }
.c-flow-grid article:nth-child(3) span { color: var(--c-pale-blue); }

.c-flow-grid strong {
  margin-top: 14px;
  font-size: 17px;
}

.c-flow-grid small {
  margin-top: auto;
  color: #bec7ce;
  font-size: 11px;
}

.c-company-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  align-items: center;
  gap: 44px;
}

.c-company figure {
  height: 340px;
  margin: 0;
  overflow: hidden;
}

.c-company img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-company h2 {
  margin-bottom: 18px;
  font-size: 29px;
  font-weight: 600;
}

.c-company p:not(.eyebrow) {
  color: var(--c-muted);
}

.c-company .button {
  margin-top: 10px;
  border-color: var(--c-line);
}

.c-news {
  background: var(--c-bg);
}

.c-news-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.c-news-heading h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 600;
}

.c-news-heading a {
  color: var(--c-blue);
  font-size: 11px;
}

.c-news-list {
  border-bottom: 1px solid var(--c-line);
}

.c-news-list a {
  display: grid;
  min-height: 76px;
  grid-template-columns: 110px 90px 1fr;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--c-line);
}

.c-news-list time {
  color: var(--c-muted);
  font-size: 11px;
}

.c-news-list span {
  color: var(--c-blue);
  font-size: 10px;
  font-weight: 600;
}

.c-news-list strong {
  font-size: 13px;
  font-weight: 400;
}

.c-cta {
  padding: 58px 0 42px;
  color: #fff;
  background: var(--c-blue);
  text-align: center;
}

.c-cta h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.c-cta p,
.c-cta small {
  color: #e7eeff;
  font-size: 11px;
}

.c-cta .button {
  margin: 14px 0 22px;
  border-color: #fff;
  color: var(--c-blue);
  background: #fff;
}

.c-cta hr {
  border: 0;
  border-top: 1px solid #6d96e8;
}

@media (max-width: 980px) {
  .c-header nav {
    display: none;
  }

  .c-menu {
    display: inline-block;
  }

  .c-slides {
    width: calc(100% - 240px);
  }

  .c-slide {
    grid-template-columns: 340px 1fr;
  }

  .c-next-preview {
    width: 220px;
  }
}

@media (max-width: 767px) {
  .c-header {
    height: 72px;
    padding-inline: 20px;
  }

  .c-brand {
    font-size: 13px;
  }

  .c-hero {
    padding: 46px 0 40px;
  }

  .c-hero h1 {
    font-size: 26px;
    line-height: 1.62;
  }

  .c-lead {
    margin-bottom: 34px;
  }

  .c-carousel {
    min-height: 558px;
  }

  .c-slides {
    width: 100%;
    height: 500px;
    border-radius: 10px;
  }

  .c-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 260px;
  }

  .c-slide-copy {
    padding: 28px 24px 24px;
  }

  .c-slide-copy h2 {
    margin: 12px 0 8px;
    font-size: 30px;
  }

  .c-slide-copy p {
    margin-bottom: 10px;
  }

  .c-slide-copy button {
    width: 100%;
    min-height: 42px;
  }

  .c-slide > img {
    height: 260px;
  }

  .c-next-preview {
    display: none;
  }

  .c-controls {
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: space-between;
  }

  .c-controls > span {
    width: 112px;
  }

  .c-category-rail {
    padding-block: 40px;
  }

  .c-category-rail .container,
  .c-topic-grid,
  .c-flow-grid,
  .c-company-grid {
    grid-template-columns: 1fr;
  }

  .c-category-rail .container {
    gap: 8px;
  }

  .c-category-rail button {
    min-height: 42px;
  }

  .c-topic-grid {
    gap: 12px;
  }

  .c-topic-grid article {
    min-height: 208px;
    padding: 22px;
  }

  .c-topic-grid h3 {
    margin: 10px 0 6px;
    font-size: 18px;
    line-height: 1.65;
  }

  .c-flow-grid {
    gap: 10px;
  }

  .c-flow-grid article {
    min-height: 100px;
  }

  .c-flow-grid strong {
    margin-top: 4px;
  }

  .c-company-grid {
    gap: 28px;
  }

  .c-company figure {
    height: 240px;
  }

  .c-company h2 {
    font-size: 23px;
  }

  .c-news-heading h2 {
    font-size: 23px;
  }

  .c-news-list a {
    min-height: 88px;
    grid-template-columns: 1fr;
    gap: 3px;
    padding-block: 12px;
  }

  .c-news-list span {
    margin-top: -30px;
    margin-left: 92px;
  }

  .c-cta h2 {
    font-size: 23px;
    line-height: 1.65;
  }
}
