@font-face {
  font-family: "Noto Sans Mono";
  src: url("static/NotoSansMono-Black.ttf") format("truetype");
  font-weight: 600;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans Mono", monospace, sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  position: relative;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero-left,
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: 50vh;
  overflow: hidden;
}

.hero-left img,
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 50vh;
  object-fit: cover;
  z-index: 0;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background-color: #fff;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.left-text-container,
.right-text-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.left-text-container {
  align-items: flex-end;
  text-align: right;
}

.right-text-container {
  align-items: flex-start;
  text-align: left;
}

.left-hero-title,
.right-hero-title {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: white;
  line-height: 1.4;
}

.left-title-bg,
.right-title-bg {
  padding: 0.35rem 0.65rem;
}

.left-title-bg {
  background-color: #222;
}

.right-title-bg {
  background-color: white;
  color: #232323;
}

.job-ready {
  color: white;
  font-size: clamp(1.25rem, 4vw, 2.25rem);
}

.left-hero-desc,
.right-hero-desc {
  color: white;
  font-weight: 200;
  font-size: clamp(0.8125rem, 2.2vw, 1rem);
  line-height: 1.6;
  max-width: 28rem;
}

.left-text-container button,
.right-text-container button {
  cursor: pointer;
  min-width: 140px;
  width: fit-content;
  height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.left-text-container button {
  color: white;
  background-color: #232323e6;
  border: none;
}

.right-text-container button {
  color: #232323e6;
  background-color: white;
  border: none;
}

.nav-bar {
  display: flex;
  align-items: center;
  height: auto;
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 5rem);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.nav-bar img {
  width: min(180px, 42vw);
  cursor: pointer;
}

/* ── Shared section title row ── */
.title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 5rem)
    clamp(1rem, 2vw, 1.5rem);
}

.title-section__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
}

.arrow {
  color: #28eea7;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #363738;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.section-title--light {
  color: #fcfcfd;
}

.section-dots {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  flex-shrink: 0;
}

.dot {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.dot-black {
  background-color: #363738;
}

.dot-grey {
  background-color: #dcdee1;
}

.dot-green {
  background-color: #28eea7;
}

.dot-white {
  background-color: #ffffff;
}

.title-section--programs .programs-title-badge {
  display: inline-flex;
  align-items: center;
  background-color: #363738;
}

.title-section--programs .arrow--boxed {
  background-color: transparent;
  color: #28eea7;
  padding: 0.55rem 0.35rem 0.55rem 0.7rem;
  line-height: 1;
}

.title-section--programs .section-title--boxed {
  background-color: transparent;
  color: #ffffff;
  padding: 0.55rem 0.85rem 0.55rem 0;
  margin-left: 0;
  text-transform: lowercase;
}

.title-section--dark .dot-grey {
  background-color: #a5a6a9;
}

/* ── Section 2: Hello World ── */
.section-2 {
  background-color: #f1f2f3;
}

.video-container {
  width: min(75rem, calc(100% - 2.5rem));
  max-width: calc(100% - 2.5rem);
  margin: 0 auto 2.5rem;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0.75rem solid #28eea7;
  border-radius: 0.75rem;
}

/* ── Section 3: Milestones ── */
.section-3 {
  margin-bottom: 3.75rem;
}

.milestone-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4vw, 5rem) 1rem;
}

.left-milestone-container {
  background-color: #f1f2f3;
  border-radius: 0.9375rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.big-number {
  font-weight: 900;
  color: #363738;
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  line-height: 1;
  padding: 0.5rem 0;
}

.left-milestone-container h2 {
  font-weight: 400;
  color: #363738;
  font-size: clamp(1.125rem, 3vw, 1.875rem);
  margin-bottom: 1rem;
}

.left-milestone-container p {
  color: #363738;
  font-size: clamp(0.875rem, 2.2vw, 1.125rem);
  font-weight: 300;
  margin-bottom: 0.35rem;
}

.right-milestone-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.milestone-card {
  background-color: #f1f2f3;
  border-radius: 0.9375rem;
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
}

.milestone-card h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  color: #363738;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.milestone-card p {
  color: #363738;
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.4;
}

/* ── Section 4: Programs ── */
.section-4 {
  background-color: #28eea7;
  padding-bottom: 2rem;
}

.tab-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 5rem) 0.5rem;
}

.tab-menu h3 {
  margin: 0;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  color: #222;
  font-size: 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
  transition: background-color 0.2s ease;
}

.tab-menu h3.active {
  background-color: #363738;
  color: #fcfcfd;
}

.content-container {
  background-color: #363738;
  margin: 0 clamp(1.25rem, 4vw, 5rem);
  border-radius: 0.9375rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.content {
  display: none;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.content[data-tab="fsw"] {
  display: grid;
}

.text-content {
  color: #dcdee1;
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.7;
}

.text-content h2 {
  color: #fcfcfd;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 0.75rem;
}

.text-content p {
  margin-bottom: 1rem;
}

.content-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.next-bootcamp,
.learn-more {
  background-color: #222;
  color: #fcfcfd;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border: none;
}

.next-bootcamp {
  text-align: center;
}

.learn-more {
  cursor: pointer;
  text-align: right;
}

.image-container {
  width: 100%;
  max-height: 24rem;
  overflow: hidden;
  border-radius: 0.625rem;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Section 5: Hire ── */
.section-5 {
  background-color: #363738;
  padding-bottom: 2.5rem;
}

.hire-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 clamp(1.25rem, 4vw, 5rem);
  border-radius: 0.9375rem;
  background-color: #222;
  padding: 1.25rem;
  gap: 0.75rem;
}

.hire-container h2 {
  color: #fcfcfd;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

.hire-container > p {
  color: #fcfcfd;
  background-color: #363738;
  text-align: center;
  padding: 0.75rem;
  font-size: clamp(0.8125rem, 2vw, 1rem);
  line-height: 1.5;
}

.hire-container .highlight {
  color: #28eea7;
}

.hire-container ol {
  padding-left: 1.25rem;
  color: #dcdee1;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  line-height: 1.6;
}

.hire-container ol li {
  margin-bottom: 0.35rem;
}

.hire-container > span {
  color: #dcdee1;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  line-height: 1.6;
}

.hire-container button {
  width: 100%;
  min-height: 3rem;
  color: #fcfcfd;
  background-color: #363738;
  cursor: pointer;
  text-align: right;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  border: none;
}

.hr-factory {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.25rem clamp(1.25rem, 4vw, 5rem) 0;
  border-radius: 0.625rem;
  background-color: #222;
  padding: 1.25rem;
}

.hr-factory span {
  color: #fcfcfd;
  font-size: clamp(0.9375rem, 2.2vw, 1.25rem);
  line-height: 1.5;
}

.img-hr img {
  max-height: 2.5rem;
  width: auto;
}

/* ── Section 7: FAQ ── */
.section-7 {
  background-color: #363738;
  padding-bottom: 4rem;
}

.faq-list {
  width: min(70rem, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.section-7 p {
  color: white;
  font-size: clamp(0.875rem, 2.2vw, 1.0625rem);
  background-color: #222;
  border-radius: 0.625rem;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.5;
}

.section-7 p .highlight {
  color: #28eea7;
  flex-shrink: 0;
}

.section-7 p.view-all {
  justify-content: flex-end;
  cursor: pointer;
  background: transparent;
  padding-right: 0;
}

.fas.fa-angle-down {
  color: white;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ── Section 9: Partners ── */
.section-9 {
  background-color: #ffffff;
  padding-bottom: 3rem;
}

.partners-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: 0 clamp(1.25rem, 4vw, 5rem);
  align-items: center;
  justify-items: center;
}

.partners-container img {
  width: 100%;
  max-width: 8.75rem;
  height: auto;
  max-height: 4.5rem;
  object-fit: contain;
  object-position: center;
  filter: none;
}

/* ── Newsletter ── */
.section-10 {
  background-color: #363738;
}

.subscribe-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 5rem);
}

.subscribe-container p {
  color: #fcfcfd;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
}

.subscribe-container p .highlight {
  color: #28eea7;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 32rem;
}

.subscribe-form input {
  width: 100%;
  min-height: 2.8125rem;
  font-size: 0.875rem;
  padding: 0 1rem;
  color: #222;
  background-color: #fff;
  border: none;
  font-family: inherit;
}

.subscribe-form button {
  min-height: 2.8125rem;
  color: #f1f2f3;
  background-color: #232323;
  text-align: center;
  padding: 0 1.25rem;
  cursor: pointer;
  font-weight: 700;
  border: none;
  font-family: inherit;
}

/* ── Footer ── */
.final-section {
  background-color: #222;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 3rem);
}

.final-section-container {
  max-width: 75rem;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand h2 {
  color: #fcfcfd;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #a5a6a9;
  font-size: 0.8125rem;
  line-height: 1.6;
  max-width: 16rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.footer-links__column {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links__column a {
  color: #a5a6a9;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-links__column a:hover {
  color: #fcfcfd;
}

.footer-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-aside > img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  border: 2px solid #28eea7;
  border-radius: 0.75rem;
  padding: 0.35rem;
  background: #363738;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.375rem;
  background-color: #363738;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  background-color: #28eea7;
  transform: translateY(-1px);
}

.socials img {
  width: 1.125rem;
  height: 1.125rem;
  object-fit: contain;
}

.rights-reserved {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #363738;
}

.rights-reserved span,
.rights-reserved a {
  color: #a5a6a9;
  font-size: 0.8125rem;
  text-decoration: none;
}

.rights-reserved a:hover {
  color: #fcfcfd;
}

/* ── Tablet ── */
@media (min-width: 640px) {
  .right-milestone-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-actions {
    flex-direction: row;
    align-items: stretch;
  }

  .next-bootcamp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .learn-more {
    flex: 0 0 auto;
    min-width: 11rem;
  }

  .subscribe-form {
    flex-direction: row;
    max-width: none;
  }

  .subscribe-form input {
    flex: 1;
  }

  .subscribe-form button {
    flex-shrink: 0;
    min-width: 8rem;
  }

  .hr-factory {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    min-height: 100vh;
  }

  .hero-left,
  .hero-right {
    width: 50%;
    min-height: 100vh;
  }

  .hero-left img,
  .hero-right img {
    min-height: 100vh;
  }

  .left-text-container,
  .right-text-container {
    padding: clamp(1.5rem, 3vw, 3rem);
  }

  .milestone-container {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }

  .content {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .footer-content {
    grid-template-columns: 1.1fr 1fr auto;
    align-items: start;
    gap: 2.5rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rights-reserved {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .left-text-container {
    padding-right: clamp(2rem, 4vw, 4rem);
    padding-left: clamp(2rem, 5vw, 5rem);
  }

  .right-text-container {
    padding-left: clamp(2rem, 4vw, 4rem);
    padding-right: clamp(2rem, 5vw, 5rem);
  }

  .partners-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .partners-container img {
    max-width: 9.5rem;
    max-height: 5rem;
  }
}

@media (min-width: 1200px) {
  .partners-container {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
