* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 320px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: #18181b;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Navbar
   ========================================================= */

.navbar {
  min-height: 72px;
  border-bottom: 1px solid #f4f4f5;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-icon {
  width: 100px;
  height: 40px;
  background: url("/LogoSmall.svg") no-repeat center;
  background-size: contain;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #52525b;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #18181b;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-link {
  font-size: 14px;
  font-weight: 600;
  color: #18181b;
  text-decoration: none;
  white-space: nowrap;
}

.btn-purple {
  background: linear-gradient(
    135deg,
    #6b34bc 20%,
    #cd2783 50%,
    #f56921 100%
  );
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-purple:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* =========================================================
   Hero Section
   ========================================================= */

.hero-section {
  min-height: 380px;
  background:
    linear-gradient(#0008, #0008),
    url("/img/section-herobanner3.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 64px 24px;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}

.hero-left {
  max-width: 500px;
  width: 100%;
}

.breadcrumb {
  font-size: 12px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.hero-title {
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 520px;
}

.hero-right {
  max-width: 480px;
  width: 100%;
}

.hero-big-statement {
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.25;
}

/* =========================================================
   Why Join Section
   ========================================================= */

.why-join-section {
  background-color: #fcf4f2;
  padding: 80px 0;
}

.sub-heading {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #71717a;
}

.section-title {
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  color: #09090b;
  margin-top: 4px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.feature-card {
  min-width: 0;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.icon-box {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background-color: #6d28d9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.card-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #71717a;
}

/* =========================================================
   Open Roles Section
   ========================================================= */

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

.roles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.pill {
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background-color: #f4f4f5;
  color: #52525b;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pill:hover {
  background-color: #e4e4e7;
}

.pill.active {
  background-color: #6d28d9;
  color: #ffffff;
}

.roles-list {
  display: flex;
  flex-direction: column;
}

.job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid #e4e4e7;
}

.job-info {
  min-width: 0;
  flex: 1;
}

.job-title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 6px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 11px;
  color: #71717a;
}

.job-department {
  font-size: 13px;
  color: #52525b;
  flex-shrink: 0;
}

.btn-outline,
.btn-disabled {
  flex-shrink: 0;
  border-radius: 20px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  border: 1px solid #18181b;
  color: #18181b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: #18181b;
  color: #ffffff;
}

.btn-disabled {
  background: transparent;
  border: 1px solid #d4d4d8;
  color: #a1a1aa;
  cursor: not-allowed;
}

/* =========================================================
   Yellow Banner Section
   ========================================================= */

.general-app-section {
  padding-bottom: 80px;
}

.yellow-card {
  background: linear-gradient(
    135deg,
    #6b34bc 20%,
    #cd2783 50%,
    #f56921 100%
  );
  border-radius: 20px;
  padding: 48px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  overflow: hidden;
}

.yellow-card-content {
  max-width: 480px;
  width: 100%;
}

.banner-title {
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.banner-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 28px;
  opacity: 0.95;
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #18181b;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-white-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.app-mockup {
  width: 280px;
  height: 220px;
  flex: 0 0 280px;
  background: url("/img/OverlayShadow.png") center / cover no-repeat;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   Footer Section
   ========================================================= */

.footer-section {
  background-color: #ff6b00;
  color: #ffffff;
  padding: 64px 0 24px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 300px;
  flex: 1;
}

.footer-desc {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 16px;
  opacity: 0.9;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

.footer-col {
  min-width: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-col a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  font-size: 12px;
  opacity: 0.9;
}

/* =========================================================
   Large Tablet / Small Desktop
   1024px and below
   ========================================================= */

@media (max-width: 1024px) {
  .container,
  .nav-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-container {
    gap: 40px;
  }

  .features-grid {
    gap: 20px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .yellow-card {
    padding: 40px 48px;
  }

  .footer-columns {
    gap: 40px;
  }
}

/* =========================================================
   Tablet
   768px and below
   ========================================================= */

@media (max-width: 768px) {
  .container,
  .nav-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Navbar */

  .navbar {
    min-height: 68px;
  }

  .nav-container {
    gap: 16px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-actions {
    gap: 10px;
  }

  .btn-link {
    font-size: 13px;
  }

  .btn-purple {
    padding: 8px 14px;
    font-size: 13px;
  }

  /* Hero */

  .hero-section {
    min-height: auto;
    padding: 64px 24px;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .hero-left,
  .hero-right {
    max-width: 650px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-big-statement {
    font-size: 28px;
  }

  /* Why Join */

  .why-join-section {
    padding: 64px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  /* Roles */

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

  .roles-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }

  .filter-pills {
    justify-content: flex-start;
  }

  .job-item {
    align-items: flex-start;
    gap: 20px;
  }

  /* Banner */

  .general-app-section {
    padding-bottom: 64px;
  }

  .yellow-card {
    padding: 40px;
    gap: 32px;
  }

  .app-mockup {
    width: 220px;
    height: 180px;
    flex-basis: 220px;
  }

  /* Footer */

  .footer-section {
    padding-top: 56px;
  }

  .footer-container {
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand {
    max-width: 500px;
  }

  .footer-columns {
    width: 100%;
    justify-content: space-between;
    gap: 32px;
  }
}

/* =========================================================
   Mobile
   600px and below
   ========================================================= */

@media (max-width: 600px) {
  .container,
  .nav-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Navbar */

  .navbar {
    min-height: 64px;
  }

  .nav-container {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo-icon {
    width: 90px;
    height: 36px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex: none;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding: 4px 0 6px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex-shrink: 0;
    font-size: 13px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .btn-link {
    display: none;
  }

  .btn-purple {
    padding: 8px 13px;
    font-size: 12px;
  }

  /* Hero */

  .hero-section {
    padding: 56px 20px;
  }

  .hero-container {
    gap: 32px;
  }

  .breadcrumb {
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 42px);
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-big-statement {
    font-size: 25px;
  }

  /* Why Join */

  .why-join-section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    padding: 26px 22px;
  }

  .icon-box {
    margin-bottom: 20px;
  }

  /* Roles */

  .roles-section {
    padding: 56px 0;
  }

  .roles-header {
    gap: 20px;
  }

  .filter-pills {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .pill {
    flex: 0 0 auto;
  }

  .job-item {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px 0;
  }

  .job-title {
    font-size: 17px;
  }

  .job-tags {
    gap: 6px 12px;
  }

  .job-department {
    font-size: 12px;
  }

  .btn-outline,
  .btn-disabled {
    width: 100%;
    text-align: center;
    padding: 11px 20px;
  }

  /* Banner */

  .general-app-section {
    padding-bottom: 56px;
  }

  .yellow-card {
    border-radius: 16px;
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .yellow-card-content {
    max-width: none;
  }

  .banner-title {
    font-size: 28px;
  }

  .banner-desc {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .btn-white-pill {
    width: 100%;
    padding: 12px 20px;
  }

  .app-mockup {
    width: 100%;
    max-width: 280px;
    height: 200px;
    flex: none;
    align-self: center;
  }

  /* Footer */

  .footer-section {
    padding: 48px 0 20px;
  }

  .footer-container {
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-col {
    min-width: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
  }
}

/* =========================================================
   Small Mobile
   400px and below
   ========================================================= */

@media (max-width: 400px) {
  .container,
  .nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-container {
    gap: 10px;
  }

  .logo-icon {
    width: 80px;
    height: 34px;
  }

  .nav-links {
    gap: 16px;
  }

  .btn-purple {
    padding: 7px 11px;
    font-size: 11px;
  }

  .hero-section {
    padding: 48px 16px;
  }

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

  .hero-big-statement {
    font-size: 23px;
  }

  .why-join-section,
  .roles-section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .yellow-card {
    padding: 30px 20px;
  }

  .banner-title {
    font-size: 26px;
  }

  .footer-columns {
    gap: 28px 16px;
  }
}

/* =========================================================
   Very Small Devices
   360px and below
   ========================================================= */

@media (max-width: 360px) {
  .nav-actions {
    gap: 6px;
  }

  .btn-purple {
    padding: 7px 9px;
  }

  .hero-title {
    font-size: 31px;
  }

  .hero-big-statement {
    font-size: 21px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Accessibility / Reduced Motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
