

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #06070f;
  font-family: var(--font-body);
}

.snap-container {
  width: 100%; height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.snap-container::-webkit-scrollbar { display: none; }

.snap-section {
  position: relative;
  width: 100%; height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.section-hero { background: #06070f; }

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center,
      rgba(6,7,15,0.94) 0%,
      rgba(6,7,15,0.80) 32%,
      rgba(6,7,15,0.42) 64%,
      rgba(6,7,15,0.18) 100%),
    linear-gradient(to bottom, rgba(6,7,15,0.16), rgba(6,7,15,0.55));
  z-index: 2;
}

.hero-scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-position: right 65%;
  object-position: bottom 30%;
  opacity: 0.88;
}

.section-listings { background: #030d2e; }

.section-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1060px;
  padding: 0 48px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(225, 235, 255, 0.97);
  line-height: 1.05;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-text-body);
  line-height: 1.75;
  max-width: 520px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(100, 150, 255, 0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 40px rgba(0, 0, 40, 0.4);
  transition:
    border-color var(--transition-normal),
    box-shadow   var(--transition-normal),
    transform    var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(100, 160, 255, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 14px 50px rgba(30, 60, 200, 0.18);
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 420px;
  background: radial-gradient(ellipse, rgba(30, 70, 200, 0.10) 0%, transparent 70%);
  z-index: 1; pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.08;
  color: rgba(235, 242, 255, 0.97);
  text-shadow:
    0 0 80px rgba(40, 90, 220, 0.28),
    0 2px 0 rgba(0, 0, 0, 0.4);
  margin-bottom: 26px;
  animation: joinFadeUp 1.0s 0.15s ease both;
}

.hero-visual {
  margin-bottom: 16px;
  opacity: 0.75;
  animation: joinFadeUp 1.0s 0s ease both;
}

.hero-headline {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.9;
  color: var(--color-text-body);
  max-width: 720px;
  margin-bottom: 0;
  animation: joinFadeUp 1.2s 0s ease both;
}

.hero-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.85;
  color: var(--color-text-body);
  max-width: 720px;
  animation: joinFadeUp 1.2s 0.25s ease both;
}

.scroll-hint {
  position: absolute;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(205, 225, 255, 0.95);
  cursor: pointer;
  animation: scrollBob 2.2s ease-in-out infinite;
}

.scroll-hint-label {
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: currentColor;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@keyframes joinFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 901px) {
  .section-hero { align-items: center; }

  .section-hero .section-inner {
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
    max-width: 1200px;
  }

  .hero-eyebrow { white-space: nowrap; }

  .hero-scene-img { object-position: center 65%; }
}

.listings-header {
  margin-bottom: 36px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  position: relative;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.job-card-body {
  flex: 1;
  min-width: 0;
  position: relative; z-index: 1;
  padding-left: 75px;
}

.job-card-action {
  flex-shrink: 0;
  position: relative; z-index: 1;
}

.job-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(225, 235, 255, 0.97);
  line-height: 1.05;
  margin-bottom: 18px;
}

.job-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 22px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.job-meta-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(30, 70, 200, 0.10);
  border: 1px solid rgba(80, 130, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-meta-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.job-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(100, 150, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 20px rgba(0, 0, 50, 0.35);
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.job-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(80, 130, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  border-radius: var(--radius-pill);
}

.job-btn:hover::before { opacity: 1; }

.job-btn:hover {
  background: rgba(50, 90, 255, 0.14);
  border-color: rgba(120, 170, 255, 0.55);
  color: #ffffff;
  box-shadow:
    0 0 22px rgba(60, 100, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 4px 20px rgba(0, 0, 50, 0.40);
  transform: translateY(-2px);
}

.job-btn svg {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.job-btn:hover svg    { transform: translateX(3px); }
.job-btn:active       { transform: translateY(0); transition: transform 0.1s ease; }
.job-btn:focus-visible { outline: 2px solid rgba(100, 160, 255, 0.6); outline-offset: 3px; }

.job-avatar {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(30, 65, 180, 0.08);
  border: 1px solid rgba(80, 130, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.45;
  transition: border-color var(--transition-normal), opacity var(--transition-normal);
}

.job-card:hover .job-avatar {
  border-color: rgba(100, 160, 255, 0.35);
  opacity: 0.60;
}

.job-avatar-inner {
  display: flex; align-items: center; justify-content: center;
  opacity: 0.6;
}

.last-section-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
}

.progress-nav {
  position: fixed;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.progress-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(100, 150, 255, 0.22);
  border: 1px solid rgba(100, 150, 255, 0.28);
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: 0;
}

.progress-dot:hover {
  background: rgba(100, 160, 255, 0.50);
  transform: scale(1.4);
}

.progress-dot--active {
  background: rgba(100, 160, 255, 0.82);
  border-color: rgba(140, 190, 255, 0.72);
  box-shadow: 0 0 8px rgba(80, 140, 255, 0.45);
  transform: scale(1.3);
}

@media (max-width: 1200px) {
  .section-inner    { max-width: 920px; padding: 0 36px; }
  .section-title    { font-size: clamp(30px, 4vw, 48px); }
  .listings-header  { margin-bottom: 28px; }
  .job-card         { padding: 26px 30px; }
  .job-title        { font-size: clamp(24px, 2.8vw, 34px); }
}

@media (max-width: 900px) {
  .section-inner   { padding: 0 24px; max-width: 100%; }
  .section-title   { font-size: clamp(28px, 4.5vw, 42px); }
  .section-subtitle { font-size: 15px; }
  .listings-header { margin-bottom: 22px; }
  .job-card        { padding: 22px 26px; gap: 20px; }
  .job-title       { font-size: clamp(22px, 3.5vw, 30px); margin-bottom: 14px; }
  .job-meta        { gap: 5px 16px; }
  .hero-headline   { font-size: 15px; }
}

@media (max-width: 768px) {
  .snap-section  { padding-top: 40px; }
  .progress-nav  { display: none; }
  .scroll-hint {
    display: flex;
    bottom: max(34px, calc(env(safe-area-inset-bottom) + 18px));
  }

  .section-hero {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 110px;
  }
  .section-hero .section-inner { margin: 0; width: 100%; }

  .hero-scene::before {
    background: linear-gradient(to bottom,
      rgba(6,7,15,0.82) 0%,
      rgba(6,7,15,0.50) 50%,
      rgba(6,7,15,0.18) 100%
    );
  }

  .hero-scene-img { object-position: 80% center; }

  .hero-eyebrow  { font-size: clamp(42px, 9vw, 66px); }
  .hero-headline { font-size: 14px; max-width: 100%; }
  .section-title    { font-size: clamp(28px, 7vw, 40px); }
  .section-subtitle { font-size: 14px; }
  .listings-header  { margin-bottom: 18px; }

  .job-card {
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 14px;
    padding: 20px 18px;
  }

  .job-avatar {
    position: static;
    transform: none;
    display: flex;
    flex-shrink: 0;
    flex-basis: auto;
    width: 48px; height: 48px;
    opacity: 0.70;
  }

  .job-card-body { flex: 1 1 0; min-width: 0; padding-left: 0; }

  .job-card-action { flex: 0 0 100%; width: 100%; }

  .job-btn { width: 100%; justify-content: center; }

  .job-title { font-size: clamp(20px, 5.5vw, 28px); margin-bottom: 12px; }
  .job-meta  { gap: 5px 10px; flex-wrap: nowrap; }
}

@media (max-width: 480px) {
  .section-inner { padding: 0 16px; }
  .snap-section  { padding-top: 36px; }

  .section-hero  { padding-top: 110px; }

  .hero-eyebrow  { font-size: clamp(36px, 10vw, 52px); }
  .hero-headline { font-size: 13px; max-width: 320px; }

  .listings-header { margin-bottom: 14px; }

  .job-card   { padding: 16px 16px; gap: 12px; }
  .job-avatar { width: 40px; height: 40px; }
  .job-title  { font-size: 18px; margin-bottom: 10px; }

  .job-meta-icon { width: 20px; height: 20px; border-radius: 5px; }
  .job-meta-icon svg { width: 11px; height: 11px; }
  .job-meta-item { gap: 5px; }
  .job-meta-text { font-size: 11px; letter-spacing: 0.04em; }
  .job-meta      { gap: 4px 8px; flex-wrap: nowrap; }

  .glass-card { border-radius: 12px; }

  .job-btn { font-size: 13px; padding: 11px 20px; letter-spacing: 0.12em; }
}

@media (max-width: 360px) {
  .snap-section  { padding-top: 34px; }

  .section-hero  { padding-top: 110px; }
  .section-inner { padding: 0 12px; }
  .hero-eyebrow  { font-size: 34px; }
  .hero-headline { font-size: 12px; }
  .section-title { font-size: 22px; }
  .job-card      { padding: 14px 12px; gap: 10px; }
  .job-avatar    { width: 36px; height: 36px; }
  .job-title     { font-size: 16px; margin-bottom: 8px; }
  .job-meta-icon { width: 18px; height: 18px; }
  .job-meta-icon svg { width: 10px; height: 10px; }
  .job-meta-text { font-size: 10px; }
  .job-meta      { gap: 3px 6px; }
  .job-btn       { font-size: 12px; padding: 10px 16px; }
}
