.ct-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 70% 40%,
      rgba(0, 174, 239, 0.08),
      transparent 32%
    ),
    #070a0f;

  color: #f4f7fa;
}

/* BACKGROUND */

.ct-hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ct-hero__grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);

  background-size: 80px 80px;

  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 90%);
}

.ct-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.ct-hero__glow--one {
  width: 420px;
  height: 420px;

  right: -100px;
  top: 5%;

  background: var(--ct-brand-light-blue);
}

.ct-hero__glow--two {
  width: 500px;
  height: 500px;

  left: 30%;
  bottom: -300px;

  background: var(--ct-brand-blue);
}

/* LAYOUT */

.ct-hero__container {
  position: relative;
  z-index: 2;

  min-height: 100svh;

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);

  align-items: center;

  gap: clamp(60px, 7vw, 130px);

  padding-top: 120px;
  padding-bottom: 70px;
}

/* CONTENT */

.ct-hero__content {
  position: relative;
  z-index: 2;
}

.ct-hero__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 34px;

  color: #98a4b3;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-hero__eyebrow-line {
  width: 38px;
  height: 1px;

  background: var(--ct-brand-light-blue);
}

.ct-hero__title {
  max-width: 760px;

  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(58px, 6vw, 108px);
  font-weight: 600;

  line-height: 0.88;
  letter-spacing: -0.055em;
}

.ct-hero__title span {
  display: block;
  color: #8d98a6;
}

.ct-hero__lead {
  max-width: 610px;

  margin: 38px 0 0;

  color: #aeb7c2;

  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.65;
}

.ct-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 14px;

  margin-top: 42px;
}

.ct-hero__systems {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 24px;

  margin-top: 68px;
  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  color: #697581;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ct-hero__systems span:not(:last-child)::after {
  content: "/";

  margin-left: 24px;

  color: #29333d;
}

/* VISUAL */

.ct-hero__visual {
  position: relative;
}

.ct-hero__image-frame {
  position: relative;

  min-height: min(720px, 73vh);

  overflow: hidden;

  clip-path: polygon(10% 0, 100% 0, 100% 88%, 89% 100%, 0 100%, 0 12%);

  background: #111721;
}

.ct-hero__image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: saturate(0.65) contrast(1.08) brightness(0.68);

  transform: scale(1.02);
}

.ct-hero__image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.62), rgba(7, 10, 15, 0.05) 58%),
    linear-gradient(180deg, rgba(47, 48, 130, 0.08), rgba(0, 174, 239, 0.1));
}

/* UI */

.ct-hero__interface {
  position: absolute;
  inset: 34px;

  color: rgba(255, 255, 255, 0.72);

  font-family: monospace;
  font-size: 9px;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ct-hero__interface-top {
  display: flex;
  justify-content: space-between;
}

.ct-hero__interface-top span:last-child {
  color: var(--ct-brand-light-blue);
}

.ct-hero__interface-bottom {
  position: absolute;

  left: 0;
  bottom: 0;

  display: flex;
  flex-direction: column;

  gap: 5px;
}

.ct-hero__interface-bottom strong {
  color: var(--ct-brand-light-blue);

  font-size: 11px;
  font-weight: 500;
}

/* NETWORK */

.ct-hero__network {
  position: absolute;

  width: 160px;
  height: 130px;

  right: 4%;
  top: 45%;
}

.ct-node {
  position: absolute;

  width: 7px;
  height: 7px;

  border: 1px solid var(--ct-brand-light-blue);
  border-radius: 50%;

  background: rgba(0, 174, 239, 0.12);
}

.ct-node--1 {
  left: 0;
  top: 50%;
}

.ct-node--2 {
  left: 48%;
  top: 0;
}

.ct-node--3 {
  right: 0;
  top: 55%;
}

.ct-node--4 {
  left: 48%;
  bottom: 0;
}

.ct-line {
  position: absolute;

  height: 1px;

  background: rgba(0, 174, 239, 0.55);

  transform-origin: left center;
}

.ct-line--1 {
  width: 91px;

  left: 5px;
  top: 66px;

  transform: rotate(-36deg);
}

.ct-line--2 {
  width: 84px;

  left: 80px;
  top: 6px;

  transform: rotate(41deg);
}

.ct-line--3 {
  width: 75px;

  left: 80px;
  bottom: 7px;

  transform: rotate(-43deg);
}

/* LABEL */

.ct-hero__visual-label {
  position: absolute;

  left: -52px;
  bottom: 48px;

  width: 150px;

  padding: 17px;

  background: var(--ct-brand-light-blue);
  color: #05080c;
}

.ct-hero__visual-label > span {
  display: block;

  margin-bottom: 35px;

  font-family: monospace;
  font-size: 11px;
}

.ct-hero__visual-label p {
  margin: 0;

  font-size: 10px;
  font-weight: 700;

  line-height: 1.45;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   SYSTEMS
   ========================================================= */

.ct-systems {
  position: relative;

  padding: 150px 0 110px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(47, 48, 130, 0.16),
      transparent 34%
    ),
    var(--ct-bg-secondary);
}

.ct-systems__container {
  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(500px, 1.15fr);

  align-items: center;

  gap: clamp(80px, 9vw, 160px);
}

/* CONTENT */

.ct-systems__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 30px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-systems__eyebrow-line {
  width: 38px;
  height: 1px;

  background: var(--ct-brand-light-blue);
}

.ct-systems__title {
  max-width: 720px;

  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(52px, 5vw, 92px);
  font-weight: 600;

  line-height: 0.94;
  letter-spacing: -0.05em;
}

.ct-systems__title span {
  display: block;

  color: #8d98a6;
}

.ct-systems__lead {
  max-width: 630px;

  margin: 38px 0 0;

  color: #aeb7c2;

  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.7;
}

.ct-systems__link {
  display: inline-flex;
  align-items: center;

  gap: 18px;

  margin-top: 40px;

  color: var(--ct-brand-light-blue);

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct-systems__link span {
  transition: transform 180ms ease;
}

.ct-systems__link:hover span {
  transform: translateY(4px);
}

/* DIAGRAM */

.ct-systems__diagram {
  position: relative;

  min-height: 560px;
}

.ct-systems__shape {
  position: absolute;

  width: 360px;
  height: 360px;

  left: 50%;
  top: 50%;

  border: 1px solid rgba(47, 48, 130, 0.3);

  transform: translate(-50%, -50%) rotate(30deg);

  opacity: 0.8;
}

.ct-systems__shape::before {
  content: "";

  position: absolute;

  inset: 38px;

  border: 1px solid rgba(0, 174, 239, 0.12);
}

/* NODES */

.ct-system-node {
  position: absolute;

  display: flex;
  align-items: center;

  gap: 10px;

  color: #7f8995;

  font-family: "Inter", sans-serif;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ct-system-node__dot {
  width: 9px;
  height: 9px;

  flex: 0 0 auto;

  border: 1px solid var(--ct-brand-light-blue);
  border-radius: 50%;

  background: rgba(0, 174, 239, 0.12);

  box-shadow: 0 0 0 5px rgba(0, 174, 239, 0.03);
}

.ct-system-node--building {
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  color: #ffffff;

  font-size: 12px;
}

.ct-system-node--building .ct-system-node__dot {
  width: 14px;
  height: 14px;

  background: var(--ct-brand-light-blue);

  box-shadow:
    0 0 0 8px rgba(0, 174, 239, 0.08),
    0 0 40px rgba(0, 174, 239, 0.24);
}

.ct-system-node--security {
  left: 50%;
  top: 7%;

  transform: translateX(-50%);
}

.ct-system-node--network {
  left: 3%;
  top: 50%;

  transform: translateY(-50%);
}

.ct-system-node--power {
  right: 3%;
  top: 50%;

  transform: translateY(-50%);
}

.ct-system-node--solar {
  left: 24%;
  bottom: 8%;
}

.ct-system-node--climate {
  right: 19%;
  bottom: 8%;
}

/* CONNECTING LINES */

.ct-system-line {
  position: absolute;

  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 174, 239, 0.55)
  );

  transform-origin: left center;
}

.ct-system-line--security {
  width: 188px;

  left: 50%;
  top: 50%;

  transform: rotate(-90deg);
}

.ct-system-line--network {
  width: 235px;

  left: 10%;
  top: 50%;
}

.ct-system-line--power {
  width: 235px;

  left: 50%;
  top: 50%;
}

.ct-system-line--solar {
  width: 190px;

  left: 50%;
  top: 50%;

  transform: rotate(130deg);
}

.ct-system-line--climate {
  width: 190px;

  left: 50%;
  top: 50%;

  transform: rotate(50deg);
}

/* META */

.ct-systems__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 90px;
  padding-top: 22px;

  border-top: 1px solid var(--ct-border);

  color: #59636e;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================================================
   SERVICES
   ========================================================= */

.ct-services {
  position: relative;
  padding: 150px 0;
  background: var(--ct-bg);
}

.ct-services__head {
  max-width: 920px;
  margin-bottom: 72px;
}

.ct-services__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 30px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-services__eyebrow-line {
  width: 38px;
  height: 1px;
  background: var(--ct-brand-light-blue);
}

.ct-services__title {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 5vw, 92px);
  font-weight: 600;

  line-height: 0.94;
  letter-spacing: -0.05em;
}

.ct-services__title span {
  display: block;
  color: #8d98a6;
}

.ct-services__lead {
  max-width: 680px;

  margin: 34px 0 0;

  color: #aeb7c2;

  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.7;
}

/* GRID */

.ct-services__grid {
  display: grid;

  grid-template-columns: repeat(12, minmax(0, 1fr));

  gap: 20px;
}

.ct-service-card {
  position: relative;

  min-height: 430px;

  overflow: hidden;

  background: var(--ct-surface);
  color: #ffffff;

  isolation: isolate;

  clip-path: polygon(0 0, 100% 0, 100% 90%, 94% 100%, 0 100%);
}

.ct-service-card--large {
  grid-column: span 8;
}

.ct-service-card--small {
  grid-column: span 4;
}

.ct-service-card--wide {
  grid-column: span 12;
  min-height: 380px;
}

/* IMAGE */

.ct-service-card__image {
  position: absolute;
  inset: 0;

  z-index: -3;

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: saturate(0.55) contrast(1.08) brightness(0.58);

  transform: scale(1.02);

  transition:
    transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 400ms ease;
}

.ct-service-card__overlay {
  position: absolute;
  inset: 0;

  z-index: -2;

  background:
    linear-gradient(
      180deg,
      rgba(7, 10, 15, 0.15) 0%,
      rgba(7, 10, 15, 0.42) 45%,
      rgba(7, 10, 15, 0.92) 100%
    ),
    linear-gradient(
      135deg,
      rgba(47, 48, 130, 0.18),
      transparent 42%,
      rgba(0, 174, 239, 0.08)
    );
}

.ct-service-card::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  border: 1px solid rgba(255, 255, 255, 0.08);

  pointer-events: none;
}

/* TOP */

.ct-service-card__top {
  position: absolute;

  top: 26px;
  left: 28px;
  right: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-service-card__number {
  color: rgba(255, 255, 255, 0.6);

  font-family: monospace;
  font-size: 10px;

  letter-spacing: 0.18em;
}

.ct-service-card__arrow {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.18);

  color: #ffffff;

  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

/* CONTENT */

.ct-service-card__content {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 30px;
}

.ct-service-card__tags {
  margin-bottom: 13px;

  color: var(--ct-brand-light-blue);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ct-service-card h3 {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 3.2vw, 62px);
  font-weight: 600;

  line-height: 0.95;
  letter-spacing: -0.045em;
}

.ct-service-card p {
  max-width: 560px;

  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
  line-height: 1.6;
}

/* HOVER */

.ct-service-card:hover .ct-service-card__image {
  transform: scale(1.07);

  filter: saturate(0.72) contrast(1.08) brightness(0.66);
}

.ct-service-card:hover .ct-service-card__arrow {
  border-color: var(--ct-brand-light-blue);

  background: var(--ct-brand-light-blue);
  color: #05080c;

  transform: translate(2px, -2px);
}

/* DIFFERENT CARD SHAPES */

.ct-service-card:nth-child(2),
.ct-service-card:nth-child(4) {
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

.ct-service-card--wide {
  clip-path: polygon(0 0, 96% 0, 100% 12%, 100% 100%, 0 100%);
}

/* =========================================================
   PROCESS
   ========================================================= */

.ct-process {
  position: relative;

  padding: 150px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 70%,
      rgba(47, 48, 130, 0.13),
      transparent 32%
    ),
    var(--ct-bg-secondary);
}

/* HEADER */

.ct-process__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 30px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-process__eyebrow-line {
  width: 38px;
  height: 1px;

  background: var(--ct-brand-light-blue);
}

.ct-process__heading-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(320px, 0.8fr);

  gap: clamp(60px, 8vw, 140px);

  align-items: end;
}

.ct-process__title {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(52px, 5vw, 92px);
  font-weight: 600;

  line-height: 0.94;
  letter-spacing: -0.05em;
}

.ct-process__title span {
  display: block;

  color: #8d98a6;
}

.ct-process__lead {
  max-width: 600px;

  margin: 0 0 8px;

  color: #aeb7c2;

  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.7;
}

/* FLOW */

.ct-process__flow {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 36px;

  margin-top: 110px;
}

.ct-process__line {
  position: absolute;

  left: 0;
  right: 0;
  top: 30px;

  height: 1px;

  background: linear-gradient(
    90deg,
    var(--ct-brand-light-blue),
    rgba(0, 174, 239, 0.3) 35%,
    rgba(255, 255, 255, 0.08)
  );
}

/* STEP */

.ct-process-step {
  position: relative;
}

/* MARKER */

.ct-process-step__marker {
  position: relative;
  z-index: 2;

  width: 60px;
  height: 60px;

  display: grid;
  place-items: center;

  margin-bottom: 38px;

  background: var(--ct-brand-light-blue);

  clip-path: var(--marker-shape);

  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.ct-process-step__marker::before {
  content: "";

  position: absolute;

  inset: 2px;

  background: var(--ct-bg-secondary);

  clip-path: var(--marker-shape);

  transition: background-color 180ms ease;
}

/* MARKER SHAPES */

.ct-process-step--01 {
  --marker-shape: polygon(0 0, 100% 0, 100% 66%, 66% 100%, 0 100%);
}

.ct-process-step--02 {
  --marker-shape: polygon(26% 0, 100% 0, 100% 76%, 76% 100%, 0 100%, 0 26%);
}

.ct-process-step--03 {
  --marker-shape: polygon(0 0, 74% 0, 100% 26%, 100% 100%, 26% 100%, 0 74%);
}

.ct-process-step--04 {
  --marker-shape: polygon(18% 0, 100% 0, 100% 64%, 64% 100%, 0 100%, 0 18%);
}

/* NUMBER */

.ct-process-step__marker span {
  position: relative;
  z-index: 2;

  color: var(--ct-brand-light-blue);

  font-family: monospace;
  font-size: 10px;

  letter-spacing: 0.12em;
}

/* STEP CONTENT */

.ct-process-step__meta {
  display: block;

  margin-bottom: 14px;

  color: #59636e;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ct-process-step h3 {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(27px, 2vw, 36px);
  font-weight: 600;

  line-height: 1;
  letter-spacing: -0.035em;
}

.ct-process-step p {
  max-width: 280px;

  margin: 20px 0 0;

  color: #8f99a5;

  font-size: 14px;
  line-height: 1.7;
}

/* HOVER */

.ct-process-step:hover .ct-process-step__marker {
  transform: translateY(-4px);
}

.ct-process-step:hover .ct-process-step__marker::before {
  background: var(--ct-brand-light-blue);
}

.ct-process-step:hover .ct-process-step__marker span {
  color: #05080c;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .ct-process__heading-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .ct-process__flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 60px 40px;
  }

  .ct-process__line {
    display: none;
  }
}

@media (max-width: 620px) {
  .ct-process {
    padding: 100px 0;
  }

  .ct-process__flow {
    grid-template-columns: 1fr;

    gap: 48px;

    margin-top: 70px;
  }

  .ct-process-step {
    display: grid;

    grid-template-columns: 60px 1fr;

    column-gap: 24px;
  }

  .ct-process-step__marker {
    margin-bottom: 0;
  }

  .ct-process-step__content {
    min-width: 0;
  }

  .ct-process-step p {
    max-width: 100%;
  }
}

/* =========================================================
   PARTNERS
   ========================================================= */

.ct-partners {
  position: relative;
  padding: 140px 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(47, 48, 130, 0.12),
      transparent 32%
    ),
    var(--ct-bg);
}

/* HEADER */

.ct-partners__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 30px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-partners__eyebrow-line {
  width: 38px;
  height: 1px;

  background: var(--ct-brand-light-blue);
}

.ct-partners__heading-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(320px, 0.8fr);

  gap: clamp(60px, 8vw, 140px);

  align-items: end;
}

.ct-partners__title {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 5vw, 92px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.ct-partners__title span {
  display: block;

  color: #8d98a6;
}

.ct-partners__lead {
  max-width: 600px;

  margin: 0 0 8px;

  color: #aeb7c2;

  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.7;
}

/* GRID */

.ct-partners__grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;

  margin-top: 80px;
}

/* PARTNER TILE */

.ct-partner {
  position: relative;

  min-height: 180px;

  display: flex;
  align-items: stretch;
  justify-content: stretch;

  padding: 10px;

  background: #111721;

  overflow: hidden;

  clip-path: polygon(0 0, 100% 0, 100% 82%, 92% 100%, 0 100%);
}

.ct-partner::before {
  content: "";

  position: absolute;
  inset: 0;

  border: 1px solid rgba(255, 255, 255, 0.08);

  pointer-events: none;
}

/* LOGO AREA */

.ct-partner__logo-wrap {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 160px;

  padding: 24px 32px;

  background: #ffffff;

  overflow: hidden;

  clip-path: inherit;
}

.ct-partner__logo {
  display: block;

  width: 100%;
  height: 100%;

  max-width: 210px;
  max-height: 80px;

  object-fit: contain;

  margin: auto;
}

/* DIFFERENT SHAPES */

.ct-partner:nth-child(2),
.ct-partner:nth-child(5) {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
}

.ct-partner:nth-child(3),
.ct-partner:nth-child(6) {
  clip-path: polygon(0 0, 92% 0, 100% 18%, 100% 100%, 0 100%);
}

/* DIFFERENT SHAPES */

.ct-partner:nth-child(2),
.ct-partner:nth-child(5) {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
}

.ct-partner:nth-child(3),
.ct-partner:nth-child(6) {
  clip-path: polygon(0 0, 92% 0, 100% 18%, 100% 100%, 0 100%);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .ct-partners__heading-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ct-partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ct-partners {
    padding: 100px 0;
  }

  .ct-partners__grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .ct-partner {
    min-height: 150px;
  }

  .ct-partner__logo-wrap {
    height: 90px;
  }
}

/* =========================================================
   CLOSING CTA
   ========================================================= */

.ct-closing-cta {
  position: relative;

  padding: 40px 0 120px;

  overflow: hidden;

  background: var(--ct-bg);
}

/* WRAPPER */

.ct-closing-cta__inner {
  position: relative;

  min-height: 520px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(320px, 0.75fr);

  gap: clamp(60px, 8vw, 140px);

  align-items: end;

  padding: clamp(55px, 6vw, 90px);

  overflow: hidden;

  background:
    radial-gradient(circle at 88% 24%, rgba(0, 174, 239, 0.1), transparent 25%),
    radial-gradient(
      circle at 80% 80%,
      rgba(47, 48, 130, 0.24),
      transparent 38%
    ),
    #0b1017;

  clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 6% 100%, 0 88%);
}

/* TECH BORDER */

.ct-closing-cta__inner::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
        90deg,
        var(--ct-brand-light-blue),
        rgba(0, 174, 239, 0.08) 45%,
        transparent 75%
      )
      top left / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%) top
      left / 1px 100% no-repeat;
}

/* CONTENT */

.ct-closing-cta__content {
  position: relative;
  z-index: 3;
}

.ct-closing-cta__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 30px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-closing-cta__eyebrow-line {
  width: 38px;
  height: 1px;

  background: var(--ct-brand-light-blue);
}

.ct-closing-cta__title {
  max-width: 850px;

  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(54px, 5.8vw, 104px);
  font-weight: 600;

  line-height: 0.9;
  letter-spacing: -0.055em;
}

.ct-closing-cta__title span {
  display: block;

  color: #8d98a6;
}

.ct-closing-cta__lead {
  max-width: 650px;

  margin: 35px 0 0;

  color: #9da7b3;

  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.7;
}

/* ACTIONS */

.ct-closing-cta__actions {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 50px;
}

/* BUTTON */

.ct-closing-cta__button {
  position: relative;
  z-index: 5;

  min-width: 240px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 19px 22px;

  background: var(--ct-brand-light-blue);

  color: #041016;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  text-decoration: none;

  clip-path: polygon(0 0, 92% 0, 100% 32%, 100% 100%, 0 100%);

  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.ct-closing-cta__button:hover {
  background: #ffffff;
}

.ct-closing-cta__button-icon {
  font-size: 18px;
  line-height: 1;
}

/* CONTACT */

.ct-closing-cta__contact {
  width: 100%;

  display: flex;
  flex-direction: column;

  gap: 22px;
}

.ct-closing-cta__contact-item {
  display: flex;
  flex-direction: column;

  gap: 6px;

  padding-bottom: 18px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-closing-cta__contact-label {
  color: #59636e;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ct-closing-cta__contact-role {
  color: #59636e;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ct-closing-cta__contact-item a {
  width: fit-content;

  color: #dce4eb;

  font-size: 15px;

  text-decoration: none;

  transition: color 180ms ease;
}

.ct-closing-cta__contact-item a:hover {
  color: var(--ct-brand-light-blue);
}

.ct-closing-cta__facebook {
  display: inline-flex;
  align-items: center;

  gap: 10px;
}

.ct-closing-cta__facebook span {
  width: 26px;
  height: 26px;

  display: inline-grid;
  place-items: center;

  flex: 0 0 auto;

  border-radius: 50%;

  background: var(--ct-brand-light-blue);
  color: #05080c;
}

.ct-closing-cta__facebook svg {
  width: 15px;
  height: 15px;

  display: block;

  fill: currentColor;
}

/* BACKGROUND GEOMETRY */

.ct-closing-cta__geometry {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;
}

.ct-closing-cta__shape {
  position: absolute;

  display: block;

  border: 1px solid rgba(47, 48, 130, 0.38);

  transform: rotate(45deg);
}

.ct-closing-cta__shape--01 {
  width: 430px;
  height: 430px;

  right: -120px;
  top: -160px;
}

.ct-closing-cta__shape--02 {
  width: 240px;
  height: 240px;

  right: 18%;
  bottom: -120px;

  border-color: rgba(0, 174, 239, 0.1);
}

/* TECH LINE */

.ct-closing-cta__tech-line {
  position: absolute;

  width: 38%;
  height: 1px;

  right: 0;
  bottom: 72px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 174, 239, 0.16),
    var(--ct-brand-light-blue)
  );
}

/* NODES */

.ct-closing-cta__node {
  position: absolute;

  width: 7px;
  height: 7px;

  background: var(--ct-brand-light-blue);
}

.ct-closing-cta__node::after {
  content: "";

  position: absolute;

  inset: -6px;

  border: 1px solid rgba(0, 174, 239, 0.24);
}

.ct-closing-cta__node--01 {
  right: 31%;
  bottom: 69px;

  transform: none;
}

.ct-closing-cta__node--02 {
  right: 8%;
  bottom: 69px;

  transform: none;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .ct-closing-cta__inner {
    grid-template-columns: 1fr;

    gap: 60px;

    min-height: auto;
  }

  .ct-closing-cta__actions {
    max-width: 500px;
  }

  .ct-closing-cta__tech-line,
  .ct-closing-cta__node {
    opacity: 0.45;
  }
}

@media (max-width: 620px) {
  .ct-closing-cta {
    padding: 30px 0 80px;
  }

  .ct-closing-cta__inner {
    padding: 50px 28px 55px;

    clip-path: polygon(0 0, 90% 0, 100% 7%, 100% 100%, 0 100%);
  }

  .ct-closing-cta__title {
    font-size: clamp(48px, 14vw, 68px);
  }

  .ct-closing-cta__lead {
    margin-top: 28px;
  }

  .ct-closing-cta__button {
    width: 100%;
  }

  .ct-closing-cta__actions {
    width: 100%;
  }

  .ct-closing-cta__shape--01 {
    width: 280px;
    height: 280px;

    right: -150px;
  }
}

/* =========================================================
   SYSTEMS — LIVE ACTIVITY
   ========================================================= */

.ct-system-node,
.ct-system-line {
  transition:
    opacity 500ms ease,
    filter 500ms ease;
}

/* NODE */

.ct-system-node {
  opacity: 0.48;
}

.ct-system-node .ct-system-node__dot {
  transition:
    background-color 500ms ease,
    box-shadow 500ms ease,
    transform 500ms ease;
}

.ct-system-node span,
.ct-system-node strong {
  transition:
    color 500ms ease,
    text-shadow 500ms ease;
}

/* ACTIVE NODE */

.ct-system-node.is-active {
  opacity: 1;
}

.ct-system-node.is-active .ct-system-node__dot {
  background: #00aeef;

  box-shadow:
    0 0 0 5px rgba(0, 174, 239, 0.08),
    0 0 18px rgba(0, 174, 239, 0.55);

  transform: scale(1.25);
}

.ct-system-node.is-active span,
.ct-system-node.is-active strong {
  color: #ffffff;

  text-shadow: 0 0 14px rgba(0, 174, 239, 0.35);
}

/* LINES */

.ct-system-line {
  opacity: 0.3;

  transition:
    opacity 500ms ease,
    filter 500ms ease;
}

.ct-system-line.is-active {
  opacity: 1;

  filter: brightness(1.8) drop-shadow(0 0 5px rgba(0, 174, 239, 0.65));
}

/* BUILDING — ALWAYS ONLINE */

.ct-system-node--building {
  opacity: 1;
}

.ct-system-node--building .ct-system-node__dot {
  animation: ct-building-pulse 3s ease-in-out infinite;
}

@keyframes ct-building-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(0, 174, 239, 0.08),
      0 0 8px rgba(0, 174, 239, 0.2);
  }

  50% {
    box-shadow:
      0 0 0 7px rgba(0, 174, 239, 0.04),
      0 0 18px rgba(0, 174, 239, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ct-system-node--building .ct-system-node__dot {
    animation: none;
  }

  .ct-system-node,
  .ct-system-line {
    transition: none;
  }
}
