/* Homepage and Online Mentoring journey refinements. */

:root {
  --journey-panel: rgba(12, 14, 44, 0.72);
  --journey-panel-strong: rgba(7, 9, 36, 0.9);
  --journey-border: rgba(255, 255, 255, 0.13);
  --journey-muted: rgba(229, 233, 249, 0.76);
  --journey-heading: #f2f7ff;
  --journey-accent: #25e5ed;
  --journey-purple: #743df0;
  --journey-pink: #dc46c2;
}

/* Approved homepage audience and evidence treatment. */
main section.welcome {
  grid-template-areas:
    "title visual"
    "intro visual"
    "actions visual"
    "trust visual"
    "logos visual";
}

main .route-card .route-label {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

main .route-points {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  gap: 0.8rem;
  color: #f0effb;
  font-size: 1.45rem;
  line-height: 1.45;
  list-style: none;
}

main .route-points li {
  position: relative;
  padding-left: 1.8rem;
}

main .route-points li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

main .route-card-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

main .route-card-bottom > .route-secondary-link {
  min-height: 0;
  padding: 0.7rem 0.2rem;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 0.35em;
}

.method-card {
  position: relative;
}

.method-number {
  position: absolute;
  top: 2.2rem;
  right: 2.4rem;
  color: rgba(37, 229, 237, 0.52);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.school-leader-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: end;
  gap: clamp(2.5rem, 5vw, 7rem);
  border: 0.1rem solid rgba(195, 92, 255, 0.26);
  border-radius: var(--cs-radius-card);
  background:
    radial-gradient(circle at 90% 10%, rgba(195, 92, 255, 0.16), transparent 38%),
    rgba(9, 12, 40, 0.7);
}

.school-leader-callout h2 {
  max-width: 82rem;
  margin: 0;
  color: var(--journey-heading);
  font-size: clamp(3.4rem, 4vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.school-leader-callout p:not(.section-kicker) {
  max-width: 82rem;
  margin: 1.6rem 0 0;
  color: var(--journey-muted);
  font-size: clamp(1.65rem, 1.5vw, 1.95rem);
  line-height: 1.6;
}

.school-leader-callout .section-actions {
  min-width: min(100%, 27rem);
  margin: 0;
  flex-direction: column;
  align-items: stretch;
}

.text-link {
  padding: 0.8rem;
  color: var(--journey-accent);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-underline-offset: 0.35em;
}

@media (max-width: 900px) {
  .school-leader-callout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .school-leader-callout .section-actions {
    align-items: flex-start;
  }
}

@media (max-width: 1100px) {
  main section.welcome {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "intro"
      "actions"
      "trust"
      "logos"
      "visual";
  }

  main section.welcome .hero-visual {
    width: min(100%, 72rem);
    height: clamp(42rem, 66vw, 52rem);
    justify-self: center;
  }
}

header .logo img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
  filter: drop-shadow(0 0 1.5rem rgba(0, 255, 255, 0.22));
}

main section.welcome #intro-logo {
  width: min(22rem, 42%);
  max-height: 23rem;
}

main .home-section,
main .home-final-cta,
main .journey-section,
main .mentoring-hero {
  width: min(100%, 124rem);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(5.5rem, 7vw, 9rem) clamp(2.2rem, 4.5vw, 6rem);
  font-family: Arial, Helvetica, sans-serif;
}

main .home-section,
main .journey-section {
  align-items: stretch;
}

.section-heading {
  width: min(100%, 82rem);
  margin: 0 auto clamp(3rem, 4vw, 4.8rem);
  text-align: center;
}

.section-kicker {
  margin: 0 0 1.2rem;
  color: var(--cs-color-accent-muted);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading h2,
.school-copy h2,
.home-final-cta h2,
.journey-section h2 {
  margin: 0;
  color: var(--journey-heading);
  font-size: clamp(3.4rem, 4vw, 5.4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.section-heading-split > p,
.school-copy > p:not(.section-kicker),
.home-final-cta > p:not(.section-kicker),
.journey-section > .section-heading > p:last-child {
  margin: 1.6rem 0 0;
  color: var(--journey-muted);
  font-size: clamp(1.65rem, 1.5vw, 1.95rem);
  line-height: 1.6;
}

.home-card-grid,
.journey-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.home-card,
.journey-card,
.step-card,
.level-card,
.price-card,
.quote-card {
  min-width: 0;
  margin: 0;
  padding: clamp(2.2rem, 2.5vw, 3.2rem);
  border: var(--cs-card-border);
  border-radius: var(--cs-radius-card);
  background: var(--cs-surface-card);
  box-shadow: var(--cs-shadow-card);
}

.home-card-icon {
  width: 4.6rem;
  height: 4.6rem;
  margin-bottom: 1.8rem;
  object-fit: contain;
}

.home-card h3,
.journey-card h3,
.step-card h3,
.level-card h3,
.price-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 1.8vw, 2.45rem);
  line-height: 1.18;
}

.home-card p,
.journey-card p,
.step-card p,
.level-card p,
.price-card p {
  margin: 1.2rem 0 0;
  color: var(--journey-muted);
  font-size: 1.6rem;
  line-height: 1.55;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.quote-card {
  display: flex;
  min-height: 27rem;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card blockquote {
  margin: 0;
  color: #f0f2fb;
  font-size: clamp(1.65rem, 1.5vw, 1.9rem);
  line-height: 1.65;
}

.quote-card figcaption {
  display: grid;
  margin-top: 2.4rem;
  gap: 0.5rem;
  color: var(--cs-color-accent-muted);
  font-size: 1.5rem;
  line-height: 1.3;
}

.quote-card figcaption span {
  color: rgba(229, 233, 249, 0.64);
}

.section-heading-split {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(30rem, 0.7fr);
  align-items: end;
  gap: 4rem;
  text-align: left;
}

.section-heading-split > p {
  margin: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.outcome-grid figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 0.1rem solid var(--journey-border);
  border-radius: 2rem;
  background: var(--journey-panel);
}

.outcome-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcome-grid figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(5, 7, 30, 0.78);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  backdrop-filter: blur(1rem);
}

.section-actions,
.final-cta-actions,
.mentoring-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.section-actions {
  margin-top: 2.4rem;
  justify-content: center;
}

.gradient-link,
.outline-link {
  display: inline-flex;
  min-height: 5rem;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 1.8rem;
  border-radius: 1.2rem;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.gradient-link {
  border: 0.1rem solid transparent;
  background: linear-gradient(90deg, var(--journey-purple), var(--journey-pink));
  box-shadow: 0 1.4rem 3.5rem rgba(175, 65, 218, 0.24);
}

.school-gradient {
  background: linear-gradient(90deg, #ff754d, #d843be);
}

.outline-link {
  border: 0.1rem solid rgba(37, 229, 237, 0.52);
  background: rgba(5, 10, 34, 0.5);
  color: var(--journey-accent);
}

.gradient-link:hover,
.outline-link:hover {
  transform: translateY(-0.2rem);
  filter: brightness(1.08);
}

.gradient-link:focus-visible,
.outline-link:focus-visible,
.faq-question:focus-visible {
  outline: 0.2rem solid var(--journey-accent);
  outline-offset: 0.3rem;
}

.school-credibility {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 5vw, 6rem);
}

.school-copy {
  align-items: flex-start;
}

.school-copy .gradient-link {
  margin-top: 2.4rem;
}

.school-slideshow {
  position: relative;
  min-width: 0;
  isolation: isolate;
  padding: 0.8rem;
  border: 0.1rem solid rgba(146, 221, 228, 0.28);
  border-radius: 3.2rem;
  background: linear-gradient(145deg, rgba(37, 229, 237, 0.13), rgba(216, 67, 190, 0.12)), #090b2c;
  box-shadow: 0 3rem 8rem rgba(0, 0, 0, 0.34), inset 0 0.1rem rgba(255, 255, 255, 0.08);
}

.school-slideshow::before {
  position: absolute;
  inset: 8% -5% -8% 14%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 67, 190, 0.2), transparent 68%);
  filter: blur(2.4rem);
  content: "";
  pointer-events: none;
}

.school-slides {
  overflow: hidden;
  border-radius: 2.5rem;
}

.school-slide {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.school-slide[hidden] { display: none; }
.school-slide:not([hidden]) { animation: school-slide-in 0.38s ease both; }

.school-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 6, 31, 0.4) 100%);
  content: "";
  pointer-events: none;
}

.school-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) brightness(1.04) contrast(1.02);
  transform: scale(1.01);
}

.slideshow-meta {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  left: 2.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slideshow-meta span,
.slideshow-meta strong {
  padding: 0.7rem 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.16);
  border-radius: 999rem;
  background: rgba(5, 8, 35, 0.62);
  backdrop-filter: blur(1rem);
  font-size: 1.3rem;
}

.slideshow-meta strong { color: var(--journey-accent); letter-spacing: 0.08em; }

.slideshow-actions {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  z-index: 2;
  display: flex;
  gap: 0.7rem;
}

.school-slideshow .slideshow-control {
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  padding: 0;
  place-items: center;
  border: 0.1rem solid rgba(146, 221, 228, 0.38);
  border-radius: 50%;
  background: rgba(5, 8, 35, 0.72);
  color: #fff;
  backdrop-filter: blur(1rem);
  cursor: pointer;
  font-size: 1.8rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.school-slideshow .slideshow-control:hover {
  border-color: var(--journey-accent);
  background: rgba(37, 229, 237, 0.14);
  transform: translateY(-0.15rem);
}

.slideshow-dots {
  position: absolute;
  bottom: 2.6rem;
  left: 2.2rem;
  z-index: 2;
  display: flex;
  padding: 0.85rem 1rem;
  justify-content: center;
  gap: 0.7rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.14);
  border-radius: 999rem;
  background: rgba(5, 8, 35, 0.64);
  backdrop-filter: blur(1rem);
}

.slideshow-dots button {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.slideshow-dots button[aria-current="true"] {
  background: var(--journey-accent);
  box-shadow: 0 0 1rem rgba(37, 229, 237, 0.55);
}

@keyframes school-slide-in {
  from { opacity: 0.35; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 620px) {
  .school-slideshow { padding: 0.55rem; border-radius: 2.4rem; }
  .school-slides { border-radius: 1.9rem; }
  .school-slide { aspect-ratio: 4 / 3; }
  .slideshow-meta { top: 1.4rem; right: 1.4rem; left: 1.4rem; }
  .slideshow-meta span { display: none; }
  .slideshow-meta strong { margin-left: auto; }
  .slideshow-actions { right: 1.4rem; bottom: 1.4rem; }
  .slideshow-dots { bottom: 1.7rem; left: 1.4rem; }
  .school-slideshow .slideshow-control { width: 4.1rem; height: 4.1rem; }
}

.home-final-cta {
  display: flex;
  margin-bottom: clamp(5rem, 7vw, 8rem);
  align-items: center;
  text-align: center;
  border: 0.1rem solid rgba(37, 229, 237, 0.24);
  border-radius: 3rem;
  background: radial-gradient(circle at 50% 120%, rgba(216, 67, 190, 0.2), transparent 52%), rgba(9, 12, 40, 0.72);
}

.home-final-cta > p:not(.section-kicker) {
  max-width: 68rem;
}

.final-cta-actions {
  margin-top: 2.8rem;
  justify-content: center;
}

main .route-card-bottom {
  grid-template-columns: minmax(0, 1fr);
}

main .route-card-bottom > a {
  width: fit-content;
  min-width: min(100%, 24rem);
}

/* Dedicated Online Mentoring page */
.mentoring-main > .container {
  align-items: stretch;
}

.mentoring-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(32rem, 0.72fr);
  margin-top: 0;
  padding-top: clamp(13rem, 12vw, 16rem);
  align-items: center;
  gap: clamp(3rem, 5vw, 7rem);
}

main .mentoring-hero {
  margin-top: 0;
  padding-top: clamp(13rem, 12vw, 16rem);
}

.mentoring-hero-copy .section-kicker {
  margin-bottom: 1.6rem;
}

.mentoring-hero h1 {
  max-width: 82rem;
  margin: 0;
  color: var(--journey-heading);
  font-size: clamp(4.8rem, 5.5vw, 7.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.mentoring-hero-copy > p:not(.section-kicker) {
  max-width: 75rem;
  margin: 2.2rem 0 0;
  color: #d9ddec;
  font-size: clamp(1.8rem, 1.65vw, 2.15rem);
  line-height: 1.6;
}

.mentoring-actions {
  margin-top: 2.8rem;
}

.mentoring-visual {
  position: relative;
  display: grid;
  min-height: 42rem;
  place-items: center;
  overflow: hidden;
  border: 0.1rem solid rgba(37, 229, 237, 0.3);
  border-radius: 3.4rem;
  background: linear-gradient(150deg, rgba(17, 86, 104, 0.18), rgba(74, 26, 86, 0.22));
}

.mentoring-visual img {
  width: min(22rem, 52%);
  height: auto;
  filter: drop-shadow(0 0 4rem rgba(37, 229, 237, 0.28));
}

.mentoring-code {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  padding: 1.8rem;
  gap: 0.7rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
  border-radius: 1.6rem;
  background: rgba(5, 7, 34, 0.86);
}

.mentoring-code code {
  color: #f3f4ff;
  font-size: 1.4rem;
  line-height: 1.3;
}

.mentoring-code span {
  color: var(--cs-color-accent-muted);
}

.trust-indicators {
  display: flex;
  width: min(100%, 116rem);
  margin: 0 auto;
  padding: 0 clamp(2.2rem, 4.5vw, 6rem) clamp(4.5rem, 6vw, 7rem);
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.trust-indicators li {
  padding: 1rem 1.4rem;
  border: 0.1rem solid rgba(37, 229, 237, 0.25);
  border-radius: 999rem;
  background: rgba(7, 12, 39, 0.7);
  color: #eaf7ff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-grid .journey-card:last-child {
  grid-column: span 2;
}

.benefit-journey-grid,
.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-number {
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1.8rem;
  place-items: center;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, var(--journey-purple), var(--journey-pink));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
}

.learning-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.learning-grid .journey-card:last-child {
  grid-column: span 2;
}

.journey-inline-action {
  margin-top: 2.6rem;
  text-align: center;
}

.levels-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.levels-note,
.pricing-note {
  max-width: 84rem;
  margin: 2.4rem auto 0;
  color: var(--journey-muted);
  font-size: 1.6rem;
  line-height: 1.55;
  text-align: center;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  text-align: center;
}

.price-card.featured {
  border-color: rgba(146, 221, 228, 0.4);
  background: linear-gradient(145deg, rgba(72, 39, 148, 0.7), rgba(8, 11, 39, 0.82));
}

.price-card .price {
  margin: 1.6rem 0 0;
  color: var(--cs-color-accent-muted);
  font-size: clamp(3rem, 3vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
}

.price-card .price small {
  font-size: 1.4rem;
  font-weight: 600;
}

.online-testimonials .quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  width: min(100%, 94rem);
  margin: 0 auto;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border: var(--cs-card-border);
  border-radius: var(--cs-radius-card);
  background: rgba(7, 10, 38, 0.72);
  box-shadow: var(--cs-shadow-card);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 5.8rem;
  padding: 1.6rem 1.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--journey-accent);
  font-size: 2.4rem;
  font-weight: 400;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.8rem 1.8rem;
  color: var(--journey-muted);
  font-size: 1.6rem;
  line-height: 1.65;
}

.faq-answer a {
  color: var(--journey-accent);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

main section.schedule.mentoring-booking {
  position: relative;
  width: min(100%, 124rem);
  min-height: 0;
  max-width: 124rem;
  margin: 0 auto;
  padding: clamp(5.5rem, 7vw, 9rem) clamp(2.2rem, 4.5vw, 6rem);
  scroll-margin-top: 11rem;
  overflow: hidden;
  border: var(--cs-card-border);
  border-radius: var(--cs-radius-card);
  background:
    radial-gradient(circle at 78% 8%, rgba(37, 229, 237, 0.11), transparent 31rem),
    linear-gradient(145deg, rgba(31, 30, 79, 0.93), rgba(11, 12, 47, 0.96));
  box-shadow: var(--cs-shadow-card);
  font-family: Arial, Helvetica, sans-serif;
}

main section.schedule.mentoring-booking::before {
  position: absolute;
  top: 0;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 229, 237, 0.85), transparent);
  content: "";
}

main section.schedule.mentoring-booking > * {
  position: relative;
  z-index: 1;
}

main section.schedule.mentoring-booking .schedule-content {
  display: grid;
  grid-template-columns: minmax(28rem, 0.78fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(2rem, 3vw, 3.4rem);
}

.booking-assurances {
  display: grid;
  width: min(100%, 94rem);
  margin: -1.4rem auto 3rem;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
}

.booking-assurances li {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 1.6rem 1.5rem 1.5rem;
  overflow: hidden;
  gap: 0.35rem;
  border: var(--cs-card-border);
  border-radius: var(--cs-radius-control);
  background: rgba(7, 10, 39, 0.72);
  text-align: center;
}

.booking-assurances li::before {
  position: absolute;
  top: 0;
  right: 22%;
  left: 22%;
  height: 2px;
  background: rgba(37, 229, 237, 0.72);
  content: "";
}

.booking-assurances strong { color: #fff; font-size: 1.5rem; }
.booking-assurances span { color: var(--journey-muted); font-size: 1.4rem; line-height: 1.45; }

main section.schedule.mentoring-booking .schedule-information {
  display: flex;
  width: auto;
  padding: clamp(2.2rem, 3vw, 3.2rem);
  gap: 1.8rem;
  border: var(--cs-card-border);
  border-radius: var(--cs-radius-card);
  background:
    linear-gradient(160deg, rgba(37, 229, 237, 0.055), transparent 40%),
    rgba(8, 11, 40, 0.78);
  box-shadow: var(--cs-shadow-card);
}

.booking-guide-heading,
.booking-widget-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.booking-guide-heading {
  justify-content: flex-start;
  padding-bottom: 1.8rem;
  border-bottom: var(--cs-card-border);
}

.booking-guide-number {
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  flex: 0 0 4.6rem;
  place-items: center;
  border: 1px solid rgba(37, 229, 237, 0.34);
  border-radius: 1.4rem;
  background: rgba(37, 229, 237, 0.09);
  color: var(--journey-accent);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.booking-guide-kicker {
  margin: 0 0 0.45rem;
  color: var(--journey-accent);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.booking-guide-heading h3,
.booking-widget-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 2vw, 2.7rem);
  line-height: 1.18;
}

.booking-reassurance {
  display: grid;
  padding: 1.5rem 1.6rem;
  gap: 0.35rem;
  border: 1px solid rgba(37, 229, 237, 0.26);
  border-radius: var(--cs-radius-control);
  background: rgba(37, 229, 237, 0.075);
}

.booking-reassurance strong {
  color: #fff;
  font-size: 1.5rem;
}

.booking-reassurance span {
  color: var(--journey-muted);
  font-size: 1.35rem;
  line-height: 1.5;
}

.booking-outcomes {
  padding-top: 0.2rem;
}

main section.schedule.mentoring-booking .schedule-subheading {
  margin: 0;
  color: #fff;
  font-size: 1.65rem;
}

main section.schedule.mentoring-booking .schedule-list {
  display: grid;
  margin: 1.4rem 0 0;
  padding: 0;
  gap: 1.1rem;
  list-style: none;
}

main section.schedule.mentoring-booking .schedule-list li {
  position: relative;
  margin: 0;
  padding-left: 2.5rem;
  color: #e8ebf5;
  font-size: 1.45rem;
  line-height: 1.5;
  list-style: none;
}

main section.schedule.mentoring-booking .schedule-list li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 1rem;
  height: 0.55rem;
  border-bottom: 2px solid var(--journey-accent);
  border-left: 2px solid var(--journey-accent);
  content: "";
  transform: rotate(-45deg);
}

main section.schedule.mentoring-booking .schedule-scarcity {
  margin: 0.2rem 0 0;
  padding-top: 1.6rem;
  border-top: var(--cs-card-border);
  color: var(--journey-muted);
  font-size: 1.35rem;
  font-style: normal;
  line-height: 1.55;
}

main section.schedule.mentoring-booking .schedule-scarcity strong {
  color: #fff;
}

main section.schedule.mentoring-booking .zoho-booking-widget {
  width: auto;
  margin: 0;
  padding: clamp(1.8rem, 2.5vw, 2.6rem);
  align-items: stretch;
  gap: 1.6rem;
  border: 1px solid rgba(37, 229, 237, 0.24);
  border-radius: var(--cs-radius-card);
  background: rgba(4, 6, 31, 0.86);
  box-shadow: 0 2.4rem 6rem rgba(0, 0, 0, 0.28);
}

.booking-secure {
  display: inline-flex;
  min-height: 3.2rem;
  padding: 0.65rem 1.1rem;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(37, 229, 237, 0.28);
  border-radius: 999px;
  background: rgba(37, 229, 237, 0.07);
  color: #c8f9fb;
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
}

.booking-secure::before {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--journey-accent);
  box-shadow: 0 0 1rem rgba(37, 229, 237, 0.7);
  content: "";
}

main section.schedule.mentoring-booking .booking-steps {
  display: grid;
  width: 100%;
  margin: 0;
  padding: 0.2rem 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  color: var(--journey-muted);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0;
  list-style: none;
  text-align: left;
}

main section.schedule.mentoring-booking .booking-steps li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
}

main section.schedule.mentoring-booking .booking-steps li + li::before {
  width: 1.4rem;
  height: 1px;
  flex: 0 0 1.4rem;
  background: rgba(37, 229, 237, 0.3);
  content: "";
}

main section.schedule.mentoring-booking .booking-steps span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  place-items: center;
  border: 1px solid rgba(37, 229, 237, 0.34);
  border-radius: 50%;
  color: var(--journey-accent);
  font-size: 1.1rem;
}

main section.schedule.mentoring-booking .zoho-booking-frame {
  min-height: 56rem;
  height: clamp(56rem, 72vh, 76rem);
  padding: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: calc(var(--cs-radius-card) - 0.4rem);
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(37, 229, 237, 0.08),
    0 2rem 5rem rgba(0, 0, 0, 0.26);
}

main section.schedule.mentoring-booking .zoho-booking-frame iframe {
  inset: 0.65rem;
  width: calc(100% - 1.3rem);
  height: calc(100% - 1.3rem);
  border-radius: calc(var(--cs-radius-card) - 1rem);
  box-shadow: none;
}

.booking-widget-help {
  display: grid;
  padding-top: 0.3rem;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
}

.booking-next-step {
  display: grid;
  padding: 1.3rem 1.4rem;
  gap: 0.35rem;
  border: var(--cs-card-border);
  border-radius: var(--cs-radius-control);
  background: rgba(37, 229, 237, 0.06);
}

.booking-next-step strong { color: #fff; font-size: 1.35rem; }
.booking-next-step span { color: var(--journey-muted); font-size: 1.4rem; line-height: 1.5; }
.booking-next-step a { color: var(--journey-accent); text-underline-offset: 0.2rem; }

main section.schedule.mentoring-booking .schedule-helper,
main section.schedule.mentoring-booking .booking-fallback {
  margin: 0;
  color: var(--journey-muted);
  font-size: 1.4rem;
  line-height: 1.55;
}

main section.schedule.mentoring-booking .booking-fallback {
  max-width: none;
  text-align: left;
}

.comparison-table {
  overflow-x: auto;
  border: var(--cs-card-border);
  border-radius: var(--cs-radius-card);
  background: rgba(7, 10, 39, 0.72);
  box-shadow: var(--cs-shadow-card);
}

.comparison-table table { width: 100%; min-width: 72rem; border-collapse: collapse; }
.comparison-table th,
.comparison-table td { padding: 1.55rem 1.8rem; border-bottom: var(--cs-card-border); color: var(--journey-muted); font-size: 1.5rem; line-height: 1.5; text-align: left; vertical-align: top; }
.comparison-table thead th { background: rgba(255, 255, 255, 0.035); color: #fff; font-size: 1.35rem; letter-spacing: 0.04em; }
.comparison-table tbody th { width: 19%; color: #fff; }
.comparison-table tbody td:nth-child(2) { color: #eefcff; font-weight: 700; }
.comparison-table tr:last-child th,
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-note { max-width: 82rem; margin: 1.4rem auto 0; color: var(--journey-muted); font-size: 1.3rem; line-height: 1.55; text-align: center; }

.booking-fallback {
  margin-top: 1.8rem;
  color: var(--journey-muted);
  font-size: 1.5rem;
  line-height: 1.5;
}

.booking-fallback a {
  color: var(--journey-accent);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.contact-alternative {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  margin-bottom: clamp(5rem, 7vw, 8rem) !important;
  border: var(--cs-card-border);
  border-radius: var(--cs-radius-card);
  background: rgba(8, 11, 40, 0.7);
  box-shadow: var(--cs-shadow-card);
}

.contact-alternative h2 {
  font-size: clamp(2.8rem, 3vw, 4.2rem);
}

.contact-alternative p {
  margin: 1.2rem 0 0;
  color: var(--journey-muted);
  font-size: 1.65rem;
  line-height: 1.55;
}

.faq-question-text {
  min-width: 0;
}

.booking-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  padding: 3rem;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  border: var(--cs-card-border);
  border-radius: var(--cs-radius-control);
  background: rgba(7, 10, 39, 0.96);
  color: #fff;
  text-align: center;
}

.booking-loading[hidden] {
  display: none;
}

.booking-loading span {
  width: 3.8rem;
  height: 3.8rem;
  border: 0.35rem solid rgba(37, 229, 237, 0.2);
  border-top-color: var(--journey-accent);
  border-radius: 50%;
  animation: booking-spin 0.9s linear infinite;
}

.booking-loading strong { font-size: 1.7rem; }
.booking-loading small { color: var(--journey-muted); font-size: 1.4rem; }
.booking-loading a { color: var(--journey-accent); }

@keyframes booking-spin { to { transform: rotate(360deg); } }

@media screen and (max-width: 1100px) {
  .home-card-grid,
  .journey-card-grid,
  .audience-grid,
  .benefit-journey-grid,
  .steps-grid,
  .learning-grid,
  .pricing-grid,
  .online-testimonials .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid .journey-card:last-child,
  .learning-grid .journey-card:last-child {
    grid-column: auto;
  }

  .mentoring-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .mentoring-visual {
    width: min(100%, 70rem);
    justify-self: center;
  }
}
@media screen and (max-width: 1130px) and (min-width: 621px) {
  main section.welcome #intro-logo {
    top: 52%;
    width: min(18rem, 33%);
    max-height: 19rem;
  }
}

@media screen and (max-width: 900px) {
  main section.schedule.mentoring-booking .schedule-content {
    grid-template-columns: minmax(0, 1fr);
  }

  main section.schedule.mentoring-booking .schedule-information,
  main section.schedule.mentoring-booking .zoho-booking-widget {
    width: 100%;
  }

  .booking-widget-help {
    grid-template-columns: minmax(0, 1fr);
  }

  main section.schedule.mentoring-booking .booking-fallback {
    max-width: none;
    text-align: left;
  }

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

  .school-credibility,
  .section-heading-split,
  .contact-alternative {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading-split {
    gap: 1.6rem;
  }

  .levels-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-alternative {
    justify-items: start;
  }
}

@media screen and (max-width: 620px) {
  header .logo img {
    width: 4rem;
    height: 4rem;
  }

  main .home-section,
  main .home-final-cta,
  main .journey-section,
  main .mentoring-hero,
  main section.schedule.mentoring-booking {
    padding: 4.8rem 2.2rem;
  }

  main .route-section {
    margin-bottom: 2rem;
  }

  main .route-card-bottom > a {
    width: 100%;
  }

  main .route-card {
    min-height: 35.5rem;
  }

  .home-card-grid,
  .journey-card-grid,
  .audience-grid,
  .benefit-journey-grid,
  .steps-grid,
  .learning-grid,
  .pricing-grid,
  .quote-grid,
  .online-testimonials .quote-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-card {
    min-height: 0;
  }

  .section-heading,
  .section-heading-split {
    margin-bottom: 2.8rem;
  }

  .home-final-cta {
    width: calc(100% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    border-radius: 2.2rem;
  }

  .final-cta-actions,
  .mentoring-actions,
  .section-actions {
    width: 100%;
    flex-direction: column;
  }

  .gradient-link,
  .outline-link {
    width: 100%;
  }

  main .mentoring-hero {
    margin-top: 0;
    padding-top: 12rem;
  }

  .mentoring-hero h1 {
    font-size: clamp(4.1rem, 12vw, 5.2rem);
  }

  .mentoring-visual {
    min-height: 36rem;
  }

  .mentoring-visual img {
    width: 14rem;
    transform: translateY(-3.5rem);
  }

  main section.welcome #intro-logo {
    top: 50%;
    width: min(14rem, 40%);
    max-height: 15rem;
    transform: translate(-50%, -58%);
  }

  main section.welcome .hero-feedback-card {
    bottom: 0.2rem;
  }

  main section.schedule.mentoring-booking .schedule-content {
    gap: 2.4rem;
  }

  .booking-assurances { grid-template-columns: 1fr; }

  main section.schedule.mentoring-booking .zoho-booking-frame {
    min-height: 58rem;
    height: min(72rem, 82vh);
  }

  main section.schedule.mentoring-booking .booking-steps {
    width: 100%;
    line-height: 1.55;
    text-align: left;
  }

  .booking-widget-heading {
    align-items: flex-start;
  }

  .booking-secure {
    margin-top: 0.2rem;
  }

  main section.schedule.mentoring-booking .booking-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.7rem;
  }

  main section.schedule.mentoring-booking .booking-steps li + li::before {
    display: none;
  }
}
.student-projects-hero,
.student-projects-practice,
.student-projects-gallery,
.student-projects-next,
.student-projects-cta,
.recruitment-section,
.recruitment-requirements {
  box-sizing: border-box;
  width: min(100%, 1180px);
  margin-inline: auto;
}

.utility-student-projects main {
  font-family: Arial, Helvetica, sans-serif;
}

.utility-student-projects main > .container {
  box-sizing: border-box;
  display: flex;
  width: min(100%, 128rem);
  padding: 0 clamp(1.6rem, 4vw, 5rem) clamp(6rem, 8vw, 9rem);
  flex-direction: column;
  align-items: stretch;
}

.student-projects-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(42rem, 1.08fr);
  gap: clamp(3rem, 5vw, 6rem);
  margin-top: 11rem;
  padding: clamp(4rem, 6vw, 6.5rem);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(71, 218, 231, 0.24);
  border-radius: var(--cs-radius-xl, 32px);
  background:
    radial-gradient(circle at 92% 6%, rgba(207, 64, 196, 0.23), transparent 36%),
    radial-gradient(circle at 8% 94%, rgba(35, 219, 232, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(22, 31, 82, 0.98), rgba(29, 20, 67, 0.98));
  box-shadow: 0 2.8rem 8rem rgba(2, 4, 28, 0.24);
}

.student-projects-hero-copy {
  position: relative;
  z-index: 2;
}

.student-projects-hero .title {
  max-width: 64rem;
  margin: 1rem 0 1.8rem;
  color: #f6f7ff;
  font-size: clamp(4.8rem, 5.2vw, 7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-align: left;
}

.student-projects-hero .title::after,
.student-projects-heading .title::after,
.student-projects-next .title::after {
  display: none;
}

.student-projects-hero .description {
  max-width: 62rem;
  margin: 0;
  color: #d2d8e9;
  font-size: clamp(1.7rem, 1.55vw, 2rem);
  line-height: 1.6;
  text-align: left;
}

.eyebrow {
  margin: 0;
  color: #72e7ee;
  font-family: "Ubuntu Mono", monospace;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.student-projects-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

.student-projects-actions a {
  display: inline-flex;
  min-height: 5.2rem;
  padding: 1.2rem 1.8rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--cs-radius-control, 14px);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.student-projects-actions .gradient-button {
  border: 1px solid transparent;
  background: linear-gradient(120deg, #7945f3, #d63dbf);
  color: #fff;
  box-shadow: 0 1.2rem 3rem rgba(166, 58, 214, 0.22);
}

.student-projects-actions .outline-button {
  border: 1px solid rgba(66, 220, 230, 0.58);
  background: rgba(7, 10, 45, 0.38);
  color: #72e7ee;
}

.student-projects-actions a:hover,
.student-projects-actions a:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.student-projects-showcase {
  position: relative;
  min-width: 0;
}

.student-projects-showcase figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(111, 235, 241, 0.35);
  border-radius: 2.4rem;
  background: #080a2b;
  box-shadow: 0 2.4rem 6rem rgba(2, 4, 28, 0.35);
}

.student-projects-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.student-projects-showcase figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem 1.8rem;
}

.student-projects-showcase figcaption span {
  color: #72e7ee;
  font: 700 1.3rem/1.2 "Ubuntu Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.student-projects-showcase figcaption strong {
  color: #f8f8ff;
  font-size: 1.7rem;
}

.student-projects-process {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.student-projects-process span {
  display: grid;
  min-height: 7rem;
  padding: 1rem;
  align-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(71, 218, 231, 0.18);
  border-radius: 1.3rem;
  background: rgba(7, 10, 45, 0.72);
  color: #e8f8fa;
  font-size: 1.2rem;
  line-height: 1.3;
}

.student-projects-process b {
  color: #72e7ee;
  font: 700 1.3rem/1 "Ubuntu Mono", monospace;
}

.student-projects-practice {
  display: grid;
  margin-top: 1.4rem;
  padding: 1.1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  border: 1px solid rgba(110, 232, 240, 0.13);
  border-radius: 2rem;
  background: rgba(9, 12, 48, 0.72);
}

.student-projects-practice p {
  display: grid;
  margin: 0;
  padding: 1.2rem;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 0.9rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.025);
}

.student-projects-practice span {
  grid-row: 1 / span 2;
  color: #72e7ee;
  font: 700 1.3rem/1.2 "Ubuntu Mono", monospace;
}

.student-projects-practice strong {
  color: #fff;
  font-size: 1.45rem;
}

.student-projects-practice small {
  color: #afb8cf;
  font-size: 1.4rem;
  line-height: 1.45;
}

.student-projects-gallery {
  padding-block: clamp(6rem, 9vw, 9rem);
}

.student-projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(32rem, 0.65fr);
  gap: 3rem;
  margin-bottom: 3.2rem;
  align-items: end;
}

.student-projects-heading .title,
.student-projects-next .title {
  margin: 0.8rem 0 0;
  color: #f6f7ff;
  font-size: clamp(3.8rem, 4.5vw, 5.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-align: left;
}

.student-projects-heading > p {
  margin: 0;
  color: #c4c7df;
  font-size: 1.6rem;
  line-height: 1.65;
}

.student-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.student-project-card {
  box-sizing: border-box;
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(110, 232, 240, 0.17);
  border-radius: 2.2rem;
  background: rgba(11, 14, 57, 0.82);
  box-shadow: 0 1.8rem 5rem rgba(2, 4, 28, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.student-project-card:hover {
  border-color: rgba(110, 232, 240, 0.42);
  transform: translateY(-0.4rem);
}

.student-project-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.7fr) minmax(30rem, 0.8fr);
}

.student-project-image {
  display: grid;
  min-height: 30rem;
  place-items: center;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(17, 42, 83, 0.75), rgba(60, 31, 92, 0.58));
}

.student-project-card-featured .student-project-image {
  min-height: 44rem;
}

.student-project-image img {
  width: 100%;
  height: 100%;
  max-height: 44rem;
  object-fit: contain;
}

.student-project-card figcaption {
  display: flex;
  padding: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.student-project-card figcaption small {
  margin-bottom: auto;
  color: #7d87a3;
  font: 700 1.3rem/1.2 "Ubuntu Mono", monospace;
}

.student-project-card figcaption span {
  margin-top: 1.8rem;
  color: #72e7ee;
  font: 700 1.3rem/1.2 "Ubuntu Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.student-project-card figcaption strong {
  margin-top: 0.8rem;
  color: #f7f7ff;
  font-size: 2rem;
  line-height: 1.2;
}

.student-project-card-featured figcaption strong {
  font-size: clamp(2.4rem, 2.4vw, 3.3rem);
}

.student-project-card figcaption p {
  margin: 1rem 0 0;
  color: #bfc3db;
  font-size: 1.45rem;
  line-height: 1.6;
}

.student-projects-next {
  display: grid;
  grid-template-columns: minmax(26rem, 0.72fr) minmax(0, 1.28fr);
  gap: 3rem;
  padding: clamp(3rem, 5vw, 5rem);
  border: 1px solid rgba(204, 62, 205, 0.24);
  border-radius: var(--cs-radius-xl, 32px);
  background:
    radial-gradient(circle at 92% 10%, rgba(207, 64, 196, 0.13), transparent 38%),
    rgba(17, 19, 69, 0.76);
}

.student-projects-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.student-projects-paths a {
  box-sizing: border-box;
  display: grid;
  min-height: 21rem;
  padding: 2rem;
  align-content: space-between;
  border: 1px solid rgba(71, 218, 231, 0.2);
  border-radius: 2rem;
  background: rgba(5, 9, 42, 0.68);
  color: #f7f7ff;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.student-projects-paths a:hover,
.student-projects-paths a:focus-visible {
  border-color: #42dce6;
  background: rgba(10, 20, 62, 0.9);
  transform: translateY(-3px);
}

.student-projects-paths span,
.student-projects-paths small {
  color: #72e7ee;
  font-family: "Ubuntu Mono", monospace;
  font-size: 1.3rem;
}

.student-projects-paths strong {
  margin-block: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.35;
}

.student-projects-cta {
  display: flex;
  margin-top: 1.4rem;
  padding: clamp(3rem, 5vw, 5rem);
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border: 1px solid rgba(71, 218, 231, 0.2);
  border-radius: var(--cs-radius-xl, 32px);
  background: linear-gradient(135deg, rgba(17, 37, 76, 0.86), rgba(45, 22, 70, 0.82));
}

.student-projects-cta > div:first-child {
  max-width: 65rem;
}

.student-projects-cta h2 {
  margin: 0.8rem 0 1rem;
  color: #fff;
  font-size: clamp(3rem, 3.7vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.student-projects-cta p:last-child {
  margin: 0;
  color: #c7cce0;
  font-size: 1.55rem;
  line-height: 1.6;
}

.student-projects-cta .student-projects-actions {
  min-width: min(100%, 28rem);
  margin-top: 0;
  flex-direction: column;
}

.student-projects-cta .student-projects-actions a {
  width: 100%;
}

.recruitment-section {
  margin-top: clamp(4rem, 9vw, 8rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(110, 232, 240, 0.15);
  border-radius: var(--radius-large, 32px) var(--radius-large, 32px) 0 0;
  background: rgba(10, 13, 52, 0.7);
}

.recruitment-section > .title,
.recruitment-requirements > .title {
  margin-top: 0.5rem;
}

.recruitment-requirements {
  padding: 0 clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(110, 232, 240, 0.15);
  border-top: 0;
  border-radius: 0 0 var(--radius-large, 32px) var(--radius-large, 32px);
  background: rgba(10, 13, 52, 0.7);
}

@media (max-width: 1050px) {
  .student-projects-hero,
  .student-projects-heading,
  .student-projects-next {
    grid-template-columns: 1fr;
  }

  .student-projects-hero {
    margin-top: 10rem;
  }

  .student-projects-practice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .student-project-card-featured {
    grid-template-columns: minmax(0, 1.3fr) minmax(26rem, 0.7fr);
  }
}

@media (max-width: 820px) {
  .student-projects-hero,
  .recruitment-section,
  .recruitment-requirements {
    padding-inline: 2rem;
  }

  .student-projects-process {
    grid-template-columns: 1fr;
  }

  .student-project-grid,
  .student-projects-paths {
    grid-template-columns: 1fr;
  }

  .student-project-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .student-project-card-featured .student-project-image {
    min-height: 28rem;
  }

  .student-project-image {
    min-height: 230px;
  }

  .student-projects-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .student-projects-cta .student-projects-actions {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .utility-student-projects main > .container {
    padding-inline: 1rem;
  }

  .student-projects-hero {
    padding: 2.4rem 1.6rem;
    border-radius: 2.2rem;
  }

  .student-projects-hero .title {
    font-size: clamp(4rem, 14vw, 5rem);
  }

  .student-projects-practice {
    grid-template-columns: 1fr;
  }

  .student-projects-actions,
  .student-projects-actions a {
    width: 100%;
  }

  .student-projects-next,
  .student-projects-cta {
    padding: 2.4rem 1.8rem;
    border-radius: 2.2rem;
  }
}

/* Work with us */
.utility-work main {
  font-family: Arial, Helvetica, sans-serif;
}

.utility-work main > .container {
  box-sizing: border-box;
  width: min(100%, 128rem);
  padding: 0 clamp(1.6rem, 4vw, 5rem) clamp(5rem, 8vw, 9rem);
}

.utility-work .recruitment-hero,
.utility-work .recruitment-section,
.utility-work .recruitment-requirements,
.utility-work .recruitment-final-cta {
  box-sizing: border-box;
  width: min(100%, 118rem);
  margin-inline: auto;
}

.utility-work .recruitment-hero {
  display: grid;
  min-height: 0;
  margin-top: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(28rem, 0.65fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  border: 0.1rem solid rgba(71, 218, 231, 0.23);
  border-radius: 3.2rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(206, 59, 200, 0.24), transparent 35%),
    linear-gradient(145deg, rgba(23, 32, 84, 0.98), rgba(31, 20, 68, 0.98));
  box-shadow: 0 3rem 8rem rgba(2, 4, 28, 0.22);
  overflow: hidden;
}

.utility-work .recruitment-hero-copy {
  min-width: 0;
}

.utility-work .recruitment-hero .title {
  max-width: 72rem;
  margin: 0.8rem 0 1.8rem;
  color: #f7f7ff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(4.2rem, 6.4vw, 7.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-align: left;
}

.utility-work .recruitment-hero .description {
  max-width: 68rem;
  margin: 0;
  color: #c7cbe1;
  font-size: clamp(1.7rem, 1.8vw, 2.1rem);
  line-height: 1.62;
  text-align: left;
}

.recruitment-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.8rem;
}

.recruitment-primary-cta,
.recruitment-secondary-cta {
  display: inline-flex;
  min-height: 5.4rem;
  padding: 1.2rem 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem;
  font-size: 1.7rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.recruitment-primary-cta {
  border: 0.1rem solid transparent;
  background: linear-gradient(120deg, #7d42ef, #d63cbd);
  box-shadow: 0 1.4rem 3.2rem rgba(154, 55, 210, 0.24);
  color: #fff;
}

.recruitment-secondary-cta {
  border: 0.1rem solid rgba(71, 218, 231, 0.5);
  background: rgba(6, 10, 43, 0.45);
  color: #77e8ef;
}

.recruitment-primary-cta:hover,
.recruitment-primary-cta:focus-visible,
.recruitment-secondary-cta:hover,
.recruitment-secondary-cta:focus-visible {
  transform: translateY(-0.2rem);
}

.recruitment-primary-cta:focus-visible,
.recruitment-secondary-cta:focus-visible {
  outline: 0.2rem solid #fff;
  outline-offset: 0.3rem;
}

.recruitment-email {
  margin: 1.6rem 0 0;
  color: #9da4c3;
  font: 700 1.35rem/1.4 "Ubuntu Mono", monospace;
}

.recruitment-email span {
  color: #72e7ee;
}

.recruitment-summary {
  padding: 1.4rem;
  border: 0.1rem solid rgba(71, 218, 231, 0.22);
  border-radius: 2.2rem;
  background: rgba(6, 9, 42, 0.68);
}

.recruitment-summary-label {
  margin: 0;
  padding: 0.6rem 0.8rem 1.2rem;
  color: #72e7ee;
  font: 700 1.3rem/1.2 "Ubuntu Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recruitment-summary ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruitment-summary li {
  display: grid;
  padding: 1.4rem 0.8rem;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1.2rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.09);
}

.recruitment-summary strong {
  color: #8feaf0;
  font: 700 1.35rem/1.4 "Ubuntu Mono", monospace;
}

.recruitment-summary span {
  color: #f4f4fc;
  font-size: 1.45rem;
  line-height: 1.4;
}

.utility-work .recruitment-section {
  margin-top: clamp(5rem, 9vw, 9rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.recruitment-heading {
  width: min(100%, 76rem);
  margin: 0 0 3rem;
  align-self: flex-start;
  text-align: left;
}

.recruitment-heading .title {
  margin: 0.7rem 0 0;
  color: #f6f6fd;
  font-size: clamp(3.2rem, 4.8vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: left;
}

.recruitment-heading-split {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 0.65fr);
  align-items: end;
  gap: 4rem;
}

.recruitment-heading-split > p {
  margin: 0;
  color: #b8bdd5;
  font-size: 1.7rem;
  line-height: 1.6;
}

.recruitment-card-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.recruitment-card {
  display: flex;
  min-width: 0;
  padding: clamp(2.4rem, 3.5vw, 3.8rem);
  flex-direction: column;
  align-items: flex-start;
  border: 0.1rem solid rgba(110, 232, 240, 0.17);
  border-radius: 2.2rem;
  background: rgba(10, 13, 52, 0.74);
  box-shadow: 0 2rem 5rem rgba(2, 4, 28, 0.17);
  text-align: left;
}

.recruitment-card-required {
  border-color: rgba(71, 218, 231, 0.34);
  background:
    linear-gradient(145deg, rgba(14, 40, 74, 0.74), rgba(16, 16, 61, 0.76));
}

.recruitment-card-number,
.recruitment-card-tag {
  display: inline-flex;
  min-height: 2.8rem;
  padding: 0.45rem 0.8rem;
  align-items: center;
  border: 0.1rem solid rgba(71, 218, 231, 0.24);
  border-radius: 999px;
  color: #72e7ee;
  font: 700 1.2rem/1 "Ubuntu Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recruitment-card .card-title {
  margin: 1.8rem 0 1rem;
  color: #f5f5fc;
  font-size: clamp(2.2rem, 2.5vw, 3rem);
  line-height: 1.15;
}

.recruitment-card .card-list {
  display: grid;
  margin: 1rem 0 0;
  padding: 0;
  gap: 1.25rem;
  color: #c2c6dc;
  font-size: 1.6rem;
  line-height: 1.5;
  list-style: none;
}

.recruitment-card .card-list li {
  position: relative;
  margin: 0;
  padding-left: 2rem;
}

.recruitment-card .card-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #52dce6;
  box-shadow: 0 0 1.2rem rgba(82, 220, 230, 0.45);
  content: "";
}

.utility-work .recruitment-requirements {
  margin-top: clamp(5rem, 8vw, 8rem);
  padding: clamp(3rem, 6vw, 5rem);
  border: 0.1rem solid rgba(204, 62, 205, 0.22);
  border-radius: 3rem;
  background:
    radial-gradient(circle at 95% 5%, rgba(204, 62, 205, 0.14), transparent 38%),
    rgba(14, 16, 61, 0.72);
}

.utility-work .recruitment-final-cta {
  display: grid;
  margin-top: 2rem;
  padding: clamp(2.8rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  border: 0.1rem solid rgba(71, 218, 231, 0.2);
  border-radius: 2.4rem;
  background: rgba(8, 11, 47, 0.8);
}

.recruitment-final-cta > div {
  text-align: left;
}

.recruitment-final-cta .title {
  margin: 0.5rem 0 0.8rem;
  color: #f7f7ff;
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  line-height: 1.05;
  text-align: left;
}

.recruitment-final-cta p:last-child {
  max-width: 70rem;
  margin: 0;
  color: #b9bed5;
  font-size: 1.6rem;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .utility-work .recruitment-hero,
  .recruitment-heading-split,
  .utility-work .recruitment-final-cta {
    grid-template-columns: 1fr;
  }

  .utility-work .recruitment-hero {
    padding: 3rem 2rem;
  }

  .recruitment-card-grid {
    grid-template-columns: 1fr;
  }

  .recruitment-heading-split {
    gap: 1.5rem;
  }

  .utility-work .recruitment-requirements {
    padding: 2.5rem 1.6rem;
  }

  .recruitment-final-cta .recruitment-primary-cta {
    width: 100%;
  }
}
