*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #002B5C;
  --navy-deep: #001838;
  --gold: #D4AC0D;
  --purple: #6D28D9;
  --purple-dark: #4C1D95;
  --purple-light: #7C3AED;
  --green: #1E8449;
  --white: #fff;
  --off: #F5F3FF;
  --gray: #64748B;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: #1E293B;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  border: none;
  font-family: var(--font-body);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  background: #F0C929;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 172, 13, 0.35);
}

.btn-white {
  background: var(--white);
  color: var(--purple-dark);
}

.btn-white:hover {
  background: #F5F3FF;
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
}

.btn-purple:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blob {

  0%,
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 172, 13, 0.4);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(212, 172, 13, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: .3s;
}

nav.scrolled {
  background: rgba(74, 29, 149, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-in {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-img {
  height: 44px;
}

.nav-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

.nav-sjob-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}

.nav-links-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links-right a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: .2s;
}

.nav-links-right a:hover {
  color: var(--gold);
}

.back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: .2s;
}

.back-link:hover {
  color: var(--gold);
}

/* HERO */
.sjob-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(145deg, var(--navy-deep) 0%, #2D1B69 50%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
}

.sjob-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 40%, rgba(212, 172, 13, 0.08) 0%, transparent 65%), radial-gradient(ellipse 50% 70% at 15% 70%, rgba(109, 40, 217, 0.2) 0%, transparent 60%);
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .1;
  animation: blob 9s ease-in-out infinite;
}

.b1 {
  background: var(--gold);
  top: -150px;
  right: -100px;
}

.b2 {
  background: #A855F7;
  bottom: -100px;
  left: -150px;
  animation-delay: 4s;
}

.sjob-hero-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 172, 13, 0.12);
  border: 1px solid rgba(212, 172, 13, 0.3);
  border-radius: 50px;
  padding: 7px 16px;
  margin-bottom: 20px;
}

.hero-tag span {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.sjob-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.sjob-hero h1 .gold {
  color: var(--gold);
}

.sjob-hero .desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-pill strong {
  color: var(--white);
}

.sjob-screen-wrap {
  position: relative;
}

.sjob-screen {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: float 4s ease-in-out infinite;
}

.sjob-screen img {
  width: 100%;
  display: block;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.fc-left {
  left: -40px;
  top: 20%;
}

.fc-right {
  right: -40px;
  bottom: 25%;
  animation-delay: 1.5s;
}

.fc-num {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.fc-lbl {
  font-size: 10px;
  color: var(--gray);
}

/* ROLES */
.roles-section {
  padding: 90px 0;
  background: var(--off);
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.role-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 2px solid transparent;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 2px solid transparent;
  transition: .3s;
}

.role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(74, 29, 149, 0.1);
}

.role-card.cm:hover {
  border-color: var(--gold);
}

.role-card.rs:hover {
  border-color: var(--purple);
}

.role-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.role-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.tag-gold {
  background: rgba(212, 172, 13, 0.12);
  color: #9A7A00;
}

.tag-purple {
  background: rgba(109, 40, 217, 0.1);
  color: var(--purple);
}

.role-card h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.role-card .kpi-headline {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.role-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.kpi {
  background: var(--off);
  border-radius: 12px;
  padding: 16px;
}

.kpi .k-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.kpi .k-lbl {
  font-size: 11px;
  color: var(--gray);
  margin-top: 3px;
  line-height: 1.4;
}

.role-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.role-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #334155;
}

.role-benefits li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
  width: 18px;
  height: 18px;
  background: rgba(30, 132, 73, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* PROCESS */
.process-section {
  padding: 90px 0;
}

.section-h {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
  text-align: center;
}

.section-p {
  font-size: 16px;
  color: var(--gray);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  z-index: 0;
}

.p-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.p-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.p-step:nth-child(1) .p-circle {
  background: linear-gradient(135deg, var(--navy), #0F3460);
}

.p-step:nth-child(2) .p-circle {
  background: linear-gradient(135deg, #6D28D9, #4C1D95);
}

.p-step:nth-child(3) .p-circle {
  background: linear-gradient(135deg, var(--gold), #B8960A);
}

.p-step:nth-child(4) .p-circle {
  background: linear-gradient(135deg, var(--green), #145A32);
}

.p-step:nth-child(5) .p-circle {
  background: linear-gradient(135deg, #0891B2, #065F8A);
}

.p-step h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.p-step p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.55;
}

/* ASSESSMENT */
.assessment-section {
  background: linear-gradient(135deg, var(--navy-deep), #2D1B69);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.assessment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(212, 172, 13, 0.06) 0%, transparent 65%);
}

.assessment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.a-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.a-title .gold {
  color: var(--gold);
}

.a-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 28px;
}

.a-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.a-rule {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px;
}

.a-rule .icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.a-rule h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.a-rule p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.a-screen {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.4);
}

.a-screen img {
  width: 100%;
  display: block;
}

/* EARNINGS */
.earnings-section {
  padding: 90px 0;
  background: var(--off);
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.earn-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid #E2E8F0;
  text-align: center;
  transition: .3s;
}

.earn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 43, 92, 0.08);
  border-color: rgba(212, 172, 13, 0.3);
}

.earn-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.earn-amount {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.earn-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.earn-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* CTA */
.sjob-cta {
  background: linear-gradient(135deg, var(--purple-dark), #6D28D9);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sjob-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 172, 13, 0.1) 0%, transparent 60%);
}

.sjob-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.sjob-cta h2 span {
  color: var(--gold);
}

.sjob-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.cta-warning {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.cta-warning strong {
  color: var(--gold);
}

/* FOOTER */
.sjob-footer {
  background: var(--navy-deep);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sjob-footer-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sjob-footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.sjob-footer-links {
  display: flex;
  gap: 20px;
}

.sjob-footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: .2s;
}

.sjob-footer-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: .2s;
}

.social-link:hover {
  background: rgba(212, 172, 13, 0.15);
  border-color: rgba(212, 172, 13, 0.3);
  color: var(--gold);
}

/* RESPONSIVE */
@media(max-width:900px) {
  .sjob-hero-in {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fc-left,
  .fc-right {
    display: none;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .assessment-content {
    grid-template-columns: 1fr;
  }

  .earnings-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links-right a:not(.btn-gold) {
    display: none;
  }
}

@media(max-width:600px) {

  .roles-grid,
  .earnings-grid {
    grid-template-columns: 1fr;
  }

  .a-rules {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .sjob-footer-in {
    flex-direction: column;
    text-align: center;
  }
}