/* =========================================
   DEVELOPER HERO
========================================= */

.dev-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 8% 35%,
      rgba(0, 170, 130, .12),
      transparent 32%
    ),
    linear-gradient(
      105deg,
      #182235 0%,
      #172337 52%,
      #073f3a 100%
    );
}


  .devop-span{
    color: #059669;
  }

/* =========================================
   SUBTLE BACKGROUND
========================================= */

.dev-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 88% 75%,
      rgba(0, 190, 145, .12),
      transparent 32%
    );
}


/* =========================================
   CONTAINER
========================================= */

.dev-hero-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 58px 32px 66px;
}


/* =========================================
   GRID
========================================= */

.dev-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 48px;
}

/* =========================================
   LEFT CONTENT
========================================= */
/* 
.dev-hero-content {
  max-width: 560px;
} */

.dev-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(0, 190, 145, .35);
  border-radius: 30px;
  background: rgba(0, 190, 145, .08);
  color: #a7f3d0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}


/* =========================================
   TITLE
========================================= */

.dev-title {
    margin: 24px 0 12px;
    font-size: clamp(38px, 4vw, 47px);
    line-height: 1;
    letter-spacing: -.025em;
    font-weight: 500;
}

.dev-title span {
  color: #5de5b4;
}


/* =========================================
   TEXT
========================================= */

.dev-text {
    max-width: 576px;
    margin-top: 16px;
    color: #e1e7ed;
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================
   FEATURES
========================================= */

.dev-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.dev-features span {
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  color: #e8edf1;
  font-size: 12px;
}


/* =========================================
   ACTIONS
========================================= */

.dev-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.dev-btn {
  padding: 10px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
}

.dev-btn-primary {
  border: 1px solid #08a979;
  background: #08a979;
  color: #fff;
  box-shadow: 0 7px 20px rgba(0, 170, 125, .16);
}

.dev-btn-primary:hover {
  background: #07966d;
  transform: translateY(-2px);
}

.dev-btn-outline {
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
}

.dev-btn-outline:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.dev-hero-visual {
  position: relative;
}


/* =========================================
   LIFECYCLE
========================================= */

.dev-lifecycle {
      position: relative;
    height: 380px;
    margin-bottom: 48px;
    margin-top: 32px;
}

.dev-lifecycle-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dev-lifecycle-path {
  fill: none;
  stroke: rgba(210, 220, 218, .65);
  stroke-width: 1.5;
  filter: url("#devGlow");
}


/* =========================================
   HUB
========================================= */

.dev-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;

  width: 148px;
  padding: 15px 12px;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(30, 235, 173, .35);
  border-radius: 15px;

  background: #069f76;

  text-align: center;

  box-shadow:
    0 10px 30px rgba(0, 150, 110, .20);
}

.dev-hub strong {
  display: block;
  font-size: 16px;
}

.dev-hub small {
  display: block;
  margin-top: 3px;
  color: #d4fff2;
  font-size: 9px;
}


/* =========================================
   LIFECYCLE NODES
========================================= */
/* =========================================
   LIFECYCLE NODE
========================================= */

.dev-node {
  position: absolute;

  z-index: 3;

  padding: 8px 16px;

  border: 1px solid rgba(255,255,255,.12);

  border-radius: 10px;

  background: rgba(255,255,255,.055);

  color: #fff;

  font-size: 14px;

  white-space: nowrap;

  backdrop-filter: blur(7px);

  transition:
    background .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}


/* =========================================
   NODE POSITIONS
========================================= */

.dev-node--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dev-node--top-right {
  top: 42px;
  right: 35px;
}

.dev-node--right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.dev-node--bottom-right {
  right: 35px;
  bottom: 42px;
}

.dev-node--bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dev-node--bottom-left {
  bottom: 42px;
  left: 35px;
}

.dev-node--left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.dev-node--top-left {
  top: 42px;
  left: 35px;
}


/* =========================================
   ACTIVE NODE
========================================= */

.dev-node.is-active {
  border-color: rgba(0, 205, 155, .4);

  background: rgba(0, 170, 125, .14);

  box-shadow:
    0 0 18px rgba(0, 190, 145, .12);
}


/* =========================================
   STAKEHOLDER CARD
========================================= */

.dev-stakeholder {
  padding: 15px;

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;

  background: rgba(255,255,255,.055);

  backdrop-filter: blur(14px);
}


/* =========================================
   STAKEHOLDER PILLS
========================================= */

.dev-stakeholder-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.dev-stakeholder-list span {
  padding: 4px 10px;

  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;

  background: rgba(255,255,255,.05);

  color: #cbd8d5;
  font-size: 11px;
}


/* =========================================
   STAKEHOLDER MESSAGE
========================================= */

.dev-stakeholder-note {
  margin-top: 12px;
  padding: 12px;

  border: 1px solid rgba(0,190,145,.20);
  border-radius: 10px;

  background: rgba(0,170,125,.08);

  color: #bceee0;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .dev-hero-grid {
    grid-template-columns: 1fr;
  }

  .dev-hero-content {
    max-width: 700px;
  }

  .dev-hero-visual {
    max-width: 700px;
    width: 100%;
    margin: auto;
  }

}


@media (max-width: 600px) {

  .dev-hero-container {
    padding: 45px 0;
  }

  .dev-title {
    font-size: 34px;
  }

  .dev-text {
    font-size: 13px;
  }

  .dev-lifecycle {
    height: 300px;
  }

  .dev-node {
    font-size: 10px;
    padding: 6px 9px;
  }

  #design,
  #completion {
    right: 15px;
    left: auto;
  }

  #billing,
  #handover {
    left: 15px;
  }

}


@media (max-width: 480px) {

  .dev-lifecycle {
    display: none;
  }

  .dev-actions {
    flex-direction: column;
  }

  .dev-btn {
    width: 100%;
  }

}

/* =========================================================
   COMMON STAKEHOLDER INFORMATION SECTION
========================================================= */

.stakeholder-info-section {
  position: relative;
  overflow: hidden;

  padding: 96px 0;

  /* Tailwind bg-secondary-50 equivalent */
  background: #f8fafc;
}


/* =========================================================
   RADIAL GRADIENT
========================================================= */

.stakeholder-info-section__gradient {
  position: absolute;
  inset: 0;

  pointer-events: none;
}


/* Section 1 - Emerald */

.stakeholder-info-section--green
.stakeholder-info-section__gradient {
  background:
    radial-gradient(
      circle at top,
      rgba(16, 185, 129, 0.08),
      transparent 55%
    );
}


/* Section 2 - Teal */

.stakeholder-info-section--teal
.stakeholder-info-section__gradient {
  background:
    radial-gradient(
      circle at top,
      rgba(20, 184, 166, 0.08),
      transparent 55%
    );
}


/* =========================================================
   GRID BACKGROUND
========================================================= */

.stakeholder-info-section__grid {
  position: absolute;
  inset: 0;

  opacity: 0.05;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.08) 1px,
      transparent 1px
    );

  background-size: 32px 32px;
}


/* =========================================================
   CONTAINER
========================================================= */

.stakeholder-info-section__container {
  position: relative;

  z-index: 1;

  width: min(1280px, 100%);

  margin: 0 auto;

  padding: 0 24px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.stakeholder-info-section__content {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 64px;
}


/* =========================================================
   TEXT
========================================================= */

.stakeholder-info-section__text {
  min-width: 0;
}


.stakeholder-info-section__text h2 {
  margin: 0;

  color: #171717;

  font-size: 24px;

  font-weight: 600;

  line-height: 1.25;
}


/* =========================================================
   DIVIDER
========================================================= */

.stakeholder-info-section__divider {
  width: 96px;

  height: 1px;

  margin-top: 24px;
}


/* Section 1 divider */

.stakeholder-info-section--green
.stakeholder-info-section__divider {
  background: rgba(16, 185, 129, 0.6);
}


/* Section 2 divider */

.stakeholder-info-section--teal
.stakeholder-info-section__divider {
  background: rgba(20, 184, 166, 0.6);
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.stakeholder-info-section__text p {
  margin: 16px 0 0;

  color: #475559;

  font-size: 14px;

  line-height: 1.7;
}


.stakeholder-info-section__text strong {
  color: inherit;

  font-weight: 700;
}


/* =========================================================
   IMAGE
========================================================= */

.stakeholder-info-section__image {
  position: relative;

  width: 100%;
}


.stakeholder-info-section__image img {
  display: block;

  width: 100%;

  height: auto;

  object-fit: cover;

  border-radius: 12px;
}


/* =========================================================
   TABLET
   Equivalent to md:grid-cols-2 behavior
========================================================= */

@media (max-width: 767px) {

  .stakeholder-info-section {
    padding: 72px 0;
  }


  .stakeholder-info-section__content {
    grid-template-columns: 1fr;

    gap: 48px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

  .stakeholder-info-section {
    padding: 56px 0;
  }


  .stakeholder-info-section__container {
    padding: 0 20px;
  }


  .stakeholder-info-section__content {
    gap: 36px;
  }


  .stakeholder-info-section__text h2 {
    font-size: 22px;
  }


  .stakeholder-info-section__text p {
    font-size: 14px;

    line-height: 1.6;
  }


  .stakeholder-info-section__image img {
    border-radius: 10px;
  }

}

/* =========================================================
   BCSTEP SUMMARY SECTION
========================================================= */

.bcstep-summary-section {
  background: #f8fafc;

  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}


/* =========================================================
   CONTAINER
========================================================= */

.bcstep-summary-container {
  width: min(1280px, 100%);

  margin: 0 auto;

  padding: 0 24px;
}


/* =========================================================
   CONTENT
========================================================= */

.bcstep-summary-content {
  background: #f8fafc;

  padding: 32px;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.bcstep-summary-content p {
  margin: 0;

  color: #374151;

  font-size: 14px;

  line-height: 1.5;
}


/* =========================================================
   SUPERMANAGER HIGHLIGHT
========================================================= */

.bcstep-summary-highlight {
  font-size: 18px;

  font-weight: 500;

  color: inherit;
}


/* =========================================================
   SECOND PARAGRAPH
========================================================= */

.bcstep-summary-second-text {
  margin-top: 24px !important;
}


/* =========================================================
   LOGIN LINK
========================================================= */

.bcstep-summary-content a {
  color: inherit;

  text-decoration: none;

  transition: color 0.2s ease;
}

.bcstep-summary-content a:hover {
  text-decoration: underline;
}


/* =========================================================
   MEDIUM / DESKTOP
   md:p-10
========================================================= */

@media (min-width: 768px) {

  .bcstep-summary-content {
    padding: 40px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

  .bcstep-summary-container {
    padding: 0 20px;
  }

  .bcstep-summary-content {
    padding: 28px 20px;
  }

  .bcstep-summary-content p {
    font-size: 14px;

    line-height: 1.6;
  }

  .bcstep-summary-highlight {
    font-size: 17px;
  }

}

/* =========================================================
   EXPLORE MORE SECTION
========================================================= */

.explore-more-section {
  width: 100%;

  padding-top: 56px;
  padding-bottom: 112px;

  background: #f8fafc;
}


/* =========================================================
   CONTAINER
========================================================= */

.explore-more-container {
  width: min(1280px, 100%);

  margin: 0 auto;

  padding-left: 16px;
  padding-right: 16px;
}


/* =========================================================
   HEADING
========================================================= */

.explore-more-heading {
  margin-bottom: 16px;
}

.explore-more-heading h2 {
  margin: 0;

  color: #404040;

  font-size: 16px;

  font-weight: 500;

  line-height: 1.4;

  letter-spacing: 0.025em;
}


/* =========================================================
   STAKEHOLDER LIST
========================================================= */

.stakeholder-list {
  display: flex;

  flex-wrap: wrap;

  align-items: flex-start;

  justify-content: center;

  gap: 16px;
}


/* =========================================================
   STAKEHOLDER ITEM
========================================================= */

.stakeholder-item {
  position: relative;

  display: flex;

  flex: 1 1 90px;

  width: 90px;

  min-width: 90px;

  max-width: 150px;

  padding: 8px;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  color: inherit;

  isolation: isolate;
}


/* =========================================================
   GLOW
========================================================= */

.stakeholder-glow {
  position: absolute;

  inset: 0;

  z-index: -1;

  border-radius: 50%;

  background: rgba(234, 179, 8, 0.30);

  filter: blur(32px);

  opacity: 0;

  transform: scale(0.75);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}


/* Hover glow */

.stakeholder-item:hover .stakeholder-glow {
  opacity: 1;

  transform: scale(1);
}


/* =========================================================
   CONTENT
========================================================= */

.stakeholder-content {
  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  width: 100%;
}


/* =========================================================
   ICON WRAPPER
========================================================= */

.stakeholder-icon-wrap {
  position: relative;

  width: 96px;

  height: 96px;

  display: flex;

  align-items: center;

  justify-content: center;
}


/* =========================================================
   OUTER CIRCLE
========================================================= */

.stakeholder-circle {
  width: 100%;

  height: 100%;

  object-fit: contain;

  display: block;
}


/* =========================================================
   CENTER ICON
========================================================= */

.stakeholder-icon {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 32px;
  height: 32px;

  object-fit: contain;

  transform: translate(-50%, -50%);

  transition:
    transform 0.3s ease;
}


/* Hover icon */

.stakeholder-item:hover .stakeholder-icon {
  transform:
    translate(-50%, -50%)
    scale(1.1);
}


/* =========================================================
   NAME
========================================================= */

.stakeholder-name {
  display: block;

  margin-top: 4px;

  color: #525252;

  font-size: 12px;

  line-height: 1.25;

  text-align: center;

  transition:
    color 0.3s ease;
}


/* Original Tailwind:
   group-hover:text-secondary-900
*/

.stakeholder-item:hover .stakeholder-name {
  color: #171717;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .stakeholder-list {
    gap: 12px;
  }

  .stakeholder-item {
    flex: 0 1 100px;

    max-width: 120px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .explore-more-section {
    padding-top: 48px;

    padding-bottom: 80px;
  }

  .explore-more-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stakeholder-list {
    gap: 12px 8px;
  }

  .stakeholder-item {
    flex: 0 1 calc(25% - 8px);

    width: calc(25% - 8px);

    max-width: none;

    min-width: 0;

    padding: 6px;
  }

  .stakeholder-icon-wrap {
    width: 76px;

    height: 76px;
  }

  .stakeholder-icon {
    width: 26px;

    height: 26px;
  }

  .stakeholder-name {
    font-size: 10px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .stakeholder-list {
    gap: 14px 4px;
  }

  .stakeholder-item {
    flex: 0 1 calc(33.333% - 4px);

    width: calc(33.333% - 4px);
  }

  .stakeholder-icon-wrap {
    width: 72px;

    height: 72px;
  }

  .stakeholder-icon {
    width: 25px;

    height: 25px;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .stakeholder-glow,
  .stakeholder-icon,
  .stakeholder-name {
    transition: none;
  }

}