@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/Inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter/Inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter/Inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/Inter-700.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter/Inter-800.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/inter/Inter-900.ttf") format("truetype");
}

:root {
  --bg-main: #050b1a;
  --bg-alt: #080e1e;
  --bg-hero: #030914;
  --bg-card: #0d1528;
  --line-soft: rgba(255, 255, 255, 0.05);
  --line-cyan: rgba(77, 182, 217, 0.35);
  --text-main: #ffffff;
  --text-soft: #d1d5dc;
  --text-muted: #99a1af;
  --text-dim: #6a7282;
  --text-faint: #4a5565;
  --cyan: #4db6d9;
  --danger: #fb2c36;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-container {
  max-width: 1280px;
}

.hero-section {
  position: relative;
  background: var(--bg-hero);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}

.hero-glow-right {
  width: 700px;
  height: 700px;
  right: -60px;
  top: 65px;
  background: rgba(77, 182, 217, 0.08);
  filter: blur(120px);
}

.hero-glow-left {
  width: 400px;
  height: 500px;
  left: -120px;
  top: 174px;
  background: rgba(77, 182, 217, 0.05);
  filter: blur(100px);
}

.navbar {
   /* border-bottom: 1px solid rgba(255, 255, 255, 0.04); */
  background: transparent;
}

.main-nav {
  gap: 40px;
}

.navbar-brand {
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-link {
  color: #d1d5dc;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 20px;
  padding: 0 !important;
}

.nav-link:hover,
.nav-link:focus {
  color: #4db6d9;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(209, 213, 220, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  filter: none;
}

.nav-logo {
  height: 36px !important;
}

.btn-cyan {
  background: var(--cyan);
  color: #fff;
  border-radius: 14px;
  border: 0;
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500 !important;
  line-height: 20px;
  letter-spacing: 0.2px;
  background: #4db6d9 !important;
  border-color: #4db6d9 !important;
  box-shadow: none;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus,
.nav-cta:focus-visible {
  color: #fff !important;
  background: #4db6d9 !important;
  border-color: #4db6d9 !important;
  box-shadow:
    0 10px 15px -3px rgba(77, 182, 217, 0.4),
    0 4px 6px -4px rgba(77, 182, 217, 0.4) !important;
}

.btn-cyan:hover,
.btn-cyan:focus {
  color: #fff;
  background: #63c0e0;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.95rem 1rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(5, 11, 26, 0.94);
    backdrop-filter: blur(6px);
  }

  .main-nav {
    gap: 12px;
    align-items: center !important;
  }

  .nav-link {
    padding: 0.35rem 0 !important;
    display: block;
    text-align: center;
  }

  .main-nav .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    width: 100%;
    margin-top: 0.4rem;
  }
}

.btn-outline-soft {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  border-radius: 14px;
  background: transparent;
}

.btn-outline-soft:hover,
.btn-outline-soft:focus {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn-primary {
  max-width: 100%;
  height: 56px;
  padding: 16px 32px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #ffffff;
}

.hero-btn-primary::after {
  content: "\2192";
  font-size: 16px;
  line-height: 1;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus,
.hero-btn-primary:focus-visible {
  color: #fff !important;
  background: #4db6d9 !important;
  border-color: #4db6d9 !important;
  box-shadow:
    0 10px 15px -3px rgba(77, 182, 217, 0.4),
    0 4px 6px -4px rgba(77, 182, 217, 0.4) !important;
}

.hero-btn-secondary {
  width: 191.05px;
  max-width: 100%;
  height: 58px;
  padding: 16px 32px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #99a1af;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus,
.hero-btn-secondary:focus-visible {
  color: #4db6d9 !important;
  border-color: rgba(77, 182, 217, 0.55) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-main {
  min-height: 660px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(77, 182, 217, 0.3);
  background: rgba(77, 182, 217, 0.1);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 600;
}

.dot-cyan {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  background: var(--cyan);
}

.dot-red {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: #fb2c36;
  opacity: 0.681746;
}

.hero-title {
  font-size: 67.2px;
  line-height: 70.6px;
  letter-spacing: -1.5px;
  margin: 0;
  font-weight: 900;
}

.hero-line-2 {
  white-space: nowrap;
}

.text-cyan {
  color: var(--cyan);
}

.text-muted-light {
  color: var(--text-muted);
}

.hero-copy {
  color: var(--text-muted);
  max-width: 448px;
  font-size: 1rem;
  line-height: 1.75;
}

.hero-copy strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-batch-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a5565;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
}

.hero-batch-highlight {
  color: #99a1af;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 500px;
}

.hero-stat {
  padding: 0.4rem 0.8rem 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.hero-stat-last {
  border-right: 0;
}

.hero-stat h2 {
  margin: 0;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.07px;
  font-weight: 700;
}

.hero-stat p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #4a5565;
}

.hero-visual-card {
  position: relative;
  z-index: 2;
  background: #091325;
  border: 1px solid rgba(77, 182, 217, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: none;
}

.hero-dashboard {
  display: block;
  width: 100%;
}

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

.hero-visual-col::before {
  content: "";
  position: absolute;
  width: 403.2px;
  height: 316.8px;
  left: 46%;
  top: 44%;
  transform: translate(-50%, -50%);
  border-radius: 999999px;
  background: rgba(77, 182, 217, 0.25);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-pill {
  position: absolute;
  z-index: 3;
  font-size: 0.62rem;
  background: var(--cyan);
  color: #fff;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(77, 182, 217, 0.28);
}

.hero-pill-right {
  top: 1rem;
  right: 1rem;
}

.hero-pill-left {
  top: 44%;
  left: 1rem;
  background: #0b1525;
  border: 1px solid rgba(0, 188, 125, 0.3);
}

.hero-pill-left strong {
  display: block;
  margin-top: 0.1rem;
  color: #00d492;
  font-family: Menlo, Consolas, monospace;
}

.hero-ticker-wrap {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 41px;
  padding: 13px 0 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
  margin-top: 1rem;
  overflow: hidden;
}

.hero-ticker-track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  height: 16px;
  white-space: nowrap;
  color: #4a5565;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.3px;
  padding: 0 1rem;
  min-width: max-content;
  animation: hero-ticker-scroll 32s linear infinite;
  will-change: transform;
}

.hero-ticker-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.hero-ticker-track span::before {
  content: "\2714";
  margin-right: 6px;
  color: #9c6e33;
}

.hero-ticker-track span::after {
  content: "|";
  margin-left: 40px;
  color: rgba(74, 85, 101, 0.45);
}

@keyframes hero-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ticker-track {
    animation: none;
  }

  .info-line,
  .info-line::before,
  .info-line::after,
  .info-line span,
  .mini-metric,
  .mini-metric-icon,
  .mini-metric h4,
  .mini-metric p,
  .mini-metric small {
    transition: none;
  }

  .info-line:hover::after {
    animation: none;
  }

  .mini-metric:hover {
    transform: none;
  }

  .mini-metric-with-icon:hover .mini-metric-icon {
    transform: none;
    filter: none;
  }
}

.section-shell {
  background: var(--bg-main) !important;
}

.section-alt {
  background: var(--bg-alt) !important;
}

.section-pad {
  padding: 80px 0 80px;
}

.border-top-soft {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
}

#mentor .section-head h2 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.371094px;
  text-align: center;
  color: #ffffff;
}

#curriculum .section-head h2 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.371094px;
  text-align: center;
  color: #ffffff;
}

#how-it-works .section-head h2,
#our-edge .section-head h2,
#student-results .section-head h2 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.371094px;
  text-align: center;
  color: #ffffff;
}

.section-head .subtext,
.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

#mentor .eyebrow {
  color: #4db6d9;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2.64961px;
  text-transform: uppercase;
  text-align: center;
}

#curriculum .eyebrow {
  color: #4db6d9;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2.64961px;
  text-transform: uppercase;
  text-align: center;
}

#how-it-works .eyebrow,
#our-edge .eyebrow,
#student-results .eyebrow {
  color: #4db6d9;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2.64961px;
  text-transform: uppercase;
  text-align: center;
}

#curriculum .section-head .subtext {
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  text-align: center;
  letter-spacing: -0.150391px;
  color: #99a1af;
}

#our-edge .section-head .subtext {
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  text-align: center;
  letter-spacing: -0.150391px;
  color: #99a1af;
}

.mentor-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d1528;
}

.mentor-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, rgba(5, 11, 26, 0) 0%, rgba(5, 11, 26, 0.95) 70%);
  padding: 1.2rem;
}

.mentor-overlay h3 {
  font-size: 1.25rem;
  margin: 0 0 0.2rem;
  font-weight: 700;
}

.mentor-overlay p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.mentor-badge {
  position: absolute;
  border-radius: 14px;
  font-size: 0.78rem;
}

.mentor-badge-top {
  right: 1rem;
  top: 1rem;
  background: var(--cyan);
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  display: grid;
  text-align: center;
}

.mentor-badge-top small {
  font-size: 0.65rem;
  opacity: 0.95;
}

.mentor-badge-left {
  left: 1rem;
  top: 5rem;
  background: #050b1a;
  border: 1px solid rgba(251, 44, 54, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
}

.mentor-badge-left small {
  display: block;
  color: var(--text-muted);
}

.mentor-badge-left strong {
  display: block;
  font-size: 0.82rem;
}

.mentor-quote {
  box-sizing: border-box;
  width: 100%;
  max-width: 616px;
  min-height: 148.55px;
  background: #0d1528;
  border: 1px solid rgba(77, 182, 217, 0.2);
  border-radius: 16px;
  padding: 25px;
  position: relative;
}

.mentor-quote p {
  margin: 0;
  padding-left: 16px;
  min-height: 62.55px;
  max-width: 550px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: 18.4px;
  line-height: 31px;
  letter-spacing: -0.442031px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.mentor-quote p::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 32px;
  height: 32px;
  background: url("../images/exclamation.png") no-repeat center / contain;
}

.mentor-quote span {
  margin-top: 16px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4db6d9;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
}

.mentor-quote span::before {
  content: "";
  width: 32px;
  height: 2px;
  background: #4db6d9;
  flex: 0 0 32px;
}

.info-stack {
  display: grid;
  gap: 0.75rem;
}

.info-line {
  box-sizing: border-box;
  background: #0d1528;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  min-height: 48.75px;
  padding: 13px 20px 13px 49px;
  color: #d1d5dc;
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  letter-spacing: -0.150391px;
  position: relative;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
  will-change: transform, box-shadow, border-color;
}

.info-line::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(77, 182, 217, 0.3);
  background: rgba(77, 182, 217, 0.15);
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  transition: border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.info-line::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4db6d9;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.info-line span {
  display: block;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.150391px;
  color: #d1d5dc;
  transition: color 0.28s ease;
}

.info-line:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 182, 217, 0.45);
  background: #0f1b32;
  box-shadow: 0 10px 22px rgba(2, 9, 20, 0.45), 0 0 0 1px rgba(77, 182, 217, 0.18) inset;
}

.info-line:hover::before {
  border-color: rgba(77, 182, 217, 0.65);
  background: rgba(77, 182, 217, 0.22);
  box-shadow: 0 0 0 3px rgba(77, 182, 217, 0.13);
}

.info-line:hover::after {
  transform: translateY(-50%) scale(1.18);
  box-shadow: 0 0 0 6px rgba(77, 182, 217, 0.15);
  animation: info-dot-pulse 1.2s ease-in-out infinite;
}

.info-line:hover span {
  color: #e6edf8;
}

@keyframes info-dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(77, 182, 217, 0.08);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(77, 182, 217, 0.2);
  }
}

.mini-metric {
  background: #0d1528;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  min-height: 106px;
  padding: 17px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
  will-change: transform, box-shadow;
}

.mini-metric-with-icon {
  justify-content: flex-start;
}

.mini-metric-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-bottom: 8px;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.mini-metric h4 {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.439453px;
  transition: color 0.28s ease, text-shadow 0.28s ease;
}

.mini-metric p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-dim);
  transition: color 0.28s ease;
}

.mini-metric small {
  color: var(--text-dim);
  font-size: 0.72rem;
  transition: color 0.28s ease;
}

.mini-metric:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 182, 217, 0.42);
  background: #0f1b32;
  box-shadow: 0 12px 24px rgba(2, 9, 20, 0.46), 0 0 0 1px rgba(77, 182, 217, 0.16) inset;
}

.mini-metric:hover h4 {
  color: #57c8ef;
  text-shadow: 0 0 12px rgba(77, 182, 217, 0.25);
}

.mini-metric:hover p {
  color: #e6edf8;
}

.mini-metric:hover small {
  color: #b7c4d8;
}

.mini-metric-with-icon:hover .mini-metric-icon {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 0 10px rgba(77, 182, 217, 0.34));
}

#student-results .mini-metric h4 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.0703125px;
  color: #4db6d9;
}

#student-results .mini-metric p {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.150391px;
  color: #ffffff;
}

#student-results .mini-metric small {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #6a7282;
}

.curriculum-list {
  display: grid;
  gap: 0.75rem;
}

.module-card {
  background: #0d1528;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.module-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  min-height: 72px;
}

.module-trigger::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%236A7282' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  transition: background-image 0.2s ease;
}

.module-trigger[aria-expanded="true"]::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 10L8 6L4 10' stroke='%234DB6D9' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.module-trigger:focus-visible {
  outline: 2px solid rgba(77, 182, 217, 0.6);
  outline-offset: -2px;
  border-radius: 14px;
}

.module-trigger > span:last-child {
  display: block;
  flex: 1;
  min-width: 0;
}

.module-card h3 {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
  color: #ffffff;
}

.small-label {
  color: rgba(77, 182, 217, 0.6);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}

.module-trigger .small-label {
  margin-bottom: 2px !important;
}

.module-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(77, 182, 217, 0.15);
  border: 1px solid rgba(77, 182, 217, 0.3);
  color: #4db6d9;
}

.module-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: center/contain no-repeat;
  mask: center/contain no-repeat;
}

.module-icon--globe::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 0 20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 0 0 20'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 0 20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 0 0 20'/%3E%3C/svg%3E");
}

.module-icon--monitor::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.16667 3.33325H15.8333C16.7538 3.33325 17.5 4.07944 17.5 4.99992V12.4999C17.5 13.4204 16.7538 14.1666 15.8333 14.1666H4.16667C3.24619 14.1666 2.5 13.4204 2.5 12.4999V4.99992C2.5 4.07944 3.24619 3.33325 4.16667 3.33325ZM8.33333 16.6666H11.6667M10 14.1666V16.6666' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.16667 3.33325H15.8333C16.7538 3.33325 17.5 4.07944 17.5 4.99992V12.4999C17.5 13.4204 16.7538 14.1666 15.8333 14.1666H4.16667C3.24619 14.1666 2.5 13.4204 2.5 12.4999V4.99992C2.5 4.07944 3.24619 3.33325 4.16667 3.33325ZM8.33333 16.6666H11.6667M10 14.1666V16.6666' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.module-icon--shield::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 2.91675L15.8333 5.41675V10.8834C15.8333 14.0001 13.3417 16.6667 10 17.5001C6.65833 16.6667 4.16667 14.0001 4.16667 10.8834V5.41675L10 2.91675Z' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 2.91675L15.8333 5.41675V10.8834C15.8333 14.0001 13.3417 16.6667 10 17.5001C6.65833 16.6667 4.16667 14.0001 4.16667 10.8834V5.41675L10 2.91675Z' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.module-icon--bars::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 15V10M10 15V5M15 15V8' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 15V10M10 15V5M15 15V8' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.module-icon--bolt::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.6667 2.5L5 10.8333H10L8.33333 17.5L15 9.16667H10L11.6667 2.5Z' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.6667 2.5L5 10.8333H10L8.33333 17.5L15 9.16667H10L11.6667 2.5Z' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.module-icon--target::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='7.5' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='10' cy='10' r='4.2' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='10' cy='10' r='1.6' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='7.5' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='10' cy='10' r='4.2' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='10' cy='10' r='1.6' fill='black'/%3E%3C/svg%3E");
}

.module-icon--diamond::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33333 8.33325L6.66667 4.16659H13.3333L16.6667 8.33325L10 16.6666L3.33333 8.33325Z' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.66667 4.16659L10 8.33325L13.3333 4.16659M3.33333 8.33325H16.6667' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33333 8.33325L6.66667 4.16659H13.3333L16.6667 8.33325L10 16.6666L3.33333 8.33325Z' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.66667 4.16659L10 8.33325L13.3333 4.16659M3.33333 8.33325H16.6667' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.module-icon--brain::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33333 5C8.33333 3.61929 7.21405 2.5 5.83333 2.5C4.45262 2.5 3.33333 3.61929 3.33333 5C2.41286 5 1.66667 5.74619 1.66667 6.66667C1.66667 7.58714 2.41286 8.33333 3.33333 8.33333V12.5C2.41286 12.5 1.66667 13.2462 1.66667 14.1667C1.66667 15.0871 2.41286 15.8333 3.33333 15.8333C3.33333 17.2139 4.45262 18.3333 5.83333 18.3333C7.21405 18.3333 8.33333 17.2139 8.33333 15.8333M11.6667 5C11.6667 3.61929 12.786 2.5 14.1667 2.5C15.5474 2.5 16.6667 3.61929 16.6667 5C17.5871 5 18.3333 5.74619 18.3333 6.66667C18.3333 7.58714 17.5871 8.33333 16.6667 8.33333V12.5C17.5871 12.5 18.3333 13.2462 18.3333 14.1667C18.3333 15.0871 17.5871 15.8333 16.6667 15.8333C16.6667 17.2139 15.5474 18.3333 14.1667 18.3333C12.786 18.3333 11.6667 17.2139 11.6667 15.8333M8.33333 10H11.6667M10 8.33333V11.6667M6.66667 6.66667H8.33333M11.6667 6.66667H13.3333M6.66667 13.3333H8.33333M11.6667 13.3333H13.3333' stroke='black' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33333 5C8.33333 3.61929 7.21405 2.5 5.83333 2.5C4.45262 2.5 3.33333 3.61929 3.33333 5C2.41286 5 1.66667 5.74619 1.66667 6.66667C1.66667 7.58714 2.41286 8.33333 3.33333 8.33333V12.5C2.41286 12.5 1.66667 13.2462 1.66667 14.1667C1.66667 15.0871 2.41286 15.8333 3.33333 15.8333C3.33333 17.2139 4.45262 18.3333 5.83333 18.3333C7.21405 18.3333 8.33333 17.2139 8.33333 15.8333M11.6667 5C11.6667 3.61929 12.786 2.5 14.1667 2.5C15.5474 2.5 16.6667 3.61929 16.6667 5C17.5871 5 18.3333 5.74619 18.3333 6.66667C18.3333 7.58714 17.5871 8.33333 16.6667 8.33333V12.5C17.5871 12.5 18.3333 13.2462 18.3333 14.1667C18.3333 15.0871 17.5871 15.8333 16.6667 15.8333C16.6667 17.2139 15.5474 18.3333 14.1667 18.3333C12.786 18.3333 11.6667 17.2139 11.6667 15.8333M8.33333 10H11.6667M10 8.33333V11.6667M6.66667 6.66667H8.33333M11.6667 6.66667H13.3333M6.66667 13.3333H8.33333M11.6667 13.3333H13.3333' stroke='black' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.module-icon.gray {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(77, 182, 217, 0.45);
}

.module-trigger[aria-expanded="true"] .module-icon {
  background: rgba(77, 182, 217, 0.15);
  border-color: rgba(77, 182, 217, 0.3);
}

.module-card.is-open {
  border-color: rgba(77, 182, 217, 0.5);
  box-shadow: 0 0 0 1px rgba(77, 182, 217, 0.14) inset;
}

.module-body {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1rem 1rem;
}

.module-body p {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #99a1af;
  margin: 0 0 10px;
}

.module-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.module-body li {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #d1d5dc;
  position: relative;
  padding-left: 0.9rem;
}

.module-body li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(77, 182, 217, 0.2) 0%, rgba(77, 182, 217, 0.05) 100%);
  border: 1px solid rgba(77, 182, 217, 0.4);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
}

.bonus-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(77, 182, 217, 0.15);
  display: grid;
  place-items: center;
}

.bonus-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3L20 12L6 21V3Z' stroke='%234DB6D9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.bonus-card > div:last-child {
  flex: 1;
  min-width: 0;
  max-width: 424.36px;
}

.bonus-card h3 {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #ffffff;
}

.bonus-label {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #4db6d9;
  margin-bottom: 2px !important;
}

.bonus-desc {
  margin: 2px 0 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #99a1af;
}

.step-card {
  position: relative;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: #0d1528;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.step-card-highlight {
  border-color: rgba(77, 182, 217, 0.2);
  background: linear-gradient(180deg, rgba(77, 182, 217, 0.08) 0%, #0d1528 100%);
}

.step-card-highlight .step-media {
  background: linear-gradient(
    180deg,
    #071220 0%,
    #081321 16.67%,
    #091323 33.33%,
    #0a1424 50%,
    #0b1425 66.67%,
    #0c1527 83.33%,
    #0d1528 100%
  );
}

.step-card:not(.step-card-highlight):hover,
.step-card:not(.step-card-highlight):focus-within {
  border-color: rgba(77, 182, 217, 0.35);
}

.step-card:not(.step-card-highlight):hover .step-media,
.step-card:not(.step-card-highlight):focus-within .step-media {
  background: linear-gradient(180deg, #0a1224 0%, #0b1325 33.33%, #0c1427 66.67%, #0d1528 100%);
}

.step-card:not(.step-card-highlight):hover .step-media img,
.step-card:not(.step-card-highlight):focus-within .step-media img {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.7));
}

.step-card:not(.step-card-highlight):hover .step-body p,
.step-card:not(.step-card-highlight):focus-within .step-body p {
  color: #7e8797;
}

.step-media {
  background: linear-gradient(180deg, #0a1224 0%, #0d1528 100%);
  text-align: center;
  padding: 1.6rem 1rem 0.8rem;
}

.step-media img {
  max-height: 280px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.7));
  transition: filter 0.25s ease;
}

.step-body {
  padding: 1.2rem;
}

.step-label {
  color: #4db6d9;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1.11719px;
  text-transform: uppercase;
  margin: 0 0 5px;
}

#how-it-works .step-label {
  color: #4db6d9;
}

.step-body h3 {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 17.6px;
  line-height: 26px;
  letter-spacing: -0.436563px;
  color: #ffffff;
}

.step-body p {
  margin: 6px 0 0;
  max-width: 263px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #6a7282;
}

.reason-card {
  box-sizing: border-box;
  min-height: 70px;
  background: #0d1528;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.150391px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

#our-edge .reason-card {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.150391px;
  color: #ffffff;
}

.reason-card-active {
  background: rgba(77, 182, 217, 0.1);
  border-color: rgba(77, 182, 217, 0.35);
}

.reason-card:not(.reason-card-active):hover,
.reason-card:not(.reason-card-active):focus-within {
  background: rgba(77, 182, 217, 0.1);
  border-color: rgba(77, 182, 217, 0.35);
  box-shadow: 0 0 0 1px rgba(77, 182, 217, 0.08) inset;
}

.reason-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #99a1af;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.reason-card-active .reason-icon {
  background: rgba(77, 182, 217, 0.2);
  color: #4db6d9;
}

.reason-card:not(.reason-card-active):hover .reason-icon,
.reason-card:not(.reason-card-active):focus-within .reason-icon {
  background: rgba(77, 182, 217, 0.2);
  color: #4db6d9;
}

.reason-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: center/contain no-repeat;
  mask: center/contain no-repeat;
}

.reason-icon-video::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='4' width='10' height='10' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M12 7L16 5V13L12 11V7Z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='4' width='10' height='10' rx='2' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M12 7L16 5V13L12 11V7Z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reason-icon-headset::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 9V8.5C3.5 5.46243 5.96243 3 9 3C12.0376 3 14.5 5.46243 14.5 8.5V9' stroke='black' stroke-width='1.5'/%3E%3Crect x='2.5' y='9' width='3.2' height='5.5' rx='1.6' stroke='black' stroke-width='1.5'/%3E%3Crect x='12.3' y='9' width='3.2' height='5.5' rx='1.6' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 9V8.5C3.5 5.46243 5.96243 3 9 3C12.0376 3 14.5 5.46243 14.5 8.5V9' stroke='black' stroke-width='1.5'/%3E%3Crect x='2.5' y='9' width='3.2' height='5.5' rx='1.6' stroke='black' stroke-width='1.5'/%3E%3Crect x='12.3' y='9' width='3.2' height='5.5' rx='1.6' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
}

.reason-icon-chart::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 12L6.2 8.3L9 10.4L14.2 5.2' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 5.2H14.2V8.4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 12L6.2 8.3L9 10.4L14.2 5.2' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 5.2H14.2V8.4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reason-icon-chat::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 3C5.41 3 2.5 5.54 2.5 8.67C2.5 10.16 3.16 11.52 4.25 12.52L3.6 15L6.38 14.2C7.17 14.5 8.06 14.67 9 14.67C12.59 14.67 15.5 12.13 15.5 9C15.5 5.87 12.59 3 9 3Z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 3C5.41 3 2.5 5.54 2.5 8.67C2.5 10.16 3.16 11.52 4.25 12.52L3.6 15L6.38 14.2C7.17 14.5 8.06 14.67 9 14.67C12.59 14.67 15.5 12.13 15.5 9C15.5 5.87 12.59 3 9 3Z' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reason-icon-badge::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 2.8L12.9 4.4V8.6C12.9 10.9 11.1 12.9 9 13.5C6.9 12.9 5.1 10.9 5.1 8.6V4.4L9 2.8Z' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M7.4 13.2V15.2L9 14.2L10.6 15.2V13.2' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 2.8L12.9 4.4V8.6C12.9 10.9 11.1 12.9 9 13.5C6.9 12.9 5.1 10.9 5.1 8.6V4.4L9 2.8Z' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M7.4 13.2V15.2L9 14.2L10.6 15.2V13.2' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reason-icon-check::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='6.5' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M6 9.3L8.2 11.4L12 7.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='6.5' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M6 9.3L8.2 11.4L12 7.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#our-edge .section-head .subtext {
  color: #6a7282;
  max-width: 450px;
  margin-inline: auto;
}

.social-proof-card {
  border: 1px dashed rgba(77, 182, 217, 0.3);
  background: rgba(13, 21, 40, 0.5);
  border-radius: 24px;
  padding: 49px 49px 40px;
  text-align: center;
}

.stars {
  color: #4db6d9;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 24px;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(77, 182, 217, 0.1);
  border: 1px solid rgba(77, 182, 217, 0.3);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: var(--cyan);
  font-size: 0.86rem;
}

.social-badge {
  min-height: 34px;
  padding: 7px 17px;
  gap: 8px;
  border-radius: 999px;
  background: rgba(77, 182, 217, 0.1);
  border: 1px solid rgba(77, 182, 217, 0.3);
  color: #4db6d9;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
}

.social-badge-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  display: inline-block;
  background: #4db6d9;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 4V8L10.5 9.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 4V8L10.5 9.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.social-proof-card h3 {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.449219px;
  text-align: center;
  color: #ffffff;
}

.social-proof-card p {
  margin: 12px auto 0;
  max-width: 448px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.150391px;
  color: #99a1af;
}

.placeholder-row {
  margin-top: 32px;
  opacity: 1;
}

.testimonial-placeholders {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}

.testimonial-placeholder-item {
  flex: 0 0 245.33px;
  width: 245.33px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
}

.testimonial-placeholder-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-note {
  margin-top: 32px;
  color: #99a1af;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.150391px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-note-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: #4db6d9;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 10C14 10.3536 13.8595 10.6928 13.6095 10.9428C13.3594 11.1929 13.0203 11.3333 12.6667 11.3333H4.66667L2 14V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H12.6667C13.0203 2 13.3594 2.14048 13.6095 2.39052C13.8595 2.64057 14 2.97971 14 3.33333V10Z' stroke='black' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 10C14 10.3536 13.8595 10.6928 13.6095 10.9428C13.3594 11.1929 13.0203 11.3333 12.6667 11.3333H4.66667L2 14V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H12.6667C13.0203 2 13.3594 2.14048 13.6095 2.39052C13.8595 2.64057 14 2.97971 14 3.33333V10Z' stroke='black' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.register-section {
  position: relative;
}

.register-left {
  padding: 1.5rem 0;
}

.register-left h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.register-left p {
  margin: 1rem 0 0;
  color: var(--text-muted);
}

#join .register-left .eyebrow {
  color: #4db6d9;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2.64961px;
  text-transform: uppercase;
}

#join .register-left h2 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 44.8px;
  line-height: 54px;
  letter-spacing: 0.363125px;
  color: #ffffff;
}

#join .register-left .register-subtext {
  margin: 1rem 0 0;
  max-width: 576px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.150391px;
  color: #99a1af;
}

#how-it-works .section-head .eyebrow,
#our-edge .section-head .eyebrow,
#student-results .section-head .eyebrow,
#join .register-left .eyebrow {
  color: #4db6d9;
}

#how-it-works .section-head h2,
#our-edge .section-head h2,
#student-results .section-head h2,
#join .register-left h2 {
  color: #ffffff;
}

#curriculum .section-head .subtext,
#join .register-left .register-subtext {
  color: #99a1af;
}

.register-left ul {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.register-left li {
  color: #d1d5dc;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
  position: relative;
  padding-left: 32px;
}

.register-left li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #4db6d9;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.1675 8.33357C18.5481 10.2013 18.2768 12.1431 17.399 13.8351C16.5212 15.527 15.0899 16.8669 13.3438 17.6313C11.5976 18.3957 9.64219 18.5384 7.80358 18.0355C5.96498 17.5327 4.35433 16.4147 3.24023 14.8681C2.12613 13.3214 1.57593 11.4396 1.68139 9.53639C1.78684 7.63318 2.54157 5.82364 3.81971 4.40954C5.09785 2.99545 6.82215 2.06226 8.70505 1.76561C10.588 1.46897 12.5157 1.82679 14.1667 2.7794' stroke='black' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.5 9.16683L10 11.6668L18.3333 3.3335' stroke='black' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.1675 8.33357C18.5481 10.2013 18.2768 12.1431 17.399 13.8351C16.5212 15.527 15.0899 16.8669 13.3438 17.6313C11.5976 18.3957 9.64219 18.5384 7.80358 18.0355C5.96498 17.5327 4.35433 16.4147 3.24023 14.8681C2.12613 13.3214 1.57593 11.4396 1.68139 9.53639C1.78684 7.63318 2.54157 5.82364 3.81971 4.40954C5.09785 2.99545 6.82215 2.06226 8.70505 1.76561C10.588 1.46897 12.5157 1.82679 14.1667 2.7794' stroke='black' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.5 9.16683L10 11.6668L18.3333 3.3335' stroke='black' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.register-warning {
  margin-top: 1.3rem;
  background: rgba(77, 182, 217, 0.08);
  border: 1px solid rgba(77, 182, 217, 0.25);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
  color: #d1d5dc;
  max-width: 552px;
}

.register-warning-copy {
  color: #d1d5dc;
  margin-left: 0;
}

.register-warning-strong {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
}

.register-warning strong {
  color: #ffffff !important;
}

.register-right {
  position: relative;
  width: 100%;
  max-width: 552px;
  min-height: 562px;
  margin-left: auto;
  background: #0d1528;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border-radius: 24px;
  padding: 29px;
}

.register-right::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(77, 182, 217, 0.6) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.register-right h3 {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.439453px;
  color: #ffffff;
}

.register-right > p {
  margin: 4px 0 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
  color: #6a7282;
}

.register-form {
  margin-top: 24px !important;
  row-gap: 16px !important;
}

.register-form .col-12 {
  margin-top: 0 !important;
}

.form-label {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #d1d5dc;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  height: 46px;
  padding: 12px 16px 12px 40px;
  border-radius: 14px;
  background: #0d1528;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d5dc;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.150391px;
}

.form-control::placeholder {
  color: #4a5565;
}

.form-control:focus,
.form-select:focus {
  color: #d1d5dc;
  border-color: rgba(77, 182, 217, 0.5);
  background: #0d1528;
  box-shadow: 0 0 0 0.2rem rgba(77, 182, 217, 0.14);
}

.form-select option {
  color: #1a2238;
}

.form-disclaimer {
  max-width: 475px;
  margin: 0 auto;
  color: #4a5565;
  text-align: center;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.register-right .btn.btn-cyan.btn-lg {
  height: 56px;
  border-radius: 14px;
  padding: 16px 32px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.register-right .btn.hero-btn-primary::after {
  content: none;
}

#fullName {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.333 14v-1.333A2.667 2.667 0 0 1 6 10h4a2.667 2.667 0 0 1 2.667 2.667V14' stroke='%234A5565' stroke-width='1.333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 7.333A2.667 2.667 0 1 0 8 2a2.667 2.667 0 0 0 0 5.333Z' stroke='%234A5565' stroke-width='1.333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 16px 16px;
}

#email {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.333' y='2.667' width='13.333' height='10.667' rx='1.333' stroke='%234A5565' stroke-width='1.333'/%3E%3Cpath d='m2 4 6 4 6-4' stroke='%234A5565' stroke-width='1.333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 16px 16px;
}

#phone {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.981 14.118c-.906 0-2.194-.381-3.826-2.013C6.524 10.474 6.143 9.186 6.143 8.28c0-.47.17-.9.48-1.21l.858-.858a.667.667 0 0 0 0-.943L6.23 4.017a.667.667 0 0 0-.943 0l-.858.858A3.38 3.38 0 0 0 3.43 7.28c0 1.647.707 3.428 2.376 5.097 1.67 1.67 3.45 2.376 5.097 2.376.903 0 1.764-.359 2.403-.998l.858-.858a.667.667 0 0 0 0-.943l-1.252-1.252a.667.667 0 0 0-.943 0l-.858.858c-.31.31-.739.48-1.21.48Z' stroke='%234A5565' stroke-width='1.333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 16px 16px;
}

#experience {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 1.333v13.334M2 4h12M2 12h12' stroke='%234A5565' stroke-width='1.333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 16px 16px;
}

@media (max-width: 991.98px) {
  .register-right {
    max-width: 100%;
    min-height: auto;
    padding: 20px;
  }

  .register-form {
    margin-top: 16px !important;
  }
}

.footer-shell {
  background: #030810;
  min-height: 446px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-shell > .container.site-container {
  padding-top: 56px !important;
  padding-bottom: 0 !important;
}

.footer-shell .row.g-4 {
  row-gap: 20px !important;
}

.footer-logo {
  width: 104.53px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.footer-desc {
  margin: 20px 0 0;
  max-width: 320px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.150391px;
  color: #6a7282;
}

.footer-shell .badge-soft {
  box-sizing: border-box;
  min-height: 34px;
  padding: 8px 12px;
  gap: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #99a1af;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.footer-title {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.199609px;
  color: #ffffff;
}

.footer-links {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #6a7282;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #99a1af;
}

.footer-meta {
  margin-top: 16px;
}

.footer-meta p {
  margin: 0 0 12px;
  color: #6a7282;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
}

.footer-meta p:last-child {
  margin-bottom: 0;
}

.footer-meta span {
  display: block;
  margin-bottom: 2px;
  color: #99a1af;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
}

.footer-shell .btn.btn-outline-soft.btn-sm {
  margin-top: 16px !important;
  width: 170.73px;
  height: 38px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(77, 182, 217, 0.3);
  background: rgba(77, 182, 217, 0.12);
  color: #4db6d9;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
}

.footer-shell .btn.btn-outline-soft.btn-sm:hover,
.footer-shell .btn.btn-outline-soft.btn-sm:focus {
  background: rgba(77, 182, 217, 0.2);
  border-color: rgba(77, 182, 217, 0.45);
  color: #4db6d9;
}

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container.site-container.py-3 {
  min-height: 56px;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.footer-bottom .container.site-container.py-3 p {
  color: #4a5565;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.footer-bottom .container.site-container.py-3 a {
  color: #364153;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
}

.footer-bottom .container.site-container.py-3 a:hover,
.footer-bottom .container.site-container.py-3 a:focus {
  color: #4a5565;
}

.footer-risk {
  color: #364153;
  text-align: center;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.thankyou-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background: var(--bg-main);
}

.thankyou-card {
  width: min(720px, 100%);
  text-align: center;
}

.thankyou-actions {
  margin-top: 0.25rem;
}

.thankyou-btn {
  width: 220px;
  max-width: 100%;
}

.thankyou-btn.hero-btn-secondary {
  color: #99a1af;
}

.thankyou-btn-primary::after {
  content: none;
}

.thankyou-logo {
  width: min(210px, 62%);
  height: auto;
  display: inline-block;
}

@media (max-width: 1199.98px) {
  .hero-stats {
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -1px;
  }

  .hero-main {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-stat h2 {
    font-size: 1.15rem;
  }

  .hero-stat p {
    font-size: 0.62rem;
  }

  .info-line {
    min-height: 48.75px;
    padding: 13px 16px 13px 44px;
    font-size: 14px;
    line-height: 23px;
  }

  .info-line::before {
    left: 14px;
  }

  .mentor-quote {
    max-width: 100%;
    min-height: 132px;
    padding: 20px;
  }

  .mentor-quote p {
    max-width: 100%;
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 767.98px) {
  .nav-logo {
    height: 30px !important;
  }

  .section-pad {
    padding: 64px 0 64px;
  }

  .hero-title {
    font-size: clamp(42px, 11.5vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.9px;
  }

  .hero-copy {
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.6;
  }

  .hero-main .d-flex.flex-wrap.gap-3 {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px !important;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    height: 52px;
  }

  .thankyou-actions {
    width: 100%;
  }

  .thankyou-btn {
    width: 100%;
  }

  .hero-batch-note {
    display: block;
  }

  .hero-batch-highlight {
    white-space: nowrap;
  }

  .mentor-quote {
    min-height: auto;
    padding: 16px;
    border-radius: 14px;
  }

  .mentor-quote p {
    min-height: auto;
    padding-left: 14px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.2px;
  }

  .mentor-quote p::before {
    width: 26px;
    height: 26px;
    left: -2px;
    top: 0;
  }

  .mentor-quote span {
    margin-top: 12px;
    padding-left: 14px;
    font-size: 13px;
    line-height: 18px;
  }

  .info-line {
    min-height: 44px;
    padding: 10px 12px 10px 38px;
    font-size: 13px;
    line-height: 21px;
  }

  .info-line::before {
    width: 18px;
    height: 18px;
    left: 12px;
    background: rgba(77, 182, 217, 0.15);
  }

  .info-line::after {
    width: 5px;
    height: 5px;
    left: 18.5px;
  }

  .thankyou-logo {
    width: min(170px, 64%);
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 0;
  }

  .hero-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-stat:nth-child(2n) {
    border-right: 0;
  }

  .hero-visual-col {
    display: block;
    margin-top: 1.25rem;
  }

  .hero-visual-card {
    text-align: center;
    padding: 0.75rem;
  }

  .hero-visual-col::before {
    width: 280px;
    height: 220px;
    left: 50%;
    top: 52%;
    filter: blur(42px);
  }

  .social-proof-card {
    padding: 1.4rem 1rem;
  }

  .testimonial-placeholders {
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .testimonial-placeholder-item {
    width: min(100%, 245.33px);
    flex: 0 0 auto;
    height: auto;
    aspect-ratio: 245.33 / 140;
  }

  .testimonial-placeholder-item:not(:first-child) {
    display: none;
  }

  .testimonial-placeholder-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.register-form .form-control.is-invalid,
.register-form .form-select.is-invalid {
  border-color: #ff6467 !important;
  box-shadow: none !important;
}

.register-form .form-error {
  margin: 6px 0 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.150391px;
  color: #ff6467;
  display: flex;
  align-items: center;
  gap: 6px;
}

.register-form .form-error::before {
  content: "!";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 999px;
  border: 2px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .footer-shell > .container.site-container {
    padding-top: 40px !important;
  }

  .footer-bottom {
    margin-top: 36px;
  }
}

@media (max-width: 767.98px) {
  .footer-desc {
    margin-top: 14px;
    max-width: 100%;
  }

  .footer-shell .badge-soft {
    width: fit-content;
  }

  .footer-shell .btn.btn-outline-soft.btn-sm {
    width: 100%;
    max-width: 220px;
  }

  .footer-bottom .container.site-container.py-3 {
    min-height: auto;
    padding-top: 16px !important;
    padding-bottom: 12px !important;
  }
}
