:root {
  --crlp-navy: #071d2b;
  --crlp-navy-2: #0b3440;
  --crlp-ink: #173041;
  --crlp-muted: #607483;
  --crlp-line: #d9e5e9;
  --crlp-paper: #f3f8f7;
  --crlp-white: #ffffff;
  --crlp-teal: #20a58f;
  --crlp-teal-dark: #117563;
  --crlp-teal-soft: #dff5ef;
  --crlp-blue: #398fc4;
  --crlp-blue-soft: #e4f1f8;
  --crlp-gold: #efbd4c;
  --crlp-gold-soft: #fff3cd;
  --crlp-shadow: 0 24px 65px rgba(4, 31, 44, 0.13);
  --crlp-radius-xl: 32px;
  --crlp-radius-lg: 22px;
  --crlp-radius-md: 15px;
}

html {
  scroll-behavior: smooth;
}

.crlp-container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.crlp-kicker {
  margin: 0 0 14px;
  color: var(--crlp-teal-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.crlp-heading {
  max-width: 860px;
  margin-bottom: 46px;
}

.crlp-heading h2,
.crlp-team h2 {
  margin: 0 0 18px;
  color: var(--crlp-navy);
  font-size: clamp(2.15rem, 4.2vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.crlp-heading > p:last-child,
.crlp-team p {
  margin: 0;
  color: var(--crlp-muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

/* HERO */

.crlp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--crlp-white);
  background:
    radial-gradient(circle at 77% 18%, rgba(67, 221, 187, 0.23), transparent 25%),
    radial-gradient(circle at 95% 74%, rgba(67, 145, 197, 0.25), transparent 29%),
    linear-gradient(128deg, #061925 0%, #092f3a 52%, #0c5955 100%);
}

.crlp-hero::before,
.crlp-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.crlp-hero::before {
  width: 620px;
  height: 620px;
  top: -240px;
  right: -185px;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 145px rgba(255, 255, 255, 0.018);
}

.crlp-hero::after {
  width: 320px;
  height: 320px;
  right: 33%;
  bottom: -250px;
}

.crlp-hero-grid {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
  padding-block: 86px;
}

.crlp-hero .crlp-kicker {
  color: #8ee2cf;
}

.crlp-hero h1 {
  max-width: 760px;
  margin: 0 0 27px;
  color: var(--crlp-white);
  font-size: clamp(3rem, 5.9vw, 5.55rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.crlp-hero-lead {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.66;
}

.crlp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.crlp-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.crlp-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.crlp-button-primary {
  color: var(--crlp-navy);
  background: #8ee2cf;
}

.crlp-button-primary:hover {
  color: var(--crlp-navy);
  background: var(--crlp-white);
}

.crlp-button-secondary {
  color: var(--crlp-white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.crlp-button-secondary:hover {
  color: var(--crlp-white);
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
}

.crlp-button-light {
  color: var(--crlp-navy);
  background: var(--crlp-white);
}

.crlp-button-light:hover {
  color: var(--crlp-navy);
  background: #8ee2cf;
}

.crlp-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.crlp-proof li {
  padding-right: 18px;
}

.crlp-proof li + li {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.crlp-proof strong,
.crlp-proof span {
  display: block;
}

.crlp-proof strong {
  color: var(--crlp-white);
  font-size: 0.91rem;
}

.crlp-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  line-height: 1.4;
}

/* REAL COVER PREVIEW */

.crlp-cover-stage {
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.crlp-cover-frame {
  position: relative;
  width: min(365px, 82vw);
  margin: 0;
  transform: rotateY(-4deg) rotateX(1.5deg) rotateZ(1deg);
}

.crlp-cover-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 4px;
  box-shadow: inset -18px 0 35px rgba(0, 0, 0, 0.12);
}

.crlp-cover-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.42);
}

/* QUICK NAV */

.crlp-jump {
  border-bottom: 1px solid var(--crlp-line);
  background: var(--crlp-white);
  box-shadow: 0 12px 32px rgba(7, 29, 43, 0.06);
}

.crlp-jump-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.crlp-jump a {
  display: grid;
  min-height: 78px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  border-right: 1px solid var(--crlp-line);
  color: var(--crlp-ink);
  text-decoration: none;
}

.crlp-jump a:first-child {
  border-left: 1px solid var(--crlp-line);
}

.crlp-jump a:hover {
  color: var(--crlp-teal-dark);
  background: var(--crlp-teal-soft);
  text-decoration: none;
}

.crlp-jump span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  color: var(--crlp-teal-dark);
  background: var(--crlp-teal-soft);
  font-size: 0.66rem;
  font-weight: 900;
}

.crlp-jump strong {
  font-size: 0.83rem;
  line-height: 1.25;
}

/* CONTENT */

.crlp-section {
  margin: 0;
  padding: 104px 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.crlp-section-paper {
  background:
    radial-gradient(circle at 90% 0%, rgba(32, 165, 143, 0.11), transparent 28%),
    var(--crlp-paper);
}

.crlp-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.crlp-feature-card {
  min-height: 290px;
  padding: 27px;
  border: 1px solid var(--crlp-line);
  border-radius: var(--crlp-radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(7, 29, 43, 0.07);
}

.crlp-feature-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: var(--crlp-navy);
  background: var(--crlp-teal-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.crlp-feature-card:nth-child(2) > span {
  background: var(--crlp-blue-soft);
}

.crlp-feature-card:nth-child(3) > span {
  background: var(--crlp-gold-soft);
}

.crlp-feature-card:nth-child(4) > span {
  color: #ffffff;
  background: var(--crlp-navy-2);
}

.crlp-feature-card h3 {
  margin: 26px 0 12px;
  color: var(--crlp-navy);
  font-size: 1.25rem;
  line-height: 1.2;
}

.crlp-feature-card p {
  margin: 0;
  color: var(--crlp-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.crlp-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.crlp-heading-sticky {
  position: sticky;
  top: 110px;
}

.crlp-path-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crlp-path-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 23px;
  border: 1px solid var(--crlp-line);
  border-radius: 18px;
  background: var(--crlp-white);
  box-shadow: 0 10px 30px rgba(7, 29, 43, 0.055);
}

.crlp-path-list > li > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: var(--crlp-white);
  background: linear-gradient(135deg, var(--crlp-navy-2), var(--crlp-teal));
  font-size: 0.86rem;
  font-weight: 900;
}

.crlp-path-list strong {
  display: block;
  color: var(--crlp-navy);
  font-size: 1.02rem;
}

.crlp-path-list p {
  margin: 5px 0 8px;
  color: var(--crlp-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.crlp-path-list small {
  color: var(--crlp-teal-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.crlp-section-dark {
  color: var(--crlp-white);
  background:
    radial-gradient(circle at 85% 12%, rgba(54, 154, 184, 0.23), transparent 31%),
    linear-gradient(125deg, var(--crlp-navy), #0b4148);
}

.crlp-section-dark .crlp-kicker {
  color: #8ee2cf;
}

.crlp-section-dark .crlp-heading h2 {
  color: var(--crlp-white);
}

.crlp-section-dark .crlp-heading > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.crlp-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.crlp-audience-grid article {
  min-height: 260px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--crlp-radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.crlp-audience-grid span {
  color: #8ee2cf;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.crlp-audience-grid h3 {
  margin: 18px 0 13px;
  color: var(--crlp-white);
  font-size: 1.35rem;
  line-height: 1.2;
}

.crlp-audience-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.62;
}

.crlp-download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 35px;
  margin-top: 58px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--crlp-radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.crlp-download-band span {
  color: var(--crlp-gold);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.crlp-download-band h3 {
  margin: 8px 0 5px;
  color: var(--crlp-white);
  font-size: 1.25rem;
}

.crlp-download-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.77rem;
}

/* TEAM CTA */

.crlp-team {
  padding: 88px 0;
  background:
    radial-gradient(circle at 8% 100%, rgba(57, 143, 196, 0.12), transparent 25%),
    var(--crlp-white);
}

.crlp-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: center;
  gap: 75px;
}

.crlp-team-actions {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--crlp-line);
  border-radius: var(--crlp-radius-lg);
  background: var(--crlp-paper);
}

.crlp-team-actions .crlp-button-primary {
  color: var(--crlp-navy);
  background: #8ee2cf;
}

.crlp-team-actions .crlp-button-primary:hover {
  background: #c7f2e7;
}

.crlp-text-link {
  color: var(--crlp-teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.crlp-text-link:hover {
  text-decoration: underline;
}

.crlp-note {
  padding: 24px 0;
  border-top: 1px solid var(--crlp-line);
  background: var(--crlp-paper);
}

.crlp-note p {
  max-width: 980px;
  margin: 0;
  color: var(--crlp-muted);
  font-size: 0.73rem;
  line-height: 1.55;
}

@media (max-width: 1020px) {
  .crlp-hero-grid,
  .crlp-path-grid,
  .crlp-team-grid {
    grid-template-columns: 1fr;
  }

  .crlp-hero-grid {
    min-height: 0;
    padding-block: 78px;
  }

  .crlp-cover-frame {
    width: min(335px, 72vw);
  }

  .crlp-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crlp-heading-sticky {
    position: static;
  }

  .crlp-team-grid {
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .crlp-container {
    width: min(100% - 34px, 1200px);
  }

  .crlp-section {
    padding: 76px 0;
  }

  .crlp-jump {
    overflow-x: auto;
  }

  .crlp-jump-inner {
    width: 720px;
    grid-template-columns: repeat(4, 180px);
  }

  .crlp-feature-grid,
  .crlp-audience-grid {
    grid-template-columns: 1fr;
  }

  .crlp-feature-card,
  .crlp-audience-grid article {
    min-height: 0;
  }

  .crlp-download-band {
    grid-template-columns: 1fr;
    justify-items: start;
  }

}

@media (max-width: 560px) {
  .crlp-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .crlp-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .crlp-actions .crlp-button {
    width: 100%;
  }

  .crlp-proof {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .crlp-proof li,
  .crlp-proof li + li {
    padding: 0 0 13px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .crlp-cover-frame {
    width: min(305px, 86vw);
    transform: none;
  }

  .crlp-path-list li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .crlp-path-list > li > span {
    width: 42px;
    height: 42px;
  }

  .crlp-download-band,
  .crlp-team-actions {
    padding: 22px;
  }
}

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

  .crlp-button {
    transition: none;
  }

  .crlp-button:hover {
    transform: none;
  }
}
